@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    line-height: normal;
    font-family: "Lexend", sans-serif;
    font-family: 'Poppins', sans-serif;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

section {
    height: auto !important;
    margin: auto !important;
}


:root {
    --main-color: #343a40;
    --second-color: #7300b3;
    --third-color: black;
    --fourth-color: white;
}

/*body {*/
/*    background: #e6fefe;*/
/*}*/


header {
    width: 100%;
    height: auto;
    padding: 10px 0;
    background-color: white;
    position: relative;
}

nav {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

img.logo {
    width: 130px;
    height: auto;
}

nav .nav-links {
    width: auto;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}


nav .nav-links li a {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--second-color);
    font-size: 14px;
    color: white;
    font-weight: 500;
    border-radius: 5px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}


nav .nav-links li a i {
    color: white;
    margin-right: 10px;
}


nav .nav-links li a::after {
    position: absolute;
    top: 0;
    right: 0;
    width: 0%;
    height: 100%;
    background-color: rgb(50, 50, 50);
    content: ' ';
    z-index: -1;
    transition: all 0.8s ease;
}

nav .nav-links li a:hover:after {
    width: 100%;
    color: white;
    right: auto;
    left: 0% !important;

}

.mobilelink {
    display: none !important;
}

.menulinks {
    width: auto;
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
}

.menulinks li {
    position: relative;
    z-index: 1;
}

.menulinks li a {
    font-size: 16px;
    font-weight: 600;
    color: var(--second-color);

}

.menulinks li::after {
    position: absolute;
    bottom: 0px;
    width: 0%;
    height: 1px;
    background-color: var(--second-color);
    content: ' ';
    right: 0;
    transition: all 0.5s ease;
}

.menulinks li:hover:after {
    left: 0;
    right: auto;
    width: 100%;
}

.burger {
    width: 50px;
    height: 50px;
    border: 2px solid var(--second-color);
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    display: none;
}



/* nav .nav-links li */
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}


.fullwidth {
    width: 100%;
    height: auto;
    margin-bottom: 5rem;
}

.bannerimg1 {
    width: 100%;
    height: auto;
    margin-bottom: 3rem;
}

img.bannerimg {
    width: 100%;
}


/* formcontainer */

.formcontainer {
    width: 100%;
    height: auto;
    /* background-color: #f3f2f2; */
    background: var(--main-color);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 4rem 2rem;
    color: var(--fourth-color);
    border-radius: 20px 0 20px 0;
}

.formcontainer .form-group {
    width: 24%;
    /*height: 80px;*/
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    flex-wrap: wrap;
    flex-direction: column;
}

.formcontainer .form-group label {
    width: 100%;
    display: block;
    font-size: 1.4rem;
    font-family: "Lexend", sans-serif;
}

.formcontainer .form-group input,
.formcontainer .form-group .form-select {
    width: 100%;
    height: 40px;
    border: none;
    outline: none;
    padding-left: 1rem;
    border-radius: 1rem;
    font-size: 1.5rem;
    background-color: white;
    margin-top: 1rem;
}

.formcontainer .form-group button {
    width: 100%;
    height: 40px;
    background-color: var(--main-color);
    color: var(--fourth-color);
    border: none;
    outline: none;
    border-radius: 1rem;
    font-size: 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
    background-color: var(--second-color);
}


/* 0 */

.aboutdr {
    width: 100%;
    height: auto;
}


.dr-card-container {
    width: 100%;
    height: auto;
    margin: 30px auto;
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.dr-card {
    width: 48%;
    height: auto;
    border-bottom: 2px solid var(--second-color);
    background-color: var(--second-color);
    box-shadow: 2px 2px 10px 2px #e1e1e1;
}

.dr-card>img {
    width: 100%;
    height: auto;
}

.dr-card-content {
    width: 48%;
    height: auto;
    padding: 0 15px;
    color: rgb(0, 0, 0);
}


.dr-card-content h5 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.dr-card-content p {
    font-size: 1.5rem;
    line-height: 30px;
}

.dr-card-content a {
    display: inline-block;
    padding: 10px 15px;
    background-color: var(--main-color);
    color: white;
    font-size: 1.5rem;
    margin-top: 10px;
}

.aboutdr img {
    width: 100%;
    height: auto;
}

.aboutcontent {
    width: 80%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    margin: auto;
    margin-top: -100px;
    position: relative;
    z-index: 9999999999999999;
}

.aboutdr-content {
    width: 100%;
    height: auto;
    background-color: white;
    padding: 4rem 3rem;
    box-shadow: 2px 2px 3px 2px rgb(102, 102, 102);
}

.aboutdr-content h5 {
    font-size: 3rem;
    color: var(--main-color);
}

.aboutdr-content a {
    display: inline-block;
    padding: 1.5rem 3rem;
    background-color: var(--main-color);
    color: var(--fourth-color);
    font-size: 1.5rem;
    border-radius: 1rem;

}

.flex-box {
    display: flex;
    gap: 10px;
    margin: 20px auto;
}


.flex-box img {
    width: 80px;
    height: 80px;
    border: 1px solid var(--second-color);
    border-radius: 50%;
    padding: 5px;
}

/*  */


.serviceConatiner {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
}

.service-card {
    width: 24%;
    height: auto;
    background-color: rgb(243, 242, 242);
    margin-bottom: 1rem;
    border-radius: 10px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 250px;
    position: relative;
}

.service-img::after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: ' ';
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 40, 86, 0.5) 0%, rgba(0, 0, 0, 0) 73%);
    z-index: 1;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.card-text-content {
    width: 100%;
    height: auto;
    padding: 1rem;
    text-align: center;
}

.card-text-content p {
    font-size: 2rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

#problem {
    font-size: 1.2rem;
    /*border-left: 2px solid var(--main-color);*/
    font-weight: 500;
    margin: 1rem 0;
}

.card-text-content button {
    /* height: 4rem; */
    padding: 1rem 2rem;
    font-size: 1.6rem;
    background-color: var(--main-color);
    color: var(--fourth-color);
    cursor: pointer;
    border-radius: 1.5rem;
    outline: none;
    border: none;
}

/*  */


.flex-box-why-choose {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.why-choose-text-contnet,
.why-choose-img {
    width: 65%;
    height: auto;
}

.why-choose-text-contnet ul {
    width: 100%;
    height: auto;
}

.why-choose-text-contnet ul li {
    width: 100%;
    height: auto;
    margin-bottom: 1rem;
    padding-left: 40px;
    position: relative;
    margin-top: 30px;
}

.why-choose-text-contnet ul li span {
    position: absolute;
    top: 5px;
    left: 0;
    width: 30px;
    height: 30px;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    display: grid;
    place-content: center;
    border: 1px solid var(--second-color);
    font-size: 14px;
}

.why-choose-text-contnet ul li i {
    color: rebeccapurple;
}

.why-choose-text-contnet ul li h5 {
    font-size: 2.5rem;
    color: var(--second-color);
    font-weight: 500;
}

.why-choose-text-contnet ul li p {
    font-size: 1.5rem;
}

.why-choose-img {
    width: 30%;
    border-radius: 20px;
    overflow: hidden;
}

.why-choose-img img {
    width: 100%;
    height: auto;
}

.store-img {
    width: 100%;
    height: auto;
}

.store-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


.treatment-content {
    width: 100%;
    height: auto;
    margin: auto;
}

h5.heading {
    width: 100%;
    font-size: 3rem;
    text-transform: uppercase;
}

.paragraph {
    width: 100%;
    height: auto;
    margin-top: 1rem;
}

.paragraph p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.img {
    max-width: 991px;
    width: 100%;
    height: auto;
    margin: auto;
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.youtube-section {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 3rem;
}

.youtuve-video {
    width: 32%;
    aspect-ratio: 16/9;
    margin-bottom: 1rem;
}

.youtuve-video iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.single-youtube {
    width: 100%;
    height: auto;
    margin-top: 3rem;
}

.single-youtube iframe {
    width: 100%;
    aspect-ratio: 16/9;
    height: auto;
}

/* gallery-container */


.clinic-gallery-container {
    width: 100%;
    height: auto;
    columns: 3;
    -moz-column-gap: 1rem;
    gap: 10px;
    margin: 30px auto;
}

.gallery-inner {
    width: 100%;
    /*border-radius:10px;*/
    overflow: hidden;
    position: relative;
}

/* .grid-gallery-img:after {
    content: " ";
    position: absolute;
    bottom: 5px;
    left: 0px;
    width: 100%;
    height: 100%;

}

.grid-gallery-img:hover:after {
    background: linear-gradient(0deg, rgba(0, 40, 86, 0.5) 0%, rgba(0, 0, 0, 0) 73%);
} */

.gallery-inner img {
    width: 100%;
}

.gallery-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-around;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
    margin: 30px auto;
}


.gallery-img {
    width: 32%;
    aspect-ratio: 1/1;
    margin-bottom: 10px;

}

.gallery-img img {
    width: 100%;
    height: 100%;
}

/* video-container */


.owl-prev,
.owl-next {
    position: absolute;
    content: ' ';
    top: 50%;
    transform: translateY(-50%);
    left: -15px;
    width: 30px;
    height: 30px;
    font-size: 15px !important;
    background-color: var(--second-color) !important;
    color: white !important;
}

.owl-next {
    left: auto !important;
    right: -15px;
}



.video-container {
    width: 100%;
    height: auto;
    margin: 30px auto;
}

.youtube-item {
    width: 100%;
    height: auto;
    position: relative;
    /*padding-bottom: 50px;*/
}

.youtube-item iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
}



.review-container {
    width: 100%;
    height: auto;
    margin-top: 30px;
    position: relative;
}

.review-box {
    width: 100%;
    height: 280px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    padding: 30px;
}


.review-box .review-img {
    width: 40px !important;
    height: 40px;
    position: relative !important;
    margin-bottom: 10px;
}

.review-box .review-img img {
    width: 100%;
    height: 100%;
}

.review-box .review-img::after {
    width: 20px;
    height: 20px;
    background: url('../media/google.png') no-repeat center center;
    background-size: cover;
    content: '';
    position: absolute;
    bottom: -5px;
    right: -5px;
    border-radius: 50%;
}


.review-box::after {
    position: absolute;
    top: -25px;
    left: -25px;
    content: '';
    width: 50px;
    height: 50px;
    background-color: var(--main-color);
    transform: rotate(-48deg);
}

.review-box h4 {
    font-size: 2rem;
    color: var(--main-color);
    margin: 10px 0 0 0;
    font-weight: 400;
}

.review-box p {
    font-size: 1.5rem;
}

.star-flex {
    width: auto;
    height: auto;
    display: flex;
    font-size: 1.8rem;
}

.star-flex i {
    color: #ffc107;
}

.grey-star {
    color: #dbdbdb !important;
}

/* review */


/* faq */


.faq-flex {
    width: 100%;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


.innerflex {
    /*flex: 1;*/
    /*flex-basis: 400px;*/

    width: 100%;
}

.faq-container {
    width: 100%;
    height: 100%;
    padding: 0px;
    margin-top: 2rem;
}


.innerfaq-container {
    width: 100%;
    height: auto;
    padding: 10x;
    background-color: rgb(255, 255, 255);
    margin-bottom: 1rem;
}


.accordion__question {
    width: 100%;
    height: auto;
    padding: 10px;

}

.accordion__question:hover {
    background-color: rgba(219, 219, 219, 0.423);
}


.accordion__question h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion__answer {
    width: 100%;
    height: auto;
    margin-top: 0px;
    padding: 1rem;
    padding-top: 0.5rem;
}

.accordion__answer p {
    font-size: 1.5rem;
}

.accordion:hover {
    cursor: pointer;
}

.accordion__answer {
    display: none;
}

.innerfaq-container.active2 .accordion__answer {
    display: block;
}

.accordion__answer ul li {
    list-style-type: disc;
    list-style-position: inside;
    font-size: 1.3rem;
}


.mobile-banner1 {
    display: none;
}


.copy-right {
    width: 100%;
    height: 60px;
    font-size: 1.3rem;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
}

.copy-right span {
    display: block;
    font-size: 1rem;
    width: 100%;
}

.footer-mobile {
    display: none;
}


.scroll {
    position: fixed;
    bottom: 50px;
    right: 5%;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: black;
    color: rgb(0, 0, 0);
    display: none;
    overflow: hidden;
    cursor: pointer;
}

.scroll div i {
    font-size: 1.4rem;
    color: var(--second-color);
    /* animation: move 0.5s infinite linear; */
    animation: move 0.5s linear infinite;
}

.scroll div {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
}


@keyframes move {

    0% {
        transform: translateY(-10px);
    }

    10% {
        transform: translateY(0px);
    }

}

.whatsapp-widget {
    width: 300px;
    height: auto;
    position: fixed;
    bottom: 15%;
    right: 5%;
    z-index: 999999999999;
    overflow: hidden;
}

.whatsapp-widget-inner {
    width: 100%;
    height: 150px;
    box-sizing: 2px 2px 2px 2px #c6c6c6;
    margin-bottom: 10px;
    background: #0a5f54;
    border-radius: 10px;
    display: none;
    position: relative;
    animation: whatsappanimation 0.5s linear;
    padding: 20px;
}

.aboutbrand {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px
}

.brand-img {
    width: 50px;
    height: 50px;
    border: 2px solid white;
    border-radius: 50%;
    background-color: white;
}

.brand-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brandname {
    width: auto;
    height: auto;
    color: white;
}

.brandname h3 {
    font-size: 15px;
    font-weight: 600;
}

.brandname p {
    font-size: 10px;
}

.buttonlink {
    position: absolute;
    bottom: 0px;
    left: 0px;
    content: ' ';
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.buttonlink a {
    width: 100%;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
    cursor: pointer;
    color: grey;
}

.buttonlink a i {
    color: #4dc247;
    font-size: 18px;
}


@keyframes whatsappanimation {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    50% {
        opacity: 50;

    }

    100% {
        opacity: 100;
        transform: translateY(0%);
    }
}

.whatsapp-widget-inner .close {
    position: absolute;
    top: 10px;
    right: 15px;
    content: ' ';
    cursor: pointer;
}

.whatsapp-widget-inner .close i {
    font-size: 15px;
    color: white;
}

.whatsappbutton {
    width: auto;
    height: auto;
}

.whatsappbutton button {
    padding: 10px 25px;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background-color: #4dc247;
    color: white;
    border: none;
    outline: none;
    border-radius: 10px;
    cursor: pointer;
    margin-left: auto;
}

.whatsappbutton button i {
    font-size: 20px;
    color: white !important;
}

/* -------------------------------------------------------------- */

.thankyouHeading {
    width: 100%;
    height: 300px;
    background-color: var(--main-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.thankyouHeading h1 {
    font-size: 8rem;
    color: var(--second-color);
    position: relative;
    text-align: center;
    margin-top: -80px;
}

.thankyouHeading h1 img {
    height: 50px;
    filter: invert(1);
}

.thankyouHeading h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%);
    width: 150px;
    height: 2px;
    background-color: var(--main-color)
}

.sub-thankyouHeading {
    width: 100%;
    max-width: 1360px;
    margin: auto;
    padding: 100px 50px;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 0 1rem 0rem rgb(223, 223, 223);
    margin-top: -100px;
    z-index: 999999999999999999999999999999;
    position: relative;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

.sub-thankyouHeading p,
.sub-thankyouHeading .socialmedia {
    flex-basis: 100%;
}

.sub-thankyouHeading p {
    font-size: 1.4rem;
    text-align: center;
    font-weight: bold;
}

.sub-thankyouHeading .bth {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--main-color);
    color: white;
    margin: 2rem 0;
    font-size: 1.3rem;
    border-radius: 0.5rem;
}

.sub-thankyouHeading .socialmedia {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sub-thankyouHeading .socialmedia a {
    margin: 0 1rem;
    color: var(--main-color);
    font-size: 1.4rem;
    font-weight: bold;
}

.fa-phone {
    color: black;
}

.fa-whatsapp {
    color: #4dc247;
}

.flexdiv {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 10px;
    margin: 30px auto;
}

.iconbox {
    width: 23%;
    height: auto;
    padding: 10px;
    position: relative;
    height: 230px;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    background-color: white;
    flex-wrap: wrap;
    flex-direction: column;
    text-align: center;
}

.iconbox img {
    width: 80px;
    height: 80px;
    border: 2px solid #eac3ff;
    border-radius: 50%;
    padding: 10px;
    background-color: #f9f9f9;
}

.iconbox p {
    font-size: 3rem;
    margin-top: 10px;
    font-weight: 600;
    width: 100%;
}

.iconbox p span {
    display: block;
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 5px;
}

/*location*/

.flex-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border: 2px solid var(--second-color);
    margin-top: 30px;
    gap:1rem
}

.locationtext {
    flex:1;
    height: auto;
    display: grid;
    place-content: center;
    text-align: left;
    padding: 20px;
        border-right: 2px solid var(--second-color);
}

.locationtext:nth-child(3) {
    border-right:none;
}

.locationtext h6 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.locationtext p {
    font-size: 1.5rem;
}

.locationtext iframe {
    width: 98%;
    height: 200px;
    margin: 10px auto;
}


.grid-gallery {
    /* display: grid;
    grid-template-rows: masonry;
    grid-gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    margin: 0 auto;
    max-width: 100%;
    padding: 3rem 0; */
    width: 100%;
    columns: 3;
    column-gap: 20px;
}

.grid-gallery-img {
    width: 100%;
    height: 400px;
    margin-bottom: 10px;
    border-radius: 5px;
    overflow: hidden;
}

.grid-gallery-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.flex-container-machine {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    margin-top:30px;
    }

    .box {
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      flex: 1 1 300px;
      max-width: 350px;
      text-align: center;
      padding: 20px;
    }

    .box img {
      width: 100%;
      height: auto;
      border-radius: 6px;
    }

    .box h3 {
      margin: 15px 0 10px;
      font-size: 1.8rem;
    }
