/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
    scroll-behavior: smooth;
    --default-font-family: 'Poppins', sans-serif;
    --highlight-font: "Playfair Display", serif;;
    --default-border-radius: 30px;
    --default-theme-color: #1da1f2;
    --default-theme-hover-color: #ADD8E6;
    --default-font-color: #333;
    --theme-grey: #f7f7f7;
    --theme-light-blue: #E1EBEE;

}

body {
    font-family: var(--default-font-family);
    color: var(--default-font-color);
    line-height: 32px;
}

p {
    font-size: 16px;
    margin: 0;
}

a {   
    text-decoration: none;
}

a:hover {   
    text-decoration: none;
}

ul {
    padding: 0;
    /* margin-left: 22px; */
}

ul li {
    list-style: none;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--highlight-font);
    font-weight: 700;  
    margin: 0;     
}

.mb-6{
    margin-bottom: 4rem;
}

section h2, section h1 {
    font-size: 48px;
    line-height: 58px;
    margin-bottom: 28px;
}

.theme-font-color {
    color: var(--default-theme-color);
}

.default-btn a {
    color: #fff;
    background-color: var(--default-theme-color);
    border-radius: var(--default-border-radius);
    padding: 10px 50px;
}

ul.page-list li {
    list-style: none;
    position: relative;
    padding-left: 40px;
}

ul.page-list li::before {
    font-family: "bootstrap-icons";
    position: absolute;
    content: "\f309";
    color: var(--default-theme-color);
    top: 0;
    left: 0;
    font-size: 40px;
}

.mobile {
    display: none;
}


.btn-theme {
    background-color: var(--default-theme-color);
    color: #ffffff !important;
    transition: 0.5s;
    border: 1px solid transparent;
}

.btn.btn-theme:hover {
    background-color: var(--theme-light-blue); 
    border: 1px solid var(--default-theme-color);  
    color: var(--default-theme-color) !important; 
}

.text-highlight{
    color: var(--default-theme-color);
}

.box-rounded{
    border-radius: 20px;
    overflow: hidden;
}

.bg-grey{
    background-color: var(--theme-grey);
}
.bg-white{
    background-color: #fff;
}
.bg-blue{
    background-color: var(--theme-light-blue);
}
.icon-size-normal{
    width: 14px;
    height: auto;   
}

.icon-size-2x{
    width: 21px;
    height: auto;    
}

.sub-heading{
    font-size: 22px;
    margin-bottom: 8px;
    line-height: 38px;
}

.svg-fill{
    fill: var(--default-theme-color);
}


/* ============================================= */

/* Header */



.main-header {
    color: var(--default-font-color);
    position: fixed;
    width: 100%;
    /* border-bottom: 1px solid #333; */
    top: 0;
    background-color: #fff;
    z-index: 10;
    transition: all 0.5s;
    
}

.main-header a.page-logo{
    font-size: 1.2rem;
    font-family: var(--default-font-family);
    /* font-style: italic; */
}

.main-header a {
    color: var(--default-font-color);    
}

.main-header a:hover {
    color: var(--default-theme-color);
}

#header-btn.nav-item a {
    padding: 10px 15px;
}

.main-header .navbar-nav .nav-link.active{
    color: var(--default-theme-color);
    font-weight: 600;
}

.navbar-toggler{
    padding: 0;
    border: none;
}

@media (min-width: 992px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        margin-right: 0.5rem;
    }
    
}

@media (min-width: 1400px) {
    .navbar-expand-xl .navbar-nav .nav-link {
        margin-right: 1rem;
    }
}


/* ------------------------ */


/* footer */

a.qk-link {
    color: #333;
}

.copyright p {
    font-size: 14px;
}

/* .main-footer h6{
    font-size: 1.1rem;
    margin-bottom: 1.1rem;
    margin-right: 1.1rem;
}
.main-footer h5{
    text-transform: uppercase;
} */

footer .copyright{
    background-color: var(--theme-grey);
    color: var(--default-font-color);    
}
.float-button {
    position: fixed;
    bottom: 0;
    left: 20px;
}
.footer-scl-media a{    
    width: 40px;
    height: 40px;
    border-radius: 50px;
    display: inline-flex;
    background-color: var(--default-theme-color);
    text-align: center;    
    justify-content: center;
    margin-right: 5px;
}

.footer-scl-media a svg{
    fill: #fff;
}

.footer-form{    
    padding: 30px;
}

.icon-size-fb{
    width: 14px;
    height: auto; 
}

h6.footer-contact-head{
    font-family: var(--default-font-family);
}

.main-footer a{
    color: var(--default-font-color);
}
.main-footer a:hover{
    color: var(--default-theme-color);
}
.footer-scl-media a:hover{
    opacity: 0.7;
}

.whatsapp-btn{
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}



/* ------------------------ */

/* =================================================== */



main{
    margin-top: 130px;
}

.page-para a{
    color: var(--default-theme-color);
}

.dep-heading{
    font-size: 16px;
    /* font-weight: 600; */
    /* text-transform: uppercase; */
    /* color: #759fff; */
    /* color: #bababa; */
    color: var(--default-theme-color);
}
.dep-text{
    font-size: 19px;
    margin-bottom: 20px;
}

.page-para .btn-theme{
    padding: 10px 15px;
}

.why-content{
    background-color: var(--default-theme-color);
    padding: 55px;
    color: #ffffff;
}

/* .why-content-box{    
    text-align: center;
} */

.why-content-box p{
    line-height: 28px;
}

.box-pr{
    padding-right: 30px;
}

.box-pl{
    padding-left: 30px;
}

.box-pt{
    padding-top: 30px;
}

.box-pb{
    padding-bottom: 30px;
}

#department .box-rounded.page-para{
    transition: 0.5s;
    cursor: pointer;
    /* border: 1px solid var(--default-theme-color); */
    box-shadow: 0 0 0 0 var(--default-theme-color);
}

#department .page-para:hover{
    box-shadow: 0 0 33px 0 #76a9c4;
}

#department .page-para img{
    transition: 1s; 
    transform: scale(1);
}

#department .page-para:hover img{
    transform: scale(1.1);

}

#department .col-md-4{
    padding: 30px;
}

.info-section{    
    width: 900px;
    max-width: 100%;
    position: relative;
    margin: auto;
    margin-top: 30px;
    padding: 30px 0;
    text-align: center;
}
/* .info-section div:nth-child(even){
    text-align: right;
} */

.patient-says{
    font-family: var(--highlight-font);
    font-size: 16px;
    line-height: 32px;
    font-style: italic;
    margin: 20px 0;
}



.patient-name{
    font-size: 16px;
    font-weight: 500;
}

.info-bar-wrap{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}
    
.info-bar{
    width: 20px;
    height: 100%;
    border-radius: 50px;
    background-color: var(--theme-light-blue);
    margin: auto;
}

.info-content{
    position: relative;
    height: 160px;
}

.info-content.h-auto{
    height: auto;
}

.info-circle{
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background-color: var(--default-theme-color);
    z-index: 2;
    top: 0;    
}
.info-circle.left-algn{
    left: -15px;
}
.info-circle.right-algn{
    right: -14px;
}

.send-msg, .error-msg{
    position: fixed;
    width: 100%;
    padding: 10px;
    top: 0;
    left: 0;
    text-align: center;
    z-index: 1000;
    cursor: pointer;
}
.send-msg{
    color: #018b1e;
    background-color: #c4efcd;
}
.error-msg{
    color: #b50404;
    background-color: #ffcfcf;
}
.msg-close{
    float: right;
}

#case-study .page-para img{
    transition: 0.5s;
    transform: scale(1);
}
#case-study .page-para:hover img{
    transform: scale(1.1);
}

#case-study .box-rounded{
    transition: 0.5s;
    cursor: pointer;
}

#case-study .box-rounded:hover{
    box-shadow: 0 0 33px 0 #76a9c4;
}

.amount{
    font-size: 30px;
    color: var(--default-theme-color);
    font-weight: 700;
}
.info-sub-heading{
    font-size: 18px;
    font-weight: 500;
}
.video-modal-1, .video-modal-2{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    background-color: rgb(0, 0, 0, 0.7);    
    transition: 1s; 
    backdrop-filter: blur(4px);       
}
.video-container{
    width: 315px;
    height: 560px;
    max-width: 90%;
    margin: 50px auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
}
#v-modal-close-1, #v-modal-close-2{
    position: absolute;
    top: 5px;
    right: 12px;
    z-index: 1001;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 20px;
    bottom: 72px;
    z-index: 999;
    background: var(--theme-light-blue);
    width: 40px;
    height: 40px;    
    transition: all 0.4s;
    border-radius: 50px;
    border: 1px solid var(--default-theme-color);
  }
  
 
  
  .back-to-top:hover {
    opacity: 0.8;
    color: #fff;
  }
  
  .back-to-top.active {
    visibility: visible;
    opacity: 1;
  }

  .section-margin-top{
    margin-top: 100px;
  }


  .form-control:active{
    background-color: #fff !important;
  }



/* =================================================== */

@media(max-width: 1400px){
    p, .main-header a, .btn-theme, .dep-heading {
        font-size: 14px;
        line-height: 28px;
    }
    section h2, section h1 {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 20px;
    }
    .dep-text {
        font-size: 16px;        
    }
    .sub-heading{
        font-size: 20px;
        line-height: 30px;
    }
    .patient-says{
        font-size: 14px;
        line-height: 28px;
    }
    #book-apt-form .form-control{
        font-size: 14px;
    }
    .page-para .btn-theme, #header-btn.nav-item a{
        padding: 5px 15px;
    }

    .info-sub-heading{
        font-size: 14px;
    }
    .amount.sub-heading{
        font-size: 30px;
    }

}

@media(max-width: 1200px){
    #why-section img{
        width: 100% !important;
        height: auto;
    }
}

@media(max-width: 992px){
    #intro img{
        width: 100% !important;
        /* margin-bottom: 4rem; */
    }
    #intro{
        text-align: center;
    }
    /* #intro .page-para.pe-5{
        padding-right: 0 !important;
    } */
    #department .col-md-4 {
        padding: 15px;
    }

    footer{
        text-align: center;
    }

    #video-btn img{
        width: 100%;
    }

    .main-header a.page-logo{
        font-size: 1rem;;
    }
    .page-logo img{
        width: 45px;
    }

    .navbar-toggler-icon{
        width: 1.2rem;
        height: 1.2rem;
    }
}

@media(max-width: 767px) { 
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }
    .box-pr, .box-pl, .box-pb, .box-pt{
        padding: 0;
    }
    .why-content-box.border-end, .why-content-box.border-top{
        border: none !important;
    }
    .why-content-box.w-50{
        width: 100% !important;
        padding: 20px;        
        border-bottom: 1px solid var(--theme-light-blue) !important;
    }
    .why-content-box:last-child{
        border: none !important;
    }  

    .patient-says{        
        font-size: 14px;
        line-height: 28px;
        
    }    
    
    .patient-name{
        font-size: 14px;
    }

}

@media(max-width: 600px){    
    section h2, section h1 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 28px;
    }
    
    .info-content{
        height: 230px;
    }

    .why-content{
        padding: 15px;
    }

    .section-margin-top {
        margin-top: 60px;
    }
    .mb-6{
        margin-bottom: 2rem;
    }
}

/* @media(max-width: 480px){
    
} */

