

/* Use fewer words to explain subimpacts */

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: MavenPro, Arial, Helvetica, sans-serif;
   
    
}

/* Compress and reduce video size, maybe use webm format */

:root {

    --base-bg-color: white;
    --nav-elements-color: black;
}


/* 
.light-mode{
    transition: all 0.7s ease-in;
    --base-bg-color: #002B64;
    --header-color: #002B64;
    --header-shadow:0px 0px 30px rgba(0, 0, 0, 0.574);

    --logo-color: url(../assets/logo-light.png);
    --logo-text-color: white;
    --nav-container-color: #002B64;
    --nav-border-color: rgba(0, 0, 0, 0.573);
    --nav-elements-color: white;
    --bar-color: white;
    --hero-title-div: #002b6487;
}

.dark-mode{
    transition: all 0.7s ease-in;
    --base-bg-color: black;
    --header-color: rgb(0, 0, 91);
    --header-shadow:0px 0px 30px rgba(173, 216, 230, 0.326);
    --logo-color: url(../assets/logo-dark.png);
    --logo-text-color: white;
    --nav-container-color: rgb(0, 0, 91);
    --nav-border-color: rgba(255, 255, 255, 0.71);
    --nav-elements-color: white;
    --bar-color: white;
    --hero-title-div: rgba(0, 0, 91, 0.369);
} */


/* section{
    border: 2px solid blue;
    height: 100vh;
    width: 100%;
} */




/* 
.hero-section{
    height: 100vh;
    display: grid;
    justify-items: center;
    align-items: center;
    border: none;
    overflow: hidden;
    
}

.hero-section-div{
    height: 100%;
    width: 100%;
    border-right: none;
    background-color: var(--header-color);
    box-shadow: var(--header-shadow);
    transition: all 0.3s ease-in-out;
    display: grid;
    align-items: center;
    justify-items: center;
    position: relative;
}

.hero-img{
    position: absolute;
    object-fit: cover;
    object-position: 25% 50%;

    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-position: center;
    background-size: cover;
}


.hero-section-text{
    position: absolute;
    display: grid;
    gap: 10px;
    padding: 40px 10px 40px 10px;
    background-color: rgba(76, 0, 91, 0.198);
    display: grid;
    justify-items: center;
    align-items: center;
    text-align: center;
    border-radius: 15px;
    z-index: 1;
    color: rgb(62, 0, 62);
    gap: 25px;


    width: 100%;
    border-radius: 0px;
    border-left: none;
    border-right: none;
    backdrop-filter: blur(5px);
    
}

.hero-section-header{
    font-size: 43px;
    font-weight: bolder;
    border-bottom: 1px solid rgba(74, 0, 128, 0.353);
    padding-bottom: 20px;
    max-width: 450px;
}

.hero-section-paragraph{
    font-size: 20px;
    font-weight: bold;
    max-width: 400px;
}

.hero-section-bg {

    background-color: rgba(238, 163, 255, 0.164);
    
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: 100vw;
}
    




.hero-form{
    display: grid;
    justify-items: center;
    align-items: center;
    gap: 25px;
}

.hero-button-container{
    position: relative;
    display: grid; 
    align-items: center;
    justify-items: center;
    width: 150px;
    height: 45px;

}

.hero-button-bg{
    background-color: rgb(128, 29, 182);
    animation: pulse1 2.5s infinite;
    height: 45px;
    width: 150px;
    border-radius: 10px 0px;


}

.hero-button{
   
    z-index: 1;
    position: absolute;
    top: 0;
    appearance: none;
    width: 150px;
    height: 45px;
    border: 1px solid rgba(135, 135, 135, 0.197);
    border-radius: 10px 0px;

    background-color: rgb(64, 7, 94);

    color: white;
    font-weight: bolder;
    font-size: 16px;
    transition: all 0.3s ease-in;
    cursor: pointer;
    display: grid;
    justify-items: center;
    align-items: center;

    overflow: hidden;


}




.show-first-text{
    transition: all 0.3s ease-in;
    position: absolute;
    overflow: hidden;
    opacity: 1;

}
.show-second-text{
    transition: all 0.2s ease-in;
    position: absolute;
    overflow: hidden;
    transform: translateX(200%);
    opacity: 0;

}

.hero-button.active{
    transition: all 0.2s ease-in;
    background-color: rgba(0, 255, 34, 0.364);
    
}


.hero-button.active~.hero-button-bg{
    opacity: 0;
    color: red;
    animation: none;
}


.hero-button.active .show-first-text{
    transition: all 0.2s ease-in;
    transform: translateX(-200%);
    opacity: 0;

}

.hero-button.active .show-second-text{
    transition: all 0.2s ease-in;
    transform: translateX(0%);
    opacity: 1;

}


.scroll-down-notif{
    position: absolute;
    z-index: 1;

    width: 70px;
    height: 70px;

    bottom: 90px;
    animation: bobdown 2.5s infinite;
 
    color: rgb(55, 0, 106);
    display: grid;
    justify-items: center;
    align-items: center;
    font-size: 13px;
 
    cursor: pointer;
    white-space: nowrap;
    user-select: none;
    text-align: center;
    display: grid;
    justify-items: center;
    align-items: start;

}



.scroll-down-text {
    width: 100%;
    align-self: end;
}

.scroll-down-notif img{
    width: 40px;
    height: 40px;
} */



@keyframes pulse1 {
    0% {
      transform: scale(1, 1);
    }
    50% {
      opacity: 0.3;
    }
    100% {
      transform: scale(1.2, 1.6);
      opacity: 0;
    }
}

@keyframes pulse2 {
    0% {
      transform: scale(1, 1);
    }
    50% {
      opacity: 0.3;
    }
    100% {
      transform: scale(1.1, 1.6);
      opacity: 0;
    }
}


@keyframes bobdown {
    0% {
      transform: translateY(0px);
    }
    50% {
        transform: translateY(20px);
       
      }
    100% {
      transform: translateY(0px);
     
    }


}




.sub-container{
    position: relative;
    /* border: 2px solid red; */
}

video {
    position: fixed;
    min-height: 100%;
    min-width: 100%;
    top: 0px;

    z-index: -1;
    object-fit: cover;
    object-position: center;
}


.impact-div{
    padding-top: 90px;
    /* padding-bottom: 90px; */
    transition: all 0.3s ease-in;
    color: rgb(68, 0, 68);
    /* background-color: rgb(230, 197, 255); */
}

.impact-div.active{
    transition: all 1s ease-in;
    color: white;
}



.impact-title{
    width: 100%;
    display: grid;
    /* justify-items: center; */
    align-items: center;
    /* color: white; */
    padding: 20px;
    /* font-size: 30px; */
    font-size: 100px;
    font-weight: bold;
    /* padding-bottom: 0px; */
    /* width: 250px; */
    /* white-space: nowrap; */
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    line-height: 100px;
    
}

.impact-subtext,
.services-subtext{
    font-size: 30px;
    padding: 20px;
    padding-bottom: 40px;
    /* width: min(100%, 850px); */
}

.impact-cards-collection{
    /* border: 1px solid white; */
    height: 100%;
    /* width: 50%; */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    /* grid-template-rows: repeat(4, 1fr); */
    /* grid-template-columns: repeat(3, 1fr); */
    gap: 40px;
    padding: 20px;
    /* display: grid; */
    align-items: start;
    justify-items: center;
    /* border: 1px solid rgba(255, 255, 255, 0.365); */
    /* border-right: none; */
    /* border-left: none; */

}

.impact-cards-collection > div{
    /* border: 1px solid white; */
    border-radius: 40px 0px;
    /* height: 550px; */
    width: 400px;
    /* background-color: rgb(68, 0, 68); */
    display: grid;
    justify-items: center;
    grid-template-rows: 300px 45px 1fr;
    /* color: white; */
    padding-bottom: 20px;
    gap: 10px;
    /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.574); */
    color: rgb(68, 0, 68);
    overflow: hidden;

   
}

.subimpact-title{
   font-weight: bolder; 
   font-size: 26px;
   display: grid;
   justify-self: start;
   align-items: center;
   text-align: start;
}

.subimpact-img-1,
.subimpact-img-2,
.subimpact-img-3,
.subimpact-img-4,
.subimpact-img-5,
.subimpact-img-6,
.subimpact-img-7{

    width: 100%;
    border-radius: 40px 0px;
;
    overflow: hidden;
}


.subimpact-img-7{
    object-position: center;
}

.subimpact-img-1 > img,
.subimpact-img-2 > img,
.subimpact-img-3 > img,
.subimpact-img-4 > img,
.subimpact-img-5 > img,
.subimpact-img-6 > img{
    width: 100%;

    background-position: center;

    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 30%;
}

.subimpact-img-7 > img{
    width: 100%;

    background-position: center;

    background-repeat: no-repeat;
    background-size: cover;
    transform: translate(0px, 0px);
}


.subimpact-text{
    padding: 10px;
    width: 100%;
    font-size: 18px;
    text-align: start;
    border-top: 1px solid rgba(128, 128, 128, 0.452);
}


.take-me-there-div{
    width: 100%;
    padding-left: 10px;
    display: flex;
    gap: 5px;
    text-decoration: none;
    color: rgb(68, 0, 68);

    /* height: 20px; */
}

.right-arrow{
    display: grid;
    align-items: center;
    justify-items: center;
}

.right-arrow > img {
    width: 20px;
}









.doctor-div{
    padding-top: 90px;
    transition: all 0.3s ease-in;
    color: rgb(68, 0, 68);
    /* background-color: rgb(230, 197, 255); */
}
/* 
.impact-div.active{
    transition: all 1s ease-in;
    color: white;
} */



.doctor-title{
    width: 100%;
    display: grid;
    /* justify-items: center; */
    align-items: center;
    /* color: white; */
    padding: 20px;
    /* font-size: 30px; */
    font-size: 100px;
    font-weight: bold;
    /* padding-bottom: 0px; */
    /* width: 250px; */
    /* white-space: nowrap; */
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    line-height: 100px;
    
}

.doctor-subtext,
.services-subtext,
.panel-subtext{
    font-size: 30px;
    padding: 20px;
    padding-bottom: 40px;
    /* width: min(100%, 850px); */
}

.doctor-cards-collection{
    height: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 40px;
    padding: 20px;
    align-items: center;
    justify-items: center;
}

.doctor-cards-collection > div{
    display: grid;
    /* border: 1px solid white; */
    border-radius: 40px 0px;
    height: 400px;
    width: min(100%, 400px);
    /* width: 100%; */
   
    justify-items: center;
    grid-template-rows: 250px 40px 1fr;

    padding-bottom: 20px;

    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.574);
    color: white;
    position: relative;
    overflow: hidden;

   
}

.subdoctor-title{
   font-weight: bolder; 
   font-size: 20px;
   display: grid;
   justify-items: center;
   align-items: center;
   text-align: center;
   /* background-color: rgb(55, 0, 106); */
   /* height: 100%; */
   width: 100%;
   color: rgb(230, 197, 255);
   padding: 20px;
   /* margin-top: 10px; */
   /* border-radius: 40px 0px 0px 0px; */
   /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.574); */
   /* position: absolute; */
}

.subdoctor-img-1,
.subdoctor-img-2,
.subdoctor-img-3,
.subdoctor-img-4{ 
    width: 100%;
    height: 100%;
    position: absolute;
     /* background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 40px 0px 0px 0px;
    position: absolute;
    height: 100%;
    box-shadow: inset -10px -200px 150px rgb(55, 0, 106); */

}

.subdoctor-img-1 > img,
.subdoctor-img-2 > img,
.subdoctor-img-3 > img,
.subdoctor-img-4 > img{ 
    width: 100%;   
    object-fit: cover;
    object-position: center;
    position: absolute;
    height: 100%;
}

.doctor-overlay{
    position: absolute;
    height: 100%;
    width: 100%;
    box-shadow: inset -10px -200px 150px rgb(68, 0, 68);
}



/* .subdoctor-img-3 > img{
    object-position: 40%;

} */




.subdoctor-text{
    padding: 20px;
  
    width: 100%;
    font-size: 20px;
    text-align: center;
   
    border-radius: 0px 0px 40px 0px;

    color: rgb(230, 197, 255);
    position: absolute;
    bottom: 0px;
    display: grid;
    align-items: end;
    
}

.subdoctor-job{
    font-size: 13px;
    font-weight: bold;
}

.subdoctor-paragraph{
    font-size: 11px;
}




.more-info-div{
    /* border: 1px solid red; */
    border-radius: 5px;
    padding: 10px;
}

.more-info-button-1,
.more-info-button-2,
.more-info-button-3,
.more-info-button-4{
    border: 1px solid rgb(230, 197, 255);
    border-radius: 10px 0px;
    padding: 5px;
    background-color: rgb(230, 197, 255);
    color: rgb(68, 0, 68);
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.574);
}


.more-info-pop-up{
    position: fixed;
    background-color: rgba(128, 128, 128, 0.344);
    z-index: 5;
    height: 100%;
    width: 100%;
    top: 0px;
    left: 0px;
    display: grid;
    justify-items: center;
    align-items: center;
    padding: 20px;
    display: none;
}

.more-info-pop-up.active{
    display: grid;
}

.pop-up-card{
    /* border: 1px solid rgb(230, 197, 255); */
    background-color: rgb(68, 0, 68);
    display: grid;
    grid-template-rows: 23px 200px 1fr;
    
    padding: 20px;
    gap: 20px;


    border-radius: 40px 0px;
    height: 600px;
    width: min(100%, 400px);
     box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.574);

}


.pop-up-title-div{
    /* border: 1px solid red; */
    display: grid;
    justify-items: center;
    align-items: center;
}

.pop-up-title{
    /* background-color: rgb(230, 197, 255); */
    /* padding: 5px; */
    color: rgb(68, 0, 68);
    color: rgb(230, 197, 255);
    border-radius: 5px;
    font-size: 19px;
    /* box-shadow:inset 0px 0px 30px rgba(0, 0, 0, 0.574); */
    font-weight: bold;
}

.pop-up-photo-div{
    /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.574); */
    width: 100%;
    height: 100%;
    position: relative;
    border-radius: 40px 0px;
    overflow: hidden;
}

.pop-up-photo{
    /* width: 100%;   
    
    height: 100%; */
    
    
    /* position: absolute; */

    width: 100%;   
    object-fit: cover;
    object-position: start;
    position: absolute;
    /* height: 100%; */
}

.job-title{
    color: rgb(68, 0, 68);
    text-align: center;
    /* padding-bottom: 10px; */
    font-weight: bold;
    font-size: 13px;
}

.pop-up-details-div{
    overflow: auto;
    /* border: 1px solid rgb(230, 197, 255); */
    padding: 10px;
    border-radius: 10px;
    background-color: rgba(230, 197, 255, 0.725);

    color: rgb(68, 0, 68);
    box-shadow:inset 0px 0px 30px rgba(0, 0, 0, 0.574);
}


.pop-up-details{
    display: grid;
    grid-auto-flow: row;
    gap: 20px;
}




.book-an-appointment-div{
    position: relative;
    display: grid; 
    align-items: center;
    justify-items: center;
    /* width: 150px;
    height: 45px; */
    width: 90%;
    justify-self: center;
}

.book-an-appointment-bg{
    background-color: rgba(205, 111, 212, 0.833);
    animation: pulse2 2.5s infinite;
    height: 50px;
    width: 100%;
    border-radius: 10px 0px;
}

.book-an-appointment-button{
    z-index: 1;
    position: absolute;
    top: 0;
    appearance: none;
    width: 100%;
    height: 50px;
    border-radius: 10px 0px;
    font-weight: bolder;
    font-size: 16px;
    transition: all 0.3s ease-in;
    cursor: pointer;
    display: grid;
    justify-items: center;
    align-items: center;
    overflow: hidden;
    border: 3px solid rgb(151, 68, 151);
    color: rgb(68, 0, 68);
    background-color: rgb(230, 197, 255);
    text-align: center;
    padding: 5px;
    font-size: 15px;
    text-decoration: none;
}

/* .hero-button-bg{
    background-color: rgb(128, 29, 182);
    animation: pulse1 2.5s infinite;
    height: 45px;
    width: 130px;
    border-radius: 10px 0px;

} */

/* .hero-button{

   

} */



/* Review section */

.es-header-btn{
    background-color: red;
}

.reviews-section{
    padding-top: 90px;
}

.feed-powered-by-es{
    display: none;
}


.es-num-reviews{
    background-color: red;
}





/* Panels section */

.panel-section{
    padding-top: 90px;
    color: rgb(68, 0, 68);
}

.panel-title{
    width: 100%;
    display: grid;
    align-items: center;
    padding: 20px;
    font-size: 100px;
    font-weight: bold;
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    line-height: 100px;
    
}

/* .panel-subtext{

} */

.panel-logo-div{
    /* border: 1px solid forestgreen; */
    display: grid;
    justify-items: center;
    padding: 10px;
    padding-bottom: 20px;
}
.panel-logos{
    display: grid;
    grid-template-columns: repeat(10, 100px);
    /* width: 100%; */
    /* height: 800px; */
    /* border: 1px solid blue; */
    justify-items: center;
    align-items: center;
    gap: 20px;
    width: fit-content;
}

@media (max-width: 1140px){

    .panel-logos{
        grid-template-columns: repeat(6, 100px);
    }

}

@media (max-width: 700px){

    .panel-logos{
        grid-template-columns: repeat(3, 100px);
    }

}

.logo-grid{
    /* border: 1px solid red; */
    height: 100px;
    width: 100px;
    display: grid;
    align-items: center;
}

.logo-grid > img{
    width: 100%;
}



/* Contact section */



.contact-section{
    padding-top: 90px;
}





.contact-content {
    position: relative;
    height: 100%;
    display: grid;
    /* padding-top: 100px; */
    color: rgb(68, 0, 68);
}

.contact-header{
    /* padding-top: 120px; */
    color: rgb(68, 0, 68);
    justify-items: center;
    align-items: center;
    text-align: center;
    font-size: 40px;
    /* background-color: rgba(26, 0, 51, 0.589); */
    /* background-color: rgb(230, 197, 255); */
    /* background-color: rgb(131, 131, 131); */
    /* padding: 130px 0px 90px 0px; */

    /* box-shadow: inset 0px 0px 30px rgb(0, 0, 0); */
}

.contact-header > h1 {
    display: grid;
    /* border-bottom: 1px solid rgba(128, 128, 128, 0.651); */
    /* padding-bottom: 40px; */
    font-size: 50px;
    padding-bottom: 40px;
}

@media (max-width: 640px){

    .contact-header h1{
        /* font-size: 30px; */
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 40px;
    }

}

@media (max-width: 340px){

    .contact-header h1{
        font-size: 30px;
    }

}

.details-container {
    /* border-top: 1px solid rgba( 255, 255, 255, 0.18 ); */
    /* background-color: rgb(230, 197, 255); */
    /* background-color: rgb(14, 0, 51); */
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    grid-template-rows: repeat(auto-fit, minmax(240px,1fr));
    align-items: start;
    justify-items: center;
    /* padding-top: 80px; */
    /* padding-bottom: 20px; */

    
}

.contact-icon{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 15px;

    background: rgba(148, 148, 148, 0.25);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    /* border-radius: 10px; */
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    
}

.contact-icon > img {
    width: 100%;
    height: 100%;
}

.details {

    display: grid;
    align-items: start;
    justify-items: center;
    width: 250px;
    height: 190px;
    grid-template-rows: 80px 30px 1fr;
}

.contact-subject {
    height: 40px;
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    font-weight: 600;
    
}

.contact-detail {
    
    padding: 15px;
    background: rgba(148, 148, 148, 0.25);
    box-shadow: 0 8px 32px 0 rgba(116, 31, 135, 0.37);
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    font-size: 12px;
    text-align: center;
    color: rgb(68, 0, 68);
    /* font-weight: bold; */
}

.contact-detail > a {

    color: rgb(68, 0, 68);
    /* font-weight: bold; */
    text-decoration: none;

}



.contact-form {

    display: grid;

    position: relative;

    bottom: 0px;
    align-self: end;
    /* background-color: rgb(230, 197, 255); */
    width: 100%;
    /* display: none; */
    

}

fieldset {
    font-size: 30px;
    /* padding: 20px; */
    border: none;
    /* border-top: 1px solid rgba( 255, 255, 255, 0.18 ); */
    color: rgb(55, 0, 106);
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    display: grid;
    justify-items: center;
    align-items: start;
    gap: 20px;
    /* background-color: rgb(230, 197, 255); */
}

legend{
    text-align: center;
    width: 100%;
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    padding-bottom: 15px;
}

.form-container {
    display: grid;
    align-items: center;
    justify-items: start;
    row-gap: 10px;
    width: min(100%,300px);
    /* width: 200px; */
}

.input-container {
    height: 30px;
    width: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
    

}

.input-container > input {
    appearance: none;
    border: 1px solid gray;
    width: 100%;
    height: 30px;
    padding-left: 10px;
    color: rgb(55, 0, 106);

    background: rgba(148, 148, 148, 0.25);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    font-size: 15px;

}

::placeholder {
    color: rgb(55, 0, 106);
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    font-size: 15px;

}

.text-container{
    width: 100%;
}

.text-container > textarea {
    appearance: none;
    border: 1px solid gray;
    width: min(100%,300px);
    width: 100%;
    height: 200px;
    padding-left: 10px;
    padding-top: 10px;
    resize: none;
    color: rgb(55, 0, 106);
    
    background: rgba(148, 148, 148, 0.25);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    font-family: MavenPro, Arial, Helvetica, sans-serif;
}

.text-container {
    height: 200px;
}

.submit-btn {
    width: min(100%, 300px);
    height: 30px;
    color: rgb(230, 197, 255);
    
    background: rgb(68, 0, 68);
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 4px );
    -webkit-backdrop-filter: blur( 4px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    font-weight: 600;
}
.submit-btn:hover {
    background: rgb(135, 0, 135);
}




/* Maps section */

.maps-section{
   padding-top: 90px;
   /* background-color: rgb(230, 197, 255); */
   display: grid;
   justify-items: center;
   align-items: center;

}

.maps-title{
    font-size: 50px;
    font-weight: bold;
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    line-height: 100px;
    text-align: center;
    color: rgb(68, 0, 68);
}

.maps-container{
    display: grid;
    align-items: center;
    justify-items: center;
    width: min(100%, 900px);


    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 20px;
    padding: 20px;

    align-items: center;
    justify-items: center;
}

.google-maps-title,
.waze-title{
    font-size: 30px;
    font-weight: bold;
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    line-height: 100px;
    text-align: center;
    color: rgb(230, 197, 255);
    /* height: 80px; */
    display: grid;
    align-items: start;
    /* border: 2px solid firebrick; */
    line-height: 60px;
    border-bottom: 1px solid rgb(198, 124, 255);
}

.google-maps-container,
.waze-container{
    display: grid;
    justify-items: center;
    border: 1px solid rgb(230, 197, 255);
    height: 100%;
    width: 100%;
    border-radius: 20px;
    padding: 20px;
    background-color: rgb(68, 0, 68);
    gap: 20px;
    padding-top: 10px;
}



.google-maps-iframe-container,
.waze-iframe-container{
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgb(55, 0, 106);
    position: relative;
    height: 300px;
    width: 100%;
}


.google-maps-iframe-container > iframe,
.waze-iframe-container > a{
    position: absolute;
    
    top: 0px;
    height: 100%;
    width: 100%;
}



.waze-link-container > img{
    position: absolute;
    
    top: 0px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.go-to-btn{
    color: rgb(55, 0, 106);
    background-color: rgb(230, 197, 255);
    text-decoration: none;
    padding: 10px;
    width: 150px;
    text-align: center;
    border-radius: 10px;
    font-weight: bold;

}


@media (max-width: 680px){

    .maps-container{
        padding: 5px;
    }

    .google-maps-container{
        justify-self: center;
    }
    
    .waze-container{
        justify-self: center;
    }
}






















.qualifying-title{
    width: 100%;
    display: grid;
    /* justify-items: center; */
    align-items: center;
    /* color: white; */
    padding: 20px;
    /* font-size: 30px; */
    font-size: 100px;
    font-weight: bold;
    /* padding-bottom: 0px; */
    /* width: 250px; */
    /* white-space: nowrap; */
    font-family: MavenPro, Arial, Helvetica, sans-serif;
    line-height: 100px;
    
}


.get-started-div{
    transition: all 0.5s ease-in;
    padding-top: 90px;
    padding-bottom: 300px;
    color: rgba(128, 128, 128, 0.409);
    display: grid;justify-items: center;
    height: 1000px;
    color: rgb(68, 0, 68);
    /* background-color: rgb(230, 197, 255); */
}

.get-started-div.active{
    transition: all 1s ease-in;
    color: white;
}

.get-started-div > .qualifying-title{
    text-align: center;
    display: grid;
    align-items: end;
    padding-bottom: 0px;
}

.get-started-card{
    width: 100%;
    height: 100%;
    /* border: 1px solid rgba(128, 128, 128, 0.409); */
    border-left: none;
    border-right: none;
    display: grid;
    align-items: center;
    justify-items: center;
    padding: 40px;
    padding-top: 0px;
    text-align: center;
}

/* .get-started-card *{
    border: 2px solid red;
} */

.get-started-title{
    font-size: 40px;
    /* border-bottom: 1px solid rgba(128, 128, 128, 0.472); */
    align-self: end;
    padding-bottom: 20px;
}

.get-started-text{
    padding-top: 20px;
    align-self: start;
    font-size: 30px;
}

.get-started-button-container{
    /* padding-top: 40px; */
    position: relative;
    height: 60px;
    width: min(100%, 450px);
    /* border: 2px solid firebrick; */
    display: grid;
    align-items: center;
    justify-items: center;
}

.get-started-button{
    position: absolute;
    /* appearance: none; */
    border: 1px solid rgb(96, 8, 143);;
    display: grid;
    align-items: center;
    justify-items: center;
    height: 60px;
    width: 90%;
    border-radius: 15px 0px;
    text-decoration: none;
    color: white;
    background-color: rgb(68, 0, 68);
    bottom: 0px;
    z-index: 1;
    font-size: 20px;
}

.get-started-button-bg{
    background-color: rgb(64, 7, 94);
    animation: pulse1 2.5s infinite;
    height: 60px;
    width: 90%;
    /* border: 2px solid firebrick; */
    border-radius: 10px 0px;
    /* animation: none; */
}

@media (max-width: 1340px){

    .services-cards-collection > div{
        font-size: 25px;
        display: grid;
        grid-template-rows: 1fr;
    }

    .card-container{
        grid-template-rows: 100px 380px 1fr;
    }

    .subservices-title{
        font-size: 25px;
    }

    .subservices-text,
    .features-collection{
        font-size: 20px;
    }

    .features-title{
        font-size: 25px;
    }

    .checkmark{
        width: 20px;
        height: 20px;
        margin-top: 3px;
    }

}

@media (max-width: 900px){
    .services-cards-collection{
        grid-template-columns: 1fr;
    } 

    .checkmark{
        width: 30px;
        height: 30px;
        margin-top: 3px;
    }

    .card-container{
        grid-template-rows: 1fr;
    }

    .subservices-text,
    .features-collection{
        font-size: 27px;
    }

    .subservices-title,
    .features-title{
        font-size: 45px;
    }
}

@media (max-width: 700px){

    .impact-title,
    .doctor-title,
    .panel-title{
        font-size: 80px;
    }
    .impact-cards-collection{
        grid-template-columns: repeat(1, 1fr);
        width: 100%;
    }

    .impact-cards-collection > div{
        width: 400px;
    }

   

    /* .services-cards-collection{
        grid-template-columns: 1fr;
    } */
}

@media (max-width: 540px){

    .hero-section-header{
        font-size: 34px;
        font-weight: bolder;
    }

    .qualifying-micro-title{
        font-size: 15px;
    }

    .hero-section-text{
        padding: 20px 10px 20px 10px;
    }
    
    
    .hero-section-paragraph{
        font-size: 15px;
        font-weight: bold;
    }

    .scroll-down-notif{
        width: 70px;
        height: 70px;
        font-size: 10px;
        bottom: 70px;
    }

    .qualifying-title,
    .impact-title,
    .doctor-title,
    .services-title,
    .panel-title{
        font-size: 55px;
        line-height: 60px;
    }

    .subqualifying-title{
        font-size: 40px;
    }
   

    .quote-div-one{
        font-size: 30px;
    }

    .quote-div-two{
        font-size: 20px;
    }

    /* .qualifying-cards-collection{
        grid-template-rows: repeat(3, 1fr);
    } */

    .impact-cards-collection{
        grid-template-columns: 1fr;
        /* grid-template-rows: repeat(5, 600px); */
    }

    .impact-cards-collection > div {
        width: 100%;
    }

    .services-cards-collection > div{
        padding: 15px;
        font-size: 13px;
    }

    .card-container{
        grid-template-rows: 1fr;
    }

   .get-started-card{
    height: 250px;
   }
    .subservices-title,
    .features-title{
        font-size: 30px;
    }

    .get-started-title{
        font-size: 25px;
    }

    .subqualifying-text,
    .impact-subtext,
    .doctor-subtext,
    .panel-subtext,
    .get-started-text{
        font-size: 20px;
    }

    .subservices-text,
    .features-text{
        font-size: 20px;
    }

    /* .subservices-text{
        font-size: 20px;
    } */
    /* .impact-cards-collection > div{
        border: 1px solid white;
        border-radius: 15px;
        height: 300px;
        width: 300px;
        background-color: rgba(0, 0, 91, 0.309);
       
    } */

    
}

@media (max-width: 380px){ 

    .qualifying-cards-collection{
        padding: 10px;
    }
    .qualifying-title,
    .impact-title,
    .doctor-title,
    .services-title,
    .panel-title{
        font-size: 40px;
        line-height: 50px;
    }

    .subqualifying-title{
        font-size: 30px;
    }

    .subimpact-title{
        font-size: 22px;
    }

    .subimpact-text{
        font-size: 17px;
    }

    .subqualifying-text,
    .impact-subtext,
    .doctor-subtext,
    .panel-subtext,
    .get-started-text{
        font-size: 20px;
    }

    .services-cards-collection{
        padding: 10px;
    }

    .services-cards-collection > div{
        padding: 15px;
        font-size: 13px;
    }


    .get-started-div > .qualifying-title{
        font-size: 50px;
    }

    .features-title{
        font-size: 25px;
    }

    .get-started-card{
        padding: 20px;
    }

    .get-started-title{
        font-size: 25px;
    }
}








.gallery-div{
    width: 100%;
    display: grid;
    justify-items: center;
    padding-top: 90px;
    gap: 20px;
}

.gallery-section{
    width: 900px;
    height: 900px;
    /* border: 2px solid pink; */

}


@media (max-width: 1200px){
    .gallery-section{
        width: 700px;
        height: 900px;
        /* border: 2px solid pink; */
    
    }
}


@media (max-width: 700px){
    .gallery-section{
        width: 500px;
        height: 500px;
        /* border: 2px solid pink; */
    
    }
}


@media (max-width: 500px){
    .gallery-section{
        width: 95vw;
        height: 95vw;
        /* border: 2px solid pink; */
    
    }
}


@media (max-width: 350px){
    .gallery-section{
        width: 320px;
        height: 320px;
        /* border: 2px solid pink; */
    
    }
}


.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

  

  .swiper {
    width: 100%;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    overflow: hidden;
  }

  .swiper-slide {
    background-size: cover;
    background-position: center;
    
  }

  .mySwiper2 {
    height: 80%;
    width: 100%;
  }

  .mySwiper {
    height: 20%;
    box-sizing: border-box;
    padding: 10px;
  }

  .mySwiper .swiper-slide {
    width: 25%;
    height: 100%;
    opacity: 0.4;

    border-radius: 10px;
    overflow: hidden;
  }

  .mySwiper .swiper-slide-thumb-active {
    opacity: 1;
  }

  .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }