:root {
    --ms-bg: #f8f3e8;
    --ms-bg-light: #fbf7ee;
    --ms-dark: #160b06;
    --ms-brown: #3d2213;
    --ms-brown-soft: #6a472d;
    --ms-gold: #c7a36b;
    --ms-gold-soft: #ead7ad;
    --ms-white: #fffaf0;

    --ms-container: 1440px;
    --ms-header-height: 76px;

    --ms-ease: cubic-bezier(.22, 1, .36, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ms-bg);
    color: var(--ms-dark);
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

body.elementor-page {
    background: var(--ms-bg);
}

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

img {
    max-width: 100%;
    height: auto;
}

.ms-page {
    min-height: 100vh;
    background: var(--ms-bg);
}

.ms-main {
    padding-top: var(--ms-header-height);
}

.ms-main--elementor {
    overflow: hidden;
}

/* Elementor reset */
.elementor-section,
.elementor-container,
.e-con {
    max-width: none;
}

.elementor-widget:not(:last-child) {
    margin-bottom: 0;
}

/* Header */
.ms-site-header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    height: var(--ms-header-height);
    background: var(--ms-bg-light);
    border-bottom: 1px solid rgba(199, 163, 107, .2);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 38px;
}

.ms-header-left,
.ms-header-right,
.ms-header-logo {
    display: flex;
    align-items: center;
}

.ms-header-left {
    justify-content: flex-start;
    gap: 14px;
}

.ms-header-logo {
    justify-content: center;
}

.ms-header-logo img {
    display: block;
    max-height: 48px;
    width: auto;
}

.ms-header-right {
    justify-content: flex-end;
}

.ms-menu-label {
    font-size: 11px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ms-brown);
}

.ms-burger {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(199, 163, 107, .28);
    border-radius: 50%;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: .4s var(--ms-ease);
}

.ms-burger span {
    width: 14px;
    height: 1px;
    background: var(--ms-brown);
    display: block;
    transition: .4s var(--ms-ease);
}

.ms-burger:hover {
    border-color: var(--ms-gold);
    transform: scale(1.06);
}

.ms-search {
    width: 20px;
    height: 20px;
    border: 0;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.ms-search::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 2px;
    width: 11px;
    height: 11px;
    border: 1px solid rgba(61, 34, 19, .7);
    border-radius: 50%;
}

.ms-search::after {
    content: "";
    position: absolute;
    left: 13px;
    top: 13px;
    width: 6px;
    height: 1px;
    background: rgba(61, 34, 19, .7);
    transform: rotate(45deg);
}

.ms-header-booking {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 26px;
    border: 1px solid rgba(199, 163, 107, .48);
    color: var(--ms-brown);
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    transition: .45s var(--ms-ease);
}

.ms-header-booking:hover {
    background: var(--ms-brown);
    border-color: var(--ms-brown);
    color: #fff;
}

/* Mobile menu */
.ms-menu-panel {
    position: fixed;
    z-index: 1200;
    inset: 0;
    background: rgba(20, 10, 5, .56);
    opacity: 0;
    visibility: hidden;
    transition: .45s var(--ms-ease);
}

.ms-menu-panel.is-open {
    opacity: 1;
    visibility: visible;
}

.ms-menu-panel__inner {
    width: min(420px, 88vw);
    height: 100%;
    background: var(--ms-bg-light);
    padding: 38px;
    transform: translateX(-100%);
    transition: .55s var(--ms-ease);
}

.ms-menu-panel.is-open .ms-menu-panel__inner {
    transform: translateX(0);
}

.ms-menu-close {
    border: 0;
    background: transparent;
    color: var(--ms-brown);
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    margin-bottom: 36px;
}

.ms-main-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ms-main-menu li {
    border-bottom: 1px solid rgba(199, 163, 107, .24);
}

.ms-main-menu a {
    display: block;
    padding: 18px 0;
    color: var(--ms-brown);
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Hero from Elementor */
.ms-hero {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: var(--ms-dark);
    display: grid !important;
    grid-template-columns: 1fr 1fr;
}

.ms-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background:
        radial-gradient(circle at 37% 50%, rgba(255,255,255,.055), transparent 18%),
        linear-gradient(90deg, rgba(18,8,4,.74), rgba(18,8,4,.28) 45%, rgba(18,8,4,.58)),
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.42));
}

.ms-hero-left,
.ms-hero-right {
    min-height: 760px;
    background-size: cover !important;
    background-position: center !important;
    will-change: transform;
}

.ms-hero-content {
    position: absolute !important;
    z-index: 5;
    inset: 0;
    color: #fff;
    padding: 58px 40px;
    pointer-events: none;
}

.ms-hero-content .elementor-widget,
.ms-hero-content a,
.ms-hero-content button {
    pointer-events: auto;
}

.ms-breadcrumbs {
    max-width: 620px;
    font-size: 11px;
    line-height: 1.45;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.68);
    margin-bottom: 22px;
}

.ms-hero-title .elementor-heading-title {
    max-width: 650px;
    color: #fff;
    font-size: clamp(44px, 5vw, 72px);
    line-height: .96;
    font-weight: 300;
    letter-spacing: .015em;
    text-transform: uppercase;
}

.ms-gift {
    position: absolute !important;
    left: 55%;
    top: 47%;
    max-width: 390px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ms-gift::before {
    content: "";
    position: absolute;
    left: -38px;
    top: 9px;
    width: 9px;
    height: 9px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 28px rgba(255,255,255,.75);
}

.ms-gift::after {
    content: "";
    position: absolute;
    left: -35px;
    top: -110px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,.18);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    pointer-events: none;
    animation: msRotate 18s linear infinite;
}

.ms-gift .elementor-heading-title,
.ms-gift p,
.ms-gift div {
    color: #fff;
}

.ms-gift .elementor-heading-title {
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.ms-gift .elementor-button {
    margin-top: 18px;
    background: transparent !important;
    border: 1px solid rgba(255,255,255,.58) !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 12px 26px !important;
    font-size: 11px !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .45s var(--ms-ease);
}

.ms-gift .elementor-button:hover {
    background: #fff !important;
    color: var(--ms-dark) !important;
}

/* Care */
.ms-care {
    position: relative;
    padding: 78px 58px 88px;
    background: var(--ms-bg);
    color: var(--ms-dark);
}

.ms-care-grid {
    display: grid !important;
    grid-template-columns: 280px minmax(340px, 1fr) 440px;
    gap: 58px;
    align-items: start;
    max-width: var(--ms-container);
    margin: 0 auto;
}

.ms-care-left .elementor-heading-title {
    color: var(--ms-dark);
    font-size: 32px;
    line-height: .95;
    font-weight: 800;
    letter-spacing: -.02em;
    text-transform: uppercase;
}

.ms-care-left p {
    color: rgba(61, 34, 19, .68);
    font-size: 13px;
    line-height: 1.4;
    text-transform: uppercase;
}

.ms-category-card {
    min-height: 128px;
    border: 1px solid rgba(199, 163, 107, .55);
    background: rgba(255,255,255,.3);
    display: flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    transition: .45s var(--ms-ease);
}

.ms-category-card + .ms-category-card {
    border-top: 0;
}

.ms-category-card:hover,
.ms-category-card.active {
    background: #fffaf2;
    border-color: var(--ms-gold);
    transform: translateX(6px);
}

.ms-category-card .elementor-heading-title,
.ms-category-card p {
    color: var(--ms-brown);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.ms-care-image {
    overflow: hidden;
    border-radius: 180px 180px 0 0;
    min-height: 540px;
}

.ms-care-image img {
    display: block;
    width: 100%;
    height: 540px;
    object-fit: cover;
    transform: scale(1.04);
    transition: 1.2s var(--ms-ease);
}

.ms-care-image:hover img {
    transform: scale(1.09);
}

.ms-programs .elementor-heading-title {
    color: var(--ms-dark);
    font-size: 27px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 22px;
}

.ms-program-card {
    position: relative;
    display: grid !important;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid rgba(64,35,20,.14);
}

.ms-program-card::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 0;
    height: 1px;
    background: var(--ms-gold);
    transition: .55s var(--ms-ease);
}

.ms-program-card:hover::before {
    width: 100%;
}

.ms-program-card .elementor-heading-title {
    color: var(--ms-dark);
    font-size: 15px;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    margin: 0;
}

.ms-program-card p,
.ms-program-card .elementor-widget-text-editor {
    color: rgba(26,13,7,.72);
    font-size: 13px;
    line-height: 1.38;
}

.ms-program-card .elementor-button {
    min-width: 124px;
    background: transparent !important;
    color: var(--ms-brown) !important;
    border: 1px solid rgba(199,163,107,.68) !important;
    border-radius: 999px !important;
    padding: 10px 20px !important;
    font-size: 10px !important;
    line-height: 1.1;
    letter-spacing: .05em;
    text-transform: uppercase;
    transition: .4s var(--ms-ease);
}

.ms-program-card .elementor-button:hover {
    background: var(--ms-brown) !important;
    color: #fff !important;
    border-color: var(--ms-brown) !important;
    transform: translateY(-2px);
}

/* CTA */
.ms-cta {
    position: relative;
    min-height: 350px;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.ms-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(15,8,5,.82), rgba(15,8,5,.45)),
        linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.58));
}

.ms-cta-content {
    position: relative;
    z-index: 3;
    max-width: 520px;
    text-align: center;
    color: #fff;
}

.ms-cta-content .elementor-heading-title {
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.ms-cta-content p {
    color: rgba(255,255,255,.72);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ms-cta-content .elementor-button {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.5) !important;
    border-radius: 0 !important;
    padding: 13px 28px !important;
    font-size: 11px !important;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .45s var(--ms-ease);
}

.ms-cta-content .elementor-button:hover {
    background: #fff !important;
    color: var(--ms-dark) !important;
}

/* Footer */
.ms-site-footer {
    background: #150b07;
    color: rgba(255,255,255,.62);
    padding: 24px 38px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.ms-footer-inner {
    max-width: var(--ms-container);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}

.ms-footer-right {
    display: flex;
    gap: 28px;
}

.ms-footer-right a:hover {
    color: #fff;
}

/* Keyframes */
@keyframes msRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .ms-care-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .ms-care-left {
        grid-column: 1 / -1;
    }

    .ms-gift {
        left: 48%;
    }

    .ms-care-image {
        min-height: 460px;
    }

    .ms-care-image img {
        height: 460px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --ms-header-height: 62px;
    }

    .ms-site-header {
        height: var(--ms-header-height);
        padding: 0 16px;
        grid-template-columns: 1fr auto 1fr;
    }

    .ms-menu-label,
    .ms-search,
    .ms-header-right {
        display: none;
    }

    .ms-header-logo img {
        max-height: 42px;
    }

    .ms-main {
        padding-top: var(--ms-header-height);
    }

    .ms-hero {
        min-height: 690px;
        display: block !important;
    }

    .ms-hero-right {
        display: none !important;
    }

    .ms-hero-left {
        min-height: 690px;
        width: 100%;
        background-position: center !important;
    }

    .ms-hero::after {
        background:
            linear-gradient(180deg, rgba(18,8,4,.34), rgba(18,8,4,.68)),
            linear-gradient(90deg, rgba(18,8,4,.48), rgba(18,8,4,.12));
    }

    .ms-hero-content {
        padding: 34px 18px;
    }

    .ms-breadcrumbs {
        font-size: 9px;
        margin-bottom: 16px;
    }

    .ms-hero-title .elementor-heading-title {
        max-width: 320px;
        font-size: 31px;
        line-height: 1.08;
    }

    .ms-gift {
        left: 36px;
        right: 18px;
        top: auto;
        bottom: 92px;
        max-width: 300px;
    }

    .ms-gift::before {
        left: -22px;
        top: 8px;
        width: 8px;
        height: 8px;
    }

    .ms-gift::after {
        left: -34px;
        top: -72px;
        width: 230px;
        height: 230px;
    }

    .ms-gift .elementor-heading-title {
        font-size: 13px;
    }

    .ms-care {
        padding: 42px 18px 64px;
    }

    .ms-care-grid {
        display: block !important;
    }

    .ms-care-left .elementor-heading-title {
        font-size: 24px;
        line-height: 1;
    }

    .ms-care-left p {
        font-size: 11px;
    }

    .ms-category-card {
        display: inline-flex !important;
        width: auto;
        min-height: auto;
        padding: 10px 18px;
        border-radius: 999px;
        border: 1px solid rgba(199,163,107,.55) !important;
        margin: 8px 6px 8px 0;
        transform: none !important;
    }

    .ms-category-card .elementor-heading-title,
    .ms-category-card p {
        font-size: 11px;
        white-space: nowrap;
    }

    .ms-care-image {
        display: none !important;
    }

    .ms-programs {
        margin-top: 28px;
    }

    .ms-programs .elementor-heading-title {
        font-size: 23px;
        margin-bottom: 14px;
    }

    .ms-program-card {
        grid-template-columns: 1fr auto;
        gap: 12px;
        padding: 14px 0;
    }

    .ms-program-card .elementor-heading-title {
        font-size: 13px;
    }

    .ms-program-card p,
    .ms-program-card .elementor-widget-text-editor {
        font-size: 11px;
    }

    .ms-program-card .elementor-button {
        min-width: 96px;
        padding: 9px 13px !important;
        font-size: 8px !important;
    }

    .ms-cta {
        min-height: 310px;
        padding: 50px 20px;
    }

    .ms-cta-content .elementor-heading-title {
        font-size: 14px;
    }

    .ms-site-footer {
        padding: 24px 18px;
    }

    .ms-footer-inner {
        display: block;
        text-align: center;
    }

    .ms-footer-right {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 16px;
    }
}
/* ===== HARD FIX FOR ELEMENTOR GENERATED PAGE ===== */

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    background: #f8f3e8 !important;
    overflow-x: hidden !important;
}

body {
    color: #160b06 !important;
}

.ms-main {
    padding-top: 76px !important;
}

.elementor,
.elementor-section-wrap,
.elementor-element,
.e-con,
.e-con-inner {
    box-sizing: border-box;
}

.elementor-widget-container,
.elementor-heading-title,
.elementor-widget-text-editor,
.elementor-widget-text-editor p {
    margin-top: 0;
}

/* HERO FIX */
.ms-hero {
    position: relative !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-height: 760px !important;
    height: 760px !important;
    margin: 0 !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    overflow: hidden !important; 
}

.ms-hero > .e-con-inner {
    max-width: none !important;
    width: 100% !important;
    display: contents !important;
}

.ms-hero-left,
.ms-hero-right {
    min-height: 760px !important;
    height: 760px !important;
    width: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.ms-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background:
        radial-gradient(circle at 37% 50%, rgba(255,255,255,.055), transparent 18%),
        linear-gradient(90deg, rgba(18,8,4,.74), rgba(18,8,4,.28) 45%, rgba(18,8,4,.58)),
        linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.42));
    pointer-events: none;
}

.ms-hero-content {
    position: absolute !important;
    z-index: 5 !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    padding: 58px 40px !important;
    color: #fff !important;
    pointer-events: none;
}

.ms-hero-content .elementor-widget,
.ms-hero-content a,
.ms-hero-content button {
    pointer-events: auto;
}

.ms-breadcrumbs,
.ms-breadcrumbs * {
    color: rgba(255,255,255,.68) !important;
    font-size: 11px !important;
    line-height: 1.45 !important;
    letter-spacing: .12em !important;
    text-transform: uppercase !important;
}

.ms-hero-title .elementor-heading-title {
    max-width: 650px !important;
    color: #fff !important;
    font-size: clamp(44px, 5vw, 72px) !important;
    line-height: .96 !important;
    font-weight: 300 !important;
    letter-spacing: .015em !important;
    text-transform: uppercase !important;
}

.ms-gift {
    position: absolute !important;
    left: 55% !important;
    top: 47% !important;
    max-width: 390px !important;
    color: #fff !important;
    text-transform: uppercase !important;
    letter-spacing: .08em !important;
}

.ms-gift * {
    color: #fff !important;
}

.ms-gift::before {
    content: "";
    position: absolute;
    left: -38px;
    top: 9px;
    width: 9px;
    height: 9px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 28px rgba(255,255,255,.75);
}

.ms-gift::after {
    content: "";
    position: absolute;
    left: -35px;
    top: -110px;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,.18);
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-radius: 50%;
    pointer-events: none;
    animation: msRotate 18s linear infinite;
}

.ms-gift .elementor-button {
    background: transparent !important;
    border: 1px solid rgba(255,255,255,.58) !important;
    color: #fff !important;
    border-radius: 0 !important;
    padding: 12px 26px !important;
    font-size: 11px !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

/* CARE FIX */
.ms-care {
    position: relative !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    padding: 78px 58px 88px !important;
    background: #f8f3e8 !important;
    color: #160b06 !important;
}

.ms-care > .e-con-inner {
    max-width: none !important;
    width: 100% !important;
}

.ms-care-grid {
    width: 100% !important;
    max-width: 1440px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 280px minmax(340px, 1fr) 440px !important;
    gap: 58px !important;
    align-items: start !important;
}

.ms-care-grid > .e-con-inner {
    display: contents !important;
}

.ms-care-left,
.ms-care-image,
.ms-programs {
    width: 100% !important;
    max-width: none !important;
}

.ms-care-left .elementor-heading-title {
    color: #160b06 !important;
    font-size: 32px !important;
    line-height: .95 !important;
    font-weight: 800 !important;
    letter-spacing: -.02em !important;
    text-transform: uppercase !important;
}

.ms-care-left p,
.ms-care-left .elementor-widget-text-editor {
    color: rgba(61, 34, 19, .68) !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    text-transform: uppercase !important;
}

.ms-category-card {
    width: 100% !important;
    min-height: 128px !important;
    border: 1px solid rgba(199, 163, 107, .55) !important;
    background: rgba(255,255,255,.3) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 20px !important;
    transition: .45s cubic-bezier(.22, 1, .36, 1) !important;
}

.ms-category-card + .ms-category-card {
    border-top: 0 !important;
}

.ms-category-card:hover,
.ms-category-card.active {
    background: #fffaf2 !important;
    border-color: #c7a36b !important;
    transform: translateX(6px) !important;
}

.ms-category-card .elementor-heading-title,
.ms-category-card p {
    color: #3d2213 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: .04em !important;
}

.ms-care-image {
    overflow: hidden !important;
    border-radius: 180px 180px 0 0 !important;
    min-height: 540px !important;
}

.ms-care-image img {
    display: block !important;
    width: 100% !important;
    height: 540px !important;
    object-fit: cover !important;
}

.ms-programs .elementor-heading-title {
    color: #160b06 !important;
    font-size: 27px !important;
    line-height: 1 !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
}

.ms-program-card {
    position: relative !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    gap: 22px !important;
    align-items: center !important;
    padding: 16px 0 !important;
    border-bottom: 1px solid rgba(64,35,20,.14) !important;
}

.ms-program-card > .e-con-inner {
    display: contents !important;
}

.ms-program-card .elementor-heading-title {
    color: #160b06 !important;
    font-size: 15px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
}

.ms-program-card p,
.ms-program-card .elementor-widget-text-editor {
    color: rgba(26,13,7,.72) !important;
    font-size: 13px !important;
    line-height: 1.38 !important;
}

.ms-program-card .elementor-button {
    min-width: 124px !important;
    background: transparent !important;
    color: #3d2213 !important;
    border: 1px solid rgba(199,163,107,.68) !important;
    border-radius: 999px !important;
    padding: 10px 20px !important;
    font-size: 10px !important;
    line-height: 1.1 !important;
    letter-spacing: .05em !important;
    text-transform: uppercase !important;
}

/* CTA FIX */
.ms-cta {
    position: relative !important;
    min-height: 350px !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin: 0 !important;
    background-size: cover !important;
    background-position: center !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.ms-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(15,8,5,.82), rgba(15,8,5,.45)),
        linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.58));
}

.ms-cta-content {
    position: relative !important;
    z-index: 3 !important;
    max-width: 520px !important;
    text-align: center !important;
    color: #fff !important;
}

.ms-cta-content * {
    color: #fff !important;
}

.ms-cta-content .elementor-heading-title {
    color: #fff !important;
    font-size: 18px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .07em !important;
}

.ms-cta-content .elementor-button {
    background: transparent !important;
    color: #fff !important;
    border: 1px solid rgba(255,255,255,.5) !important;
    border-radius: 0 !important;
    padding: 13px 28px !important;
    font-size: 11px !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}

@keyframes msRotate {
    from {
        transform: rotate(0);
    }
    to {
        transform: rotate(360deg);
    }
}

/* MOBILE FIX */
@media (max-width: 767px) {
    .ms-main {
        padding-top: 62px !important;
    }

    .ms-hero {
        display: block !important;
        min-height: 690px !important;
        height: 690px !important;
    }

    .ms-hero-left {
        min-height: 690px !important;
        height: 690px !important;
        width: 100% !important;
    }

    .ms-hero-right {
        display: none !important;
    }

    .ms-hero-content {
        padding: 34px 18px !important;
    }

    .ms-hero-title .elementor-heading-title {
        max-width: 320px !important;
        font-size: 31px !important;
        line-height: 1.08 !important;
    }

    .ms-gift {
        left: 36px !important;
        right: 18px !important;
        top: auto !important;
        bottom: 92px !important;
        max-width: 300px !important;
    }

    .ms-gift::before {
        left: -22px !important;
        top: 8px !important;
        width: 8px !important;
        height: 8px !important;
    }

    .ms-gift::after {
        left: -34px !important;
        top: -72px !important;
        width: 230px !important;
        height: 230px !important;
    }

    .ms-care {
        padding: 42px 18px 64px !important;
    }

    .ms-care-grid {
        display: block !important;
    }

    .ms-care-left .elementor-heading-title {
        font-size: 24px !important;
        line-height: 1 !important;
    }

    .ms-category-card {
        display: inline-flex !important;
        width: auto !important;
        min-height: auto !important;
        padding: 10px 18px !important;
        border-radius: 999px !important;
        border: 1px solid rgba(199,163,107,.55) !important;
        margin: 8px 6px 8px 0 !important;
        transform: none !important;
    }

    .ms-category-card .elementor-heading-title,
    .ms-category-card p {
        font-size: 11px !important;
        white-space: nowrap !important;
    }

    .ms-care-image {
        display: none !important;
    }

    .ms-programs {
        margin-top: 28px !important;
    }

    .ms-program-card {
        grid-template-columns: 1fr auto !important;
        gap: 12px !important;
        padding: 14px 0 !important;
    }

    .ms-program-card .elementor-heading-title {
        font-size: 13px !important;
    }

    .ms-program-card p,
    .ms-program-card .elementor-widget-text-editor {
        font-size: 11px !important;
    }

    .ms-program-card .elementor-button {
        min-width: 96px !important;
        padding: 9px 13px !important;
        font-size: 8px !important;
    }

    .ms-cta {
        min-height: 310px !important;
        padding: 50px 20px !important;
    }
}
