@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
*{
    margin: 0px;
    padding: 0px;
    /* box-sizing: border-box; */
}
body{
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: rgb(107, 106, 117);
}
a{
    text-decoration: none;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Jost", sans-serif;
    text-transform: capitalize;
}

.nav_top{
    background: #eef9ff;
    padding-left: 48px;
    display: flex;
    align-items: center;

}
.nav_time{
    width: 50%;
    align-content: center;
    font-size: 14px;
}
.nav_time span{
    font-size: 14px;
    color: #06A3DA;
}
.nav_contact{
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    color: white ;
}
.nav_email{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 11% 100%);
    background: #06A3DA;
    padding: 8px 16px 8px 48px;
}
.nav_call{
    background: #06A3DA;
    padding: 8px 48px 8px 16px;
    border-left: 1px solid white;
}
#nav{
    padding: 0px 48px;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.075);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0%;
    background: #ffffff;
    z-index: 999;
}
.page_link{
    align-content: center;
    position: relative;
    transition: .5s all ease;
}
ul{
    list-style: none;
}
.dropdown_menu{
    position: absolute;
    top: 100%;
    background-color: #ffffff;
    padding: 8px 0px;
    visibility: hidden;
    opacity: 0;
    transition: .5s all ease;
     display: flex;
    flex-direction: column;
}
.page_link:hover .dropdown_menu{
    visibility: visible;
    opacity: 1;
}
.dropdown_menu_list{
    padding: 6px 16px;
    color: #212529;
    transition: .5s ;
}
.dropdown_menu_list:hover{
    background-color: #e0e0e0;
}
/* .dropdown_menu_list a{
    color: #212529;
} */
.active-1{
    background-color: #06a3da;
    color: #ffffff;
}
.nav_link i{
    font-size: 12px;
    margin: 0px;
}
.nav_bar_logo{
    color: #06A3DA;
    font-size: 20px;
    margin-right: 16px;
}
.nav_bar_logo h1{
    font-weight: 700;
    margin: 0px;
}
.nav_bar_list{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.nav_bar_page{
    display: flex;
}
.nav_link{
    font-family: 'Jost', sans-serif;
    padding: 35px 15px;
    font-size: 18px;
    color: #091E3E;
    outline: none;
    transition: .5s;
    text-transform: capitalize;
    font-weight: 500;
}
.nav_link:hover{
    color: #06A3DA;
}
.active{
    color: #06A3DA;
}
.btn{
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    transition: .5s;
    color: #091E3E;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    cursor: pointer;
    padding: 6px 12px;
    font-size:16px;
    border-radius: 2px;
    border: 1px solid transparent;
    background: transparent;
    text-transform: capitalize;
    font-weight: 600;
}
.appointment{
    color: white;
    background-color: #06A3DA;
    border-color: #06A3DA;
    font-size: 16px;
    padding: 8px 24px;
    margin-left: 16px;
    transition: 0.5s;
}
.appointment:hover{
    background: #F57E57;
    color: #000000;
    border-color: #F57E57;
}
.nav_bar_togo{
    display: none;
}
@media (max-width:1100px) {
.nav_bar .nav_bar_logo h1{
    font-size: 36px;
}
}
@media (max-width:1050px) {
.nav_bar .nav_bar_logo h1{
    font-size: 34px;
}
}
@media(max-width:1000px){
    .nav_top{
        display: none;
    }
    .nav_bar{
        position: relative;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 16px 48px;
    }
    .nav_bar_list{
        display: none;
    }
    .nav_bar_togo{
        color: #0000008c;
        display: block;
        padding: 6px 10px;
        font-size: 20px;
        line-height: 1;
        background-color: transparent;
        border: 1px solid #0000001a;
        border-radius: 2px;
        transition: 0.15s ease-in-out;
        position: relative;
    }
    .nav_bar_list{
        width: 100%;
        position: absolute;
        display: inline-block;
        top: 100%;
        left: 0%;
        background: white;
        padding: 12px 48px;
        box-sizing: border-box;
    }
    .nav_bar_page{
        display: flex;
        flex-direction: column;
        gap: 24px;
        margin-bottom: 24px;
    }
    .nav_link{
        padding: 0px 12px;
    }

    #nav{
        padding: 12px 48px;
    }
}
@media(max-width:425px){
    .nav_bar_logo{
        font-size: 16px;
    }
    #nav{
        padding: 12px;
    }
}

/* nav_bar_end */


.slider{
    height: 760px;
    background-image: url("../img/carousel-1.jpg");
    background-size: cover;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;

}
.slider::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgb(9 30 62 / 85%);
}
.slider_content{
    width: 70%;
    text-align: center;
    z-index: 1;
}
.slider_content h5{
    color: white;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}
.slider_content h2{
    color: white;
    text-transform: capitalize;
    font-size: 80px;
    font-weight: 700;
    font-family: 'Jost', sans-serif;
    line-height: 1.2;
    margin-bottom: 20px;
}


@media(max-width:1200px){
    .slider_content h2{
        font-size: 6.5vw;
    }
}
@media(max-width:900px){
    .slider_content h2{
        font-size: 8vw;
    }
    .slider_content{
        width: 90%;
    }
    .slider{
        height: 500px;
    }
}
@media(max-width:980px){
    .sub_banner{
        display: flex;
        flex-direction: column;
        position: relative;
        top: 0%;
        padding: 0px 48px;
        box-sizing: border-box;
        width: 100%;
    }
    .open_time{
        height: 300px;
        width: 100%;
        box-sizing: border-box;
    }
}


@media (max-width:995px) {
    .about_us{
        flex-direction: column;
    }
    .make_appointment{
        flex-direction: column;
        box-sizing: border-box;
        padding: 0px 48px;
    }
    .make_appointment_content{
        width: 100%;
        box-sizing: border-box;
    }
    .make_appointment_form{
        box-sizing: border-box;
        width: 100%;
    }
}





.px-4{
    padding: 16px 48px;
}
.px-5{
    background: #F57E57;
    color: white;
    border-color: #F57E57;
}
.px-5:hover{
    color: black;
    background-color: #06A3DA;
    border-color: #06A3DA;
}
.sub_banner{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
    top: -90px;
    flex-wrap: wrap;
    width: 100%;
}
.open_time{
    width: 20.4%;
    padding: 48px;
    height: 208px;
    display: flex;
    flex-direction: column;
}
.bg-1{
    background: #06a3da;
}
.bg-2{
    background-color: #091e3e;
}
.bg-3{
    background-color: #f57e57;
}
.mb-3{
    margin-bottom: 16px;
}
.text_white{
    color: white;
}
.open_time h3{
    font-size: 29px;
    font-weight: 600;
}
.d-flex{
    display: flex;
    justify-content: space-between;
    margin-bottom: 16px;
}
.d-flex h6{
    font-size: 16px;
    font-weight: 500;
}
.btn_light{
    background-color: #eef9ff;
    border-color: #eef9ff;
    color: black;
    width: 90.8%;
}
.date{
    margin-bottom: 16px;
}
.form_control{
    display: block;
    width: 91%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #6b6a75;
    padding: 6px 12px;
    border-radius: 2px;
    border: none;
    outline: none;
    height: 28px;
}
.form_select{
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    height: 40px;
    padding: 6px 36px 6px 12px;
    border-radius: 2px;
    border: none;
    outline: none;
    color: #6b6a75;
}
.ts-1{
    font-size: 32px;
    font-weight: 700;
}
.about_us{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 48px;
}
.about_us_content{
    width: 60%;
    padding: 0px 24px;

}
.title_all{
    color: #06A3DA;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 8px;
    position: relative;
}
.title_all::before{
    position: absolute;
    content: '';
    top: 12px;
    left: 107px;
    background-color: #06A3DA;
    height: 3px;
    width: 45px;
}
.title_all::after{
    position: absolute;
    content: '';
    top: 12px;
    left: 157px;
    background-color: #F57E57;
    height: 3px;
    width: 15px;
}
.about_title{
    font-size: 48px;
    color: #091e3e;
    line-height: 1.2;
}
.italic_text{
    font-style: italic;
    font-size: 24px;
    font-weight: 600;
    text-transform: none;
}
.mb-4{
    margin-bottom: 24px;
}
.about_img{
    width: 40%;
    height: 500px;
    padding: 0px 24px;
}
.about_img img{
    width: 100%;
    height: 100%;
}
.about_details{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
.about_row{
    width: 50%;
}
.about_row h5{
    font-size: 18px;
    font-weight: 600;
    color: #091e3e;
}
.about_row h5 i{
    color: #06a3da;
    margin-right: 8px;
}
.btn_2{
    margin: 0px;
    padding:16px 48px;
}
.make_appointment{
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/carousel-1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    /* background: rgba(9, 30, 62, 0.495); */
}
.make_appointment::before{
    background: rgba(9, 30, 62, 0.85);
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
}
.make_appointment_content{
    padding: 48px 24px;
    width: 40%;
    z-index: 1;
}
.pt-1{
    padding-top: 48px;
    font-size: 48px;
}
.pt-2{
    padding-bottom: 48px;
}
.para{
    line-height: 1.5;
    font-size: 16.2px;
}
.make_appointment_form{
    width: 40%;
    z-index: 1;
    padding: 0px 24px;
    height: 100%;
}
.make_appointment_form_sub{
    background: #06a3dab3;
    padding: 48px;
    text-align: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.col_g{
    display: flex;
    flex-direction: column;
    /* gap: 16px; */
}
.col-12{
    width: 100%;
    /* padding: 0px 8px; */
    margin-top: 16px;
    display: flex;
    gap: 16px;
}
.btn_dark{
    color: #ffffff;
    background-color: #091E3E;
    border-color: #091E3E;
}
.btn-3{
    width: 100%;
    padding: 16px;
    
}
.our_service{
    padding: 48px 0px;
  
}
.service_container{
    display: flex;
    justify-content: center;
    width: 82.5%;
    margin: 0px auto;
    align-items: center;
    padding: 0px 24px;
}
.change_img{
    width: 41.66%;
    padding: 0px 24px;
    /* margin: auto; */
}
.change_img img{
    width: 100%;
}
.service_card_img img{
    width: 100%;
    height: 100%;
}
.text-dark{
    color: #091e3e;
    font-size: 48PX;
}
.h-flex{
    display: flex;
    gap: 48px;
}
.service_card{
    width: 50%;
}
.service_content{
    width: 58.33%;
    padding: 0px 24px;
}
.bg-light{
    background: #EEF9FF;
}
.text-align{
    text-align: center;
}
.m-0{
    margin: 0px;
}
.m-3{
    margin-top: 48px;
}
.text-style{
    font-size: 20px;
    font-weight: 500;
    color: #091E3E;
    line-height: 1.2;
}
.pa-2{
    padding: 24px;
}
.service_card_img{
    height: 175px;
}
.wh-1{
    height: 214px;
    width: 41.666%;
}
.t-flex{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.font-1{
    font-size: 28px;
}
.w-1{
    width: 60.333%;
}
.font-5{
    font-size: 16px;
}
.save-main{
    background-image: url("../img/carousel-1.jpg");
    background-size: cover;
    background-position: center;
    padding: 48px 12px;
    margin: 0 auto;
}
.main-sub{
    padding: 48px;
    background-color: rgb(6 163 218 / 85%);
    width: 58%;
}
.save_container{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 48px 0px;
}
.font-3{
    font-size: 48px;
}
.mb-4{
    margin-bottom: 8px;
}
.btn-white{
    background: #EEF9FF;
}
.ml-1{
    margin-left: 16px;
}
 .testimonial_main{
    background-image: url("../img/carousel-2.jpg");
    background-size: cover;
    background-position: center;
    padding: 48px 12px;
    margin: 0 auto;
}
.testimonial_container{
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    padding: 48px 0px;
}
.text-4{
    font-size: 20px;
    line-height: 1.5;
}
.client_name{
    border-top: 1px solid rgb(255, 255, 255, .3);
    padding: 12px 8px 0px 8px;
    width: fit-content;
}
.font-2{
    font-size: 24px;
    font-weight: 600;
    margin: 0px;
}
.testimonial_img{
    width: 120px;
    height: 120px;
}
.testimonial_img img{
    width: 100%;
}
.mb-2{
    margin-bottom: 24px;
}



.plan_all{
    padding: 48px 0px;
    display: flex;
    justify-content: center;
    gap: 48px;
}
.pricing_content{
    /* margin: 0 auto; */
    /* padding: 48px 0px; */
    width: 38%;
}
.text-blue{
    color: #06a3da;
    font-size: 24px;
    font-weight: 500;
}
.text-2{
    font-size: 40px;
}
.plan_details{
    width: 45%;
    display: flex;
    gap: 48px;
}
.pricing_card{
    width: 50%;
}
.pricing_card_img{
    height: 175px;
}
.pricing_card_img img{
    width: 100%;
    height: 100%;
}
.pricing_card_content{
    padding: 48px 24px;
    background: #eef9ff;
    border-bottom: 1px solid #06a3da;
}

.font-4{
    font-size: 38px;
}
.pa-1{
    padding: 48px;
}
.our_dentist{
    padding: 96px 0px;
    display:flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}
.dentist_card{
    width: 28.1%;
}
.img{
    height:360px;
    position: relative;
}
.img img{
    width: 100%;
    height: 100%;
}
.width-1{
    width: 21.3%;
}
.social_icon{
    padding: 6px;
    width:40%;
    position: absolute;
    bottom: -25px;
    left: 28%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    background-color: #EEF9FF;
}
.social_media{
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
    background: #06A3DA;
    color: white;
    border-radius: 2px;
    transition: .5s;
}

.dentist_content{
    padding:48px 24px 24px 24px;
    background-color: #eef9ff;
    transition: .9s ease-in-out;
}
.contain{
    font-weight: bold;
    font-family: arial;
    text-align: center;
    font-size: 24px;
    margin:0px;
}
.contain1{
    font-family: arial;
    text-align: center;
    font-size: 17px;
    margin: 8px 0px 0px 0px;
    color:#06A3DA;
    
}
.text-light{
    color: #06a3da;
}
.font-6{
    font-size: 24px;
    font-weight: 600;
}
.dentist_content:hover{
    box-shadow:5px 0px 15px #000000b3;
}


.footer{
    background: #091e3e;
    /* height: 290px; */
    padding: 48px 0px;
    margin-top: 75px;
    position: relative;
}
.newslatter{
    position: absolute;
    top: -33%;
    padding-top: 48px;
    margin: 0 auto;
    width: 100%;
    z-index: 2;
}
.news_container{
    background: #06a3da;
    /* height: 200px; */
    width: 85%;
    padding: 48px;
    margin: 0 auto;
}
.px-2{
    padding: 16px 24px;
}
.form_style{
    max-width: 600px;
    margin: 0 auto;
}
.form_flex{
    display: flex;
    justify-content: center;
    align-items: center;
}
.input_control{
    width: 75%;
    height: 100%;
    padding: 20px;
}
.footer_content_flex{
    display: flex;
    justify-content: center;
    padding-top: 48px;
    flex-wrap: wrap;
}
.footer_content{
    padding:24px;
    width: 20%;
}
.link_list{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.link_list a i{
    color: #06A3DA;
    /* font-weight: 400; */
    font-size: 14px;
    margin-right: 4px;
}
.link_list a{
    font-weight: 400;
    color: #EEF9FF;
}
.social_flex{
    display: flex;
    gap:8px;
}
.social_media_icon{
    width: 46px;
    height: 46px;
    background: #06a3da;
    color: #ffffff;
    font-size: 20px;
    text-align: center;
    align-content: center;
    border-radius: 2px;
    transition: .5s all ease;
}
.last{
    background: #051225;
    padding: 24px 0px;
    margin: 0 auto;
}
.last_container{
    display: flex;
    margin: 0 auto;
    width: 90%;
}
.copyright_content{
    width: 50%;
    color: #EEF9FF;
}
.presented_by{
    text-align: end;
    line-height: 1.5;
}
.presented_by a{
    color: #EEF9FF;
    border-bottom: 1px solid #EEF9FF;
}
.copyright_content span{
    border-bottom: 1px solid #EEF9FF;
}
.color-1:hover{
    color: #000000;
    background: #f57e57;
}
.icon_fixed{
    color: #EEF9FF;
    background: #06a3da;
    width: 46px;
    height: 46px;
    transition: .5s;
    font-size: 20px;
    text-align: center;
    line-height: 45px;
    position: fixed;
    right: 45px;
    bottom: 45px;
    border-radius: 2px;
    z-index: 99;
    
}




@media (max-width:325px) {
    .plan_all{
        display: block;
    }
    .newslatter{
        box-sizing: border-box;
    }
    .news_container{
        box-sizing: border-box;
    }
    .h-flex{
        display: block;
    }
    .service_container{
        display: block;
    }
    .icon_fixed{
        bottom: 10%;
        left: 50%;
    }
}