@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Sora:wght@300;400;500;600;700;800&display=swap');

html{
    scroll-behavior: smooth;
}

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/* flexbox */

.flex{
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flex.center{
    justify-content: center;
}

.flex.start{
    justify-content: flex-start;
}
.flex.ais{
    align-items: start;
}

.flex.nowrap{
    flex-wrap: nowrap;
}

.flex.wrap-reverse{
    flex-wrap: wrap-reverse;
}

.flex.column{
    flex-direction: column;
}

.flex.stretch{
    align-items: stretch;
}


.column-1 { flex-basis: 8.333%; }
.column-2 { flex-basis: 16.666%; }
.column-3 { flex-basis: 25%; }
.column-4 { flex-basis: 33.333%; }
.column-5 { flex-basis: 41.666%; }
.column-6 { flex-basis: 50%; }
.column-7 { flex-basis: 58%; }
.column-8 { flex-basis: 77%; }

#overlay{
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    z-index: 99;
    cursor: pointer;
    display: none;
}

#overlay.active{
    display: block;
}

:root{
    /* color variables */
    /* --primary: #3FBBC0; */
    --primary: #A50080;
    --text: #444444;

    /* font family variable */
    --heading: "Poppins", sans-serif;
    --body: 'Sora', sans-serif;
}

h1,
h2,
h3,
h4,
h6{
    font-family: var(--heading);
}

.section{
    padding: 40px 100px;
}

.button{
    color: #fff;
    background: var(--primary);
    text-decoration: none;
    font-size: 15px;
    padding: 10px 30px;
    border-radius: 40px;
    display: inline-block;
    border: 0;
    outline: 0;
    font-family: var(--body);
    cursor: pointer;
    margin-top: 10px;
}


body{
    width: 100%;
    height: 100vh;
    background: #f6f6f6;
    color: var(--text);
    font-family: var(--body);
}


.top-bar{
    padding: 10px 100px;
    background: var(--primary);
    color: #fff;
}

.top-bar div{
    display: flex;
    align-items: center;
}

.top-bar div i{
    font-size: 24px;
    margin-right: 15px;
}

.top-bar div a{
    color: #fff;
    text-decoration: none;
}

header{
    padding: 10px 100px;
    width: 100%;
    background: #fff;
}

.logo img{
    height: 70px;
}

.menuBtn{
    width: 40px;
    height: 40px;
    border-radius: 5px;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 3px 4px 0px var(--primary);
    display: none;
}

.nav-menu ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu ul li{
    list-style: none;
    padding: 5px 15px;
    margin-right: 3px;
    border-left: 1px solid var(--primary);
    border-right: 1px solid var(--primary);
}

.nav-menu ul li a{
    text-transform: uppercase;
    color: #000;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 1.5px;
}

.nav-menu ul li:hover a{
    color: var(--primary);
}

.appointment-button{
    color: var(--primary);
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid var(--primary);
    transition: .2s ease-in-out;
    border-radius: 5px;

    box-shadow: 3px 5px 0px var(--primary);

}

.appointment-button:hover{
    border-radius: 0;
    box-shadow: none;
}

.BannerSlider .splide__arrow{
    width: 4em;
    height: 4em;
    border-radius: 5px;
    background: var(--primary);
    border: 1px solid #000;
}

.BannerSlider .splide__arrow svg{
    fill: #fff;
}

.feature{
    width: 300px;
    background: #fff;
    border-radius: 30px;
    box-shadow: 10px 10px 10px rgba(0,0,0,0.08);
    border: 1px solid #8888;
    margin: 20px auto;
    padding: 20px;
    transition: .2s ease-in-out;
}

.feature .icon{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary);
    margin-bottom: 15px;
}

.feature .icon img{
    width: 50px;
}

.feature h4{
    font-size: 18px;
}

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

.feature:hover{
    transform: translateY(-10px);
    border-radius: 5px;
    box-shadow: 10px -9px 0px var(--primary);
}

.cta{
    width: 100%;
    background: var(--primary);
    text-align: center;
    min-height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.cta h3{
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.cta p{
    color: #f4f4f4;
}

.cta a.cta-btn{
    display: inline-block;
    margin: 20px auto;
    color: #fff;
    text-transform: uppercase;
    font-size: 16px;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 40px;
    padding: 10px 40px;
}

.cta a.cta-btn:hover{
    background: #fff;
    color: var(--primary);
}

.about-content h4{
    font-size: 22px;
    color: var(--primary);
    padding: 3px 10px;
    border-left: 3px solid var(--primary);
    margin-bottom: 20px;
}

.about-content h2{
    font-size: 26px;
}

.about-content h2 span{
    color: var(--primary);
}

.about-content p{
    font-size: 16px;
    text-align: justify;
    line-height: 28px;
    margin-bottom: 15px;
}

.about-image{
    width: 500px;
    height: 500px;
    background: var(--primary);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: rotate(-30deg) translateX(-13px) translateY(50px);
    overflow: hidden;
    margin-bottom: 100px;
}

.doctor-image{
    width: 100%;
    text-align: center;
    margin: 0px auto;
}


.doctor-image img{
    width: 60%;
    display: block;
    text-align: center;
    margin: 0px auto;
}

.about-image img{
    transform: rotate(30deg);
}

.about-image.right{
    transform: rotate(-30deg) translateX(130px) translateY(100px);

}

.title{
    display: block;
    text-align: center;
    font-size: 32px;
    margin-bottom: 25px;
}

.service-box{
    display: flex;
    align-items: center;
    padding: 15px 30px;
    border: 1px solid var(--primary);
    border-radius: 5px;
    width: 420px;
    height: 100px;
    margin: 20px auto;
    text-decoration: none;
    color: #fff;
    background: var(--primary);
}

.service-box .number{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: 1px solid #fff;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
}


.service-box p{
    font-size: 13px;
}

.service-box:hover{
    background: var(--primary);
    color: #fff;
}

.service-box:hover .number{
    background: #fff;
    color: var(--primary);
}

.archive{
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.archive-icon{
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #fff;
    margin-bottom: 15px;
}

.archive-icon img{
    width: 40px;
}

.archive h4{
    font-size: 20px;
}

.archivement{
    width: 100%;
    background: linear-gradient(125deg, #0b091f, #333);
}

.testimonial-box{
    width: 90%;
    background: #F0FAFA;
    padding: 20px;
    border: 2px solid #f9f9f9;
    /* box-shadow: 5px -5px 50px 10px rgba(0,0,0,0.08); */
    border-radius: 30px;
}

.testimonial-box i {
    font-size: 26px;
    color: #B2E4E6;
}


.author{
    margin: 10px;
    padding: 10px;
    border-radius: 10px;
    background: #ffff;
    padding: 10px 30px;
    display: inline-block;
}

.testimonialSlider .splide__arrow--prev{
    left: -3.5em;
}


.testimonialSlider .splide__arrow{
    background: var(--primary);
    width: 3em;
    height: 3em;
    border-radius: 5px;
}

.testimonialSlider .splide__arrow svg{
    fill: #fff;
}

footer{
    width: 100%;
    background: #e8e8e8;
}

.footer-menu{
    list-style: none;
}

.footer-menu a{
    color: #000;
    text-decoration: none;
    padding: 5px 10px;
    display: block;
    /* text-transform: uppercase; */
}

.footer-menu a:hover{
    color: var(--primary);
}

.footer{
    width: 100%;
    padding: 10px;
    text-align: center;
    background: #000;
    font-family: var(--heading);
    color: #fff;
}

.footer a{
    color: var(--primary);
    text-decoration: none;
}

.floating{
    position: fixed;
    bottom: 20px;
    left: 20px;
}

.floating a{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--i);
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    z-index: 999;
    margin-top: 10px;
}

.to-top{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border: 2px dashed var(--primary);
    font-size: 28px;
    text-decoration: none;
    z-index: 999;
    margin-top: 10px;
    position: fixed;
    bottom: 20px;
    right: 20px;
    transition: .2s ease-in-out;
}

.to-top a{
    color: var(--primary);
    z-index: 9999;
    font-size: 38px;
    padding-top: 8px;
}

.to-top:hover{
    background: var(--primary);
}

.to-top:hover a{
    color: #fff;
}

.appointment-sidebar{
    width: 400px;
    height: 100vh;
    background: #fff;
    position: fixed;
    top: 0;
    right: -400px;
    padding: 30px;
    box-shadow: 10px 5px 10px rgba(0,0,0,0.05);
    z-index: 999;
    transition: .3s ease-in-out;
}

.appointment-sidebar.active{
    right: 0px;
}

.close-sidebar{
    font-size: 13px;
    padding: 4px 10px;
    background: #f4f4f4;
    display: inline-block;
    border-radius: 5px;
    cursor: pointer;
}


.appointment_form{
    margin-top: 40px;
}

.appointment_form h3{
    font-size: 26px;
    margin-bottom: 30px;
}


.appointment_form form input,
.appointment_form form textarea{
    display: block;
    width: 97.5%;
    margin-bottom: 15px;
    padding: 10px;
    font-size: 14px;
    font-family: var(--heading);
    border: 1px solid #8888;
    border-radius: 4px;
    outline: 0;
    color: #555;
    resize: none;
}

.appointment_form form .column-6 input,
.appointment_form form .column-6 textarea{
    width: 95%;
}

.appointment_form form input:focus,
.appointment_form form textarea:focus{
    border: 1px solid var(--primary);
}

.other-options{
    margin-top: 20px;
    border-top: 1px solid #8888;
    padding-top: 20px;
}

.other-options a{
    display: block;
    text-decoration: none;
    margin: 10px auto;
    border: 2px solid var(--i);
    padding: 5px;
    border-radius: 30px;
    display: flex;
    font-size: 15px;
    font-weight: bold;
    align-items: center;
    color: #000;

}

.other-options a.call{
    border: 2px solid red;
}

.other-options a.call i{
    background: red;
}

.other-options a i{
    min-width: 40px;
    min-height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-size: 24px;
    color: #fff;
    border-radius: 50%;
    background: var(--i);
}

.page-header{
    width: 100%;
    height: 300px;
    /* background:linear-gradient(0deg, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('../img/page-header.jpg'); */
    background: url('../img/page-header.jpg');
    background-size: cover;
    background-position: center center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header h2{
    font-size: 56px;
}

.contact-details{
    background: #0F3F67;
    color: #f5f5f5;
    padding: 30px;
}

.contact-list{
    display: flex;
    align-items: center;
    margin: 20px 0px;
}

.contact-list p{
    display: block;
    width: 100%;
    color: #777;
    font-size: 13px;
}

.contact-list i{
    min-width: 35px;
    min-height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #f5f5f5;
    color: #0F3F67;
    font-size: 23px;
    margin-right: 15px;
}

video{
    border-radius: 10px;
    border: 3px solid #000;
    box-shadow: 8px 8px 0px var(--primary);
    margin-bottom: 10px auto;
}

.gallery img{
    width: 90%;
    height: 250px;
    margin-bottom: 25px;
    object-fit: cover;
}

.service-card{
    width: 90%;
    margin: 25px auto;
}

.service-card img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    border: 1px solid #8888;
    box-shadow: 20px 8px 50px rgba(0,0,0,0.05);
}

.service-card h4 a{
    color: #000;
    text-decoration: none;
    font-size: 22px;
}

.service-card h4 a:hover{
    color: var(--primary);
}


.feature-image{
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border: 3px solid #8888;
    border-radius: 20px;
    box-shadow: 10px 10px 0px var(--primary);
    margin-bottom: 30px;
}

ul.list{
    padding: 10px 20px;
    list-style-type: none;
}

ul.list i{
    color: var(--primary);
}

ul.list li{
    padding: 5px 0px;
}

.sidebar{
    padding: 0px 40px;
}

.widget{
    width: 100%;
    background: var(--primary);
    border-radius: 20px;
    color: #fff;
    padding: 20px;
    margin-bottom: 20px;
}

.services-list{
    padding: 10px;
    list-style: none;
}

.services-list li{
    padding: 10px;
    margin-bottom: 5px;
    background: #000;
}

.services-list li a{
    color: #fff;
    text-decoration: none;
}

.services-list li:hover{
    background: #fff;
}

.services-list li:hover a{
    color: #000;
    display: block;
    width: 100%;
}

.enquiry-form input,
.enquiry-form textarea{
    width: 100%;
    padding: 10px;
    font-family: var(--heading);
    font-size: 16px;
    background: #fff;
    border-radius: 5px;
    margin-bottom: 10px;
    border: 0;
    outline: 0;
}


.enquiry-form button{
    padding: 10px 30px;
    border: 0;
    outline: 0;
    cursor: pointer;
    background: #000;
    color: #fff;
    font-family: var(--heading);
    font-size: 16px;
    text-transform: uppercase;
    border-radius: 5px;
}



.tabs input{
    display: none;
}

.tabs label{
    color: #000;
    padding: 10px 20px;
    margin: 10px;
    cursor: pointer;
    display: inline-block;
}

.tabs input:checked + label{
    background: var(--primary);
    color: #fff;
    border-radius: 5px;
}

.gallery section{
    transform: scale(0);
    display: none;
    margin: 30px auto;
    transition: .4s ease-in-out;
}

#all:checked ~ #all-tab,
#patients:checked ~ #patients-tab,
#operation:checked ~ #operation-tab,
#archivement:checked ~ #archivement-tab{
    display: block;
    transform: scale(1);
    transition: .4s ease-in-out;

}


