* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'PrimaryText', sans-serif;
}

@font-face {
    font-family: "PrimaryText", sans-serif;
    src: url("../Fonts/Poppins-Regular.ttf");
}

.no-scroll {
    overflow: hidden;
    height: 100vh;
    width: 100vw;
    position: fixed;
}

#background-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

button a,
a,
li a {
    text-decoration: none;
}

/* HEADER :- */
header {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1B63AB;
    height: 70px;
}

header .nav-bar-top {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 10px;
    height: 70px;
    width: 100%;
}

header .nav-bar-top ul {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

header .nav-bar-top ul li a,
header .nav-bar-top ul button {
    padding: 7px 14px;
    text-decoration: none;
    color: #FFF;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

header .nav-bar-top ul li.active a,
header .nav-bar-top ul li a:hover,
header .nav-bar-top ul button:hover,
header .nav-bar-top ul button.active {
    background: #FFF;
    color: #1B63AB;
}

header .hamburger-menu {
    z-index: 99;
    display: none;
}

header .hamburger-menu button {
    height: 45px;
    width: 45px;
    font-size: 25px;
    border-radius: 7px;
    background-color: transparent;
    border: none;
    color: #FFF;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: white;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1B63AB;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a:hover {
    color: #1B63AB;
    background-color: #FFF;
}

@media (max-width: 768px) {
    .dropdown-content {
        width: 70%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: auto;
        display: none;
        padding: 45px 0;
    }

    .dropdown:hover .dropdown-content {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
}



/* MAIN 01:=  */
main {
    margin: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

main .container {
    width: 100%;
}

main .main-cover {
    background-color: rgb(202, 253, 227);
    margin: 20px 0;
}

main .container h1 {
    text-align: center;
    font-size: 54px;
    padding: 8px 0;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    width: 100%;
    color: #000;
}

main .container .main-info {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding: 15px;
}

.main-info .main-info-1 {
    width: 30%;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 15px;
}

.main-info .main-info-1 .main-info-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-info .main-info-1 .main-info-img img {
    height: 220px;
}

.main-info-details {
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
}

.main-info .main-info-details h2 {
    font-size: 27px;
    line-height: 40px;
    letter-spacing: 2px;
    color: #000;
    text-align: center;
}

.main-info-details-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
}

.main-info-details button {
    height: 40px;
    width: 180px;
    font-size: 16px;
    background-color: #FFF;
    border: 2px solid #00619a;
    outline: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.main-info-details button:hover {
    background-color: #00619a;
}

.main-info-details button:hover a {
    color: #FFF;
}

.main-info-details button a {
    color: #00619a;
    font-weight: bold;
}

.main-info-details-sch {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 10px;
    flex-wrap: wrap;
}

.main-info-details-sch p {
    text-align: center;
    font-size: 13px;
    background-color: #00619a;
    width: 180px;
    font-weight: bold;
    color: #FFF;
    border: 2px solid #00619a;
}

.main-info .main-info-2 {
    width: 30%;
    display: flex;
    justify-content: start;
    align-items: center;
}

.main-info-2 .doc-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-info-2 img {
    height: 220px;
    border-radius: 50%;
}

/* SERVICES MAIN:-  */
.main-service-contain {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 0;
}

.main-service-contain h2 {
    width: 100%;
    text-align: center;
    font-size: 37px;
    margin: 30px 0;
    color: #00619a;
}

.main-serv-tabs {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.main-serv-tabs .acc-logo,
.main-serv-tabs .ada-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 25%;
    gap: 30px;
}

.main-serv-tabs .acc-logo img,
.main-serv-tabs .ada-logo img {
    width: 180px;
}

.main-serv-tabs .service-lists {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.main-serv-tabs .service-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.main-serv-tabs .service-btn button {
    width: 48%;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    background-color: transparent;
    color: #00619a;
    border: 2px solid #00619a;
    font-weight: bold;
    transition: 0.3s all ease-in-out;
}

.main-serv-tabs .service-btn button a {
    color: #00619a;
    transition: 0.3s all ease-in-out;
}

.main-serv-tabs .service-btn button:hover {
    background-color: #00619a;
}

.main-serv-tabs .service-btn button:hover a {
    color: #FFF;
}

/* FOOTER :- */

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
    background-color: #1B63AB;
}

.web-footer {
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

.web-footer>div {
    width: 48%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 20px 0;
}

.web-footer .contact-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.web-footer .contact-list .links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.web-footer .contact-list .links i {
    font-size: 21px;
    color: #FFF;
}

.web-footer .contact-list button {
    height: 40px;
    width: 180px;
    margin-top: 5px;
    font-size: 16px;
    color: #1B63AB;
    font-weight: bold;
    border: none;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.web-footer .contact-list button:hover {
    background-color: #1B63AB;
    color: #FFF;
    border: 2px solid #FFF;
}

.web-footer h2 {
    text-transform: uppercase;
    font-size: 25px;
    margin-bottom: 15px;
    color: #FFF;
}

.web-footer ul {
    list-style: none;
}

.web-footer ul li,
.web-footer ul li a {
    font-size: 18px;
    color: #FFF;
}

.web-footer a {
    text-decoration: none;
    color: #FFF;
}

.web-footer iframe {
    height: 200px;
    width: 70%;
}

.copyright {
    padding: 10px 0;
    text-align: center;
    color: #FFF;
}

.copyright a {
    font-size: 17px;
    font-weight: 500;
    text-decoration: none;
    color: #FFF;
}


/* ABOUT US (MAIN) :- */
.main-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.about-us {
    margin: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    height: auto;
}

.about-us .about-info {
    height: auto;
    width: 610px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 0 10px;
}

.about-us .about-gallery {
    height: auto;
    width: 610px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

.about-us .about-info h1 {
    font-size: 35px;
    text-transform: uppercase;
    color: #1B63AB;
}

.about-us .about-info .about-text p {
    margin-top: 5px;
    font-size: 15px;
}

.about-us .about-info .about-text p b {
    margin-top: 5px;
    font-size: 25px;
    color: #1B63AB;
}

.about-gallery .container {
    position: relative;
    height: auto;
    width: 85%;
}

.about-gallery .container .mySlides {
    display: none;
}

.about-gallery .container .row .column .cursor {
    cursor: pointer;
}

.about-gallery .container .prev,
.about-gallery .container .next {
    cursor: pointer;
    position: absolute;
    top: 40%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}

.about-gallery .container .next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.about-gallery .container .row:after {
    content: "";
    display: table;
    clear: both;
}

.about-gallery .container .row .column {
    float: left;
    width: 14.28%;
}

.about-gallery .container .row .column .demo {
    opacity: 0.6;
}

.active,
.about-gallery .container .row .column .demo:hover {
    opacity: 1;
}

.mission-n-value {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    margin: 30px 0 auto;
}

.mission-n-value h3 {
    color: #fff;
    font-size: 25px;
    margin: 25px 0;
    text-align: center;
}

.mission-n-value p {
    font-size: 18px;
    top: 30%;
    width: 95%;
}

.mission-n-value img {
    height: 200px;
    width: auto;
}

.mission-n-value .our-mission,
.mission-n-value .our-value {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    gap: 50px;
}

.mission-n-value .our-value {
    flex-direction: row-reverse;
}

.mission-n-value .our-mission .mission-text,
.mission-n-value .our-value .value-text {
    width: 70%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mission-n-value .our-mission .mission-img,
.mission-n-value .our-value .value-img {
    width: 30%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.three-values {
    width: 90%;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: start;
    flex-wrap: wrap;
    transition: all 0.3s ease-in-out;
}

.three-values .value {
    width: 30%;
    border: 1px solid black;
    padding: 25px;
    height: 400px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-direction: column;
    margin: 15px 0;
    overflow: hidden;
    transition: 0.3s all ease-in-out;
}

.three-values .value h3,
.three-values .value p {
    transition: 0.3s all ease-in-out;
}

.three-values .value:hover {
    background-image: url("../Images/value-bg.png");
    background-position: center;
    background-size: cover;
}

.three-values .value:hover h3 {
    color: #fff;
}

.three-values .value:hover p {
    color: #fff;
}


.three-values .value h3 {
    font-size: 24px;
    color: #1B63AB;
}

.three-values .value p {
    width: 90%;
    font-size: 14px;
}

/* SERVICE (Main) */

main .main-services {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 10px 0;
}

main .main-services .main-service-cover {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    gap: 10px;
    margin: 5px 0;
}

main .main-services .main-service-cover .main-service-header,
main .main-services .main-service-cover .main-service-image {
    width: 30%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

main .main-services .main-service-image img {
    width: 100%;
    /* height: 100%/; */
}

main .main-services .main-service-cover .main-service-header h2 {
    font-size: 35px;
    color: #1B63AB;
}

main .main-services .main-service-cover .main-service-header p {
    font-size: 16px;
}


main .main-service-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
    margin: 15px 0
}

main .main-service-list .main-services-item {
    width: 50%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    /* gap: 20px; */
}

main .main-service-list .main-services-item:nth-child(3),
main .main-service-list .main-services-item:nth-child(4),
main .main-service-list .main-services-item:nth-child(7),
main .main-service-list .main-services-item:nth-child(8) {
    width: 50%;
    /* background-color: yellow; */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
    /* gap: 20px; */
}

main .main-service-list .main-services-item .item-image {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

main .main-service-list .main-services-item .item-info {
    width: 50%;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


main .main-service-list .main-services-item .item-info .item-content {
    width: 90%;
    height: 80%;
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-direction: column;
    /* gap: px; */
}

main .main-service-list .main-services-item .item-image a {
    width: 100%;
    height: 100%;
}

main .main-service-list .main-services-item .item-image img {
    width: 100%;
    height: 100%;
}


main .main-service-list .main-services-item .item-info h3 a {
    color: #1B63AB;
    font-weight: bold;
    font-size: 18px;
}


main .main-service-list .main-services-item .item-info p {
    font-size: 12px;
}


main .main-service-list .main-services-item .item-info button {
    background-color: #00619a;
    color: #fff;
    height: 40px;
    width: 160px;
    border: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

main .main-service-list .main-services-item .item-info button:hover {
    background-color: #ffff;
    color: #00619a;
    border: 1px solid #00619a;
}

/* SERVICE DETAILS (Internal Pages) */
.serv-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 5px 0;
    gap: 20px;
}

.serv-container .serv-col {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* gap: 10spx; */
    margin: 15px 0;
}

.serv-col .serv-cov-txt {
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 7px;
    flex-direction: column;
    width: 30%;
}

.serv-col .serv-cov-img {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    flex-direction: column;
    width: 30%;
}

.serv-col .serv-cov-txt h2 {
    color: #1B63AB;
    font-size: 26px;
}

.serv-col .serv-cov-txt h2.pay-h2 {
    font-size: 26px;
    color: #1B63AB;
}

.serv-col .serv-cov-txt h4 {
    font-size: 15px;
}

.serv-col .serv-cov-txt p {
    font-size: 16px;
}

.serv-col .serv-cov-img img {
    width: 90%;
}

.serv-avail {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 15px;
    flex-wrap: wrap;
    width: 60%;
}

.serv-avail h2 {
    font-size: 24px;
    color: #1B63AB;
}

.serv-avail .serv-list {
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    flex-wrap: wrap;
    gap: 12px;
}

.serv-avail .serv-list .serv-item {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
    margin: 20px 0;
}

.serv-avail .serv-list .serv-item h4 {
    font-size: 18px;
    color: #1B63AB;
}

.serv-avail .serv-list .serv-item p {
    font-size: 16px;
}

.serv-avail .serv-list .serv-item p span a {
    color: #000;
}

.serv-avail .serv-list .serv-item button,
.serv-col .faq-list .faqs button {
    height: 30px;
    width: 100px;
    font-size: 16px;
    font-weight: bold;
    background: transparent;
    border: none;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-align: left;
}

.serv-avail .serv-list .serv-item button:hover,
.serv-col .faq-list .faqs button:hover {
    color: #00619a;
}

.hiddenDetail {
    display: none;
}

.serv-col .faq-list {
    display: flex;
    width: 60%;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.serv-col .faq-pay {
    display: flex;
    width: 60%;
    align-items: start;
    justify-content: center;
    gap: 30px;
}

.faq-list .faqs {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: start;
    gap: 10px;
}

.faq-list .faq-text,
.qna-item .qna-text {
    display: flex;
    justify-content: center;
    align-items: start;
    flex-direction: column;
    gap: 10px;
}

.faq-list .faq-text ul {
    padding-left: 20px;
}

.faq-list .faq-text h3,
.qna-item .qna-text h3 {
    font-size: 18px;
    color: #1B63AB;
}

.faq-list .faq-text p,
.qna-item .qna-text p,
.faq-list .faq-text ul li,
.qna-item .qna-text ul li {
    font-size: 16px;
}

.serv-qna {
    width: 60%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 30px;
}

.serv-qna .qna-item {
    display: flex;
    justify-content: normal;
    align-items: start;
    gap: 10px;
    width: 100%;
}

.item-pay ul {
    padding-left: 20px;
}

.bookSchedule {
    width: 60%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bookSchedule .SchText {
    width: 65%;
}

.bookSchedule h4 {
    font-size: 18px;
    color: #00b4d8;
}

.bookSchedule button {
    height: 45px;
    width: 200px;
    color: #fff;
    background-color: #00619a;
    border: none;
    cursor: pointer;
    font-size: 19px;
    transition: 0.2s all ease-in-out;
}

.bookSchedule button:hover {
    color: #00619a;
    background-color: #fff;
    border: 2px solid #00619a;
    font-weight: bold;
}

.bookSchedule button.payBtn {
    height: 45px;
    width: 300px;
    color: #fff;
    background-color: #00619a;
    border: none;
    cursor: pointer;
    font-size: 17px;
    transition: 0.2s all ease-in-out;
}

.bookSchedule button.payBtn:hover {
    color: #00619a;
    background-color: #fff;
    border: 2px solid #00619a;
    font-weight: bold;
}

.contact-main {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    margin: 30px 0;
    width: 100%;
}

.contact-main .contact-col {
    width: 65%;
    display: flex;
    justify-content: space-around;
    align-items: start;
    flex-wrap: wrap;
}

.contact-main .contact-col>div {
    width: 45%;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 15px;
}

.contact-main .contact-col h2 {
    font-size: 24px;
    color: #1B63AB;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-main .contact-col ul li,
.contact-main .contact-col ul li a {
    list-style: none;
    font-size: 18px;
    color: #000000;
}

.contact-main .Sch {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 30px;
}


.contact-main .contact-col h3 {
    font-size: 24px;
    color: #00b4d8;
}

.contact-main .contact-col button {
    height: 40px;
    width: 160px;
    background-color: #1B63AB;
    border: none;
    color: #ffffff;
    font-size: 21px;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    font-weight: bold;
}

.contact-main .contact-col button:hover {
    border: 2px solid #1B63AB;
    color: #1B63AB;
    background-color: white;
}

.contact-main .contact-col .contact-cover img {
    width: 80%;
}

.contact-main .Sch {
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 30px;
    padding-left: 30px;
}

.contact-main .contact-col iframe {
    width: 100%;
    height: 450px;
}


.qna-text button {
    height: 30px;
    width: 100px;
    font-size: 16px;
    font-weight: bold;
    background: transparent;
    border: none;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
    text-align: left;
}

.qna-text button:hover {
    color: #00619a;
}

/* Our Team:- */
.our-founders {
    height: auto;
    width: 100%;
    padding: 15px 0;
}

.our-founders h1,
.our-team h1 {
    text-align: center;
    color: #1B63AB;
    font-size: 37px;
    text-transform: uppercase;
    padding: 10px 0;
}

.our-founders .doctors,
.our-team .team-member-list {
    display: flex;
    justify-content: space-evenly;
    align-items: start;
    padding: 7px 15px;
    width: 100%;
    background-color: #1B63AB;
}

.our-founders .doctor {
    height: auto;
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.our-founders .doctor img,
.our-team .team-member img {
    height: 150px;
    margin: 15px;
}

.our-founders .doctor h2,
.our-team .team-member h2 {
    color: #ffffff;
    font-size: 21px;
    text-transform: uppercase;
    margin: 5px 0;
    text-align: center;
}

.our-founders .doctor .linked-in i {
    color: #ffffff;
    font-size: 19px;
    margin: 5px 0;
}

.our-founders .doctor h3,
.our-team .team-member h4 {
    color: #ffffff;
    font-size: 19px;
    margin: 5px 0;
    text-align: center;
}

.our-founders .doctor .doctor-text {
    padding: 15px;
}

.our-founders .doctor .doctor-text p,
.our-team .team-member p,
.our-team .team-member b {
    color: #ffffff;
    font-size: 16px;
}

.our-founders .doctor .doctor-text button,
.our-team .team-member button {
    margin: 20px 0;
    height: 45px;
    width: 120px;
    font-size: 18px;
    background-color: transparent;
    color: #ffffff;
    border: none;
    outline: none;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
    font-weight: 700;
}

.our-founders .doctor .doctor-text button:hover,
.our-team .team-member button:hover {
    background-color: #ffffff;
    color: #1B63AB;
    border: 1px solid #1B63AB;
}

#more,
#more01,
#moreMem01,
#moreMem02,
#moreMem03,
#moreMem04,
#moreMem05 {
    display: none;
}

.our-team {
    margin: 20px 0;
    width: 100%;
}

.our-team .team-member-list {
    flex-wrap: wrap;
    gap: 30px;
}

.our-team .team-member-list .team-member {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 27%;
    flex-direction: column;
    margin: 30px 0;
}

.serv-item h4 a,
.serv-item ul li a {
    color: #1B63AB;
}

.our-team-img {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1B63AB;
}

.our-team-img img {
    width: 100%;
    max-width: 900px;
}

.supercare-learn-more {
    height: 45px;
    width: 160px;
    margin: 30px 0;
    font-size: 18px;
    background-color: #FFF;
    color: #1B63AB;
    border: 2px solid #1B63AB;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.supercare-learn-more:hover {
    background-color: #1B63AB;
    color: #FFF;
}








@media (max-width: 1280px) {

    /* ABOUT US (MAIN:-) */
    .mission-n-value {
        width: 60%;
    }


    .mission-n-value p {
        font-size: 17px;
        top: 25%;
    }

    /* Our Team:- */
    .our-founders .doctors {
        display: flex;
        justify-content: space-between;
        align-items: start;
        gap: 40px;
        padding: 7px 15px;
    }

    .our-founders .doctor {
        height: auto;
        width: 50%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .our-team .team-member-list .team-member {
        width: 30%;
    }
}

@media (max-width: 1144px) {
    .main-serv-tabs .service-btn button a {
        font-size: 18px;
    }

    /* ABOUT US (MAIN) :- */
    .about-us {
        margin: 10px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        height: auto;
    }

    .about-us .about-info {
        height: auto;
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        padding: 0 10px;
    }

    .about-us .about-gallery {
        height: auto;
        width: 45%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
    }

    .about-us .about-info h1 {
        font-size: 34px;
        text-transform: uppercase;
        color: #1B63AB;
    }

    .about-us .about-info .about-text p {
        margin-top: 5px;
        font-size: 15px;
    }

    .mission-n-value {
        width: 90%;
    }

    /* SERVICE (Main) */
    main .main-services {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin: 20px 0;
    }

    main .main-services .main-service-cover {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        gap: 15px;
    }

    main .main-services .main-service-cover .main-service-header,
    main .main-services .main-service-cover .main-service-image {
        width: 30%;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 8px;
    }

    main .main-services .main-service-image img {
        width: 100%;
        /* height: 100%/; */
    }

    main .main-services .main-service-cover .main-service-header h2 {
        font-size: 33px;
        color: #1B63AB;
    }

    main .main-services .main-service-cover .main-service-header p {
        font-size: 15px;
    }

    main .main-service-list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        height: auto;
        margin: 15px 0
    }

    main .main-service-list .main-services-item {
        width: 50%;
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        /* gap: 20px; */
    }

    main .main-service-list .main-services-item:nth-child(3),
    main .main-service-list .main-services-item:nth-child(4),
    main .main-service-list .main-services-item:nth-child(7),
    main .main-service-list .main-services-item:nth-child(8) {
        width: 50%;
        /* background-color: yellow; */
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row-reverse;
        /* gap: 20px; */
    }

    main .main-service-list .main-services-item .item-image {
        width: 50%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    main .main-service-list .main-services-item .item-info {
        width: 50%;
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }


    main .main-service-list .main-services-item .item-info .item-content {
        width: 90%;
        height: 90%;
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-direction: column;
    }

    main .main-service-list .main-services-item .item-image a {
        width: 100%;
        height: 100%;
    }

    main .main-service-list .main-services-item .item-image img {
        width: 100%;
        height: 100%;
    }


    main .main-service-list .main-services-item .item-info h3 a {
        color: #1B63AB;
        font-weight: bold;
        font-size: 17px;
    }


    main .main-service-list .main-services-item .item-info p {
        font-size: 10px;
    }


    main .main-service-list .main-services-item .item-info button {
        background-color: #00619a;
        color: #fff;
        height: 35px;
        width: 150px;
        border: none;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
    }

    main .main-service-list .main-services-item .item-info button:hover {
        background-color: #ffff;
        color: #00619a;
        border: 1px solid #00619a;
    }

    /* SERVICE DETAIL (Internal Pages) */
    .serv-col .serv-cov-txt {
        display: flex;
        justify-content: center;
        align-items: start;
        gap: 7px;
        flex-direction: column;
        width: 40%;
    }

    .serv-col .serv-cov-img {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
        flex-direction: column;
        width: 40%;
    }

    .serv-col .serv-cov-txt h2 {
        font-size: 24px;
    }

    .serv-col .serv-cov-txt h4 {
        font-size: 14px;
    }

    .serv-col .serv-cov-txt p {
        font-size: 15px;
    }

    .serv-col .serv-cov-img img {
        width: 85%;
    }

    .serv-avail {
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 5px;
        flex-wrap: wrap;
        width: 80%;
    }

    .serv-avail h2 {
        font-size: 24px;
    }

    .serv-avail .serv-list {
        display: flex;
        justify-content: space-evenly;
        align-items: start;
        flex-wrap: wrap;
    }

    .serv-avail .serv-list .serv-item {
        width: 45%;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 7px;
        margin: 15px 0;
    }

    .serv-avail .serv-list .serv-item h4 {
        font-size: 18px;
    }

    .serv-avail .serv-list .serv-item p {
        font-size: 15px;
    }

    .serv-avail .serv-list .serv-item button {
        height: 25px;
        width: 90px;
        font-size: 15px;
        font-weight: bold;
        background: transparent;
        border: none;
        transition: all 0.2s ease-in-out;
        cursor: pointer;
        text-align: left;
    }


    .serv-col .faq-list {
        display: flex;
        width: 80%;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .serv-qna {
        width: 80%;
    }

    .bookSchedule {
        width: 80%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .bookSchedule .SchText {
        width: 80%;
    }

    .bookSchedule h4 {
        font-size: 17px;
    }

    .bookSchedule button {
        height: 40px;
        width: 180px;
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 17px;
        transition: 0.2s all ease-in-out;
    }

    .bookSchedule button:hover {
        background-color: #fff;
        font-weight: bold;
    }

    .bookSchedule button.payBtn {
        height: 40px;
        width: 280px;
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 15px;
        transition: 0.2s all ease-in-out;
    }

    .bookSchedule button.payBtn:hover {
        background-color: #fff;
        font-weight: bold;
    }

    .serv-col .faq-pay {
        display: flex;
        align-items: start;
        justify-content: center;
        gap: 30px;
    }

    /* Contact Main:-  */
    .contact-main {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 40px;
    }

    .contact-main .contact-col {
        width: 80%;
        display: flex;
        justify-content: start;
        align-items: start;
        flex-wrap: wrap;
    }

    .contact-main .contact-col>div {
        width: 50%;
        display: flex;
        justify-content: start;
        align-items: start;
        gap: 25px;
    }


    .contact-main .contact-col h2 {
        font-size: 27px;
        color: #1B63AB;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .contact-main .contact-col ul li {
        list-style: none;
        font-size: 19px;
    }

    .contact-main .Sch {
        display: flex;
        justify-content: start;
        align-items: center;
    }


    .contact-main .contact-col h3 {
        font-size: 22px;
        color: #00b4d8;
    }

    .contact-main .contact-col button {
        height: 40px;
        width: 160px;
        background-color: #1B63AB;
        border: none;
        color: #ffffff;
        font-size: 21px;
        transition: all 0.2s ease-in-out;
        cursor: pointer;
        font-weight: bold;
    }

    .contact-main .contact-col button:hover {
        border: 2px solid #1B63AB;
        color: #1B63AB;
        background-color: white;
    }

    .contact-main .contact-col .contact-cover img {
        width: 100%;
    }

    .contact-main .contact-col img.item-icon {
        height: 25px;
    }

    .contact-main .contact-col iframe {
        width: 100%;
        height: 400px;
    }

    .three-values {
        width: 95%;
    }

    .three-values .value {
        width: 30%;
        padding: 10px;
    }
}

@media (max-width: 1020px) {

    /* HEADER :- */
    header .nav-bar-top {
        padding: 10px;
    }

    header .nav-bar-top ul li a,
    header .nav-bar-top ul .dropdown button {
        padding: 7px 14px;
        font-size: 15px;
    }

    /* MAIN 01:=  */
    main .container {
        width: 100%;
    }

    .main-info .main-info-1 {
        width: 30%;
        gap: 10px;
        justify-content: center;
    }

    .main-info .main-info-1 .main-info-img img {
        height: 200px;
    }

    .main-info-details {
        gap: 10px;
    }

    .main-info .main-info-1 h2 {
        font-size: 24px;
        line-height: 30px;
        letter-spacing: 1px;
    }

    .main-info-details button {
        height: 40px;
        width: 180px;
        font-size: 16px;
    }

    .main-info-details-sch p {
        font-size: 13px;
    }

    .main-info .main-info-2 {
        justify-content: center;
    }

    .main-info-2 img {
        height: 200px;
    }

    /* SERVICES MAIN:-  */

    .main-service-contain h2 {
        font-size: 33px;
    }

    .main-serv-tabs .acc-logo,
    .main-serv-tabs .ada-logo {
        width: 20%;
    }

    .main-serv-tabs .acc-logo img,
    .main-serv-tabs .ada-logo img {
        width: 150px;
    }

    .main-serv-tabs .service-btn {
        width: 100%;
    }

    .main-serv-tabs .service-lists {
        width: 55%;
    }

    .main-serv-tabs .service-btn button {
        font-size: 18px;
    }

    /* Our Team:- */
    .our-founders .doctor h2,
    .our-team .team-member h2 {
        color: #ffffff;
        font-size: 19px;
        text-transform: uppercase;
        margin: 5px 0;
        text-align: center;
    }

    .our-founders .doctor h3,
    .our-team .team-member h4 {
        color: #ffffff;
        font-size: 17px;
        margin: 5px 0;
        text-align: center;
    }

    .our-founders .doctor .doctor-text p,
    .our-team .team-member p,
    .our-team .team-member b {
        color: #ffffff;
        font-size: 15px;
    }
}

@media (max-width: 972px) {

    .main-serv-tabs .service-btn button a {
        font-size: 14px;
    }

    /* HEADER :- */
    header .nav-bar-top {
        padding: 7px;
    }

    header .nav-bar-top ul li a,
    header .nav-bar-top ul .dropdown button {
        padding: 6px 12px;
        letter-spacing: 0.5px;
        font-size: 12px;
    }

    /* MAIN 01:- */
    main .container {
        width: 100%;
    }

    .main-info .main-info-1,
    .main-info .main-info-2,
    .main-info .main-info-details {
        width: auto;
    }

    .main-info .main-info-1 .main-info-img img {
        height: 160px;
    }

    .main-info .main-info-1 h2 {
        font-size: 21px;
        line-height: 25px;
        letter-spacing: 1px;
    }

    .main-info-details button {
        height: 30px;
        width: 160px;
        font-size: 15px;
    }

    .main-info-details-sch p {
        text-align: center;
        font-size: 12px;
        width: 160px;
    }

    .main-info-2 img {
        height: 160px;
    }

    /* FOOTER :- */

    .web-footer .contact-list .links i {
        font-size: 18px;
    }

    .web-footer .contact-list button {
        height: 30px;
        width: 140px;
        margin-top: 5px;
        font-size: 14px;
    }

    .web-footer h2 {
        font-size: 21px;
    }

    .web-footer ul li,
    .web-footer ul li a {
        font-size: 16px;
    }

    .web-footer iframe {
        height: 200px;
        width: 100%;
    }

    /* ABOUT US (MAIN) :- */
    .about-us {
        margin: 20px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
        gap: 10px;
        height: auto;
    }

    .about-us .about-info {
        height: auto;
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: start;
        padding: 0 10px;
    }

    .about-us .about-gallery {
        height: auto;
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0 10px;
    }

    .about-us .about-info h1 {
        font-size: 34px;
        text-transform: uppercase;
        color: #1B63AB;
    }

    .about-us .about-info .about-text p {
        margin-top: 5px;
        font-size: 15px;
    }

    .container {
        position: relative;
        height: auto;
        width: 95%;
    }

    .mission-n-value {
        width: 95%;
    }

    .mission-n-value h3 {
        font-size: 23px;
    }

    .mission-n-value p {
        font-size: 16px;
        width: 95%;
        top: 23%;
    }

    .mission-n-value img {
        height: 200px;
    }

    /* SERVICE (MAIN) */
    main .main-services {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin: 20px 0;
    }

    main .main-services .main-service-cover {
        display: flex;
        justify-content: center;
        align-items: center;
        height: auto;
        gap: 10px;
    }

    main .main-services .main-service-cover .main-service-header,
    main .main-services .main-service-cover .main-service-image {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        padding: 10px;
        /* gap: 8px; */
    }

    main .main-services .main-service-image img {
        width: 100%;
        /* height: 100%/; */
    }

    main .main-services .main-service-cover .main-service-header h2 {
        font-size: 33px;
        color: #1B63AB;
    }

    main .main-services .main-service-cover .main-service-header p {
        font-size: 15px;
    }

    main .main-service-list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
    }

    main .main-service-list .main-services-item:nth-child(odd) {
        width: 95%;
        /* background-color: yellow; */
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        gap: 5px;
    }

    main .main-service-list .main-services-item:nth-child(even) {
        width: 95%;
        /* background-color: yellow; */
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row-reverse;
        gap: 5px;
    }

    main .main-service-list .main-services-item .item-image,
    main .main-service-list .main-services-item .item-info {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 5px;
    }

    main .main-service-list .main-services-item .item-info .item-content {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 10px;
    }

    main .main-service-list .main-services-item .item-image img {
        width: 100%;
        height: auto;
    }


    main .main-service-list .main-services-item .item-info h3 a {
        color: #1B63AB;
        font-weight: bold;
        font-size: 18px;

    }


    main .main-service-list .main-services-item .item-info p {
        font-size: 14px;
    }


    main .main-service-list .main-services-item .item-info button {
        background-color: #00619a;
        color: #fff;
        height: 30px;
        width: 130px;
        border: none;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
    }

    main .main-service-list .main-services-item .item-info button:hover {
        background-color: #ffff;
        color: #00619a;
        border: 1px solid #00619a;
    }

    /* SERVICE DETAIL (Internal Pages) */
    .serv-container .serv-col {
        width: 100%;
    }

    .serv-col .serv-cov-txt {
        display: flex;
        justify-content: center;
        align-items: start;
        gap: 7px;
        flex-direction: column;
        width: 45%;
    }

    .serv-col .serv-cov-img {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
        flex-direction: column;
        width: 45%;
    }

    .serv-col .serv-cov-txt h2 {
        font-size: 26px;
    }

    .serv-col .serv-cov-txt h4 {
        font-size: 14px;
    }

    .serv-col .serv-cov-txt p {
        font-size: 16px;
    }

    .serv-col .serv-cov-img img {
        width: 90%;
    }

    .serv-avail {
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 5px;
        flex-wrap: wrap;
        width: 90vw;
    }

    .serv-avail h2 {
        font-size: 22px;
    }

    .serv-avail .serv-list {
        display: flex;
        justify-content: space-evenly;
        align-items: start;
        flex-wrap: wrap;
    }

    .serv-avail .serv-list .serv-item {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 7px;
        margin: 15px 0;
    }

    .serv-avail .serv-list .serv-item h4 {
        font-size: 17px;
    }

    .serv-avail .serv-list .serv-item p {
        font-size: 14px;
    }

    .serv-avail .serv-list .serv-item button,
    .faq-list .faq-text button {
        height: 25px;
        width: 90px;
        font-size: 15px;
        font-weight: bold;
        background: transparent;
        border: none;
        transition: all 0.2s ease-in-out;
        cursor: pointer;
        text-align: left;
    }


    .serv-col .faq-list {
        display: flex;
        width: 90%;
        align-items: center;
        justify-content: center;
        gap: 30px;
    }

    .faq-list .faqs {
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: start;
        gap: 10px;
    }


    .faq-list .faq-img img,
    .qna-item .qna-img img {
        /* color: #0254B9; */
        height: 25px;
    }

    .faq-list .faq-text {
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 10px;
    }

    .faq-list .faq-text h3,
    .qna-item .qna-text h3 {
        font-size: 17px;
    }

    .faq-list .faq-text p,
    .qna-item .qna-text p,
    .faq-list .faq-text ul li,
    .qna-item .qna-text ul li {
        font-size: 15px;
    }

    .serv-qna {
        width: 90%;
    }

    .bookSchedule {
        width: 90%;
    }

    .bookSchedule .SchText {
        width: 80%;
    }

    .bookSchedule h4 {
        font-size: 16px;
    }

    .bookSchedule button {
        height: 40px;
        width: 160px;
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 15px;
        transition: 0.2s all ease-in-out;
    }

    .bookSchedule button:hover {
        background-color: #fff;
        font-weight: bold;
    }

    .bookSchedule button.payBtn {
        height: 40px;
        width: 240px;
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 12px;
        transition: 0.2s all ease-in-out;
    }

    .bookSchedule button.payBtn:hover {
        background-color: #fff;
        font-weight: bold;
    }

    .serv-col .faq-pay {
        display: flex;
        align-items: start;
        justify-content: center;
        gap: 30px;
    }

    /* Contact Main:- */
    .contact-main {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 40px;
    }

    .contact-main .contact-col {
        width: 95%;
        display: flex;
        justify-content: space-around;
        align-items: start;
        flex-wrap: wrap;
    }

    .contact-main .contact-col>div {
        width: 45%;
        display: flex;
        justify-content: start;
        align-items: start;
        gap: 25px;
    }


    .contact-main .contact-col h2 {
        font-size: 25px;
        color: #1B63AB;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .contact-main .contact-col ul li {
        list-style: none;
        font-size: 17px;
    }

    .contact-main .Sch {
        display: flex;
        justify-content: start;
        align-items: center;
        padding: 0;
    }


    .contact-main .contact-col h3 {
        font-size: 22px;
        color: #00b4d8;
    }

    .contact-main .contact-col button {
        height: 40px;
        width: 160px;
        background-color: #1B63AB;
        border: none;
        color: #ffffff;
        font-size: 21px;
        transition: all 0.2s ease-in-out;
        cursor: pointer;
        font-weight: bold;
    }

    .contact-main .contact-col button:hover {
        border: 2px solid #1B63AB;
        color: #1B63AB;
        background-color: white;
    }

    .contact-main .contact-col .contact-cover img {
        width: 100%;
    }

    .contact-main .contact-col img.item-icon {
        height: 25px;
    }

    /* Our Team:- */
    .our-founders .doctors {
        display: block;
    }

    .our-founders .doctor {
        height: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .our-team .team-member-list .team-member {
        width: 45%;
    }
}

@media (max-width: 768px) {

    /* HEADER :- */
    header {
        display: flex;
        justify-content: start;
        align-items: center;
        height: 70px;
        padding: 10px 20px;
    }

    header .nav-bar-top {
        display: none;
        padding: 20px 15px;
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 99;
        /* display: none; */
    }

    header .nav-bar-top ul {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        height: 100vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 40px;
        flex-direction: column;
        list-style: none;
        background-color: #1B63AB;
    }

    header .nav-bar-top ul li a,
    header .nav-bar-top ul .dropdown button {
        padding: 8px 16px;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.8px;
        font-weight: 600;
        font-size: 18px;
        text-align: center;
    }

    header .hamburger-menu {
        display: block;
    }

    header .nav-bar-top.active {
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 99;
    }

    /* MAIN 01:- */

    main .container h1 {
        font-size: 33px;
        letter-spacing: 1.5px;
    }

    main .container .main-info {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 35px;
    }

    .main-info .main-info-1 {
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .main-info .main-info-1 .main-info-img img {
        height: 220px;
    }

    .main-info .main-info-details {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-info .main-info-details h2 {
        font-size: 21px;
        line-height: 24px;
        letter-spacing: 1.2px;
        text-align: center;
    }

    .main-info-details-sch p {
        text-align: center;
    }

    .main-info .main-info-2 {
        width: 100%;
        justify-content: center;
    }

    .main-info-2 img {
        height: 220px;
        border-radius: 50%;
    }

    /* SERVICES MAIN:-  */

    .main-service-contain h2 {
        font-size: 30px;
    }

    .main-serv-tabs {
        justify-content: center;
        flex-direction: column;
        gap: 15px;
    }

    .main-serv-tabs .acc-logo,
    .main-serv-tabs .ada-logo {
        width: 90%;
    }

    .main-serv-tabs .acc-logo img,
    .main-serv-tabs .ada-logo img {
        width: 200px;
    }

    .main-serv-tabs .service-lists {
        width: 90%;
    }

    .main-serv-tabs .service-btn button {
        width: 90%;
    }

    /* FOOTER :- */
    .web-footer {
        width: 95%;
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-wrap: wrap;
    }

    .web-footer>div {
        width: 90%;
        align-items: start;
        flex-direction: column;
    }

    .web-footer h2 {
        font-size: 21px;
    }

    .web-footer ul li,
    .web-footer ul li a {
        font-size: 14px;
    }

    .web-footer iframe {
        height: 200px;
        width: 100%;
    }

    .break-point::after {
        content: "\A";
        white-space: pre;
        /* to preserve the line break */
    }

    /* ABOUT US (MAIN) :- */
    .about-us {
        margin-top: 10px;
        display: flex;
        flex-wrap: wrap-reverse;
        gap: 5px;
    }

    .about-us .about-info,
    .about-us .about-gallery {
        height: 40%;
        width: 90%;
        /* background-color: red; */
        padding: 5px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: center;
    }

    .about-us .about-info h1 {
        font-size: 30px;
        text-transform: uppercase;
        color: #1B63AB;
    }

    .about-us .about-info .about-text p {
        margin-top: 10px;
        font-size: 15px;
    }

    .mission-n-value {
        width: 95%;
        gap: 0;
        padding: 0 10px;
    }

    .mission-n-value h3 {
        font-size: 25px;
        margin: 15px 0;
        text-align: center;
    }

    .mission-n-value p {
        font-size: 15px;
        top: 30%;
        width: 95%;
    }

    .mission-n-value img {
        height: auto;
        width: 100%;
        max-width: 200px;
    }

    .mission-n-value .our-mission,
    .mission-n-value .our-value {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        margin: 20px 0;
        position: static;
        overflow: hidden;
        gap: 35px;
        flex-direction: column-reverse;
    }

    .mission-n-value .our-value {
        flex-direction: column-reverse;
    }

    .mission-n-value .our-mission .mission-text,
    .mission-n-value .our-value .value-text {
        width: 100%;
        height: 100%;
        position: static;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        overflow: hidden;
        gap: 20px;
    }

    .mission-n-value .our-mission .mission-img,
    .mission-n-value .our-value .value-img {
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: start;
    }

    .three-values {
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        align-items: start;
        flex-wrap: wrap;
        padding: 0 10px;
    }

    .three-values .value {
        width: 80%;
        border: 1px solid black;
        padding: 25px;
        height: 400px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        flex-direction: column;
        margin: 15px 0;
    }

    .three-values .value h3 {
        font-size: 21px;
        color: #1B63AB;
    }

    .three-values .value p {
        width: 95%;
        font-size: 12px;
    }

    /* SERVICES (Main) */
    main .main-services {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin: 20px 0;
    }

    main .main-services .main-service-cover {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        height: auto;
        gap: 15px;
    }

    main .main-services .main-service-cover .main-service-header,
    main .main-services .main-service-cover .main-service-image {
        width: 70%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        padding: 0;
    }

    main .main-services .main-service-image img {
        width: 100%;
        /* height: 100%/; */
    }

    main .main-services .main-service-cover .main-service-header h2 {
        font-size: 34px;
        color: #1B63AB;
        /* text-align: center; */
    }

    main .main-services .main-service-cover .main-service-header p {
        font-size: 15px;
        text-align: center;
    }

    main .main-service-list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 7px;
    }

    main .main-service-list .main-services-item:nth-child(odd) {
        width: 45%;
        /* background-color: yellow; */
        height: auto;
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        margin: 10px 0;
        gap: 10px;
        border: 1px solid #1B63AB;
        padding-bottom: 20px;
    }

    main .main-service-list .main-services-item:nth-child(even) {
        width: 45%;
        /* background-color: yellow; */
        height: auto;
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        margin: 10px 0;
        gap: 10px;
        border: 1px solid #1B63AB;
        padding-bottom: 20px;
    }

    main .main-service-list .main-services-item .item-image,
    main .main-service-list .main-services-item .item-info {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 5px;
    }

    main .main-service-list .main-services-item .item-info .item-content {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 15px;
        padding: 0 10px;
    }

    main .main-service-list .main-services-item .item-image img {
        width: 100%;
        height: auto;
    }


    main .main-service-list .main-services-item .item-info h3 a {
        color: #1B63AB;
        font-weight: bold;
        font-size: 19px;
    }


    main .main-service-list .main-services-item .item-info p {
        font-size: 12px;
        height: 115px;
    }


    main .main-service-list .main-services-item .item-info button {
        background-color: #00619a;
        color: #fff;
        height: 30px;
        width: 130px;
        border: none;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
    }

    /* SERVICE DETAIL (Internal Pages) */
    .serv-col:nth-child(1) {
        flex-direction: column;
        gap: 20px;
    }

    .serv-col .serv-cov-txt {
        display: flex;
        justify-content: center;
        align-items: start;
        gap: 7px;
        flex-direction: column;
        width: 85%;
    }

    .serv-col .serv-cov-img {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 7px;
        flex-direction: column;
        width: 85%;
    }

    .serv-col .serv-cov-txt h2 {
        font-size: 22px;
    }

    .serv-col .serv-cov-txt h4 {
        font-size: 11px;
    }

    .serv-col .serv-cov-txt p {
        font-size: 14px;
    }

    .serv-col .serv-cov-img img {
        width: 70%;
    }

    .serv-avail {
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 5px;
        flex-wrap: wrap;
        width: 85%;
    }

    .serv-avail h2 {
        font-size: 18px;
    }

    .serv-avail .serv-list {
        display: flex;
        justify-content: space-evenly;
        align-items: start;
        flex-direction: column;
        flex-wrap: wrap;
    }

    .serv-avail .serv-list .serv-item {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 7px;
        margin: 15px 0;
    }

    .serv-avail .serv-list .serv-item h4 {
        font-size: 16px;
    }

    .serv-avail .serv-list .serv-item p {
        font-size: 13px;
    }

    .serv-avail .serv-list .serv-item button {
        height: 25px;
        width: 90px;
        font-size: 15px;
        font-weight: bold;
        background: transparent;
        border: none;
        transition: all 0.2s ease-in-out;
        cursor: pointer;
        text-align: left;
    }

    .serv-col .faq-list {
        display: flex;
        width: 85%;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 30px;
    }

    .faq-list .faqs {
        width: 100%;
        display: flex;
        justify-content: start;
        align-items: start;
        gap: 10px;
    }


    .faq-list .faq-img img,
    .qna-item .qna-img img {
        /* color: #0254B9; */
        height: 25px;
    }

    .faq-list .faq-text {
        display: flex;
        justify-content: center;
        align-items: start;
        flex-direction: column;
        gap: 10px;
    }

    .faq-list .faq-text h3,
    .qna-item .qna-text h3 {
        font-size: 16px;
    }

    .faq-list .faq-text p,
    .qna-item .qna-text p,
    .faq-list .faq-text ul li,
    .qna-item .qna-text ul li {
        font-size: 14px;
    }

    .faq-main .faq-col:last-child {
        padding: 0;
    }

    .serv-qna {
        width: 85%;
    }

    .bookSchedule {
        width: 85%;
        display: flex;
        justify-content: space-between;
        align-items: start;
        flex-wrap: wrap;
        gap: 15px;
    }

    .bookSchedule .SchText {
        width: 100%;
    }

    .bookSchedule h4 {
        font-size: 15px;
    }

    .bookSchedule button {
        height: 40px;
        width: 160px;
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 16px;
        transition: 0.2s all ease-in-out;
    }

    .bookSchedule button.payBtn {
        height: 45px;
        width: 240px;
        color: #fff;
        border: none;
        cursor: pointer;
        font-size: 14px;
        transition: 0.2s all ease-in-out;
    }

    /* Contact Main:- */
    .contact-main {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 40px;
    }

    .contact-main .contact-col {
        width: 95%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column;
        flex-wrap: wrap;
        gap: 30px;
    }

    .contact-main .contact-col:first-child {
        width: 95%;
        display: flex;
        justify-content: space-around;
        align-items: center;
        flex-direction: column-reverse;
        flex-wrap: wrap;
        gap: 30px;
    }

    .contact-main .contact-col>div {
        width: 100%;
        display: flex;
        justify-content: start;
        align-items: start;
        gap: 25px;
    }


    .contact-main .contact-col h2 {
        font-size: 21px;
        color: #1B63AB;
        text-transform: uppercase;
        margin-bottom: 20px;
    }

    .contact-main .contact-col ul li {
        list-style: none;
        font-size: 17px;
    }

    .contact-main .Sch {
        display: flex;
        justify-content: space-evenly;
        align-items: start;
    }


    .contact-main .contact-col h3 {
        font-size: 19px;
        color: #00b4d8;
    }

    .contact-main .contact-col button {
        height: 40px;
        width: 140px;
        background-color: #1B63AB;
        border: none;
        color: #ffffff;
        font-size: 20px;
        transition: all 0.2s ease-in-out;
        cursor: pointer;
        font-weight: bold;
    }

    /* .contact-main .contact-col button:hover {
        border: 2px solid #0254B9;
        color: #0254B9;
        background-color: white;
    } */

    .contact-main .contact-col .contact-cover img {
        width: 100%;
    }

    .contact-main .contact-col img.item-icon {
        height: 25px;
    }

    .contact-main .contact-col iframe {
        width: 100%;
        height: 250px;
    }

    /* Our Team */
    .our-founders {
        padding: 5px;
    }

    .our-founders h1,
    .our-team h1 {
        font-size: 26px;
        margin: 0;
        padding: 10px;
    }

    .our-founders .doctors .doctor .doctor-text {
        padding: 5px;
    }

    .our-founders .doctor .doctor-text p,
    .our-team .team-member p,
    .our-team .team-member b {
        color: #ffffff;
        font-size: 17px;
    }

    .our-team {
        padding: 5px;
    }

    .our-team .team-member-list {
        width: 100%;
        gap: 0;
        display: flex;
        justify-content: center;
        align-items: start;
    }

    .our-team .team-member-list .team-member {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        flex-direction: column;
        margin: 30px 0;
    }

    .supercare-learn-more {
        height: 40px;
        width: 140px;
        font-size: 16px;
    }

}

@media (max-width: 650px) {

    /* ABOUT US (MAIN) :- */
    .team-msg .text ul li.quote {
        font-size: 26px;
        color: #ffffff;
    }

    .team-msg .text {
        padding: 0 10px;
    }

    .team-msg .text ul li.team-text {
        font-size: 14px;
        color: #ffffff;
        margin: 5px 0;
    }

    /* SERVICES (main) */
    main .main-service-list {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 7px;
    }

    main .main-service-list .main-services-item:nth-child(odd) {
        width: 85%;
        /* background-color: yellow; */
        height: auto;
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        margin: 10px 0;
        gap: 10px;
    }

    main .main-service-list .main-services-item:nth-child(even) {
        width: 85%;
        /* background-color: yellow; */
        height: auto;
        display: flex;
        justify-content: start;
        align-items: start;
        flex-direction: column;
        margin: 10px 0;
        gap: 10px;
    }

    main .main-service-list .main-services-item .item-image,
    main .main-service-list .main-services-item .item-info {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 5px;
    }

    main .main-service-list .main-services-item .item-info .item-content {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 15px;
    }

    main .main-service-list .main-services-item .item-image img {
        width: 100%;
        height: auto;
    }

    main .main-service-list .main-services-item .item-info p {
        font-size: 12px;
        height: auto;
    }


    main .main-service-list .main-services-item .item-info button {
        background-color: #00619a;
        color: #fff;
        height: 30px;
        width: 130px;
        border: none;
        font-size: 13px;
        font-weight: 600;
        transition: all 0.3s ease-in-out;
        cursor: pointer;
    }

    /* Contact Main:- */
    .contact-main .contact-col ul li,
    .contact-main .contact-col ul li a {
        list-style: none;
        font-size: 16px;
        color: #000000;
    }

    /* Our Team:- */
    .our-founders .doctor .doctor-text p,
    .our-team .team-member p,
    .our-team .team-member b {
        color: #ffffff;
        font-size: 15px;
    }
}

@media (max-width: 420px) {
    main .container h1 {
        font-size: 27px;
        letter-spacing: 1.5px;
    }

    main .container .main-info {
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 30px;
    }

    .main-info .main-info-1 {
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .main-info .main-info-1 .main-info-img img {
        height: 130px;
    }

    .main-info .main-info-details {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .main-info .main-info-details h2 {
        font-size: 21px;
        line-height: 24px;
        letter-spacing: 1.2px;
        text-align: center;
    }

    .main-info-details-sch p {
        text-align: center;
    }

    .main-info .main-info-2 {
        width: 100%;
        justify-content: center;
    }

    .main-info-2 img {
        height: 140px;
        border-radius: 50%;
    }

    .three-values .value {
        width: 80%;
        border: 1px solid black;
        padding: 10px;
        height: 250px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-direction: column;
        margin: 15px 0;
    }

    .three-values .value h3 {
        font-size: 20px;
        color: #1B63AB;
    }

    .three-values .value p {
        width: 80%;
        font-size: 11px;
    }
}