@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Quando&display=swap');
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quando&display=swap');

*,
*:before,
*:after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
select,
textarea {
    background-color: transparent;
    outline: none;
}

button {
    cursor: pointer;
    background-color: transparent;
    outline: none;
    border: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease-in-out;
}

body {
    min-height: 100vh;
    font-weight: 400;
    font-size: 16px;
    line-height: 1;
    font-family: "Plus Jakarta Sans", sans-serif;
    background-color: #FCFCFC;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #272727;
}

h1,
h2 {
    font-family: "Quando", serif;
}

p {
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

main {
    overflow: hidden;
}

.on-mb {
    display: none;
}

.relative {
    position: relative;
}

.deco {
    position: absolute;
    z-index: -1;
}

.container {
    max-width: 1328px;
    margin: 0 auto;
    padding: 0 16px;
}

.btn {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    border-radius: 50px;
    border: 1px solid #CF0F5B;
    padding: 11px 23px;
}

.btn-secondary {
    background-color: transparent;
    color: #CF0F5B;
}

.btn-primary {
    background-color: #CF0F5B;
    color: #ffffff;
}

.btn-has-icon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-has-icon svg path {
    fill: currentColor !important;
}

.btn-primary:hover {
    background-color: #FF005E;
    border-color: #FF005E;
}

.btn-secondary:hover {
    border-color: #FF005E;
    color: #FF005E;
}

.reverse-col {
    display: flex;
    flex-direction: column;
}


/* Header */

.header {
    padding: 8px 0;
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 99;
}

.header-logo {
    margin-left: -5px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 82px;
    position: relative;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: space-between;
    flex: 1;
}

.header-menu {
    padding-top: 2px;
}

.header-menu ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-menu ul li a {
    color: #22191D;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
}

.header-logo a {
    display: block;
    max-width: 140px;
}

.header-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
}

.header-ctas-mb {
    display: none;
}


/* Home Hero Section */

.home-hero {
    padding-top: 137px;
    background-color: #F2F9FF;
    position: relative;
    padding-bottom: 123px;
}

.home-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, #F2F9FF 19%, #F2F9FF 36%, #F2F9FF 54%, #F2F9FF 67%, #F2F9FF 77%, #EAF5FF 87%, #F5FAFF 95%, #FFFFFF 99%);
    z-index: 1;
    pointer-events: none;
}

.home-hero-wrapper {
    position: relative;
    z-index: 2;
}

.home-hero-heading {
    font-size: 48px;
    line-height: 58px;
    color: #CF0F5B;
    margin-bottom: 24px;
}

.home-hero-main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 38px;
}

.home-hero-main .left {
    padding-top: 24px;
    width: 62.35%;
    padding-right: 80px;
    max-width: 728px;
}

.home-hero-main .right {
    width: 37.65%;
}

.home-hero-desc {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
    max-width: 600px;
}

.home-hero-services,
.home-hero-services .item {
    display: flex;
    align-items: center;
    gap: 4px;
}

.home-hero-services .item {
    font-size: 13px;
    font-weight: 500;
    line-height: 24px;
    color: #000000;
}

.home-hero-services .item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.home-hero-img {
    max-width: 510px;
    margin-top: -8px;
}

.form-contact {
    padding: 24px;
    background-color: #ffffff;
    border-radius: 30px;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
}

.form-contact-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    color: #272727;
    margin-bottom: 32px;
    text-align: center;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
}

.form-group input {
    width: 100%;
    padding: 11px 26px;
    border: 1px solid #DDDDDD;
    border-radius: 50px;
    font-size: 16px;
    color: #000000;
    line-height: 24px;
}

.form-group input::placeholder {
    color: #9FA1A6;
}

.btn-submit {
    width: 100%;
    text-align: center;
    margin-top: 16px;
}

.form-consent {
    font-size: 11px;
    line-height: 15px;
    display: flex;
    align-items: start;
    margin-top: 3px;
    gap: 8px;
    margin-top: 12px;
    color: #9FA1A6;
    font-weight: 500;
}

.form-consent input {
    margin-top: 3px;
}

.home-hero-partners {
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 56px;
    justify-content: space-between;
}

.home-hero .left .deco-1 {
    top: -13%;
    left: 29%;
    width: 64px;
}

.home-hero .left .deco-2,
.home-hero .left .deco-3 {
    display: none;
}

.home-hero .left .form-contact {
    display: none;
}

.home-hero .right .deco-1 {
    top: 8%;
    left: -8%;
    width: 39px;
}

.home-hero .right .deco-2 {
    top: 47%;
    left: -9%;
    width: 93px;
}

.home-hero-img .deco-img {
    right: 40px;
    top: 40px;
    width: 143px;
}


/* Home About */

.home-about .photo-grid {
    position: relative;
    z-index: 3;
    display: grid;
    gap: 12px;
    grid-template-columns: calc(49.39% - 6px) calc(50.61% - 6px);
}

.home-about .photo-grid .item {
    aspect-ratio: 326/206;
    display: block;
    overflow: hidden;
}

.home-about .photo-grid .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
}

.home-about .photo-grid .item.large {
    aspect-ratio: 318/422;
    grid-row: span 2;
}

.home-about-main {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 3;
}

.home-about-main .left {
    width: 56.79%;
    padding-right: 80px;
    padding-top: 5px;
}

.home-about-main .right {
    width: 43.21%;
    max-width: 471px;
}

.home-about-heading {
    font-size: 36px;
    line-height: 38px;
    color: #CF0F5B;
    margin-bottom: 8px;
    text-transform: capitalize;
}

.home-about-subheading {
    font-size: 32px;
    line-height: 38px;
    margin-bottom: 24px;
    font-weight: 500;
}

.home-about-desc {
    font-size: 18px;
    line-height: 24px;
    color: #000000;
    margin-bottom: 16px;
}

.home-about-sevices {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 32px;
}

.home-about-sevices .item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    line-height: 24px;
    color: #000000;
    font-weight: 500;
}

.home-about-sevices .item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.home-about {
    padding-bottom: 120px;
}

.home-about .deco-1 {
    width: 331px;
    left: -103px;
    top: -102px;
    z-index: 2;
}

.home-about .deco-2 {
    width: 198px;
    left: 38.5%;
    z-index: 2;
    top: 34px;
}

.home-about .deco-3 {
    width: 198px;
    right: -40px;
    z-index: 2;
    top: 3px;
}

.partial_entry_warning {
  display: none !important;
}

/* HT Style */

.section-title {
    color: #CF0F5B;
    text-align: center;
    font-family: Quando;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 95%;
    margin: 0 0 32px;
}

.footer-top {
    background: #D1EFFF;
    padding-top: 40px;
}

.wrap-footer-top {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.col-widget-1 {
    width: 28.70%;
}

.col-widget-2 {
    width: 16.36%;
}

.col-widget-3 {
    width: 12%;
}

.col-widget-4 {
    width: 16.7%;
}

.title-widget {
    color: #000;
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 16px;
}

.wrap-widget p {
    color: #000;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.wrap-widget ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wrap-widget ul li {
    list-style: none;
}

.wrap-widget a:hover {
    text-decoration: underline;
}

.wrap-widget ul li a {
    color: var(--color-rose-12, #22191D);
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-24, 24px);
    display: block;
}

.footer-address svg {
    display: inline-block;
    width: 24px;
}

.footer-address p {
    display: flex;
    gap: 8px;
    align-items: start;
    margin-bottom: 8px;
}

.footer-address p:last-child {
    margin-bottom: 0;
}

.footer-address a {
    width: calc(100% - 32px);
    color: var(--color-rose-12, #22191D);
    font-family: "Plus Jakarta Sans";
    font-size: var(--font-size-16, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: var(--line-height-24, 24px);
}

.image-social img {
    max-width: 264px;
    display: block;
}

.social-footer {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.list-social {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.list-social a,
.list-social a img {
    display: block;
}

.copyright {
    background: #CF0F5B;
    padding: 10px 0;
}

.copyright p {
    color: #FFF;
    font-family: "Plus Jakarta Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    /* 160% */
}

.testimonial-item {
    display: flex;
    padding: 40px 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
    border-radius: 20px;
    border: 1px solid rgba(221, 224, 231, 0.50);
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    margin: 0 8px;
}

.testimonials-swiper {
    padding: 32px 0 !important;
    border-radius: 20px;
    /* overflow: visible !important; */
}


/* 
.testimonials-slider {
    padding: 0 16px;
    box-sizing: content-box;
    overflow: hidden;
} */

.ttl-testimonials {
    margin: 0;
}

.swiper-slide {
    box-sizing: border-box;
}


/* .swiper-slide {
    padding: 5px;
} */

.testimonials-section .container {
    max-width: 1246px;
}

.testimonial-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-info .photo {
    width: 50px;
    border-radius: 50%;
}

.testimonial-info .info {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 2px;
}

.testimonial-info .info h3 {
    color: #000;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.testimonial-info .info p {
    color: #000;
    font-family: "Plus Jakarta Sans";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.testimonial-content {
    color: #000;
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
}

.testimonial-content p {
    margin-bottom: 0;
}

.testimonials-slider .swiper-button-next:after,
.testimonials-slider .swiper-button-prev:after {
    display: none;
}

.testimonials-slider .swiper-button-next,
.testimonials-slider .swiper-button-prev {
    display: flex;
    width: 64px;
    height: 64px;
    padding: 19px 25px;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    border-radius: 63px;
    border: 1px solid #DDE0E7;
}

.testimonials-slider .swiper-button-next {
    right: -80px;
}

.testimonials-slider .swiper-button-prev {
    left: -80px;
}

.testimonials-slider .swiper-button-next svg,
.testimonials-slider .swiper-button-prev svg {
    width: 14px;
}

.testimonials-slider {
    position: relative;
}

.testimonials-slider .swiper-pagination {
    bottom: 0 !important;
}

.testimonials-slider .swiper-pagination-clickable .swiper-pagination-bullet {
    width: 16px;
    height: 4px;
    border-radius: 50px;
    background: #DDE0E7;
    opacity: 1;
    transition: all 0.3s ease-in-out;
}

.testimonials-slider .swiper-pagination-clickable .swiper-pagination-bullet-active {
    background: #656565;
    width: 24px;
}

.deco-testimonials-1 {
    left: 0;
    top: -30px;
}

.deco-testimonials-2 {
    top: 127px;
    right: 0;
}

.testimonials-section {
    padding-bottom: 120px;
}

.section-subtitle {
    color: #000;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.section-header-why-discovery p {
    max-width: 367px;
    margin: 0 auto 55px;
}

.wrap-features {
    width: 52.78%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding-top: 15px;
}

.illustration {
    display: flex;
    gap: 18px;
    width: 47.22%;
    align-items: end;
    justify-content: space-between;
}

.wrap-why-discovery {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 33px;
}

.feature-item {
    display: flex;
    padding: 12px 6px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-radius: 30px;
    background: rgba(237, 253, 248, 0.60);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.feature-header .icon img {
    display: block;
    margin: 0 auto 16px;
}

.feature-header h3 {
    color: #000;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 0;
    text-align: center;
}

.illustration-2-sp {
    display: none;
}

.feature-body p {
    color: #000;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.cta-why-discovery {
    text-align: center;
}

.illustration-2 {
    padding: 0 21px 0 31px;
}

.illustration-2::after {
    position: absolute;
    width: 100%;
    height: calc(100% - 47px);
    bottom: 0;
    left: 0;
    border-radius: 30px;
    background: #DCE7FE;
    content: "";
    z-index: -1;
}

.illustration-1 img {
    max-width: max-content;
}

.illustration-1 {
    margin-left: -20px;
}

.illustration-1::after {
    position: absolute;
    width: calc(100% + 122px);
    height: 194px;
    bottom: 0;
    right: 6px;
    border-radius: 30px;
    background: #D1FAEC;
    content: "";
    z-index: -1;
}

.why-discovery {
    padding-bottom: 120px;
}

.deco-why-discovery-2 {
    bottom: 96px;
    right: 0;
}

.deco-why-discovery-1 {
    top: 113px;
    left: 0;
}

.how-it-works-subtitle {
    max-width: 633px;
    margin: 0 auto 40px !important;
}

.steps {
    display: flex;
    align-items: flex-start;
    gap: 131px;
    margin-bottom: 40px;
}

.step-item {
    width: calc(25% - 98.25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-number {
    display: flex;
    width: 56px;
    height: 56px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FFF;
    font-family: "DM Sans";
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 24px;
    border-radius: 50px;
    background: #66B6FF;
}

.step-title {
    color: #000;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 12px;
}

.step-desc {
    color: #000;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
}

.how-it-works {
    padding-bottom: 120px;
}

.step-item::after {
    position: absolute;
    left: 148px;
    top: 50px;
    content: "";
    width: 259px;
    height: 30px;
    background: url('../images/line1.svg') no-repeat center;
}

.step-item:last-child::after {
    display: none;
}

.step-item:nth-child(2)::after {
    background: url('../images/line2.svg') no-repeat center;
    left: 167px;
    top: -6px;
}

.cta-how-it-works {
    text-align: center;
}

.cta-how-it-works a {
    padding: 11px 79px;
}

.deco-how-it-works-1 {
    top: 171px;
    left: 0;
}

.deco-how-it-works-2 {
    top: -15px;
    right: 97px;
}

#wrapper {
    overflow: hidden;
}

.about-doctor-wrapper {
    border-radius: 30px;
    background: #C9ECFB;
    min-height: 718px;
    padding: 80px 37px 0px 84px;
    position: relative;
}

.about-doctor-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 820px;
    height: 411px;
    background-image: url('../images/bg-doctor.png');
    z-index: 0;
}

.about-doctor-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-doctor-title {
    color: #01384E;
    font-family: Quando;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
    margin-bottom: 32px;
}

.about-doctor-intro {
    color: #01384E;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    max-width: 330px;
}

.about-doctor-content-right {
    max-width: 424px;
}

.about-doctor-content-left {
    max-width: 328px;
}

.about-doctor-content-left p {
    color: #01384E;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 12px;
}

.about-doctor-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.about-doctor-image img {
    display: block;
}

.deco-about-doctor-1 {
    left: 0;
    top: 57px;
    z-index: 1;
}

.deco-about-doctor-2 {
    right: 0;
    z-index: 1;
    bottom: 57px;
}

.about-doctor {
    padding-bottom: 120px;
    position: relative;
}

.call-to-action {
    padding-bottom: 120px;
}

.cta-wrapper {
    border-radius: 30px;
    background: #66B6FF;
    display: flex;
    padding: 44px 110px;
    align-items: center;
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.cta-image {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    z-index: 0;
}

.cta-content {
    max-width: 683px;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: #FFF;
    font-family: Quando;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    margin-bottom: 16px;
}

.cta-content p {
    color: #FFF;
    font-family: "Plus Jakarta Sans";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 16px;
    max-width: 348px;
}

.cta-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}



.cta-info .icon {
    width: 24px;
}

.cta-info li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFF;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: var(--line-height-24, 24px);
}

.deco-call-to-action-1 {
    left: 0;
    bottom: -88px;
}

.deco-call-to-action-2 {
    right: 0;
    bottom: -88px;
}

.locations-title {
    margin-bottom: 16px;
}

.locations-map img {
    display: block;
    margin: 0 auto 5px;
    width: 100%;
    max-width: 1039px;
}

.locations-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.location-details {
    width: 314px;
    padding: 32px 40px;
    border-radius: 30px;
    background: #FFF;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
}

.location-details h3 {
    color: #000;
    text-align: center;
    font-family: "Plus Jakarta Sans";
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
    margin-bottom: 16px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-list li .icon {
    width: 24px;
}

.contact-list li a {
    color: var(--color-rose-12, #22191D);
    font-family: "Plus Jakarta Sans";
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 14px;
    display: inline-flex;
    gap: 4px;
}

.contact-list li a:hover {
    text-decoration: underline;
}

.locations {
    padding-bottom: 120px;
}

.location-areas {}

.wrap-locations-areas {
    max-width: 648px;
    width: 100%;
}

.acoordion-header {
    display: flex;
    padding: 16px 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}

.acoordion-header p {
    color: #000;
    font-family: "Plus Jakarta Sans";
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 38px;
    margin-bottom: 0;
}

.location-areas {
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.20);
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    padding: 0 32px;
}

.btn-toggle {
    display: flex;
    width: 32px;
    height: 32px;
    justify-content: center;
    align-items: center;
    border-radius: 80px;
    background: var(--Neutral-Colors-Color-400, #F2F1FA);
    transition: all 0.3s ease-in-out;
}

.accordion-body {
    color: #000;
    font-family: "Plus Jakarta Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
    padding-bottom: 16px;
    display: none;
}

.location-areas {
    cursor: pointer;
}

.location-areas.active .btn-toggle {
    transform: rotate(45deg);
    background: rgb(255, 0, 94);
}

.location-areas.active .btn-toggle svg path {
    stroke: #FFF !important;
}

.deco-locations-1 {
    top: -109px;
    right: 0;
}

.deco-locations-2 {
    bottom: -135px;
    right: 158px;
}

.deco-locations-3 {
    bottom: 44px;
    left: 0;
}

.is-sp {
    display: none;
}

.home-about-sevices-sp {
    display: none;
}

.about-doctor-image-sp {
    display: none;
}