/* Custom Fonts */
@font-face {
    font-family: "MinervaModern";
    src: url('../font/MinervaModern/fonnts.com-MinervaModern_Regular.otf') format("opentype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Light.otf') format("opentype");
    font-style: normal;
    font-weight: 300;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Thin.otf') format("opentype");
    font-style: normal;
    font-weight: 200;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Regular.otf') format("opentype");
    font-style: normal;
    font-weight: 400;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Medium.otf') format("opentype");
    font-style: normal;
    font-weight: 500;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Bold.otf') format("opentype");
    font-style: normal;
    font-weight: 700;
}

@font-face {
    font-family: "Gotham";
    src: url('../font/Gotham/Gotham-Black.otf') format("opentype");
    font-style: normal;
    font-weight: 900;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    width: 100%;
    display: block;
}

ul {
    list-style: none;
}

hr {
    border: none;
    display: block;
}



.common-title {
    color: #000;
    font-family: MinervaModern;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
    /* 71.875% */
    text-transform: uppercase;
}

.common-heading {
    color: #000;
    font-family: MinervaModern;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
    /* 115% */
    text-transform: uppercase;
}

.btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
}

.btn {
    width: fit-content;
    display: inline-flex;
    padding: 12px 28px;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFF;

    color: #FFF;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    text-transform: uppercase;

    transition: ease all 0.3s;
}

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

.outline-dark {
    border-color: #000;
    color: #000;
}

.outline-dark:hover {
    border-color: #AC977A;
    color: #fff !important;
}

.btn-white:hover {
    background: #FFF;
    color: #AC977A;
    border-color: #fff;
}

.btn-light {
    background: #AC977A;
    color: #fff;
}

.btn-light:hover {
    background: #958268;
}

.call-btn {
    display: inline-flex;
    padding: 12px 13px;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFF;
    transition: ease all 0.3s;
}

.call-btn svg {
    width: 18px;
    height: 18px;
}

.call-btn svg path {
    transition: ease all 0.3s;
}

.call-btn:hover {
    background: #AC977A;
    border-color: #AC977A;
}

.call-btn-dark {
    border-color: #000;
}

.call-btn-dark svg path {
    fill: #000;
}

.call-btn-dark:hover {
    background: #AC977A;
    border-color: #AC977A;
}

.call-btn-dark:hover svg path {
    fill: #fff;
}

.call-btn-white:hover {
    background: #FFF;
    border-color: #fff;
}

.call-btn-white:hover svg path {
    fill: #AC977A;
}

.mb-70 {
    margin-bottom: 70px;
}

/* Header */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    gap: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
}

.header .btn-wrapper {
    gap: 12px;
}

.logo img {
    width: 157px;
    height: auto;
    object-fit: cover;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-menu li a {
    color: #FFF;
    font-family: Gotham;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
    /* 153.333% */
    letter-spacing: -0.45px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.nav-menu li a:hover {
    color: #AC977A;
}

.has-submenu a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.has-submenu a img {
    width: 11px;
    height: 6px;
}

.header-btn {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 10px 18px;
    font-size: 11px;
    text-transform: uppercase;
    color: #fff;
}

.menu-toggle {
    display: none;
    width: 34px;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    height: 2px;
    background: #fff;
    margin: 7px 0;
}

.has-submenu {
    position: relative;
}

.mega-parent {
    position: static;
}

.submenu-toggle img {
    transition: 0.3s ease;
}

.mega-parent.active .submenu-toggle img {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: calc(100% - 100px);
    max-width: 900px;
    background: #fff;
    display: grid;
    grid-template-columns: 338px 1fr;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 999;
}

.mega-parent.active .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.mega-left {
    padding: 20px 20px 32px;
    border-right: 1px solid #AC977A;
}

.mega-left a {
    height: 44px;
    padding: 0 20px;
    color: #111 !important;
    font-size: 14px !important;
    text-transform: uppercase;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

.mega-left a.active,
.mega-left a:hover {
    background: #ac977a;
    color: #fff !important;
}

.mega-left a span {
    font-size: 32px;
    line-height: 1;
}

.mega-right {
    padding: 30px 36px 50px;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 48px;
}

.mega-right a {
    color: #000 !important;
    text-transform: none !important;
    letter-spacing: unset !important;
}

.mega-right a:hover {
    color: #ac977a !important;
}


.simple-parent {
    position: relative;
}

.simple-menu {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    width: 220px;
    background: #fff;
    padding: 14px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(15px);
    transition: 0.3s ease;
}

.simple-parent.active .simple-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.simple-menu a {
    color: #111 !important;
    padding: 12px 14px;
    display: block !important;
    text-transform: uppercase;
}

.simple-menu a:hover {
    background: #ac977a;
    color: #fff !important;
}

.mega-tab {
    width: 100%;
    height: 44px;
    padding: 0 20px;
    border: 0;
    background: transparent;
    color: #111;
    font-family: Gotham;
    font-size: 14px;
    font-weight: 300;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.mega-tab.active {
    background: #ac977a;
    color: #fff;
}

.mega-tab span {
    font-size: 32px;
    line-height: 1;
}

.mega-panel {
    display: none;
}

.mega-panel.active {
    display: block;
}

.mega-panel ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 33px;
    row-gap: 16px;
}

/* Hero */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: #fff;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 100px 50px;
}

.hero-content h1 {
    color: #FFF;
    font-family: MinervaModern;
    font-size: 64px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
    /* 71.875% */
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

.hero-content h1 span {
    display: block;
}

.hero-content>h1>span:nth-of-type(1) {
    max-width: 634px;
}

.hero-content>h1>span:nth-of-type(2) {
    margin: 30px 0 24px 290px;
}

.hero-content hr {
    width: 100%;
    max-width: 815px;
    height: 1px;
    background: #fff;
    display: block;
}

.hero-content p {
    color: #FFF;
    text-align: center;
    font-family: Gotham;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
    /* 153.333% */
    letter-spacing: -0.45px;
    text-transform: uppercase;
    max-width: 701px;
    margin-top: 30px;
}


/* About */
.about-section {
    width: 100%;
    padding: 90px 50px 70px;
    background: rgba(172, 151, 122, 0.12);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-section h6 {
    color: rgba(0, 0, 0, 0.40);
    text-align: center;
    font-family: Gotham;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
    /* 153.333% */
    letter-spacing: -0.45px;
    text-transform: uppercase;
    margin: 16px 0 36px;
}

.about-section hr {
    display: block;
    width: 100%;
    max-width: 168px;
    height: 5px;
    background: rgba(172, 151, 122, 0.30);
}

.about-section p {
    color: #000;
    text-align: center;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 144.444% */
    letter-spacing: -0.54px;
    max-width: 1057px;
    margin: 36px 0;
}

/* Stats */
.stats-section {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    justify-content: center;
    z-index: 1;
    min-height: 521px;
}

.stats-bg-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.stats-bg-slider .splide__track,
.stats-bg-slider .splide__list,
.stats-bg-slider .splide__slide {
    width: 100%;
    height: 100%;
}

.stats-bg-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* dark overlay */
.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: -1;
}

.stats-box {
    width: 100%;
    padding: 100px 24px 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-right: 1px solid #fff;
    text-align: center;
}

.stats-box:last-of-type {
    border-right: none;
}



.stats-box h6 {
    width: fit-content;
    color: #FFF;
    font-family: MinervaModern;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 27px;
    /* 112.5% */
    text-transform: uppercase;
    padding-bottom: 20px;
    border-bottom: 5px solid rgba(255, 255, 255, 0.44);
}

.stats-box h3 {
    color: #FFF;
    font-family: MinervaModern;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 80% */
    text-transform: uppercase;
    margin-bottom: 16px;
}

.stat-rating {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-bottom: 8px;
}

.stat-rating img {
    width: 17px;
    height: 16px;
}

.stats-box p {
    color: #FFF;
    text-align: center;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    max-width: 251px;
}

/* Treatments */
.treatments-section {
    width: 100%;
    padding: 70px 10px;
}

.treatments-section .common-title {
    text-align: center;
}

.treatment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin: 50px 0 70px;
}

.treatment-card {
    position: relative;
    overflow: hidden;
    height: 487px;
}

.treatment-card:nth-child(2n) {
    margin-top: 50px;
}

.treatment-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.30);
    z-index: 1;
    pointer-events: none;
}

.treatment-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.60) 0%,
            rgba(0, 0, 0, 0.45) 50%,
            rgba(0, 0, 0, 0.30) 75%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 5;
    pointer-events: none;
}

.treatment-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -120%;
    width: 100%;
    height: 120%;
    background: linear-gradient(to top,
            rgba(172, 151, 122, 0.90) 0%,
            rgba(172, 151, 122, 0.80) 35%,
            rgba(172, 151, 122, 0.70) 80%,
            rgba(172, 151, 122, 0) 100%);
    z-index: 6;
    pointer-events: none;
    transition: bottom 0.4s ease;
}

.treatment-card:hover::after {
    bottom: 0%;
}

.treatment-card img {
    height: 100%;
    object-fit: cover;
}

.treatment-card h3 {
    color: #FFF;
    font-family: MinervaModern;
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
    /* 127.778% */
    text-transform: uppercase;
    position: absolute;
    bottom: 60px;
    z-index: 5;
    width: 100%;
    text-align: center;
    opacity: 1;
    visibility: visible;
    transition: ease all 0.5s;
}

.treatment-card:hover h3 {
    opacity: 0;
    visibility: hidden;
}

.treatment-card ul {
    position: absolute;
    z-index: 10;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    gap: 16px;
    opacity: 0;
    visibility: hidden;
    transition: ease all 0.55s;
}

.treatment-card:hover ul {
    opacity: 1;
    visibility: visible;
}

.treatment-card ul li {
    color: #FFF;
    font-family: Gotham;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.treatments-section .btn-wrapper {
    gap: 12px;
}

/* Testimonials */
.testimonial-section {
    background: rgba(172, 151, 122, 0.06);
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonial-card {
    height: 100%;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 33px 24px;
}

.testimonial-card img {
    width: 60px;
    height: 60px;
    border-radius: 99px;
}

.testimonial-card h4 {
    color: #2C170F;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.32px;
    margin: 12px 0 4px;
}

.testimonial-card span {
    color: #2C170F;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
    line-height: 22px;
    /* 137.5% */
}

.testimonial-card p {
    color: #2C170F;
    text-align: center;
    font-family: Gotham;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 22px;
    /* 157.143% */
    margin: 16px 0;
}

.stars {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stars img {
    width: 17px;
    height: 16px;
}

.testimonial-arrows {
    display: none;
}

/* Why */
.why-section {
    display: flex;
    background: #AC977A;
}

.why-section>div {
    width: 100%;
}

.why-img {
    max-width: 683px;
}

.why-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content {
    padding: 70px 50px;
}

.why-content .common-heading {
    color: #fff;
}

.why-content span {
    color: rgba(255, 255, 255, 0.54);
    font-family: Gotham;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
    /* 153.333% */
    letter-spacing: -0.45px;
    text-transform: uppercase;
    display: block;
    margin: 16px 0 4px;
}

.why-item {
    margin-top: 36px;
}

.why-item h3 {
    color: #FFF;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 144.444% */
    letter-spacing: -0.54px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.why-item h3::before {
    content: '';
    display: block;
    width: 20px;
    height: 5px;
    background: rgba(255, 255, 255, 0.46);
}

.why-item p {
    color: #FFF;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.48px;
}

.why-content .btn-wrapper {
    justify-content: flex-start;
    margin-top: 40px;
}

/* Blog */
.blog-section {
    width: 100%;
    padding: 70px 30px;
}

.blog-header {
    width: 100%;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.blog-header a {
    color: #AC977A;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.48px;
    text-transform: uppercase;
}

.blog-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 18px;
}

.blog-card {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, rgba(0, 0, 0, 0.80) 100%);
    z-index: 1;
    pointer-events: none;
}

.blog-card::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: -100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #AC977A 100%);
    z-index: 3;
    pointer-events: none;
    transition: bottom 0.45s ease;
}

.blog-card:hover::after {
    bottom: -20%;
}

.blog-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: flex;
    transition: all 0.5s ease;
}

.blog-card:hover img {
    transform: scale(1.06);
}

.blog-card div {
    position: absolute;
    left: 36px;
    right: 36px;
    bottom: 36px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blog-card span {
    color: #F4EFDE;
    font-family: Mulish;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.24px;
    display: block;
}

.blog-card h3 {
    color: #F4EFDE;
    font-family: MinervaModern;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    /* 116.667% */
    max-width: 332px;
}

/* Machines */
.machine-section {
    display: flex;
    background: #F5F3EF;
    padding: 50px 30px;
    gap: 80px;
    justify-content: center;
}

.machine-content {
    width: 100%;
    max-width: 480px;
}

.machine-content span {
    color: rgba(0, 0, 0, 0.50);
    font-family: Gotham;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
    /* 153.333% */
    letter-spacing: -0.45px;
    text-transform: uppercase;
    display: block;
    margin: 16px 0;
}

.machine-content p {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.48px;
    max-width: 480px;
    margin-bottom: 32px;
}

.machine-img {
    margin: -125px 0;
}

.machine-img img {
    height: 100%;
    object-fit: cover;
}

.machine-list {
    width: 100%;
    background: #AC977A;
    display: flex;
    padding: 75px 20px;
    max-width: 819px;
    gap: 70px;
}


.check-2 {
    list-style: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.check-2 li {
    color: #FFF;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.48px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.check-2 li::before {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
    aspect-ratio: 1/1;
    background-image: url('../images/check-2.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Social */
.social-section {
    padding: 70px 75px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.social-heading {
    width: 100%;
    text-align: center;
}

.social-heading span {
    color: #AC977A;
    font-family: Gotham;
    font-size: 20px;
    font-style: normal;
    font-weight: 300;
    line-height: 32px;
    /* 160% */
    display: block;
    margin-top: 4px;
}


.social-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
}

.social-grid>div>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-grid>div {
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.social-grid>div::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(172, 151, 122, 0.80);
    background-image: url("../images/instagram.svg");
    background-size: 78px;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: all 0.45s ease;
}

.social-grid>div:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Appointment */
.appointment-section {
    padding: 70px 24px 62px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%), url('../images/appointment-bg.png') lightgray 50% / cover no-repeat;
    position: relative;
    overflow: hidden;
}

.appointment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 320px;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.58) 0%,
            rgba(0, 0, 0, 0.42) 35%,
            rgba(0, 0, 0, 0.22) 65%,
            rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.appointment-section>* {
    position: relative;
    z-index: 5;
}

.appointment-section .common-heading {
    color: #fff;
    text-align: center;
}

.appointment-section>p {
    color: #FFF;
    text-align: center;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 133.333% */
    max-width: 686px;
    margin: 12px auto 40px;
}

.appointment-box {
    max-width: 874px;
    margin: auto;
    border-radius: 4px;
    background: rgba(172, 151, 122, 0.65);
    backdrop-filter: blur(25px);
    padding: 50px;
}

.appointment-box form {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.appointment-box input,
.appointment-box textarea {
    color: rgba(255, 255, 255, 0.80);
    font-family: "Univers LT Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    border: none;
    outline: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    display: flex;
    width: 100%;
    margin-bottom: 15px;
    padding: 17px 0;
}

.appointment-box textarea {
    resize: none;
    overflow: hidden;
}

.appointment-box input::placeholder,
.appointment-box textarea::placeholder {
    color: rgba(255, 255, 255, 0.80);
    font-family: "Univers LT Std";
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
}

.appointment-box button {
    margin-top: 23px;
    background: transparent;
    cursor: pointer;
}

/* Map */

.map-section {
    padding: 90px 70px 0;
    margin-bottom: -130px;
}

.map-section iframe {
    width: 100%;
}

/* Footer */
.footer {
    padding-top: 200px;
    background: #F5F3EF;
}

.footer-content {
    width: 100%;
    padding: 0 70px 50px;
}

.footer-logo {
    display: flex;
    justify-content: center;
}

.footer-logo img {
    width: 203px;
    height: auto;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: #000;
    margin: 50px 0 36px;
}

.footer-grid {
    max-width: 1160px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
}

.footer h4 {
    color: #000;
    font-family: MinervaModern;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 120% */
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer a,
.footer p {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    display: inline-block;
}

.footer-grid>div>a {
    margin-bottom: 10px;
}

.footer-grid>div>a:last-of-type {
    margin-bottom: 0;
}

.footer-grid>div h4:nth-of-type(2) {
    margin-top: 36px;
}

.social-link {
    margin-top: 36px;
}

.social-link a {
    display: flex;
    width: 52px;
    height: 52px;
    padding: 11px;
    align-items: center;
    border-radius: 26px;
    background: #AC977A;
    margin-top: 17px;
}

.social-link a img {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    aspect-ratio: 1/1;
}

.copyright {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.52);
    padding: 18px 100px 18px 70px;
}


/* Inner Pages */
.common-hero-section {
    width: 100%;
    height: 100vh;
    max-height: 679px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 0 30px 70px;
    background-position: center;
}

.common-hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.30) 0%, rgba(0, 0, 0, 0.30) 100%);
    z-index: 1;
    pointer-events: none;
}

.common-hero-section::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 220px;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0.51) 0%,
            rgba(0, 0, 0, 0.38) 45%,
            rgba(0, 0, 0, 0) 100%);
}

.common-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
}

.common-hero-content span {
    color: rgba(255, 255, 255, 0.60);
    font-family: Gotham;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
    /* 153.333% */
    letter-spacing: -0.45px;
    text-transform: uppercase;
}

.common-hero-content h1 {
    color: #FFF;
    font-family: MinervaModern;
    font-size: 48px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
    /* 95.833% */
    text-transform: uppercase;
    margin-top: 16px;
}

/* Intro Section */
.common-intro-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 70px 50px;
    background: rgba(172, 151, 122, 0.12);
}

.common-intro-section h2 {
    color: rgba(0, 0, 0, 0.40);
    text-align: center;
    font-family: Gotham;
    font-size: 15px;
    font-style: normal;
    font-weight: 300;
    line-height: 23px;
    /* 153.333% */
    letter-spacing: -0.45px;
    text-transform: uppercase;
    max-width: 917px;
    margin-bottom: 24px;
}

.common-intro-section hr {
    width: 168px;
    height: 5px;
    background: rgba(172, 151, 122, 0.30);
    margin-bottom: 24px;
}

.common-intro-section p {
    color: #000;
    text-align: center;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    max-width: 1029px;
    margin-bottom: 40px;
}

.section-heading {
    color: #000;
    font-family: MinervaModern;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    /* 118.75% */
    text-transform: uppercase;
}


/* Botox Page */

/* Hero */
.botox-hero {
    background-image: url('../images/botox-hero.png');
}

/* Love Botox */
.love-botox-section {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    justify-content: center;
}

.love-botox-box {
    width: 100%;
    display: flex;
    max-width: 1140px;
    padding: 50px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    background: #AC977A;
}

.love-botox-box .section-heading {
    color: #FFF;
    line-height: 46px;
    margin-bottom: 20px;

}

.love-botox-box p {
    color: #FFF;
    text-align: center;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    letter-spacing: -0.48px;
    max-width: 924px;
    margin-bottom: 26px;
}

.love-botox-box p:last-child {
    margin-bottom: 0;
}

/* Risks */
.botox-risk-section {
    width: 100%;
    padding: 50px;
    background: #F5F3EF;
    display: flex;
    justify-content: center;
}

.risk-wrapper {
    width: 100%;
    max-width: 1137px;
    display: flex;
    gap: 50px;
    align-items: stretch;
}

.risk-img {
    width: 100%;
    max-width: 436px;
    border-radius: 20px;
}

.risk-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    background: #F5F3EF;
}

.risk-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.risk-content .section-heading {
    margin-bottom: 24px;
    max-width: 505px;
}

.risk-content p {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    max-width: 595px;
}

.risk-content h3 {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    text-transform: uppercase;
    margin: 24px 0 20px;
}

.check {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 30px;
}

.risk-content .check {
    margin-bottom: 34px;
}

.risk-content .check:last-child {
    margin-bottom: 0;
}

.risk-content p+.check {
    margin-top: 20px;
}


.check li {
    position: relative;
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.48px;
    padding-left: 54px;
}

.check li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    aspect-ratio: 1/1;
    background-image: url('../images/check.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Choice */
.botox-choice-section {
    width: 100%;
    padding: 50px;
    background: #AC977A;
    display: flex;
    justify-content: center;
}

.botox-choice-wrapper {
    width: 100%;
    max-width: 1140px;
}

.botox-choice-section .section-heading {
    color: #fff;
    margin-bottom: 20px;
}

.botox-choice-section p {
    color: #FFF;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    max-width: 906px;
}

.choice-list {
    width: 100%;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 24px 0 36px;
}

.choice-list li {
    width: 100%;
    padding: 11px 16px 11px 44px;
    color: #FFF;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    position: relative;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
}

.choice-list li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 32px;
    aspect-ratio: 1/2;
    background-image: url('../images/chevron-white.svg');
    background-size: cover;
    background-repeat: no-repeat;
}

/* Process */
.botox-process-section {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    justify-content: center;
}

.process-grid {
    width: 100%;
    max-width: 1140px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.process-card {
    width: 100%;
    border-radius: 20px;
    background: #F5F3EF;
    padding: 36px 36px 47px;
}

.process-card .section-heading {
    margin-bottom: 24px;
    line-height: 32px;
}

.process-card p {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    max-width: 466px;
    margin-bottom: 26px;
}

.process-card p:last-child {
    margin-bottom: 0;
}

/* Aftercare */
.botox-aftercare-section {
    width: 100%;
    padding: 50px;
    background: #F5F3EF;
    display: flex;
    justify-content: center;
}

.aftercare-wrapper {
    width: 100%;
    max-width: 1140px;
    display: flex;
    align-items: stretch;
    gap: 40px;
}

.aftercare-wrapper>div {
    width: 100%;
}

.aftercare-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.aftercare-content .section-heading {
    margin-bottom: 24px;
    max-width: 448px;
}

.aftercare-content p {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    margin-bottom: 24px;
    max-width: 580px;
}

.aftercare-content p:last-child {
    margin-bottom: 0;
}

.aftercare-content .btn {
    margin-top: 6px;
}

.aftercare-img {
    max-width: 436px;
}

.aftercare-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    background: #F5F3EF;
}

/* Final */
.botox-final-section {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    justify-content: center;
}

.botox-final-wrapper {
    width: 100%;
    max-width: 1140px;
}

.botox-final-section .section-heading {
    margin-bottom: 24px;
}

.botox-final-section p {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    max-width: 1089px;
    margin-bottom: 26px;
}

.botox-final-section p:last-child {
    margin-bottom: 0;
}

/* Laser Hair removal */
.laser-hero {
    background-image: url('../images/laser-hair-hero.png');
}

.bg-gray {
    background: #F5F3EF;
}

.bg-gray * {
    color: #000 !important;
}

.bg-gray .choice-list li {
    background: rgba(172, 151, 122, 0.06);
}

.bg-gray .choice-list li::before {
    filter: invert();
}

.bg-gray .choice-list {
    margin-bottom: 20px;
}

.bg-white {
    background: #fff;
}

.bg-white * {
    color: #000 !important;
}

.bg-white .choice-list li {
    background: rgba(172, 151, 122, 0.06);
}

.bg-white .choice-list li::before {
    filter: invert();
}

.pb-0 {
    padding-bottom: 0 !important;
}

.who-benefit-section {
    width: 100%;
    padding: 50px;
    background: #AC977A;
    display: flex;
    justify-content: center;
}

.who-benefit-wrapper {
    width: 100%;
    max-width: 1140px;
    display: flex;
    align-items: stretch;
    gap: 70px;
}

.who-benefit-wrapper>div {
    width: 100%;
}

.who-benefit-content .section-heading {
    color: #fff;
    max-width: 448px;
    margin-bottom: 24px;
}

.who-benefit-content p {
    color: #FFF;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    margin-bottom: 26px;
}

.who-benefit-content p:last-child {
    margin-bottom: 0;
}

.who-benefit-img {
    max-width: 436px;
}

.who-benefit-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    background: #F5F3EF;
}

.bg-taupe {
    background: #AC977A;
}

.bg-taupe * {
    color: #fff !important;
}

.bg-gray+.testimonial-section {
    margin-top: 70px;
}

.hydro-hero {
    background-image: url('../images/hydro-hero.png');
}

.bg-taupe .process-card {
    background: rgba(255, 255, 255, 0.95);
}

.bg-taupe .process-card * {
    color: #000 !important;
}

.bg-taupe .process-card .check {
    margin-bottom: 20px;
}

.bg-taupe .process-card p:has(+ .check) {
    margin-bottom: 20px;
}

.what-hydrofacial .risk-content .section-heading {
    max-width: unset;
}

.bg-taupe .check li::before {
    background-image: url('../images/check-2.svg');
}

.section-small-heading {
    color: #000;
    font-family: MinervaModern;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
    /* 145.833% */
    text-transform: uppercase;
}

.process-card .section-small-heading {
    max-width: 448px;
    margin-bottom: 24px;
}

.bg-taupe .process-card .check li::before {
    background-image: url('../images/check.svg');
}

.looking-after .section-heading {
    max-width: 608px;
}

/* Stem Cells */
.stem-hero {
    background-image: url('../images/stem-hero.png');
}

.perfect-candidate .section-heading {
    max-width: 608px;
}

.stem-cell-growth .botox-choice-wrapper {
    max-width: 1150px;
}

.stem-process-sec .section-heading {
    max-width: 466px;
}

.stem-cell-treatment-journey {
    width: 100%;
    padding: 70px 50px;
    display: flex;
    justify-content: center;
}

.stem-cell-journey-wrapper {
    width: 100%;
    max-width: 1140px;
}

.stem-cell-journey-wrapper .section-heading {
    margin-bottom: 36px;
}

.stem-cell-journey-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stem-cell-journey-grid>div {
    padding: 30px 30px 41px;
    border-radius: 20px;
    background: #AC977A;
}

.stem-cell-journey-grid h3 {
    color: #FFF;
    font-family: MinervaModern;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    /* 155% */
    text-transform: uppercase;
    margin-bottom: 8px;
}

.stem-cell-journey-grid p {
    color: #FFF;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    max-width: 292px;
}

/* Skinpen Microneedling */
.skinpen-hero {
    background-image: url('../images/skinpen-hero.png');
}

.ideal-candidate p {
    max-width: 973px;
}

.caring-skin .section-heading {
    max-width: 602px;
}

/* Skinpen Info */

.skinpen-info-section {
    width: 100%;
    padding: 50px;
    background: #F5F3EF;
}

.skinpen-info-wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.skinpen-info-col {
    width: 100%;
}

.skinpen-info-col h2 {
    color: #000;
    font-family: MinervaModern;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 133.333% */
    text-transform: uppercase;
    max-width: 454px;
    margin-bottom: 24px;
}

.skinpen-info-col p {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    margin-bottom: 26px;
}

.skinpen-info-col p:last-child {
    margin-bottom: 0;
}

.skinpen-info-section+.testimonial-section {
    margin-top: 70px;
}

/* Sun Damage Treatment */
.sun-damage-hero {
    background-image: url('../images/sun-damage-hero.png');
}

.damage-treatment .section-heading {
    max-width: unset;
}

.damage-treatment p {
    max-width: 651px;
}

.bg-taupe .stem-cell-journey-grid>div {
    background: #fff;
}

.bg-taupe .stem-cell-journey-grid>div * {
    color: #000 !important;
}

.bg-taupe .stem-cell-journey-grid>div .check li::before{
	background-image: url(../images/check.svg);
}

.understanding-risks .section-heading {
    max-width: 594px;
}

.treatment-ready .section-heading {
    max-width: 836px;
}

.blog-hero {
    background-image: url('../images/blog-hero.png');
    padding-bottom: 100px;
}

.navigation {
    width: 100%;
    padding: 30px 20px 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    overflow: hidden;
}

.navigation .page {
    display: flex;
    width: 44px;
    height: 44px;
    padding: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 4px;
    border: 1px solid #000;
    color: #000;
    font-family: Gotham;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 133.333% */
}

.navigation .page.current {
    color: #fff;
    background: #AC977A;
    border-color: #AC977A;
}

.navigation .page.disabled {
    opacity: 0.2;
}

.navigation .page img {
    width: 12px;
    height: auto;
    aspect-ratio: 1/2;
}

.navigation .page.prev {
    transform: scaleX(-1);
}

.single-blog-hero {
    background-image: url('../images/single-blog.png');
}

.blog-content-wrapper {
    padding: 70px 20px 80px;
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}

.blog-content-wrapper p {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    margin-bottom: 26px;
}

.blog-content-wrapper p:last-child {
    margin-bottom: 0;
}

.blog-content-wrapper h2 {
    color: #000;
    font-family: MinervaModern;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 40px;
    /* 125% */
    text-transform: uppercase;
    margin: 50px 0 20px;
}

.blog-content-wrapper h2:first-child {
    margin-top: 0;
}

.faq-section {
    width: 100%;
    padding: 50px;
    margin-bottom: 70px;
    background: #FAF9F7;
}

.faq-wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.faq-wrapper h2 {
    color: #000;
    font-family: MinervaModern;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 46px;
    /* 143.75% */
    text-transform: uppercase;
    margin-bottom: 20px;
}

.faq-list {
    width: 100%;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
    padding-bottom: 10px;
}

.faq-question {
    width: 100%;
    padding: 25px 12px 15px 0;
    background: transparent;
    border: 0;
    outline: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    text-align: left;
}

.faq-question span {
    color: #171717;
    font-family: MinervaModern;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 32.2px;
    /* 161% */
}

.faq-icon {
    width: 24px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    max-width: 1073px;
    color: #171717;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26.6px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Our Team */
.team-hero {
    background-image: url('../images/team-hero.png');
    padding-bottom: 100px;
}

.team-section {
    padding: 70px 50px;
}

.team-grid {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 70px 20px;
}

.team-grid>div>div {
    display: flex;
    width: 100%;
    border-radius: 4px;
    background: #F5F3EF;
}

.team-grid div img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
}

.team-grid div span {
    color: #000;
    text-align: center;
    font-family: MinervaModern;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 108.333% */
    text-transform: uppercase;
    display: block;
    margin: 24px 0 12px;
}

.team-grid div p {
    color: #000;
    text-align: center;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
}


/* About Us Page */


/* About Values Section */
.about-values-section {
    width: 100%;
    padding: 50px 30px 70px;
}

.about-values-wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.about-value-card {
    display: inline-flex;
    padding: 39px 38px 56px 39px;
    flex-direction: column;
    align-items: center;
    border-radius: 4px;
    background: #FAF9F7;
}

.about-value-icon {
    width: 84px;
    height: 84px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.about-value-card h3 {
    color: #000;
    text-align: center;
    font-family: MinervaModern;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    /* 155% */
    text-transform: uppercase;
    margin-bottom: 8px;
}

.about-value-card p {
    color: #000;
    text-align: center;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
}

/* Promise Section */

.promise-section {
    width: 100%;
    padding: 50px;
    background: #AC977A;
}

.promise-wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.section-title {
    width: 100%;
    text-align: center;
}

.promise-section .section-heading {
    margin-bottom: 16px;
    color: #fff;
}

.section-title p {
    color: #FFF;
    text-align: center;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
}

.promise-card-wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.promise-card {
    width: 100%;
    padding: 36px 54px 54px;
    border-radius: 4px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.promise-card h3 {
    color: #000;
    text-align: center;
    font-family: MinervaModern;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    /* 133.333% */
    text-transform: uppercase;
    margin-bottom: 24px;
}

.promise-card p {
    color: #000;
    text-align: center;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
}

/* Growth Section */
.growth-section {
    width: 100%;
    padding: 70px 30px;
    background: #FAF9F7;
    margin-bottom: 70px;
}

.growth-section .section-heading {
    margin-bottom: 16px;
}

.growth-wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.growth-section .section-title p {
    color: #000;
    margin-bottom: 50px;
}

.growth-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 50px;
}

.growth-item h3 {
    color: #000;
    font-family: MinervaModern;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    /* 120% */
    text-transform: uppercase;
    margin-bottom: 16px;
}

.growth-item p {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    max-width: 495px;
}

/* Our Machines */
.machines-hero {
    background-image: url('../images/machines-hero.png');
}

/* Machines Intro Section */
.machines-intro-section {
    width: 100%;
    padding: 70px 50px;
    background: rgba(172, 151, 122, 0.12);
}

.machines-intro-wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: stretch;
}

.machine-intro-divider {
    width: 1px;
    background: rgba(0, 0, 0, 0.20);
}

.machines-intro-content h2 {
    color: #000;
    font-family: MinervaModern;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 31px;
    /* 129.167% */
    text-transform: uppercase;
    margin-bottom: 15px;
}

.machines-intro-content p {
    color: #000;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 24px;
    /* 150% */
    letter-spacing: -0.48px;
    max-width: 656px;
}

/* Our Machines Grid Section */
.our-machine-grid-section {
    width: 100%;
    padding: 50px 30px 100px;
}

.our-machine-grid-wrapper {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 20px;
}

.our-machine-grid-card {
    width: 100%;
    text-align: center;
}

.our-machine-grid-img {
    width: 100%;
    background: #F6F5F2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.our-machine-grid-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.our-machine-grid-content h3 {
    color: #000;
    text-align: center;
    font-family: MinervaModern;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    /* 108.333% */
    text-transform: uppercase;
    max-width: 295px;
    margin: 0 auto 12px;
}

.our-machine-grid-content p {
    color: #000;
    text-align: center;
    font-family: Gotham;
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: 26px;
    /* 162.5% */
    letter-spacing: -0.48px;
    max-width: 295px;
    margin: 0 auto;
}