@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');


:root {
    --body-font: 'Questrial', sans-serif;

    --primar-color: #202d57;
    --secondary-color: #1567a3;
}



*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
a{
    text-decoration: none;
}
li{
    list-style: none;
}
body{
    font-family: var(--body-font);
}




/* navbar css starts */
.navbar{
    padding: 25px 0px;
    transition: 0.8s all;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.navbar.fix{
    position: fixed;
    top: 0px;
    transition: 0.8s;
    left: 0px;
    z-index: 11;
    width: 100%;
    background: white;
}
.navbar .navbar-brand img{
    width: 200px;
}
.navbar .nav-link{
    font-size: 18px;
    margin-right: 15px;
    color: var(--primar-color);
}
.navbar .nav-link.active{
    color: #3c95d4;
}
.navbar_menu{
    width: 40px;
}
.navbar-toggler.collapsed{
    border: none;
    outline: none;
}
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
    border: none;
}
.nav-button-appoinment
{
    display: flex;
    align-items: center;
    
}
/* .nav-button-link
{
    color:White;
    background: #202d57;
    border-radius: 3px;
    padding: 10px 15px;
    transition:.3s ease;
}
.nav-button-link:hover
{
    background: #121933;
    color:White;
} */
.nav-button-link
{
    color:White;
    background: #202d57;
    border-radius: 3px;
    padding: 10px 15px;
    transition:.3s ease;
}
.nav-button-link:hover
{
    background: #121933;
    color:White;
}


@media screen and (max-width: 900px) {
    .navbar .navbar-nav{
        padding-top: 25px;
        border-top: 1px solid gray;
        margin-top: 25px;
    }
    .navbar-toggler{
        border: none;
        outline: none;
    }
}

/* navbar css end */





/* hero section css start  */
.hero_section{
    padding: 35px 0px 0px 0px;
    background: rgba(231, 231, 231, 0.164);
    position: relative;
    border-bottom: 1px solid #d6d6d66b;
    overflow: hidden;

    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
.hero_section::before{
    content: '';
    width: 250px;
    height: 250px;
    position: absolute;
    background-color: #1567a308;
    top: 0px;
    left: 0px;
    border-bottom-right-radius: 100%;
}
.hero_section::after{
    content: '';
    width: 350px;
    height: 350px;
    position: absolute;
    background-color: #18265108;
    top: 0px;
    left: 0px;
    border-bottom-right-radius: 100%;
}
.hero_section .left_box{
    position: relative;
}
.hero_section .left_box .lottie{
    width: 120px;
    position: absolute;
    top: 24%;
    height: 120px;
    right: -37px;
}
.hero_section .left_box .heading{
    font-size: 60px;
    font-weight: bold;
    position: relative;
}
.hero_section .left_box .heading::after{
    content: '';
    background: url('../img/icons/stethoscope.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 40px;
    height: 40px;
    position: absolute;
    margin-top: 18px;
    margin-left: 25px;
}
.hero_section .left_box .description{
    font-size: 17px;
    font-family: var(--body-font);
    margin-top: 25px;
    width: 82%;
}
.hero_section .left_box .buttons{
    margin-top: 25px;
    align-items: center;
    display: flex;
    margin-bottom: 30px;
}
.hero_section .left_box .first_btn{
    padding: 14px 19px;
    border-radius: 5px;
    border: none;
    background: var(--primar-color);
    height: fit-content;
    color: white;
    font-family: var(--body-font);
}
.hero_section .left_box .second_btn{
    padding: 14px 19px;
    border-radius: 8px;
    border: none;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 35px;
    height: fit-content;
}
.hero_section .left_box .second_btn i{
    font-size: 41px;
    margin-right: 16px;
}






/* hero section media query  */
@media screen and (max-width: 900px){
    .hero_section::before{
        width: 100px;
        height: 100px;
    }
    .hero_section::after{
        width: 150px;
        height: 150px;
    }
    .hero_section .left_box .lottie{
        display: none;
    }
    .hero_section .left_box .heading{
        font-size: 38px;
        margin-top: 30px;
    }
    .hero_section .left_box .heading::after{
        width: 35px;
        height: 35px;
        position: absolute;
        margin-top: 7px;
        margin-left: 10px;
    }
    .hero_section .left_box .description{
        font-size: 16px;
        margin-top: 15px;
        width: 95%;
    }
    .hero_section .left_box .first_btn{
        padding: 16px 25px;
        border-radius: 2px;
    }
    .hero_section .left_box .second_btn{
        display: none;
    }
}
@media only screen and (max-width: 900px) and (min-width: 500px)  {
    .hero_section .right_box_parent{
        display: flex;
        justify-content: flex-end;
        align-items: flex-end;
    }
}
/* hero section css end  */





/* home page about section css start  */
.about_section{
    margin-top: 100px;
    margin-bottom: 100px;
}
.about_section .left_box{
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.about_section .left_box *{
    width: fit-content;
}
.about_section .left_box .scrubble{
    position: absolute;
    width: 60px;
    right: 10%;
    bottom: 7%;
    transform: rotate(280deg);
}
.about_section .left_box span{
    text-transform: uppercase;
    color: #1567a3;
    font-size: 17px;
}
.about_section .left_box .head_txt{
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 8px;
}
.about_section .left_box .head_txt span{
    font-size: 40px;
    text-transform: capitalize;
}
.about_section .left_box ul{
    padding: 0px;
    margin-bottom: 32px;
}
.about_section .left_box ul li{
    padding-left: 30px;
    margin-bottom: 4px;
    position: relative;
}
.about_section .left_box ul li::before{
    content: '';
    background: url('../img/icons/tick.png');
    background-position: center;
    background-size: contain;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0px;
}
.about_section .left_box a.b_t_n{
    text-decoration: none;
    color: black;
    position: relative;
    font-size: 18px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgb(178, 178, 178);
}
.about_section .left_box a::after{
    content: '';
    width: 20px;
    height: 20px;
    margin-top: 4px;
    background: url('../img/icons/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.4s;
    right: -35px;
}
.about_section .left_box a:hover::after{
    right: -50px;
}




/* about section media query  */
@media screen and (max-width: 900px) {
    .about_section .left_box .head_txt{
        font-size: 26px;
        font-weight: bold;
        margin-bottom: 12px;
        margin-top: 8px;
    }
    .about_section .left_box .head_txt span{
        font-size: 26px;
        text-transform: capitalize;
    }
}
/* home page about section css start  */






/* department section css start  */
.department__section{
    margin-bottom: 80px;
    padding: 40px 0px;
}
.department__section .row{
    margin-top: 30px;
}
.department__section .span{
    font-size: 20px;
    text-align: center;
    display: block;
}
.department__section .heading{
    font-size: 35px;
    text-align: center;
    margin-top: 2px;
    font-weight: bold;
}
.department__section .description{
    width: 50%;
    margin: auto;
    text-align: center;
}
.department__section .dep_carousel{
    margin-top: 25px;
}
.department__section .box{
    border: 1px solid rgb(238, 238, 238);
    padding: 15px 15px 35px;
    border-radius: 8px;
    margin: 10px;
}
.department__section .box .img_box{
    height: 210px;
}
.department__section .box .img_box img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.department__section .box h5{
    font-size: 24px;
    margin-top: 20px;
    font-weight: bold;
}
.department__section .box a{
    text-decoration: none;
    color: black;
    position: relative;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgb(178, 178, 178);
}
.department__section .box a::after{
    content: '';
    width: 20px;
    height: 20px;
    margin-top: 4px;
    background: url('../img/icons/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.4s;
    right: -35px;
}
.department__section .row .box a:hover::after{
    right: -50px;
}
.slick-dots{
    bottom: -30px;
}
.slick-dots li.slick-active{
    background: #1567a3;
    width: 33px;
    height: 9px;
    border-radius: 20px;
}
.slick-dots li{
    background: #1567a3;
    width: 9px;
    height: 9px;
    border-radius: 20px;
    transition: 0.4s;
}
.slick-dots li button{
    display: none;
}





/* department section media query */
@media screen and (max-width: 900px) {
    .department__section .description{
        width: 95%;
    }
}
/* department section css end */






.counter_section{
    margin-top: 50px;
    margin-bottom: 50px;
}
.counter_section .heading{
    font-size: 35px;
    font-weight: bold;
    width: 40%;
    margin: auto;
    text-align: center;
    margin-bottom: 35px;
}
.counter_section .row{
    padding: 25px 200px;
}
.counter_section .row .box{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 25px 0px;
    border-radius: 10px;
}
.counter_section .row .box h5{
    font-size: 35px;
    font-weight: bold;
}
.counter_section .row .box h6{
    font-size: 18px;
    font-weight: 600;
    margin-top: 12px;
}
.counter_section .row .box_1{
    background-color: #f3c7d2;
}
.counter_section .row .box_2{
    background-color: #d2dee3;
}
.counter_section .row .box_3{
    background-color: #e8dbdb;
}




/* counter section media query  */
@media screen and (max-width: 900px) {
    .counter_section .heading{
        font-size: 32px;
        width: 100%;
    }
    .counter_section .row{
        padding: 0px 0px;
    }
    .counter_section .row .box{
        margin-bottom: 15px;
    }
}
/* counter section css end  */



.doctors_section{
    margin-top: 80px;
    margin-bottom: 140px;
}
.doctors_section h3.heading{
    font-size: 35px;
    font-weight: bold;
    margin: auto;
    text-align: center;
    margin-bottom: 10px;
}
.doctors_section p.description{
    width: 45%;
    margin: auto;
    text-align: center;
}
.doctors_section .box{
    background: #d2dee36e;
    border-radius: 30px;
    margin: 10px;
}
.doctors_section .box .img_box {
    height: 350px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.doctors_section .box .img_box img{
    object-fit: cover;
    height: 100%;
}
.doctors_section .box .inner_box{
    background: #ffffff4d;
    text-align: center;
    padding: 15px 0px;
}
.doctors_section .box .inner_box h5.name{
    margin-bottom: 0px;
    font-size: 22px;
    font-weight: bold;
    color: #14457b;
}
.doctors_section .box .inner_box p{
    margin-bottom: 0px !important;
}





/* doctors section media query  */
@media screen and (max-width: 900px) {
    .doctors_section p.description{
        width: 100%;
    }
}
/* doctors section css end  */





/* checkup section css start */
.checkup_section{
    margin-top: 100px;
    padding: 0px 0px 120px;
    position: relative;
}
.checkup_section::after{
    content: '';
    width: 250px;
    height: 250px;
    background: #bed9ec4f;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-top-left-radius: 100%;
}
.checkup_section::before{
    content: '';
    width: 350px;
    height: 350px;
    background: #afbeee4d;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-top-left-radius: 100%;
}
.checkup_section .checkup__img{
    width: 75%;
}
.checkup_section .span{
    background: #D3E9FB;
    padding: 7px 12px;
    color: #1567a3;
}
.checkup_section .heading{
    font-size: 40px;
    margin-top: 20px;
    margin-bottom: 30px;
    font-weight: bold;
    width: 70%;
}
.checkup_section .inner_box{
    padding-left: 40px;
    margin-bottom: 30px;
    position: relative;
}
.checkup_section .inner_box h5{
    font-size: 18px;
    font-weight: bold;
}
.checkup_section .inner_box::before{
    content: '';
    background: url('../img/icons/check-mark.png');
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: 30px;
    position: absolute;
    left: 0px;
    top: 0px;
}
.checkup_section a.b_t_n{
    text-decoration: none;
    color: black;
    position: relative;
    font-size: 18px;
    display: block;
    width: fit-content;
    margin-top: 40px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgb(178, 178, 178);
}
.checkup_section a.b_t_n::after{
    content: '';
    width: 20px;
    height: 20px;
    margin-top: 4px;
    background: url('../img/icons/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.4s;
    right: -35px;
}
.checkup_section a.b_t_n:hover::after{
    right: -50px;
}




/* checkup section media query  */
@media screen and (max-width: 900px) {
    .checkup_section::after{
        width: 100px;
        height: 100px;
    }
    .checkup_section::before{
        width: 150px;
        height: 150px;
    }
    .checkup_section .span{
        padding: 10px 15px;
    }
    .checkup_section .heading{
        font-size: 35px;
        margin-top: 25px;
        margin-bottom: 30px;
        font-weight: bold;
        width: 100%;
    }
    .checkup_section .checkup__img{
        width: 100%;
    }
}
@media screen and (max-width: 500px) {
    .checkup_section .checkup__img{
        width: 95%;
    }
}
/* checkup section css end  */






/* news letter section css start  */
.news_letter{
    margin-bottom: 0px;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 50vh;
    background: url('../img/news-letter/bg-2.png');
    background-size: cover;
    background-repeat: no-repeat;
}
.news_letter .heading{
    font-size: 35px;
    font-weight: bold;
    color: white;
    text-align: center;
}
.news_letter p{
    color: white;
    text-align: center;
    margin-bottom: 35px;
}
.news_letter .input_box{
    display: flex;
    align-items: center;
    justify-content: center;
}
.news_letter .input_box input{
    padding: 9px 15px;
    width: 250px;
    border: none;
    outline: none;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.news_letter .input_box button{
    background: #2684c8;
    color: white;
    border: none;
    outline: none;
    padding: 9px 23px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}
.hr_container{
    background-color: #14457b;
    padding: 15px;
}
.hr_container hr{
    margin: 0;
    padding: 0;
    height: 1.2px;
    opacity: 1 !important;
    color: white;
}





/* news letter media query  */
@media screen and (max-width: 900px) {
    .news_letter{
        background: #14457b;
    }
    .news_letter .heading{
        font-size: 30px;
    }
    .news_letter p{
        width: 80%;
        margin: 0px auto 35px;
    }
}
/* news letter section css end */






/* footer section css starts  */
.footer_section{
    background: #14457b;
    padding: 100px 0px 0px;
    color: white;
}
.footer_section .copy_right{
    margin-bottom: 0px;
    padding: 15px 0px;
    font-size: 17px;
}
.footer_section .container{
    padding-bottom: 25px;
    border-bottom: 1px solid gray;
}
.footer_section  h5.head_txt{
    font-size: 27px;
    margin-bottom: 35px;
}
.footer_section .logo_section img{
    width: 80%;
    margin-bottom: 40px;
}
.footer_section .logo_section .icons{
    margin-top: 25px;
}
.footer_section .logo_section .icons a{
    color: white;
}
.footer_section .logo_section .icons i{
    font-size: 20px;
    background: rgba(255, 255, 255, 0.079);
    padding: 12px;
    margin-right: 15px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
}
.footer_section .quick_link ul{
    padding: 0px;
}
.footer_section .quick_link ul:nth-child(1){
    margin-right: 40px;
}
.footer_section .quick_link ul li{
    padding-left: 32px;
    position: relative;
    margin-bottom: 15px;
}
.footer_section .quick_link ul li::before{
    content: '';
    width: 16px;
    height: 16px;
    background-repeat: no-repeat;
    background-size: contain !important;
    background-repeat: no-repeat;
    background: url('../img/icons/next.png');
    position: absolute;
    left: 0px;
    top: 4px;
}
.footer_section .quick_link ul li a{
    color: white;
}
.footer_section .latest_news .box{
    display: flex;
    border-bottom: 1px solid rgb(166, 166, 166);
    padding-bottom: 15px;
}
.footer_section .latest_news .box:last-child{
    border-bottom: none;
    margin-top: 20px;
}
.footer_section .latest_news .box .txt_box{
    margin-left: 15px;
}
.footer_section .latest_news .box .txt_box h6.head{
    font-size: 18px;
    margin-top: 10px;
    width: 90%;
}
.footer_section .latest_news .box .txt_box span.date{
    font-size: 14px;
}
.footer_section .contact .box{
    margin-bottom: 22px;
}
.footer_section .contact .box p.phone::before{
    content: "\f095";
    position: absolute;
    left: 0px;
    top: 0px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}
.footer_section .contact .box p.email::before{
    content: "\f0e0";
    position: absolute;
    left: 0px;
    top: 0px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}
.footer_section .contact .box p.location::before{
    content: "\f601";
    position: absolute;
    left: 0px;
    top: 0px;
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
}
.footer_section .contact .box p{
    margin-bottom: 0px;
    position: relative;
    padding-left: 30px;
}
.footer_section .contact .box p i{
    margin-right: 15px;
}



/* footer media query  */
@media screen and (max-width: 900px) {
    .footer_section  h5.head_txt{
        margin-bottom: 25px;
        margin-top: 35px;
    }
    .footer_section .logo_section .icons{
        margin-bottom: 25px;
    }
}
/* footer section css ends */








/* ================================================== About Page css starts =============================================================== */
.about_banner{
    padding: 120px 0px;
    background: url('../img/about/breadcamb.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
}
.about_banner::after{
    content: '';
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    background-color: #1567a38a;
    z-index: 1;
}
.about_banner .head_txt{
    font-size: 40px;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
}
.about_banner .breadcramb{
    font-size: 20px;
    position: relative;
    z-index: 2;
    color: white;
}
.about_banner .breadcramb a{
    color: white;
    font-size: 20px;
}


.about_page .about_content{
    margin-top: 80px;
    margin-bottom: 80px;
}
.about_page .about_content .about____img{
    width: 75%;
}
.about_page .about_content span{
    font-size: 18px;
}
.about_page .about_content .head_txt{
    font-size: 35px;
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 8;
    margin-bottom: 10px;
    color: #14457b;
}
.about_page .about_content p.description{
    margin-bottom: 20px;
}
.about_page .about_content .box{
    padding-left: 40px;
    position: relative;
}
.about_page .about_content .box h5{
    font-size: 20px;
    font-weight: bold;
    color: #14457b;
}
.about_page .about_content .box::before{
    content: '';
    background: url('../img/icons/check-mark.png');
    width: 30px;
    height: 30px;
    background-repeat: no-repeat;
    position: absolute;
    background-size: contain;
    left: 0px;
    top: 0px;
}




/* mission and vision css */
.mission_vision{
    margin-top: 50px;
    margin-bottom: 80px;
}
.mission_vision .box{
    background: #6197bac4;
    border-radius: 15px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 20px;
}
.mission_vision .box img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 24px;
}
.mission_vision .box .sm_head{
    font-size: 25px;
    font-weight: bold;
}






/* subhead section css */
.about_subhead{
    padding: 0px 0px 20px;
    position: relative;
}
.about_subhead .heading{
    font-size: 35px;
    font-weight: bold;
    width: 50%;
    line-height: 45px;
    margin-bottom: 10px;
    position: relative;
}
.about_subhead .heading::after{
    content: '';
    background: url('../img/icons/hospital.png');
    background-position: center;
    background-size: contain;
    width: 30px;
    height: 30px;
    position: absolute;
    margin-left: 15px;
    margin-top: 8px;
}
.about_banner_img_section{
    height: 57vh;
}
.about_banner_img_section .container{
    height: 100%;
}
.about_banner_img_section .container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
}





/* counter section css */
.about_page .counter__section .row{
    padding: 25px 200px 0px;
}
.about_page .counter__section{
    margin-top: 15px;
}
.about_page .counter__section .box{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px 0px;
    flex-direction: column;
    border-radius: 25px;
}
.about_page .counter__section .first_box{
    background-color: #f5dfdf;   
}
.about_page .counter__section .second_box{
    background-color: #ffe7d1;
}
.about_page .counter__section .third_box{
    background-color: #d4d4f5;
}
.about_page .counter__section .box .head{
    font-size: 50px;
    font-weight: bold;
}
.about_page .counter__section .box .desc{
    font-size: 18px;
}







/* banner box section css  */
.banner__box{
    margin-bottom: 80px;
}
.banner__box .box{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #86afca33;
    background-repeat: no-repeat;
    padding: 30px;
    border-radius: 15px;
}
.banner__box .box img{
    width: 250px;
}
.banner__box .box .txt_box h4{
    font-size: 26px;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 30px;
}
.banner__box .box .txt_box span{
    font-size: 18px;
}
.banner__box .box .txt_box a{
    text-decoration: none;
    color: black;
    position: relative;
    font-size: 16px;
    padding-bottom: 8px;
    font-weight: bold;
    border-bottom: 1px solid rgb(178, 178, 178);
}
.banner__box .box .txt_box a::after{
    content: '';
    width: 20px;
    height: 20px;
    margin-top: 4px;
    background: url('../img/icons/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.4s;
    right: -35px;
}
.banner__box .box .txt_box a:hover::after{
    right: -50px;
}





/* testimonial section css  */
.testimonial_section{
    margin-top: 120px;
    padding-bottom: 120px;
    position: relative;
}
.testimonial_section::before{
    content: '';
    width: 150px;
    height: 150px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #c2cce74a;
    border-top-left-radius: 100%;
    z-index: 1;
}
.testimonial_section::after{
    content: '';
    width: 200px;
    height: 200px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    background: #b1bceb47;
    border-top-left-radius: 100%;
}
.testimonial_section .testimonial_carousel .slick-prev{
    position: absolute;
    right: 110px;
    top: -65px;
    left: unset;
}
.testimonial_section .testimonial_carousel .slick-prev::before{
    content: "\f060";
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    border-radius: 10px;
    color: white;
    padding: 10px;
    font-weight: 900;
    opacity: 1;
    background: #0a3e63;
    font-family: 'Font Awesome 6 Free';
}
.testimonial_section .testimonial_carousel .slick-next{
    position: absolute;
    right: 50px;
    top: -65px;
    left: unset;
}
.testimonial_section .testimonial_carousel .slick-next::before{
    content: "\f061";
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    border-radius: 10px;
    align-items: center;
    position: absolute;
    opacity: 1;
    color: white;
    padding: 10px;
    font-weight: 900;
    background: #0a3e63;
    font-family: 'Font Awesome 6 Free';
}
.testimonial_section .heading{
    font-size: 35px;
    font-weight: bold;
    text-align: center;
}
.testimonial_section .testimonial_carousel{
    margin-top: 35px;
}
.testimonial_section .description{
    width: 45%;
    text-align: center;
    margin: auto;
}
.testimonial_section .box{
    position: relative;
    padding: 20px 15px;
    box-shadow: rgba(0, 0, 0, 0.09) 0px 3px 12px;  
    border-radius: 15px;
    margin: 12px;
}
.testimonial_section .box .quote{
    position: absolute;
    width: 70px;
    opacity: 0.2;
    right: 25px;
    top: 25px;
}
.testimonial_section .box .top_box{
    display: flex;
}
.testimonial_section .box .img_box img{
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.testimonial_section .box .top_box .txt_box{
    margin-left: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial_section .box .top_box .txt_box .name{
    margin-bottom: 0px;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 4px;
}
.testimonial_section .box .top_box .txt_box .designation{
    margin-bottom: 0px;
    color: #0a3e63;
}
.testimonial_section .box .rating{
    margin-top: 25px;
    margin-bottom: 15px;
}
.testimonial_section .box .rating i{
    margin-right: 5px;
    color: #ff8a00;
}
.testimonial_section .box .review{
    margin-bottom: 0px;
}






/* about page media query  */
@media screen and (max-width: 900px) {
    /* mission and vision section */
    .mission_vision .box{
        margin-bottom: 20px;
    }
    
    /* subhead section  */
    .about_subhead .heading{
        font-size: 32px;
        width: 100%;
        line-height: 40px;
        margin-bottom: 15px;
    }
    
    /* counter section  */
    .about_page .counter__section .row{
        padding: 20px 0px 0px;
    }
    .about_page .counter__section .box{
        border-radius: 8px;
        margin-bottom: 15px;
    }
    
    /* banner box section  */
    .banner__box .box{
        flex-direction: column;
        padding: 30px 20px;
        border-radius: 10px;
        margin-bottom: 15px;
    }
    
    /* testimonial section  */
    .testimonial_section{
        margin-top: 80px;
    }
    .testimonial_section::before{
        width: 75px;
        height: 75px;
    }
    .testimonial_section::after{
        width: 125px;
        height: 125px;
    }
    .testimonial_section .heading{
        font-size: 32px;
    }
    .testimonial_section .testimonial_carousel{
        margin-top: 100px;
    }
    .testimonial_section .description{
        width: 100%;
    }
    .testimonial_section .box .quote{
        width: 60px;
    }
}
@media screen and (max-width: 500px) {
    .about_page .about_content .about____img{
        width: 95%;
    }
}


/* ================================================== About Page css ends =============================================================== */


















/* service page css start  */


.service__section{
    margin-top: 80px;
    margin-bottom: 80px;
}
.service__section .heading{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}
.service__section .description{
    font-size: 16px;
    text-align: center;
    margin: auto;
    width: 50%;
}
.service__section .row{
    margin-top: 30px;
}
.service__section .box{
    border: 1px solid rgb(238, 238, 238);
    padding: 15px 15px 35px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 25px;
    position: relative;
}
.service__section .box::after{
    content: '';
    background: rgba(198, 227, 246, 0.178);
    width: 80px;
    border-bottom-right-radius: 8px;
    height: 80px;
    position: absolute;
    transition: 0.5s;
    bottom: 0px;
    z-index: 1;
    border-top-left-radius: 100%;
    right: -30%;
    bottom: -30%;
}
.service__section .box::before{
    content: '';
    background: rgba(172, 206, 233, 0.159);
    width: 120px;
    border-bottom-right-radius: 8px;
    transition: 0.5s;
    height: 120px;
    position: absolute;
    bottom: -30%;
    right: -30%;
    border-top-left-radius: 100%;
    right: 0px;
}
.service__section .box:hover::after{
    right: 0px;
    bottom: 0px;
}
.service__section .box:hover::before{
    bottom: 0px;
    right: 0px;
}
.service__section .box .img_box{
    height: 210px;
}
.service__section .box .img_box img{
    height: 100%;
    object-fit: cover;
    width: 100%;
}
.service__section .box h5{
    font-size: 24px;
    margin-top: 20px;
    font-weight: bold;
}
.service__section .box a{
    text-decoration: none;
    color: black;
    position: relative;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgb(178, 178, 178);
}
.service__section .box a::after{
    content: '';
    width: 20px;
    height: 20px;
    margin-top: 4px;
    background: url('../img/icons/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.4s;
    right: -35px;
}
.service__section .row .box a:hover::after{
    right: -50px;
}



/* service page media query  */
@media screen and (max-width: 900px) {
    .service__section .heading{
        font-size: 35px;
    }
    .service__section .description{
        width: 100%;
    }
}
/* service page css end  */
















/* doctors page css start  */
.doctors_banner{
    padding: 120px 0px;
    background: url('../img/doctors/bg.jpg');
    background-position: center;
    background-size: cover;
    position: relative;
}
.doctors_banner::after{
    content: '';
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    background-color: #1567a38a;
    z-index: 1;
}
.doctors_banner .head_txt{
    font-size: 40px;
    font-weight: bold;
    color: white;
    position: relative;
    z-index: 2;
}
.doctors_banner .breadcramb{
    font-size: 20px;
    position: relative;
    z-index: 2;
    color: white;
}
.doctors_banner .breadcramb a{
    color: white;
    font-size: 20px;
}



.doctors__section{
    margin-top: 80px;
    margin-bottom: 80px;
}
.doctors__section .heading{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
}
.doctors__section .description{
    font-size: 16px;
    text-align: center;
    margin: auto;
    width: 50%;
}
.doctors__section .row{
    margin-top: 15px;
}
.doctors__section .box{
    background: #d2dee36e;
    border-radius: 10px;
    margin-top: 25px;
}
.doctors__section .box .img_box {
    height: 350px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}
.doctors__section .box .img_box img{
    object-fit: cover;
    height: 100%;
}
.doctors__section .box .inner_box{
    background: #ffffff4d;
    text-align: center;
    padding: 15px 0px 20px;
}
.doctors__section .box .inner_box h5.name{
    margin-bottom: 0px;
    font-size: 22px;
    font-weight: bold;
    color: #14457b;
}
.doctors__section .box .inner_box p{
    margin-bottom: 8px !important;
}
.doctors__section .box .inner_box a{
    text-decoration: none;
    color: black;
    position: relative;
    font-size: 16px;
    padding-bottom: 8px;
    font-weight: bold;
    border-bottom: 1px solid rgb(178, 178, 178);
}




/* doctors media query  */
@media screen and (max-width: 900px) {
    .doctors__section .heading{
        font-size: 35px;
    }
    .doctors__section .description{
        width: 100%;
    }
}
/* doctors page css end */
























/* blog page css start  */
.blog__section{
    margin-top: 80px;
    margin-bottom: 80px;
}
.blog__section .heading{
    font-size: 35px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
}
.blog__section .box{
    box-shadow: rgba(0, 68, 255, 0.108) 0px 10px 50px;
}

.blog__section img{
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.blog__section .txt_box{
    position: relative;
    padding: 13px;
}
.blog__section .txt_box span{
    display: block;
    margin-top: 20px;
    padding-left: 25px;
    color: black;
    position: relative;
}
.blog__section .txt_box span::before{
    content: "\f02b";
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    color: #0a3e63;
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 18px;
}
.blog__section .txt_box .blog_head{
    font-size: 24px;
    margin-top: 15px;
    font-weight: bold;
}
.blog__section .txt_box .date{
    font-size: 17px;
    margin-top: 25px;
}
.blog__section .txt_box a{
    position: absolute;
    right: 55px;
    bottom: 31px;
    text-decoration: none;
    color: black;
    font-size: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgb(178, 178, 178);
}
.blog__section .txt_box a::after{
    content: '';
    width: 20px;
    height: 20px;
    margin-top: 4px;
    background: url('../img/icons/right-arrow.png');
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    transition: 0.4s;
    right: -30px;
}
.blog__section .txt_box  a:hover::after{
    right: -40px;
}
/* blog page css end  */









/* contact page css starts  */
.contact__section{
    margin-top: 80px;
    margin-bottom: 80px;
}
.contact__section .heading{
    font-size: 40px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
}
.contact__section .left_box iframe{
    width: 100%;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
}
.contact__section form{
    display: flex;
    justify-content: center;
    flex-direction: column;
}
.contact__section form input{
    width: 100%;
    height: 48px;
    margin-bottom: 16px;
    padding: 4px 15px;
    border: 0.3px solid #e5dddd;
    border-radius: 5px;
}
.contact__section form textarea{
    width: 100%;
    height: 185px;
    padding: 8px 15px;
    border-radius: 5px;
    border: 0.3px solid #e5dddd;
}
.contact__section form button{
    margin-top: 22px;
    width: fit-content;
    border: none;
    padding: 12px 55px;
    background: #0a3e63;
    color: white;
}




.contact_box{
    margin-bottom: 80px;
}
.contact_box .box{
    padding: 42px;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    align-items: center;
    background: #0a3e6329;
}
.contact_box .box img{
    width: 70px;
    margin-right: 30px;
}
.contact_box .box p{
    margin-bottom: 0px;
}




/* contact page media query  */
@media screen and (max-width: 900px) {
    .contact__section{
        margin-top: 80px;
        margin-bottom: 50px;
    }
    .contact__section .heading{
        font-size: 35px;
        margin-bottom: 20px;
    }
    .contact__section form{
        margin-top: 25px;
    }
    .contact_box{
        margin-bottom: 30px;
    }
    .contact_box .box{
        margin-bottom: 10px;
        padding: 42px 25px;
        justify-content: unset;
    }
    .contact__section .left_box iframe{
        margin-top: 50px;
        width: 100%;
        height: 350px;
    }
}
/* contact page css end */












/* loader css start  */
.loader{
    width: 100%;
    height: 100vh;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 111;
}
.loader .lottie{
    width: 250px;
}