* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

:root {
    --primaryColor:#191919;
    --secondaryColor:#CDA05C;
    --pinkdark:#924a90;
    --pinklight:#c791c6;
    --pinkthird:#75488f;
    /* --primary-font:"Oswald", sans-serif;
    --secondary-font:"Poppins", sans-serif; */
    --primary-font:"Prociono", serif;
    
    /* font-family: "Prociono", serif;
  font-weight: 400;
  font-style: normal; */
}

body {
    font-family: var(--primary-font);
}

.heading {
    font-size: 40px;
    
    padding-bottom: 18px;
    text-align: center;
    font-family: var(--font-family);
    color: white;
    text-transform: capitalize;
}
.ban-box .heading
{font-size:28px;}

.error {
    color: red;
    font-size: 12px;
    display: none;
}

.errormsg {
    color: red;
    font-size: 12px;
    /* display: none; */
}

.stikcy-left
{
    position: fixed;
    bottom: 60px;
    left: 16px;
    display: flex;
    flex-direction: column;
    gap: 15px;

}

.whatsapp {
    cursor: pointer;
    display: inline-block;
    background-color: transparent;
    border: none;
    border-radius: 100px;
    box-shadow: 0 0 5px #cbbdde;
    transition: box-shadow 0.3s ease-in-out;
    animation: gloww 1.5s infinite alterna
}
.whatsapp a{display: flex;}
@keyframes gloww {
    0% {
        box-shadow: 0 0 5px #3e1f69;
    }
    100% {
        box-shadow: 0 0 20px #6200ea, 0 0 30px #6200ea, 0 0 40px #6200ea, 0 0 50px #6200ea;
    }
}
.heading span {
    color:var(--pinkdark);
}
.whatsapp svg{width: 50px;}
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 50%;
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

#gotop {
    display: none;
    position: fixed;
    bottom: 85px;
    right: 16px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: white;
    cursor: pointer;
    padding: 15px;
    font-size: 22px;
    width: 50px;
    height: 50px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    border: 1px solid #eee;
}

#gotop:hover {
    background-color: #d8d8d8;
}

.wrapperx {
    width: 100%;
    position: relative;
    margin: auto;
}

.wrapperx i {
    top: 50%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    font-size: 1.25rem;
    position: absolute;
    text-align: center;
    line-height: 50px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: translateY(-50%);
    transition: transform 0.1s linear;
}

.wrapperx i:active {
    transform: translateY(-50%) scale(0.85);
}

.wrapperx i:first-child {
    left: -22px;
}

.wrapperx i:last-child {
    right: -22px;
}

.wrapperx .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    border-radius: 8px;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel.no-transition {
    scroll-behavior: auto;
}

.carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel.dragging .card {
    cursor: grab;
    user-select: none;
}

.carousel :where(.card, .img) {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel .card {
    scroll-snap-align: start;
    /* height: 342px; */
    list-style: none;
    background: #fff;
    cursor: pointer;
    padding-bottom: 15px;
    flex-direction: column;
    border-radius: 8px;
}

.carousel .card .img {
    background: #8B53FF;
    height: 148px;
    width: 148px;
    border-radius: 50%;
}

.card .img img {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #fff;
}

.carousel .card h2 {
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
}

.carousel .card span {
    color: #6A6D78;
    font-size: 1.31rem;
}


.form-control:nth-child(6) 
{
    display:flex;
    flex-direction:column;
   
}
.form-control textarea
{    width: 100%;
    height: 80px;
    padding: 10px;
    font-family:var(--secondary-font);
    border: none;
    outline: none;
    border-radius: 10px;}

    .form-control:nth-child(7)
    {
        width:100%;
        text-align:center;
    } 
.form-control .submit
    {   max-width:200px;
        border-radius: 100px;
        background-color: var(--pinkdark);
        color: #fff;
        padding: 0px 50px;
    margin-top:20px;}

    /* THANK YOU PAGE */

    .map_section iframe
    {
width:100%;
display:flex;
    }


    .thank_you
    {
        padding:50px 0px;
        text-align:center;
    }

.error_page
    {    max-width: 450px;
        margin: 0 auto;
        border: 1px solid var(--pinkdark);
        padding:25px 50px;
        background-color: var(--pinklight);
        border-radius: 10px;
        gap: 15px;
        display: flex;
        flex-direction: column;
        color: #fff;}
.go-home
{    max-width: 120px;
    margin: 0 auto;
    padding: 10px;
    border-radius: 10px;
    border: none;
    color: #fff;
    background-color: var(--pinkthird);}

    .go-home a {
        color:#fff;
        text-decoration:none;
    }

.testiBottom
{
    max-height:190px;
    overflow-y:auto;
}

/* width */
.testiBottom::-webkit-scrollbar {
    width: 10px;
  }
  
  /* Track */
  .testiBottom::-webkit-scrollbar-track {
    background:#ddd; 
  }
   
  /* Handle */
  .testiBottom::-webkit-scrollbar-thumb {
    background: var(--pinkthird); 
  }
  
  /* Handle on hover */
  .testiBottom::-webkit-scrollbar-thumb:hover {
    background: var(--pinkthird); 
  }

.testiBottom p strong{
    display:block;
    margin-bottom:5px;
    line-height:1.5;
}

@media screen and (max-width: 900px) {
    .wrapperx .carousel {
        grid-auto-columns: calc((100% / 2) - 9px);
    }
}

@media screen and (max-width: 600px) {
    .wrapperx .carousel {
        grid-auto-columns: 100%;
    }
}

/* __________________________________________________ */
header {
    padding: 10px;
    background:var(--pinkdark);
}

.logo img {
    /* width: 150px; */
    /* height: 70px; */
    height:100px;
    object-fit: contain;
    /* filter:brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(4%) hue-rotate(268deg) brightness(107%) contrast(100%); */
}

.phoneCall {
    display: none;
}

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

.navbar ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.navbar ul li {
    margin-left: 20px;
    list-style: none;
    background: #fff;
    padding:5px 10px 5px;
    border-radius:30px;
}

.navbar ul li a {
    color:var(--pinkdark);
    font-family: var(--secondary-font);
    font-size: 16px;
    text-decoration: none;
}

.navbar ul li a span {
    margin-right:5px;
    border-radius:100%;
    background-color:var(--pinkdark);
    padding:10px;
    color:#fff;
}

/* ___________________________________ */

.banner-form {
    /* padding:50px 0; */
    padding:0 0 50px 0;
    /* background-color: #fbf8f1; */
    /* background-color:#c7afc7; */
    background-image:url('../images/gyne-img.avif');
    background-repeat:repeat;
    /* background-size:cover; */
    position:relative;
    /*padding-top:140px; */
}
.mail-sticky a, .appointment-link a 
{    width: 50px;
    height: 50px;
    display: block;
    border-radius: 100%;
    background-color: #eee;
    text-align: center;
    line-height: 50px;
    color: var(--pinkdark);}
.banner-form::before
{
    background-color:#c7afc7;
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:.75;
    content:'';
}

.ban-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.ban-box:last-child {
    /* background-color: #CDA05C; */
    background-color:var(--pinklight);
    padding:25px;
    border-radius: 12px;
}

.ban-form {
    height: 100%;
}

.ban-box {
    position: relative;
}

.ban-box img {
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px;
    /* max-height:520px; */
    display:flex;
}

.docContent {
    background-color: rgba(0, 0, 0, 0.566);
    color: white;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 10px 20px;
    width: 100%;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
}

.docContent span {
    display:block;
    margin:5px 0px 0px;
}

.docContent span:first-child {
    color:#fff;
    font-weight: bold;
    font-size: 18px;
    letter-spacing:2px;
}

.docContent span strong {
    color: var(--secondaryColor);
}

.form {
    padding: 50px 0;
    background-color: #191919;
}

form {
    display: flex;
    flex-wrap: wrap;
    /* margin-top:30px; */
    margin-top:0;
}

form input,
form select {
    width: 100%;
    height: 50px;
    padding: 10px;
    /* border: 1px solid #ccc; */
    border:none;
    outline:none;
    border-radius:10px;
}

#uniq {
    display: none;
}

.form-control {
    padding: 5px;
}

.form-control label{
    color:#fff;
    width:100%;
    display:inline-block;
    margin-top:10px;
    margin-bottom:8px;
}



.form-control:nth-child(1),
.form-control:nth-child(2),
.form-control:nth-child(3),
.form-control:nth-child(4) {
    width: 50%;
}

.form-control:nth-child(5) {
    display: flex;
    width: 100%;
    flex-direction: column;
}

.form-control:nth-child(6) {
    width: 100%;
}

.form-control:nth-child(5) .captcha {
    width: 50%;
    height: 50px;
    background-color: white;
}

.captchaInput {
    width: 100%;
}

.captcha img {
    width: 100%;
    height: 50px;
    object-fit: contain;
}

.btnBtnSubmitss {
    width: 60px;
    height: 50px;
    color: white;
    cursor: pointer;
    background-color: black;
    padding-right: 10px;
}

.btnBtnSubmitss i {
    padding-left: 5px;
}

.form-control:nth-child(5) input {
    width: 100%;
}

form button {
    width: 100%;
    height: 50px;
    border: none;
    background-color: white;
    cursor: pointer;
}

.modal-content form button {
    background-color: var(--secondaryColor);
    color: white;
}

/* ___________________________________ */
.stats {
    padding:10px 0;
    /* background-color: #000; */
    background-color:var(--pinkthird);
}

.stats .boxes {
    display: flex;
    align-items: center;
}

.stats .box {
    width: 33%;
    display: flex;
    /* padding: 10px; */
    justify-content: center;
    min-height: 90px;
    align-items: center;
}

.stats .box:not(.stats .box:last-child) {
    border-right:1px solid #915bb1;
}

.stats .box img {
    width: 150px;
    height: 70px;
    object-fit: contain;
    /* filter: grayscale(100%); */
}

.stats .box .content {
    color: white;
    padding-left:5px;
}

.stats .box .content .number {
    font-size:32px;
    margin-bottom:0px;
    font-family: var(--secondary-font);
}

.stats .box .content .number.star-txt
{
    font-size:20px;
}

/* .stats .box .content .number.img {
    filter: grayscale(100%);
} */

.stats .box .content .text {
    font-size:15px;
}

.stats .box .content .text span{
    font-size:16px;
    color:gold;
    font-weight:600;
}

.tbslink
{margin-bottom:30px;}

.contenttbs ul
{    margin-left: 30px;
    gap: 12px;
    display: flex;
    flex-direction: column;}

/* _________________________________________________ */
.teams {
    padding: 50px 0;
    /* background-color: #484848; */
}

.teams .wrapper .right
{
    width:60%;
}

.teams .wrapper .left
{
    width:40%;
}

.teams.whychoose .wrapper .right
{
    width:50%;
}

.teams.whychoose .wrapper .left
{
    width:50%;
}


.teams .heading {
    color:var(--primaryColor);
}


.whychoose .heading
{color:white;}
.whychoose .heading span{
    color:var(--pinklight);
}

.teams .wrapper {
    display: flex;
    /* align-items:center; */
    align-items:flex-start; 
}

.teams .left,
.teams .right {
    width: 50%;
}

.left img {
    width: 100%;
    border-radius: 12px;
}

.right {
    text-align: left;
    padding-right: 50px;
}

.right p,
.right li {
    line-height: 1.5;
    /* color: white; */
}

.right p:not(.right p:last-child) {
    margin-bottom: 30px;
}

.teams .heading {
    text-align: left;
}

.teams.whychoose {
    /* background: var(--primaryColor); */
    background-color:var(--pinkthird);
}

.teams.whychoose .right {
    padding-left: 0;
    padding-right: 50px;
}

.teams.whychoose .right li {
    margin-bottom: 10px;
    list-style: none;
    position: relative;
    padding-left: 25px;
    color:#fff;
}

.teams.whychoose .right li::before {
    position: absolute;
    font-family: FontAwesome;
    content: "\f058";
    left: 0;
    top:14px;
    transform: translateY(-50%);
    color:var(--pinklight);
}

.booknowbtn
{background-color: var(--pinklight);
    padding: 8px 30px;
    border-radius: 30px;
    margin-top: 20px;
    display: inline-block;
    text-decoration: none;
    color: #fff;}

/* ______________________________________ */

.treatments {
    padding: 50px 0;
    /* background-color: #FFF2E0; */
    background-color:#c7afc7;
    text-align: center;
}

.treatments .para {
    margin-bottom: 30px;
}

.treatments .heading {
    color: var(--primaryColor);
}

.treatments .cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
}


.lhrtypecontent {
    box-shadow: 0 0 10px #0003;
    padding: 25px;
    background-color: #fff;
    margin-top: 10px;
    border-radius: 8px;
    margin: 5px;
    cursor: pointer;
}

.imagewrap {
    position: relative;
}

.imagewrap img {
    /* width: 100%;
    object-fit: cover;
    border-radius: 6px; */
    max-width:90px;
}

.imagename {
    font-size: 18px;
    text-transform: capitalize;
    margin-top: 10px;
    text-align: center;
    font-family: var(--secondary-font);
    font-weight: 500;
    color:var(--pinkdark);
}

.whychooseBtn {
    text-align:left;
    /* margin-top: 20px; */
}

.whychooseBtn a {
    all: unset;
}

.bookConsultation {
    padding: 15px 25px;
    border-radius: 8px;
    cursor: pointer;
    background-color:var(--pinklight);
    margin-top: 10px;
    border: none;
    color: white;
    font-size: 16px;
}

/* ______________________________________ */

/* _____________________________________________________ */
.results {
    padding: 50px 0;
}

.results .heading {
    color: var(--primaryColor);
}

.results .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.results .card {
    transition: 0.3s;
    text-align: center;
}

.results .card p {
    font-size: 12px;
    margin-top: 10px;
}

.results .card img {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

/* On mouse-over, add a deeper shadow */
.results .card img:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/* ______________________________________ */

.testimonials {
    padding: 50px 0;
    /* background: #FFF2E0; 
    background-color:var(--pinklight);*/
}

.testimonials .heading {
    color: var(--primaryColor);
}

.testimonials .cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.testimonials .testiBox {
    padding: 30px;
    background: #FFFFFF 0% 0% no-repeat padding-box;
    border:1px solid var(--pinklight);
    border-radius: 8px;
    text-align: left;
    height: 100%;
}

.testimonials .testiTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.testi-para {
    font-size: 10px;
    /* color:#fff; */
    color:#000;
    text-align: center;
    margin-top: 5px;
}

.testimonials .testiname_rating_box .testiName {
    font-size: 22px;
    color: #313131;
    font-family: canelaTextMedium;
}

.testimonials .testiname_rating_box .testiRating {
    color: gold;
    margin-top: 10px;
}

.item img {
    display: block;
    width: 100%;
    border-radius:100%;
}

.testimonials .testiBottom p {
    padding-right: 15px;
}

/* ______________________________________ */

/* _____________________________________________________ */
.getTouch {
    padding-top: 50px;
    background-color:var(--pinkthird);
    padding-bottom: 15px;
}

.getTouch .heading span{
    color:var(--pinklightg);
}

.getTouch .boxes {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.getTouch .box {
    border:2px solid var(--pinklight);
    text-align: center;
    padding: 20px 20px;
    color:white;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.getTouch .box span {
    margin-bottom:20px;
    font-size: 22px;
    background-color:var(--pinklight);
    color: #fff;
    width: 70px;
    height: 70px;
    border-radius: 100%;
    text-align: center;
    line-height: 70px;
}

.getTouch .box p{
    line-height:1.5;
}

.getTouch .box a {
    all: unset;
    font-size: 18px;
    cursor: pointer;
}

.getTouch .disclaimer {
    margin-top: 20px;
    color: white;
    text-align: center;
    font-size:12px;
    line-height:1,5;
}

/* _____________________________________________________ */
footer {
    padding: 15px 0;
    background:#855a9f;
    text-align: center;
}

footer p {
    font-size: 16px;
    color: white;
}

/* ______________________________________ */
.navbarMobile {
    background-color: var(--secondaryColor);
    overflow: hidden;
    position: fixed;
    bottom: -1px;
    width: 100%;
    display: none;
    justify-content: center;
}

/* Style the links inside the navigation bar */
.navbarMobile a svg {
    width: 25px;
}

.navbarMobile a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 0px;
    text-decoration: none;
    font-size: 12px;
    border-right: 1px solid white;
    flex: 1;
}

.navbarMobile a:last-child {
    border-right: none;
}


/* ______________________________________ */
/* ______________________________________ */
/* ______________________________________ */
/* ______________________________________ */




.wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
}


.contenttbs {
    display: none;
}

.contenttbs.active {
    display: block;
}

.tbslink ul {
    display: flex;
    list-style-type: none;
    gap:14px;
}

.tbslink li {
    cursor: pointer;
    font-size:15px;
    background-color:var(--pinklight);
    padding:10px 15px;
    border-radius:50px;
    color:#fff;
}

.tbslink li.active {
    font-weight: bold;
    color: #fff;
    background-color: var(--pinkthird);
}

.min-heading{
    font-size:22px;
    margin:30px 0 20px;
    font-weight:600;
    line-height:1.5;
}

input[type="date"]::-webkit-calendar-picker-indicator, input[type="date"]::-webkit-inner-spin-button
{
    -webkit-appearance:none;
    background: transparent;
    opacity:0;
    bottom: 0;
    color: transparent;
    cursor: pointer;
    height: auto;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    width: auto;
}

input[type="date"]::-webkit-date-and-time-value {
    text-align: left;
    color:#000;
}

#date
{
background-image:url('../images/cal-icon.webp');
background-size:18px;
background-repeat:no-repeat;
background-position:95%;
width:100%;
position: relative;
}

#service
{
    color:#000;
}

.header
{
    padding-top: 10px;
    padding-bottom: 10px;
    position:relative;

}


@media (min-width: 576px) {
    .wrapper {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .wrapper {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .wrapper {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .wrapper {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .wrapper {
        max-width: 1320px;
    }
}


/* _________________________________________________ */

@media (max-width: 576px) {

    /* Styles for extra small devices */
    /* Styles for extra small devices */
    .navbarMobile.active {
        display: flex;
    }

    .modal-content {
        width: 90%;
    }

    .wrapperx i:last-child {
        right: 0;
    }

    .wrapperx i:first-child {
        left: 0
    }

    .heading {
        font-size: 25px;
    }

    .navbar ul {
        display: none;
    }

    .logo img {
        height:60px;
    }

    .phoneCall {
        display: block;
        border: none;
        padding: 5px 15px;
        height: 35px;
        background:var(--pinklight);
        color: white;
        border-radius: 12px;
    }

    .phoneCall a {
        all: unset;
        cursor: pointer;
    }

    /* ________________________________________ */
    .banner-form {
        padding:0px 0;
        padding-bottom:20px;
        padding-top:0px;
    }

    .ban-form .heading {
        padding-bottom: 0;
    }

    .ban-box:last-child {
        padding: 20px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .ban-box img {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .ban-boxes {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .docContent {
        padding: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .docContent span:first-child {
        font-size: 12px;
    }

    .docContent span {
        font-size: 12px;
    }

    form {
        margin-top: 10px;
    }

    .form {
        padding: 20px 0;
    }

    .form-control {
        width: 50%;
        padding: 2px;
    }

    .form-control:nth-child(5),
    .form-control:nth-child(6) {
        width: 100%;
    }


    form input,
    form select,
    .captcha img,
    form button {
        height: 40px;
    }

    .btnBtnSubmitss {
        height: 40px;
    }

    .form-control:nth-child(5) .captcha {
        height: 40px;
    }

    /* ________________________________________ */



    .stats .box {
        width: 100%;
        display: block;
        text-align: center;
        padding-bottom: 0;
        padding-top: 0;
    }

    .stats .box:not(.stats .box:last-child) {
        border: none;
    }

    .stats .box .content .number {
        font-size:18px;
        margin-bottom:0;
        
    }

    .stats .box .content .number.star-txt
    {
        font-size:12px;
    }

    .stats .box .content {
        padding: 0;
    }

    .stats .box .content .text {
        font-size: 12px;
    }

    .stats .box img {
        width: 80px;
        height: 30px;
    }

    /* ________________________________________ */

    .teams {
        padding: 30px 0;
    }

    .teams .wrapper {
        display: block;
    }

    .teams .left,
    .teams .right {
        width: 100%;
    }

    .teams .wrapper .right, .teams .wrapper .left
    {
        width:100%;

    }

    .teams.whychoose .wrapper .right, .teams.whychoose .wrapper .left
    {
        width:100%;
        padding-right:0;
    }

    .header
    {
        padding-top:10px;
        padding-bottom:10px;
    }

    .right {
        padding: 0;
    }

    .right p:not(.right p:last-child) {
        margin-bottom: 10px;
    }

    .teams .heading {
        margin: 10px 0;
        padding: 0;
    }

    /* _____________________________________________________ */

    .treatments {
        padding: 30px 0;
    }

    .treatments .cards {
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        overflow-x: auto;
    }

    .lhrtypecontent {
        height: auto;
        width: 250px;
        padding: 10px;
    }

    .imagename {
        margin-top: 0;
    }

    /* _____________________________________________________ */

    .results {
        padding: 30px 0;
    }

    .results .cards {
        display: block;
    }

    .results .card {
        width: 100%;
        margin-bottom: 20px;
    }

    /* _____________________________________________________ */

    /* ________________________________________ */
    .testimonials {
        padding: 30px 0;
    }

    .testimonials .cards {
        grid-template-columns: 1fr;
    }

    .testimonials .testiBox {
        margin-bottom: 20px;
        height: auto;
    }

    .testimonials .testiBox {
        padding: 20px;
        height: auto;
        margin-bottom:0;
    }

    .testimonials .testiTop {
        margin-bottom: 10px;
    }

    .testimonials .testiBottom p {
        padding: 0;
        font-size: 14px;
    }

    /* _____________________________________________________ */

    /* ________________________________________ */
    .getTouch {
        padding: 30px 0;
    }

    .getTouch .boxes {
        grid-template-columns: 1fr;
    }

    .getTouch .box {
        padding: 20px;
    }

    .getTouch .box span {
        margin-bottom: 10px;
    }


    /* ________________________________________ */
    footer p {
        font-size: 14px;
    }

    /* _____________________________________________________ */

    .tbslink ul{
        gap:5px;
    }
    .tbslink li
    {
        font-size:12px;
        padding:10px;
        border-radius:20px;
    }

    .min-heading
    {
        margin:10px 0 20px;
        font-size:18px;
    }

    .teams .right
    {margin-bottom:30px;}

    header
    {padding:5px 10px;}

input[type="date"]::-webkit-calendar-picker-indicator, input[type="date"]::-webkit-inner-spin-button
{
    -webkit-appearance:none;
    opacity:0;
}

}

@media (min-width: 576px) and (max-width: 767px) {

    /* Styles for small devices */
    .navbarMobile.active {
        display: flex;
    }

    .modal-content {
        width: 90%;
    }

    .heading {
        font-size: 25px;
    }

    .navbar ul {
        display: none;
    }

    .logo img {
        width: 90px;
        height: 40px;
    }

    .phoneCall {
        display: block;
        border: none;
        padding: 5px 15px;
        height: 35px;
        background: var(--secondaryColor);
        color: white;
        border-radius: 12px;
    }

    .phoneCall a {
        all: unset;
        cursor: pointer;
    }

    /* ________________________________________ */

    .docContent {
        padding: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .docContent span:first-child {
        font-size: 12px;
    }

    .docContent span {
        font-size: 12px;
    }

    .form {
        padding: 20px 0;
    }

    .form-control {
        width: 50%;
        padding: 2px;
    }

    .form-control:nth-child(5),
    .form-control:nth-child(6) {
        width: 100%;
    }

    form input,
    form select,
    .captcha img,
    form button {
        height: 40px;
    }

    .stats .box {
        width: 100%;
        display: block;
        text-align: center;
        padding-bottom: 0;
        padding-top: 0;
    }

    .stats .box:not(.stats .box:last-child) {
        border: none;
    }

    .stats .box .content .number {
        font-size: 18px;
        margin-bottom: 0;
    }

    .stats .box .content {
        padding: 0;
    }

    .stats .box .content .text {
        font-size: 14px;
    }

    .stats .box img {
        width: 80px;
        height: 30px;
    }

    .teams {
        padding: 30px 0;
    }

    .teams .wrapper {
        display: block;
    }

    .teams .left,
    .teams .right {
        width:100%;
    }

    .teams .right
    {margin-bottom:30px;}
    .left img{
        display:flex;
    }
    .right {
        padding: 0;
    }

    .right p:not(.right p:last-child) {
        margin-bottom: 10px;
    }

    .teams .heading {
        margin: 10px 0;
        padding: 0;
    }

    /* _______________________________ */

    .treatments {
        padding: 30px 0;
    }

    .treatments .cards {
        /* grid-template-columns: 1fr; */
        grid-template-columns:auto auto;
    }

    .treatments.lhr .cards {
        grid-template-columns: 1fr 1fr;
    }

    /* _________________________________________ */
    .results {
        padding: 30px 0;
    }

    .results .cards {
        display: block;
    }

    .results .card {
        width: 100%;
        margin-bottom: 20px;
    }

    /* ____________________________ */

    /* ________________________________________ */
    .testimonials {
        padding: 30px 0;
    }

    .testimonials .cards {
        grid-template-columns: 1fr;
    }

    .testimonials .testiBox {
        margin-bottom: 20px;
    }

    .testimonials .testiBox {
        padding: 20px;
    }

    .testimonials .testiTop {
        margin-bottom: 10px;
    }

    .testimonials .testiBottom p {
        padding: 0;
        font-size: 14px;
    }

    /* ________________________________________ */
    .getTouch {
        padding: 30px 0;
    }

    .getTouch .boxes {
        grid-template-columns: 1fr;
    }

    .getTouch .box {
        padding: 20px;
    }

    .getTouch .box span {
        margin-bottom: 10px;
    }


    /* ________________________________________ */
    footer p {
        font-size: 14px;
    }

    .form-control:nth-child(5) .captcha {
        height: 40px;
    }

    .btnBtnSubmitss {
        height: 40px;
    }

    /* _______________________________ */
    .ban-box:last-child {
        padding: 20px;
    }

    /* ______________________ */
    .wrapperx i:last-child {
        right: 0;
    }

    .wrapperx i:first-child {
        left: 0
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    /* Styles for medium devices */
    .whatsapp{display: none;}
    .navbarMobile.active {
        display: flex;
    }

    .modal-content {
        width: 90%;
    }

    .ban-box:last-child {
        padding: 20px;
    }

    .heading {
        font-size: 25px;
    }

    .navbar ul {
        display: none;
    }

    .logo img {
        width: 90px;
        height: 40px;
    }

    .phoneCall {
        display: block;
        border: none;
        padding: 5px 15px;
        height: 35px;
        background:var(--pinklight);
        color: white;
        border-radius: 12px;
    }

    .phoneCall a {
        all: unset;
        cursor: pointer;
    }

    /* ________________________________________ */

    .docContent {
        padding: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .docContent span:first-child {
        font-size: 12px;
    }

    .docContent span {
        font-size: 12px;
    }

    .form {
        padding: 20px 0;
    }

    .form-control {
        width: 50%;
        padding: 2px;
    }

    .form-control:nth-child(5),
    .form-control:nth-child(6) {
        width: 100%;
    }

    .form-control:nth-child(5) .captcha,
    .btnBtnSubmitss {
        height: 40px;
    }

    form input,
    form select,
    .captcha img,
    form button {
        height: 40px;
    }

    .stats .box {
        width: 100%;
        display: block;
        text-align: center;
        padding-bottom: 0;
        padding-top: 0;
    }

    .stats .box:not(.stats .box:last-child) {
        border: none;
    }

    .stats .box .content .number {
        font-size: 18px;
        margin-bottom: 0;
    }

    .stats .box .content {
        padding: 0;
    }

    .stats .box .content .text {
        font-size: 14px;
    }

    .stats .box img {
        width: 80px;
        height: 30px;
    }


    .teams {
        padding: 30px 0;
    }

    .teams .wrapper {
        display:flex;
        flex-direction:column-reverse;
    }

    .teams .left,
    .teams .right {
        width: 100%;
    }

    .teams .wrapper .right, .teams.whychoose .wrapper .right
    {
        width:100%;
    }

    .left img
    {
        height:300px;
        object-fit:contain;
    }



    .teams .wrapper .left, .teams.whychoose .wrapper .left
    {
        width:100%;
        margin-bottom:10px;
    }

    .right {
        padding: 0;
    }

    .right p:not(.right p:last-child) {
        margin-bottom: 10px;
    }

    .teams .heading {
        margin: 10px 0;
        padding: 0;
    }

    /* ______________________ */

    .treatments {
        padding: 30px 0;
    }

    .treatments .cards {
        grid-template-columns: 1fr 1fr;
    }

    .treatments.lhr .cards {
        grid-template-columns: 1fr 1fr;
    }

    /* __________________________ */
    .results {
        padding: 30px 0;
    }

    /* __________________________ */

    /* ________________________________________ */
    .testimonials {
        padding: 30px 0;
    }

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

    .testimonials .testiBox {
        margin-bottom: 20px;
    }

    .testimonials .testiBox {
        padding: 20px;
        max-height:285px;
    }

    .testimonials .testiTop {
        margin-bottom: 10px;
    }

    .testimonials .testiBottom p {
        padding: 0;
        font-size: 14px;
    }

    /* ________________________________________ */
    .getTouch {
        padding: 30px 0;
    }

    .getTouch .boxes {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .getTouch .box {
        padding: 20px;
    }

    .getTouch .box span {
        margin-bottom: 10px;
    }



    /* ________________________________________ */
    footer p {
        font-size: 14px;
    }

    .banner-form
    {padding-bottom:25px;}


}

@media (min-width: 992px) and (max-width: 1199px) {
    /* Styles for large devices */
}