:root {
    --body-text: rgba(12, 22, 39, 0.70);
    --primary: #EC811A;
    --secondary: #1B1A18;
}

@font-face {
    font-family: "Avenir Next LT Pro";
    src: url("../fonts/AvenirNextLTPro-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Avenir Next LT Pro";
    src: url("../fonts/AvenirNextLTPro-It.otf") format("opentype");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Avenir Next LT Pro";
    src: url("../fonts/AvenirNextLTPro-Demi.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Avenir Next LT Pro";
    src: url("../fonts/AvenirNextLTPro-UltLtIt.otf") format("opentype");
    font-weight: 200;
    font-style: italic;
    font-display: swap;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Avenir Next LT Pro";
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.section-label {
    color: #EC811A;
    font-family: "Avenir Next LT Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
    display: block;
    margin-bottom: 8px;
}

.btn {
    display: inline-flex;
    padding: 12px 24px;
    align-items: center;
    gap: 10px;
    background: var(--primary, #EC811A);
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 23px;
    /* 143.75% */
    text-transform: uppercase;
    transition: ease all 0.45s;
}

.btn-outline {
    border: 1px solid #000;
    color: #000;
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary, #EC811A);
    color: #fff;
    border-color: var(--primary, #EC811A);
}

.arrow-icon {
    position: relative;
    display: flex;
}

.arrow-icon svg {
    width: 19px;
    height: auto;
}

.arrow-icon svg path {
    transition: ease all 0.45s;
}

.arrow-icon svg {
    transition: ease all 0.45s;
    transform-origin: left;
}

.btn:hover .arrow-icon svg {
    transform: scaleX(1.3);
}

.btn-outline .arrow-icon svg path {
    fill: #000;
}

.btn-outline:hover .arrow-icon svg path {
    fill: #fff;
}

.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-light:hover {
    background: #fff;
    color: var(--primary, #EC811A);
}

.btn-outline-light:hover .arrow-icon svg path {
    fill: #EC811A;
}

.btn-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* ===== TOP BAR ===== */
.topbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 50px;
}

.topbar>span {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    display: block;
}


.topbar>div {
    display: flex;
    align-items: center;
    gap: 50px;
}

.topbar>div>a {
    color: var(--body-text, rgba(12, 22, 39, 0.70));
    font-family: "Avenir Next LT Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 133.333% */
}

.topbar .socials {
    display: flex;
    gap: 20px;
}

.topbar .socials a {
    color: var(--body-text, rgba(12, 22, 39, 0.70));
    font-family: "Avenir Next LT Pro";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 153.846% */
    text-transform: uppercase;
}

/* ===== Header ===== */
.header {
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    position: relative;
}

.logo {
    width: 237px;
    padding: 23px 0;
}

.logo img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.navbar {
    display: flex;
    align-items: stretch;
    gap: 24px;
}

.navbar a {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
    /* 93.333% */
    display: flex;
    align-items: center;
}

/*==================================
Mega Menu
==================================*/

.mega-item {
    display: flex;
    align-items: center;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    background: #FFF;
    box-shadow: 0 5px 31.5px 0 rgba(0, 0, 0, 0.10);
    display: flex;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: .30s;
    overflow: hidden;
    z-index: 999;
}

.mega-item.active .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mega-column {
    width: 27%;
    padding: 50px;
}

.mega-column:last-child {
    width: 46%;
    border-right: none;
    position: relative;
    border-left: 1px solid rgba(0, 0, 0, 0.22);
    padding-left: 30px;
}

.close-btn {
    position: absolute;
    top: 36px;
    right: 50px;
    background: transparent;
    border: none;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.close-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mega-column.categories {
    display: flex;
    flex-direction: column;
    gap: 46px;
}

.category-item {
    background: transparent;
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 133.333% */
    text-transform: uppercase;
    border: none;
    display: flex;
    text-align: left;
    outline: none;
}

.treatment-item {
    display: flex;
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    /* 277.778% */
    text-transform: uppercase;
    background: transparent;
    border: none;
    outline: none;
    text-align: left;
}

.content-item {
    display: flex;
    flex-direction: column;
}

.content-item a {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    /* 277.778% */
}

.treatment-group,
.content-item {
    display: none;
}

.treatment-group.active,
.content-item.active {
    display: block;
}

.category-item.active,
.treatment-item.active {
    color: #EC811A;
}

/* Simple Dropdown */

.submenu-item {
    position: relative;
    display: flex;
    align-items: center;
}

.submenu {
    position: absolute;
    top: 70px;
    left: 0;
    min-width: 260px;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .1);
    padding: 18px 0;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: .3s;
    z-index: 999;
}

.submenu a {
    display: block;
    padding: 12px 24px;
    line-height: 1.4;
    color: rgba(12, 22, 39, .7);
    transition: .3s;
}

.menu-toggle {
    display: none;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .45);
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 998;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-mega-menu {
    display: none !important;
}

.mobile-navbar-header,
.mobile-header-icons,
.mobile-header-btn {
    display: none !important;
}

.navbar>a,
.submenu-item>a,
.mega-item>a {
    position: relative;
}

.navbar>a::after,
.submenu-item>a::after,
.mega-item>a::after {
    content: '';
    width: 100%;
    height: 1px;
    position: absolute;
    background: #EC811A;
    left: 0;
    opacity: 0;
    transition: all 0.35s ease;
}

.navbar>a:hover::after,
.submenu-item>a:hover::after,
.mega-item>a:hover::after,
.mega-item.active>a::after,
.submenu-item:hover a::after {
    opacity: 1;
}

.submenu-item>a::after,
.mega-item>a::after {
    bottom: -5px;
}

.navbar>a::after {
    bottom: 39px;
}

/* ===== HERO ===== */
.hero-section {
    width: 100%;
    display: flex;
    gap: 50px;
    align-items: stretch;
    justify-content: space-between;
}

.hero-section>div {
    width: fit-content;
}

.hero-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 85px;
    /* 106.25% */
    text-transform: uppercase;
    max-width: 509px;
    margin: 12px 0 20px;
}

.hero-content p {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    max-width: 489px;
}

.hero-content .btn-wrapper {
    margin-top: 50px;
}

.hero-video {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.hero-video video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.10) 0%, rgba(0, 0, 0, 0.10) 100%);
    z-index: 2;
}

.hero-video-content {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 30px;
}

.hero-video-content span {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 27px;
    /* 150% */
}

.hero-video-content p {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 27px;
    margin-top: 7px;
}


/* ===== STATS ===== */
.stats-section {
    background: rgba(236, 129, 26, 0.04);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
    padding: 50px;
}


.stats-section .stat {
    padding: 50px 20px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-section .stat .num {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    /* 95% */
    text-transform: uppercase;
}

.stats-section .stat .lbl {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
}

.stat>img {
    width: 92px;
    height: auto;
    object-fit: cover;
    margin-bottom: 12px;
}

.stat .num+.lbl {
    margin-top: 24px;
}

.stars {
    display: flex;
    align-items: center;
    gap: 7px;
}

.stat .stars {
    margin: 9px 0 20px;
}

.stars img {
    width: 17px;
    height: 16px;
}

.stat p {
    color: var(--body-text, rgba(12, 22, 39, 0.70));
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    /* 114.286% */
    margin-top: 6px;
    max-width: 212px;
}

/* ===== ABOUT ===== */
.about-section {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: stretch;
    padding: 70px 50px;
}

.about-img {
    width: 100%;
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common-heading {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 62px;
    /* 129.167% */
    text-transform: uppercase;
}

.about-content>div {
    position: relative;
    width: fit-content;
}

.floating-icon {
    position: absolute;
    right: 0;
    top: 0;
    pointer-events: none;
    width: 249px;
}

.floating-icon img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.about-content span:not(.section-label) {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 160% */
    text-transform: uppercase;
    display: block;
    margin: 24px 0 16px;
}

.about-content p {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    max-width: 681px;
}

.about-content p+p {
    margin-top: 28px;
}

.about-content .btn-wrapper {
    margin-top: 36px;
}

/* ===== PROCEDURES ===== */
.procedures-section {
    padding: 70px 50px;
    background: rgba(236, 129, 26, 0.04);
}

.procedures-section .head {
    margin-bottom: 36px;
}

.cat-label {
    color: #EC811A;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: italic;
    font-weight: 400;
    line-height: 24px;
    /* 133.333% */
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.cat-label::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: rgba(236, 129, 26, 0.28);
}

.grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 36px;
}

.proc-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
}

.proc-card::after {
    content: '';
    position: absolute;
    left: 0;
    pointer-events: none;
    bottom: 0;
    width: 100%;
    height: 140px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.66) 0%,
            rgba(0, 0, 0, 0.45) 40%,
            rgba(0, 0, 0, 0.2) 70%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 3;
}

.proc-card::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100%;
    left: 0;
    z-index: 4;
    pointer-events: none;

    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.50) 0%,
            rgba(0, 0, 0, 0.35) 30%,
            rgba(0, 0, 0, 0.28) 60%,
            rgba(0, 0, 0, 0) 100%);
    transition: ease all 0.45s;
}

.proc-card:hover::before {
    top: 0;
}

.proc-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: ease all 0.45s;
}

.proc-card:hover .proc-card-img img {
    transform: scale(1.1);
}

.proc-card .label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #fff;
    padding: 24px;
    z-index: 9;
}

.proc-card .label span {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    /* 150% */
    text-transform: uppercase;
    margin-bottom: 6px;
}

.proc-card .label p {
    color: rgba(255, 255, 255, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 355px;
}

.about-cta {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* ===== MYA BANNER ===== */
.mia-section {
    width: 100%;
    padding: 0 50px;
    background: var(--secondary, #1B1A18);
    display: flex;
    align-items: stretch;
    gap: 50px;
}

.mia-section>div {
    width: 100%;
}

.mia-section .mia-content {
    padding: 100px 0;
}

.mia-content img {
    width: 312px;
    height: auto;
    object-fit: cover;
}

.mia-section .common-heading {
    color: #fff;
    max-width: 595px;
    margin: 40px 0 16px;
}

.mia-section p {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    max-width: 602px;
}

.mia-section .btn-wrapper {
    margin-top: 50px;
    gap: 30px;
}

.mia-img {
    display: flex;
}

/* ===== VIDEOS / INSIGHTS ===== */
.insights-section {
    padding: 70px 50px;
}

.insights-section .common-heading {
    margin-bottom: 36px;
}


.video-wrapper {
    width: 100%;
    display: flex;
    gap: 10px;
}

.video-wrapper>div {
    width: 100%;
}

.main-video {
    position: relative;
}

.main-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    cursor: pointer;
}

.play-btn {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border: none;
    cursor: pointer;
    background: transparent;
}

.play-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.video-item {
    display: flex;
    gap: 30px;
    cursor: pointer;
    background: rgba(27, 26, 24, 0.06);
    transition: ease all 0.3s;
}

.video-item img {
    width: 207px;
    height: auto;
    object-fit: cover;
}

.video-item.active {
    background: rgba(236, 129, 26, 0.04);
}

.video-content {
    padding: 24px 20px 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.video-content p {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 22px;
    /* 137.5% */
    max-width: 372px;
}

.video-content span {
    color: rgba(12, 22, 39, 0.19);
    font-family: "Avenir Next LT Pro";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 142.857% */
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    width: 100%;
    padding: 70px 50px;
    background: rgba(236, 129, 26, 0.04);
}

.testimonials .common-heading {
    margin-bottom: 36px;
}

.grid4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.t-card {
    width: 100%;
    padding: 40px 24px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.t-card .avatar {
    width: 60px;
    height: 60px;
    border-radius: 50px;
    overflow: hidden;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.t-card span:first-of-type {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.32px;
    text-transform: uppercase;
    display: block;
    margin: 12px 0 4px;
}

.t-card span:nth-child(3) {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
}

.t-card p {
    color: #000;
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    /* 137.5% */
    margin: 16px 0;
}

.testimonials .splide__arrows {
    display: none;
}

/* ===== NON SURGICAL ===== */
.nonsurgical {
    width: 100%;
    padding: 50px;
}

.nonsurgical .common-heading {
    margin-bottom: 36px;
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.treat-card {
    width: 100%;
    padding: 36px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.treat-card .treatment-card-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: ease all 0.45s;
}

.treatment-card-img img {
    width: 100%;
}

.treat-card * {
    position: relative;
    z-index: 8;
}

.treat-card::before {
    content: '';
    inset: 0;
    position: absolute;
    background: radial-gradient(circle,
            rgba(236, 129, 26, 0.60) 0%,
            rgba(236, 129, 26, 0.60) 60%,
            rgba(236, 129, 26, 0.45) 85%,
            rgba(236, 129, 26, 0.30) 100%);
    z-index: 6;
    pointer-events: none;
    opacity: 0;
    transition: ease all 0.35s;
}

.treat-card:hover::before,
.treat-card:hover .treatment-card-img {
    opacity: 1;
}

.treat-card span {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    /* 150% */
    text-transform: uppercase;
    display: block;
    transition: ease all 0.3s;

}

.treat-card p {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin: 12px 0 24px;
    transition: ease all 0.3s;
}

.treat-card a {
    color: #EC811A;
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    transition: ease all 0.3s;
}

.treat-card:hover * {
    color: #fff;
}

/* ===== GALLERY ===== */
.gallery-section {
    width: 100%;
    padding: 70px 50px;
    background: rgba(236, 129, 26, 0.04);
}

.gallery-section .gallery-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.gallery-section .gallery-head a {
    color: #EC811A;
    font-family: "Avenir Next LT Pro";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.g-card p {
    margin-top: 20px;
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 175% */
}

.gallery-section .splide__arrows {
    display: none;
}

/* ===== INSTAGRAM ===== */
.insta-section {
    padding: 50px;
}

.insta-section .head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 36px;
}

.insta-section .handle {
    display: flex;
    align-items: center;
    gap: 11px;
    color: #000;
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.insta-section .handle img {
    width: 30px;
}

.grid5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.insta-section .grid5 div {
    position: relative;
    overflow: hidden;
    display: flex;
}

.insta-section .grid5 div::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(236, 129, 26, 0.50);
    background-image: url('../images/insta-white.png');
    background-size: 73px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    pointer-events: none;
    transition: ease all 0.45s;
}

.insta-section .grid5 div:hover::before {
    opacity: 1;
}

.insta-section .grid5 div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #fff;
}


/* ===== CTA / APPOINTMENT ===== */
.appointment-section {
    width: 100%;
    background: var(--secondary, #1B1A18);
    color: #fff;
    display: flex;
    align-items: stretch;
}

.appointment-section>div {
    width: 100%;
}

.appointment-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.appointment-section .form-wrapper {
    padding: 50px 70px 50px 50px;
}

.appointment-section .common-heading {
    color: #fff;
    max-width: 477px;
    margin-bottom: 32px;
}

.appointment-section input,
.appointment-section textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.50);
    padding: 12px 0;
    outline: none;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.50);
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.appointment-section input::placeholder,
.appointment-section textarea::placeholder {
    color: #9a958b;
}

.appointment-section textarea {
    resize: none;
    height: 44px;
    overflow: hidden;
}

.appointment-section button {
    border: transparent;
    margin-top: 4px;
}


/* ===== MAP ===== */
.map {
    padding: 50px;
}

.map iframe {
    width: 100%;
}

/* ===== FOOTER ===== */
footer {
    width: 100%;
    padding-top: 70px;
    background: #1B1A18;
}

.footer-content {
    padding: 0 50px 100px;
}

.f-logo {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.20);
}

.f-logo img {
    width: 306px;
    height: auto;
    object-fit: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1.4fr;
    gap: 30px;
    margin-top: 50px;
}

.footer-grid>div:last-child {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-grid span {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 100% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.footer-grid span:nth-child(3) {
    margin-bottom: 12px;
}

.footer-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-grid a,
.footer-grid p {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    display: flex;
}

.footer-grid p {
    max-width: 209px;
    margin-bottom: 22px;
}

.socials-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-bottom {
    padding: 16px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: rgba(255, 255, 255, 0.08);
}

.footer-bottom span {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 175% */
}

/* InnerPages */
.common-hero {
    width: 100%;
    height: 543px;
    max-height: 100vh;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 80px 40px;
    background-position: center;
}

.common-hero::after {
    content: '';
    inset: 0;
    position: absolute;
    background: rgba(2, 2, 2, 0.50);
    z-index: 3;
    pointer-events: none;
}

.abdominoplasty-hero {
    background-image: url('../images/abdominoplasty-hero.png');
}

.common-hero h1 {
    color: #FFF;
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 51px;
    /* 106.25% */
    text-transform: uppercase;
    position: relative;
    z-index: 9;
}

.common-intro {
    padding: 70px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.common-intro p {
    color: rgba(12, 22, 39, 0.70);
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    max-width: 970px;
}

.common-intro p+p {
    margin-top: 28px;
}

.common-intro p span {
    color: var(--primary, #EC811A);
}

.common-intro .btn {
    margin-top: 32px;
}

.bg-light {
    background: #FEFAF6 !important;
}

.section-content {
    width: 100%;
    padding: 65px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-heading {
    color: #000;
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    /* 138.889% */
    text-transform: uppercase;
}

.section-content .section-heading {
    margin-bottom: 24px;
}

.section-content p {
    color: rgba(12, 22, 39, 0.70);
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    max-width: 927px;
}

.section-content p+p {
    margin-top: 28px;
}

.info-section {
    width: 100%;
    display: flex;
    align-items: stretch;
    padding: 0 50px;
    gap: 50px;
    background: #1B1A18;
}

.info-section>div {
    width: 100%;
}

.info-content {
    padding: 50px 0;
}

.info-content .section-label {
    color: #fff;
    margin-bottom: 12px;
}

.info-content .section-heading {
    text-align: left;
    color: #fff;
}

.info-content ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 24px;
    padding-left: 20px;
}

.info-content ul li {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
}

.info-sec-img {
    display: flex;
}

.info-sec-img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-section {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

.process-section .section-label {
    margin-bottom: 12px;
}

.process-section>p {
    color: rgba(12, 22, 39, 0.70);
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    max-width: 1050px;
    margin-top: 24px;
}

.process-grid {
    margin-top: 36px;
    display: flex;
}

.process-card {
    width: 366px;
    height: 383px;
    padding: 44px 40px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../images/process-bg-2.svg');
}

.process-grid>.process-card:first-child {
    background-image: url('../images/process-bg-1.svg');
}

.process-grid>.process-card:first-child,
.process-grid>.process-card:nth-child(2),
.process-grid>.process-card:nth-child(3) {
    margin-right: -30px;
}

.process-grid>.process-card:last-child {
    width: 306px;
    background-image: url('../images/process-bg-3.svg');
}

.process-card>span {
    color: #000;
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
    text-transform: uppercase;
    display: block;
    max-width: 227px;
    margin-bottom: 12px;
}

.process-card>p {
    color: rgba(12, 22, 39, 0.70);
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    max-width: 227px;
}

.two-col-section {
    width: 100%;
    padding: 50px;
    display: flex;
    gap: 40px;
    background: #FEFAF6;
}

.two-col-section>div {
    width: 100%;
}

.two-col-section .section-heading {
    text-align: left;
    margin-bottom: 16px;
}

.two-col-section p {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
}

.two-col-section p+p {
    margin-top: 28px;
}

.price-section {
    width: 100%;
    padding: 70px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-section .section-label {
    margin-bottom: 12px;
}

.price-section .section-heading {
    margin-bottom: 15px;
}

.price-section p {
    color: rgba(12, 22, 39, 0.70);
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
}

.price-section p span {
    color: #EC811A;
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 116.667% */
    margin: 0 4px;
}

.price-section p+p {
    margin-top: 15px;
}

.price-section .main-video {
    position: relative;
    margin-top: 36px;
    width: 100%;
    max-width: 660px;
}

.innerpage .testimonials .common-heading,
.innerpage .testimonials .section-label {
    text-align: center;
}

.page-template-service-page .testimonials .common-heading,
.page-template-service-page .testimonials .section-label {
    text-align: center;
}

.neck-lift-hero {
    background-image: url('../images/neck-lift-hero.png');
}

.center-content-section {
    width: 100%;
    padding: 70px 50px;
}

.center-content-container {
    width: 100%;
    padding: 70px 50px;
    background: #1B1A18;
    max-width: 1340px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.center-content-container .section-heading {
    color: #fff;
}

.center-content-container p {
    color: #FFF;
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    max-width: 1080px;
}

.center-content-container p+p {
    margin-top: 18px;
}

.two-col-section ul {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
    padding-left: 20px;
}

.two-col-section ul li {
    color: var(--body-text, rgba(12, 22, 39, 0.70));
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
}

.info-content p {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
}

.info-content p+p {
    margin-top: 28px;
}

.info-content .section-heading+p {
    margin-top: 24px;
}

.upper-blepharoplasty-hero {
    background-image: url('../images/upper-blepharoplasty-hero.png');
}

.bg-white {
    background: #fff !important;
}

.testimonials.bg-white .t-card {
    background: #FEFAF6;
}

.result-section {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.result-section .section-heading {
    margin-bottom: 12px;
}

.result-section>p {
    color: rgba(12, 22, 39, 0.70);
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
}

ul.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.result-section ul.grid-3 {
    margin: 24px 0 40px;
}

ul.grid-3 li {
    width: 100%;
    padding: 28px 36px;
    border-radius: 4px;
    background: #FEFAF6;
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    list-style-position: inside;
}

.before-slider {
    width: 100%;
    padding: 50px;
}

.before-slider .section-heading {
    margin-bottom: 26px;
}

.before-after-card {
    width: 100%;
}

.before-after-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.before-after-arrows {
    position: relative;
    margin-top: 36px;
    display: flex;
    align-items: stretch;
    gap: 49px;
    justify-content: center;
}

.before-after-arrows .splide__arrow {
    position: static;
    transform: none;
    width: fit-content;
    height: auto;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.before-after-arrows .splide__arrow img {
    width: 12px;
    height: auto;
    object-fit: cover;
}

.arrow-divider {
    width: 2px;
    background: rgba(12, 22, 39, 0.70);
}

.otoplasty-hero {
    background-image: url('../images/otoplasty-hero.png');
}

.ostoplasty-page .common-intro p {
    max-width: 1155px;
}

.bg-light .info-content .section-label {
    color: #EC811A;
}

.bg-light .section-heading {
    color: #000;
}

.bg-light .info-content ul li,
.bg-light .info-content p,
.bg-light .info-content span {
    color: #000;
}

.causes-section {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1B1A18;
}

.causes-section .section-heading {
    color: #fff;
    margin-bottom: 12px;
}

.causes-section p {
    color: #FFF;
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    max-width: 984px;
}

.causes-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 44px 0 40px;
}

.causes-grid>div {
    padding: 36px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
}

.causes-grid span {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 155.556% */
    margin-bottom: 3px;
    display: block;
}

.causes-grid p {
    max-width: 295px;
    text-align: left;
}

.techniques-section {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.techniques-container {
    width: 100%;
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.techniques-container>div {
    width: 100%;
    padding: 36px 56px 43px 36px;
    background: #FEFAF6;
}

.techniques-container div h3 {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    /* 150% */
    text-transform: uppercase;
    margin-bottom: 12px;
}

.techniques-container div>span:not(.section-label) {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 21px;
    display: block;
}

.techniques-container div>p+span {
    margin-top: 24px;
}

.techniques-container div>span:not(.section-label)+ul {
    margin-top: 16px;
}

.techniques-container div>ul+span {
    margin-top: 24px;
}

ul,
ol {
    padding-left: 20px;
}

ul li,
ol li {
    color: var(--body-text, rgba(12, 22, 39, 0.70));
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
}

.techniques-container div p {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
}

.techniques-container div p+p {
    margin-top: 28px;
}

.techniques-container div p+ul {
    margin-top: 24px;
}

.techniques-container div ul+ul {
    margin-top: 24px;
}

.techniques-container div ul+p {
    margin-top: 24px;
}

.techniques-section:has(+ .price-section:not(.bg-light)) {
    padding-bottom: 0 !important;
}

.info-content ul+p {
    margin-top: 24px;
}

.info-content p+.btn {
    margin-top: 36px;
}

.no-bullet {
    list-style: none;
    padding-left: 0 !important;
}

.ostoplasty-page .price-section p:last-child {
    max-width: 772px;
}

.botox-hero {
    background-image: url('../images/botox-hero.png');
}

.bg-dark {
    background: #1B1A18 !important;
}

.bg-dark .section-heading {
    color: #fff;
}

.bg-dark p,
.bg-dark span,
.bg-dark ul li,
.bg-dark ol li {
    color: #fff;
}

.bg-light+.testimonials {
    background: #fff;
}

.bg-light+.testimonials .t-card {
    background: #FEFAF6;
}

.botox-page .section-content p {
    max-width: 1072px;
}

.treatment-section {
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.treatment-section .section-heading {
    margin-bottom: 8px;
}

.treatment-content {
    width: 100%;
    display: flex;
    gap: 20px;
    align-items: stretch;
    margin-top: 36px;
}

.treatment-content>div {
    width: 100%;
}

.treatment-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.treatment-container>div {
    width: 100%;
    padding: 40px 32px 40px;
    border-radius: 4px;
    background: #FEFAF6;
}

.treatment-container>div span {
    color: #0C1627;
    font-family: "Avenir Next LT Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.treatment-container>div p {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
}

.treatment-container>div p+p {
    margin-top: 28px;
}


.treatment-sec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-grid-3 {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 36px;
}

.process-card-2 {
    width: 366px;
    height: 347px;
    padding: 40px;
    background-image: url('../images/process-bg-light-1.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

.process-card-2:nth-child(2) {
    background-image: url('../images/process-bg-light-2.svg');
}

.process-card-2:nth-child(3) {
    width: 306px;
    background-image: url('../images/process-bg-light-3.svg');
}

.process-card-2:nth-child(1),
.process-card-2:nth-child(2) {
    margin-right: -30px;
}

.process-card-2 span {
    color: #0C1627;
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
    text-transform: uppercase;
    max-width: 227px;
}

.process-card-2 p {
    color: rgba(12, 22, 39, 0.70);
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    max-width: 227px;
    margin-top: 12px;
}

.hyaluronic-hero {
    background-image: url('../images/hyaluronic-hero.png');
}

.process-section.bg-white .process-card-2 {
    width: 366px;
    height: 396px;
}

.process-section.bg-white .process-card-2:nth-child(1) {
    background-image: url('../images/process-bg-light-4.svg');
}

.process-section.bg-white .process-card-2:nth-child(2) {
    background-image: url('../images/process-bg-light-5.svg');
}

.process-section.bg-white .process-card-2:nth-child(3) {
    width: 306px;
    background-image: url('../images/process-bg-light-6.svg');
}

.info-content>div>span {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 155.556% */
    margin-top: 24px;
    display: block;
}

.info-content>div>span+p {
    margin-top: 2px;
}

.choose-section {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.choose-section .section-heading {
    margin-bottom: 12px;
}

.choose-section p {
    color: rgba(12, 22, 39, 0.70);
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
}

.choose-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.choose-grid>div {
    width: 100%;
    padding: 36px 43px 25px 36px;
    border-radius: 4px;
    background: #FEFAF6;
}

.choose-grid>div span {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
    /* 155.556% */
    display: block;
    margin-bottom: 2px;
}

.choose-grid>div p {
    text-align: left;
    max-width: 324px;
}

.rhinoplasty-hero {
    background-image: url('../images/rhinoplasty-hero.png');
}

.causes-grid:last-child {
    margin-bottom: 0 !important;
}

.rhinoplasty-page .causes-section p {
    max-width: 944px;
}

.causes-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.causes-grid-2 ul li {
    color: #fff;
    max-width: 504px;
}

.treatment-section>p {
    color: rgba(12, 22, 39, 0.70);
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    max-width: 1013px;
}

.two-col-section ul+p {
    margin-top: 16px;
}

.rhinoplasty-page .info-content>div>span {
    margin-top: 16px;
}

.augmentation-hero {
    background-image: url('../images/augmentation-hero.png');
}

.bg-light .treatment-container>div {
    background: #FFF;
}

.augmentation-page .causes-grid ul+p {
    max-width: 551px;
}

.causes-grid p+ul {
    margin-top: 2px;
}

.techniques-section>.techniques-container:only-child {
    margin-top: 0 !important;
}

.augmentation-page .price-section p:has(+.main-video) {
    max-width: 814px;
}

.causes-section p+p {
    margin-top: 28px;
}

.causes-grid ul+p {
    margin-top: 16px;
}

.techniques-container .section-heading {
    text-align: left;
    margin-bottom: 16px;
}

.news-hero {
    background-image: url('../images/news-hero.png');
}


.news-section {
    width: 100%;
    padding: 50px 50px 100px;
}

.news-section>p {
    color: rgba(12, 22, 39, 0.70);
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    text-transform: uppercase;
}

.news-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 20px;
    margin: 50px 0 100px;
}

.news-card {
    width: 100%;
    padding: 12px;
    background: #FEFAF6;
    transition: background 0.45s ease;
}

.news-card:hover {
    background: #FBE6D1;
}

.news-card-img {
    position: relative;
    overflow: hidden;
}

.news-card-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.news-card:hover .news-card-img img {
    transform: scale(1.1);
}

.news-card-content {
    width: 100%;
    padding: 22px 12px 18px;
}

.news-card-content p {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
    text-transform: uppercase;
    max-width: 340px;
}

.news-card-content span {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    display: block;
    margin-top: 27px;
}

.pagination {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pagination .page-numbers {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #000;
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 133.333% */
}

a.next.page-numbers,
a.prev.page-numbers {
    font-size: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

a.prev.page-numbers::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    width: 12px;
    height: auto;
    aspect-ratio: 1 / 2;
    background: url('../images/next-chevron.svg') center / contain no-repeat;
    transform: translate(-50%, -50%) scaleX(-1);
}

a.next.page-numbers::after {
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: auto;
    aspect-ratio: 1 / 2;
    background: url('../images/next-chevron.svg') center / contain no-repeat;
}

a.prev.disabled,
a.next.disabled {
    border-color: rgba(12, 22, 39, 0.20);
}

a.prev.disabled::after {
    background: url('../images/prev-chevron.svg') center / contain no-repeat;
    transform: translate(-50%, -50%) scaleX(1);
}

a.next.disabled::after {
    background: url('../images/prev-chevron.svg') center / contain no-repeat;
    transform: translate(-50%, -50%) scaleX(-1);
}

a.current.page-numbers {
    background: var(--primary, #EC811A);
    border-color: #EC811A;
    color: #fff;
}

.inner-news-hero {
    background-image: url('../images/inner-news.png');
}

.single-blog .common-hero h1 {
    max-width: 951px;
}

.common-hero .date {
    color: #FFF;
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 24px;
    position: relative;
    z-index: 9;
}

.single-blog .common-hero {
    padding: 50px 40px;
}

.single-blog-content {
    width: 100%;
    padding: 70px 50px 100px;
}

.single-blog-content>div {
    width: 100%;
    max-width: 1302px;
}

.single-blog-content p {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
}

.single-blog-content p+p {
    margin-top: 24px;
}

.single-blog-content p+p:has(strong) {
    margin-top: 16px;
}

.single-blog-content p+ul,
.single-blog-content p+ol {
    margin-top: 24px;
}

.single-blog-content h2 {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    /* 138.889% */
    text-transform: uppercase;
    margin-top: 50px 0 8px;
}

.single-blog-content h2 {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 50px;
    text-transform: uppercase;
    margin: 50px 0 8px;
}

.single-blog-content h3 {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 30px;
    font-style: normal;
    font-weight: 400;
    line-height: 42px;
    text-transform: uppercase;
    margin: 45px 0 8px;
}

.single-blog-content h4 {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    text-transform: uppercase;
    margin: 40px 0 8px;
}

.single-blog-content h5 {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    text-transform: uppercase;
    margin: 35px 0 8px;
}

.single-blog-content h6 {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    text-transform: uppercase;
    margin: 30px 0 8px;
}

.single-blog-content>div>h2:first-child,
.single-blog-content>div>h3:first-child,
.single-blog-content>div>h4:first-child,
.single-blog-content>div>h5:first-child,
.single-blog-content>div>h6:first-child {
    margin-top: 0 !important;
}


.faq-section {
    padding: 70px 50px;
    background: #FEFAF6;
}

.faq-section .section-heading {
    margin-bottom: 30px;
    text-align: left;
}

.faq-item {
    background: #fff;
    padding: 30px 32px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.45s ease;
}

.faq-question {
    width: 100%;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    cursor: pointer;
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.45s ease;
}

.faq-answer p {
    padding-top: 20px;
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 150% */
    max-width: 1165px;
    transition: color 0.3s ease;
}

.faq-icon {
    position: relative;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: currentColor;
    transition: all 0.3s ease;
}

.faq-icon::before {
    width: 16px;
    height: 2px;
    top: 7px;
    left: 0;
}

.faq-icon::after {
    width: 2px;
    height: 16px;
    left: 7px;
    top: 0;
}

.faq-item.active {
    background: var(--primary, #EC811A);
}

.faq-item.active .faq-question,
.faq-item.active .faq-answer {
    color: #fff;
}

.faq-item.active .faq-icon::after {
    transform: scaleY(0);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.about-hero {
    background-image: url('../images/about-hero.png');
}

.about-section:has(+.places-section) {
    grid-template-columns: repeat(2, 1fr);
}

.about-section .common-heading+p {
    margin-top: 24px;
}

.places-section {
    width: 100%;
    padding: 70px 50px;
    background: #FEFAF6;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.places-section>p {
    color: rgba(12, 22, 39, 0.70);
    text-align: center;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    max-width: 882px;
    margin: 8px 0 30px;
}

.places-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.place-card {
    width: 100%;
    padding: 36px 47px 36px 36px;
    background: rgba(255, 255, 255, 0.80);
}

.place-card span {
    color: #000;
    font-family: "Avenir Next LT Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
    /* 150% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.place-card p {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    margin-bottom: 24px;
}

.patient-journey-hero {
    background-image: url('../images/patient-journey-hero.png');
}

.center-content-section:has(+.choose-section) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.center-content-section+.choose-section p {
    max-width: 1103px;
}


.center-content-section+.choose-section div span {
    font-weight: 400;
    color: #000;
    margin-bottom: 12px;
}

.choose-grid+p {
    margin-top: 50px;
}

.choose-grid+p span {
    color: #EC811A;
}

.contact-hero {
    background-image: url('../images/contact-hero.png');
}

.contact-section {
    width: 100%;
    padding: 70px 50px 80px;
    display: flex;
    gap: 20px;
}

.contact-section>div {
    width: 100%;
}

.contact-form {
    padding: 50px 36px;
    background: #FEFAF6;
}


.contact-form p {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    margin-bottom: 40px;
}

.contact-form .form-group {
    margin-bottom: 32px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(12, 22, 39, 0.20);
    background: transparent;
    padding: 0 0 12px;
    outline: none;
    resize: none;
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    overflow: hidden;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: inherit;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin: 40px 0;
    cursor: pointer;
}

.checkbox-wrapper input {
    display: none;
}

.checkmark {
    width: 24px;
    height: 24px;
    border: 1px solid rgba(12, 22, 39, 0.70);
    flex-shrink: 0;
    position: relative;
}

.checkbox-wrapper input:checked+.checkmark::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 8px;
    width: 5px;
    height: 10px;
    border: solid #000;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-wrapper span {
    color: rgba(12, 22, 39, 0.70);
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 155.556% */
    max-width: 504px;
}

.contact-form form .btn-outline {
    cursor: pointer;
}

.contact-form form .btn-outline:not(:hover) {
    border-color: rgba(12, 22, 39, 0.70);
}

.contact-info-wrapper {
    width: 100%;
    padding: 50px;
    background: var(--secondary, #1B1A18);
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.contact-info-wrapper>div {
    display: flex;
    gap: 36px;
    align-items: center;
}

.contact-icon {
    width: 66px;
    height: 66px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 35px;
    background: #EC811A;
}

.contact-icon img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.contact-info-wrapper span {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    /* 100% */
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.contact-info-wrapper p {
    color: #FFF;
    font-family: "Avenir Next LT Pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 144.444% */
    max-width: 370px;
}