/*
 * Header and Footer Styles (Namespaced with hf- prefix)
 * Extracted from main stylesheet
 *
 * Dependencies:
 * - Font families: "din-condensed", "adelle" (from Adobe Fonts or similar)
 * - Images: ./images/close.png, ./images/arrow-down.png
 */
@font-face {
    font-family: "din-condensed";
    src: url("./fonts/DINCondensedWeb.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "adelle";
    src: url("./fonts/AdelleReg.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "adelle";
    src: url("./fonts/AdelleItalic.woff2") format("woff2");
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: "adelle";
    src: url("./fonts/AdelleLight.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "adelle";
    src: url("./fonts/AdelleSemiBold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "adelle";
    src: url("./fonts/AdelleBold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "adelle";
    src: url("./fonts/AdelleExtraBold.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "adelle";
    src: url("./fonts/AdelleHeavy.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "adelle";
    src: url("./fonts/AdelleHeavyItalic.otf") format("opentype");
    font-weight: 900;
    font-style: italic;
    font-display: swap;
}
/* ========================================
   CSS Variables (Root)
   ======================================== */
:root {
    --hf-fz-html: 62.5%;
}

:root {
    --hf-ff-din: "din-condensed", sans-serif;
    --hf-ff-adelle: "adelle", sans-serif;
    --hf-ff-base: var(--hf-ff-adelle), "Helvetica Neue", Helvetica, Arial, sans-serif;
    --hf-fw-base: 400;
    --hf-fz-base: 1.8rem;
    --hf-lh-base: 1.2;
}

:root {
    --hf-c-white: #fff;
    --hf-c-black: #000;
    --hf-c-gray-100: #e4e6e7;
    --hf-c-gray-200: #dbdbdb;
    --hf-c-gray-300: #c5c4c4;
    --hf-c-gray-500: #535353;
    --hf-c-gray-900: #222222;
    --hf-c-gray: #535353;
    --hf-c-teal-100: #bfe9e1;
    --hf-c-teal-400: #a5d2cd;
    --hf-c-teal-800: #006f72;
    --hf-c-teal-900: #004750;
    --hf-c-teal-950: #0a434e;
    --hf-c-teal: #004750;
    --hf-c-yellow-600: #efb01e;
    --hf-c-yellow-800: #dd9c06;
    --hf-c-yellow: #efb01e;
    --hf-c-red-600: #c82660;
    --hf-c-red: #c82660;
    --hf-c-base: #000;
}

:root {
    --hf-rounded-pill: calc(infinity * 1px);
    --hf-rounded-circle: 50%;
}

:root {
    --hf-t-duration-fast: 0.15s;
    --hf-t-duration-base: 0.3s;
    --hf-t-duration-slow: 0.45s;
    --hf-t-duration: var(--hf-t-duration-base);
}

:root {
    --hf-z-header: 2;
    --hf-z-section: 1;
    --hf-z-footer: 1;
    --hf-z-modal: 4;
    --hf-z-tooltip: 3;
}

/* ========================================
   Utility Classes
   ======================================== */
.hf-bg-teal {
    background-color: #004750 ;
}

.hf-text-white {
    color: #fff ;
}

/* ========================================
   Shell (Container)
   ======================================== */
.hf-shell {
    --hf-shell-gutter: 2.4rem ;
    --hf-shell-max-width: 115rem ;
    --hf-shell-max-width-plus-gutter: calc(var(--hf-shell-max-width) + (var(--hf-shell-gutter) * 2)) ;
    width: min(100%, var(--hf-shell-max-width-plus-gutter)) ;
    padding-inline: var(--hf-shell-gutter) ;
    margin-inline: auto ;
}

@media (max-width: 1023px) {
    .hf-shell {
        --hf-shell-gutter: 2rem ;
    }
}

@media (max-width: 767px) {
    .hf-shell {
        --hf-shell-gutter: 1.6rem ;
    }
}

.hf-shell.hf-shell--fluid {
    max-width: none ;
}

/* ========================================
   Screen Reader Only
   ======================================== */
.hf-sr-only {
    position: absolute ;
    width: 1px ;
    height: 1px ;
    margin: -1px ;
    padding: 0 ;
    overflow: hidden ;
    clip: rect(0, 0, 0, 0) ;
    white-space: nowrap ;
    border-width: 0 ;
}

/* ========================================
   Button Styles
   ======================================== */
.hf-btn {
    --hf-btn-min-size: 12.5rem ;
    --hf-btn-border-size: 1px ;
    --hf-btn-rounding: 8px ;
    --hf-btn-padding-block: 1.5rem 1.1rem ;
    --hf-btn-padding-inline: 1.5rem ;
    --hf-btn-border-color: var(--hf-c-teal-900) ;
    --hf-btn-border-color-hover: var(--hf-c-teal-900) ;
    --hf-btn-bg: var(--hf-c-teal-900) ;
    --hf-btn-bg-hover: var(--hf-c-teal-800) ;
    --hf-btn-text-color: var(--hf-c-white) ;
    --hf-btn-text-color-hover: var(--hf-c-white) ;
    --hf-btn-fw: 400 ;
    --hf-btn-fz: 1.8rem ;
    --hf-btn-lh: 1 ;
    cursor: pointer ;
    appearance: none ;
    vertical-align: middle ;
    text-decoration: none ;
    text-align: center ;
    display: inline-flex ;
    align-items: center ;
    justify-content: center ;
    min-width: var(--hf-btn-min-size) ;
    border: var(--hf-btn-border-size) solid var(--hf-btn-border-color) ;
    border-radius: var(--hf-btn-rounding) ;
    padding-block: var(--hf-btn-padding-block) ;
    padding-inline: var(--hf-btn-padding-inline) ;
    background-color: var(--hf-btn-bg) ;
    color: var(--hf-btn-text-color) ;
    font-weight: var(--hf-btn-fw) ;
    font-size: var(--hf-btn-fz) ;
    line-height: var(--hf-btn-lh) ;
    transition: border-color, background-color, color ;
    transition-duration: var(--hf-t-duration) ;
}

@media (max-width: 767px) {
    .hf-btn {
        --hf-btn-min-size: 10rem ;
        --hf-btn-rounding: 6px ;
        --hf-btn-padding-block: 1rem ;
        --hf-btn-padding-inline: 1rem ;
        --hf-btn-fz: 1.6rem ;
    }
}

@media (hover: hover) and (pointer: fine) {
    .hf-btn:is(:hover, :focus-visible) {
        border-color: var(--hf-btn-border-color-hover) ;
        background-color: var(--hf-btn-bg-hover) ;
        color: var(--hf-btn-text-color-hover) ;
    }
}

@media (hover: none) or (pointer: coarse) {
    .hf-btn.hf-active {
        border-color: var(--hf-btn-border-color-hover) ;
        background-color: var(--hf-btn-bg-hover) ;
        color: var(--hf-btn-text-color-hover) ;
    }
}

.hf-btn.hf-btn--yellow {
    --hf-btn-border-color: var(--hf-c-yellow-600) ;
    --hf-btn-border-color-hover: var(--hf-c-yellow-800) ;
    --hf-btn-bg: var(--hf-c-yellow-600) ;
    --hf-btn-bg-hover: var(--hf-c-yellow-800) ;
    --hf-btn-text-color: var(--hf-c-white) ;
    --hf-btn-text-color-hover: var(--hf-c-white) ;
}

/* ========================================
   Logo
   ======================================== */
.hf-logo {
    --hf-logo-max-width: 10rem ;
    display: inline-block ;
    width: fit-content ;
    max-width: var(--hf-logo-max-width) ;
    text-decoration: none ;
}

.hf-logo img {
    width: var(--hf-logo-width, auto) ;
    height: auto ;
}

.hf-logo:is(a) {
    transition: opacity var(--hf-t-duration) ;
}

@media (hover: hover) and (pointer: fine) {
    .hf-logo:is(a):is(:hover, :focus-visible) {
        opacity: 0.75 ;
    }
}

@media (hover: none) or (pointer: coarse) {
    .hf-logo:is(a).hf-active {
        opacity: 0.75 ;
    }
}

/* ========================================
   Mobile Menu Button
   ======================================== */
.hf-btn-menu {
    --hf-display: none ;
    --hf-td: var(--hf-t-duration-fast) ;
    appearance: none ;
    position: relative ;
    display: var(--hf-display) ;
    width: 3.4rem ;
    height: 1.6rem ;
    border: none ;
    background: none ;
    font-size: 0 ;
}

.hf-btn-menu span {
    --hf-top: 0% ;
    --hf-rotate: 0deg ;
    --hf-opacity: 1 ;
    position: absolute ;
    top: var(--hf-top) ;
    left: 0 ;
    display: block ;
    width: 100% ;
    height: 3px ;
    border-radius: var(--hf-rounded-pill) ;
    background-color: var(--hf-c-teal-900) ;
    opacity: var(--hf-opacity) ;
    transform: translateY(-50%) rotate(var(--hf-rotate)) ;
    transition: top var(--hf-td) var(--hf-td), transform var(--hf-td), opacity var(--hf-td) ;
}

.hf-btn-menu span:nth-child(1) {
    --hf-top: 0% ;
}

.hf-btn-menu span:nth-child(2) {
    --hf-top: 50% ;
}

.hf-btn-menu span:nth-child(3) {
    --hf-top: 100% ;
}

@media (max-width: 767px) {
    .hf-btn-menu {
        --hf-display: block ;
    }
}

.hf-menu-open .hf-btn-menu span {
    transition: top var(--hf-td), transform var(--hf-td) var(--hf-td), opacity var(--hf-td) ;
}

.hf-menu-open .hf-btn-menu span:nth-child(1) {
    --hf-top: 50% ;
    --hf-rotate: 45deg ;
}

.hf-menu-open .hf-btn-menu span:nth-child(2) {
    --hf-top: 50% ;
    --hf-rotate: 45deg ;
    --hf-opacity: 0 ;
}

.hf-menu-open .hf-btn-menu span:nth-child(3) {
    --hf-top: 50% ;
    --hf-rotate: -45deg ;
}

/* ========================================
   CTA Banner (Top of Header)
   ======================================== */
.hf-cta {
    position: relative ;
    background-color: var(--hf-c-teal-900) ;
    color: var(--hf-c-white) ;
}

.hf-cta .hf-cta__inner {
    padding-block: 1.2rem 0.9rem ;
    font-weight: 700 ;
    font-size: 1.7rem ;
}

@media (max-width: 1023px) {
    .hf-cta .hf-cta__inner {
        padding-block: 0.8rem ;
        font-size: 1.5rem ;
    }
}

@media (max-width: 767px) {
    .hf-cta .hf-cta__inner {
        padding: 0.6rem 1.2rem ;
        font-size: 1.2rem ;
        line-height: 1.5 ;
    }
}

.hf-cta .hf-cta__text {
    position: relative ;
    width: fit-content ;
    margin-inline: auto ;
    text-align: center ;
    font-family: var(--hf-ff-adelle) ;
}
.hf-cta .hf-cta__text  a{
    color: #fff;
}

.hf-cta .hf-cta__link {
    position: absolute ;
    inset: 0 ;
}

.hf-cta .hf-cta__tel {
    position: relative ;
    text-decoration: underline ;
    text-decoration-color: transparent ;
    transition: text-decoration-color var(--hf-t-duration) ;
}

@media (hover: hover) and (pointer: fine) {
    .hf-cta .hf-cta__tel:is(:hover, :focus-visible) {
        text-decoration-color: currentColor ;
    }
}

@media (hover: none) or (pointer: coarse) {
    .hf-cta .hf-cta__tel.hf-active {
        text-decoration-color: currentColor ;
    }
}

.hf-cta .hf-cta__close {
    position: absolute ;
    top: 50% ;
    right: 0.7rem ;
    width: 1.6rem ;
    height: 1.6rem ;
    margin-top: -0.1rem ;
    padding: 0.4rem ;
    border: none ;
    background: none ;
    cursor: pointer ;
    transform: translateY(-50%) ;
}

@media (max-width: 1023px) {
    .hf-cta .hf-cta__close {
        margin-top: 0 ;
    }
}

.hf-cta .hf-cta__close:after {
    -webkit-mask-size: contain ;
    -webkit-mask-image: url(./images/close.png) ;
    -webkit-mask-repeat: no-repeat ;
    -webkit-mask-position: center ;
    mask-size: contain ;
    mask-image: url(./images/close.png) ;
    mask-repeat: no-repeat ;
    mask-position: center ;
    content: "" ;
    position: absolute ;
    inset: 0 ;
    display: block ;
    width: 100% ;
    height: 100% ;
    background-color: currentColor ;
}

/* ========================================
   Dropdown Navigation
   ======================================== */
.hf-dropdown-nav {
    position: relative ;
}

.hf-dropdown-nav .hf-dropdown__trigger {
    display: inline-flex ;
    align-items: center ;
    gap: 0.6rem ;
    text-decoration: none ;
    transition: color var(--hf-t-duration) ;
}

@media (hover: hover) and (pointer: fine) {
    .hf-dropdown-nav .hf-dropdown__trigger:is(:hover, :focus-visible) {
        color: var(--hf-c-teal) ;
    }
}

@media (hover: none) or (pointer: coarse) {
    .hf-dropdown-nav .hf-dropdown__trigger.hf-active {
        color: var(--hf-c-teal) ;
    }
}

.hf-dropdown-nav .hf-dropdown__trigger:after {
    -webkit-mask-size: contain ;
    -webkit-mask-image: url(./images/arrow-down.png) ;
    -webkit-mask-repeat: no-repeat ;
    -webkit-mask-position: center ;
    mask-size: contain ;
    mask-image: url(./images/arrow-down.png) ;
    mask-repeat: no-repeat ;
    mask-position: center ;
    flex-shrink: 0 ;
    content: "" ;
    display: inline-block ;
    width: 0.7rem ;
    height: 0.4rem ;
    background-color: currentColor ;
    transition: transform var(--hf-t-duration) ;
}

.hf-dropdown-nav .hf-dropdown__inner {
    --hf-bg-offset: var(--hf-header-height) - var(--hf-header-inner-offset) ;
    position: fixed ;
    top: var(--hf-header-height) ;
    left: 0 ;
    z-index: -1 ;
    width: 100vw ;
    border-bottom: 3px solid var(--hf-c-yellow-600) ;
    padding-bottom: 2.5rem ;
    opacity: 0 ;
    visibility: hidden ;
    transition: opacity, visibility ;
    transition-duration: var(--hf-t-duration) ;
}

@media (max-width: 1023px) {
    .hf-dropdown-nav .hf-dropdown__inner {
        padding-block: 1.2rem 1.6rem ;
    }
}

@media (max-width: 767px) {
    .hf-dropdown-nav .hf-dropdown__inner {
        visibility: visible ;
        position: static ;
        display: grid ;
        grid-template-rows: 0fr ;
        width: auto ;
        border: none ;
        padding: 0 ;
        opacity: 1 ;
        overflow: hidden ;
        transition: grid-template-rows 0.25s linear ;
    }
}

@media (max-width: 767px) {
    .hf-dropdown-nav .hf-dropdown__inner .hf-shell {
        min-height: 0 ;
    }
}

.hf-dropdown-nav .hf-dropdown__inner:before {
    content: "" ;
    position: absolute ;
    inset: calc(-1 * (var(--hf-bg-offset))) 0 0 0 ;
    z-index: -1 ;
    background-image: linear-gradient(-160deg, #89bab1 0%, #bfe9e1 100%) ;
}

@media (max-width: 767px) {
    .hf-dropdown-nav .hf-dropdown__inner:before {
        content: none ;
    }
}

.hf-dropdown-nav .hf-dropdown__body {
    display: flex ;
    gap: 0.4rem ;
}

@media (max-width: 1023px) {
    .hf-dropdown-nav .hf-dropdown__body {
        gap: 3.2rem ;
    }
}

@media (max-width: 767px) {
    .hf-dropdown-nav .hf-dropdown__body {
        padding-top: 1rem ;
        visibility: hidden ;
        transform: translateX(-100%) ;
        transition: transform 0.25s linear, visibility 0s 0.25s linear ;
    }
}

.hf-dropdown-nav .hf-dropdown__main {
    font-weight: 700 ;
    font-size: 1.8rem ;
    line-height: 1.5556 ;
}

@media (max-width: 1199px) {
    .hf-dropdown-nav .hf-dropdown__main {
        font-size: 1.6rem ;
    }
}

.hf-dropdown-nav .hf-dropdown__main h4 {
    margin-bottom: 0 ;
    font-size: 4rem;
    font-weight: 400;
    font-family: var(--hf-ff-din) ;
}

.hf-dropdown-nav .hf-dropdown__main h4:not(:last-child) {
    margin-bottom: 0.9rem ;
}

@media (max-width: 767px) {
    .hf-dropdown-nav .hf-dropdown__main h4 {
        display: none ;
    }
}

.hf-dropdown-nav .hf-dropdown__main ul {
    list-style: none ;
}

.hf-dropdown-nav .hf-dropdown__main a {
    color: #000;
    font-family: var(--hf-ff-adelle) ;
    text-decoration: none ;
    transition: color var(--hf-t-duration) ;
}

@media (hover: hover) and (pointer: fine) {
    .hf-dropdown-nav .hf-dropdown__main a:is(:hover, :focus-visible) {
        color: var(--hf-c-teal) ;
    }
}

@media (hover: none) or (pointer: coarse) {
    .hf-dropdown-nav .hf-dropdown__main a.hf-active {
        color: var(--hf-c-teal) ;
    }
}

.hf-dropdown-nav .hf-dropdown__aside {
    flex: 1 ;
    padding-top: 1.1rem ;
}

@media (max-width: 1023px) {
    .hf-dropdown-nav .hf-dropdown__aside {
        padding-top: 1.4rem ;
    }
}

@media (max-width: 767px) {
    .hf-dropdown-nav .hf-dropdown__aside {
        display: none ;
    }
}

.hf-dropdown-nav .hf-dropdown__aside ul {
    --hf-list-col-min-width: 12rem ;
    display: grid ;
    grid-template-columns: repeat(auto-fit, minmax(var(--hf-list-col-min-width), 1fr)) ;
    gap: 1.6rem 0.5rem ;
    padding-right: 0.4rem ;
}

@media (max-width: 1199px) {
    .hf-dropdown-nav .hf-dropdown__aside ul {
        --hf-list-col-min-width: 11rem ;
        padding-right: 0 ;
    }
}

.hf-dropdown-nav .hf-dropdown__aside ul li {
    text-align: center ;
}

.hf-dropdown-nav .hf-dropdown__aside a {
    color: var(--hf-c-gray-dark);
    font-family: var(--hf-ff-din) ;
    font-size: 2.1rem ;
    line-height: 1.2 ;
    text-decoration: none ;
    transition: color var(--hf-t-duration) ;
}

@media (max-width: 1199px) {
    .hf-dropdown-nav .hf-dropdown__aside a {
        font-size: 1.8rem ;
    }
}

@media (max-width: 1023px) {
    .hf-dropdown-nav .hf-dropdown__aside a {
        font-size: 1.9rem ;
    }
}

@media (hover: hover) and (pointer: fine) {
    .hf-dropdown-nav .hf-dropdown__aside a:is(:hover, :focus-visible) {
        color: var(--hf-c-teal) ;
    }
}

@media (hover: none) or (pointer: coarse) {
    .hf-dropdown-nav .hf-dropdown__aside a.hf-active {
        color: var(--hf-c-teal) ;
    }
}

.hf-dropdown-nav .hf-dropdown__aside a figure img {
    border-radius: 20px ;
}

.hf-dropdown-nav .hf-dropdown__aside a figure figcaption {
    margin-top: 0 ;
}

.hf-dropdown-nav .hf-dropdown__aside a figure figcaption:not(:first-child) {
    margin-top: 1.6rem ;
}

@media (max-width: 1023px) {
    .hf-dropdown-nav .hf-dropdown__aside a figure figcaption {
        margin-top: 0 ;
    }
    .hf-dropdown-nav .hf-dropdown__aside a figure figcaption:not(:first-child) {
        margin-top: 0.8rem ;
    }
}

.hf-dropdown-nav.hf-open .hf-dropdown__trigger {
    color: var(--hf-c-teal) ;
}

.hf-dropdown-nav.hf-open .hf-dropdown__trigger:after {
    transform: rotate(180deg) ;
}

.hf-dropdown-nav.hf-open .hf-dropdown__inner {
    opacity: 1 ;
    visibility: visible ;
}

@media (max-width: 767px) {
    .hf-dropdown-nav.hf-open .hf-dropdown__inner {
        grid-template-rows: 1fr ;
    }
}

@media (max-width: 767px) {
    .hf-dropdown-nav.hf-open .hf-dropdown__body {
        visibility: visible ;
        transform: translateX(0) ;
        transition: transform 0.25s linear, visibility 0s linear ;
    }
}

/* ========================================
   Navigation
   ======================================== */
@media (max-width: 767px) {
    .hf-nav {
        font-weight: 700 ;
        font-size: 2rem ;
    }
}

.hf-nav .hf-nav__list {
    display: flex ;
    gap: 3.1rem ;
}

@media (max-width: 1023px) {
    .hf-nav .hf-nav__list {
        gap: 2rem ;
    }
}

@media (max-width: 767px) {
    .hf-nav .hf-nav__list {
        flex-direction: column ;
    }
}

.hf-nav .hf-nav__link {
    font-family: var(--hf-ff-adelle) ;
    text-decoration: none ;
    color: var(--hf-c-gray-dark) ;
    transition: color var(--hf-t-duration) ;
}

@media (hover: hover) and (pointer: fine) {
    .hf-nav .hf-nav__link:is(:hover, :focus-visible) {
        color: var(--hf-c-teal) ;
    }
}

@media (hover: none) or (pointer: coarse) {
    .hf-nav .hf-nav__link.hf-active {
        color: var(--hf-c-teal) ;
    }
}

/* ========================================
   Header
   ======================================== */
.hf-header {
    position: fixed ;
    isolation: isolate ;
    top: 0 ;
    left: 0 ;
    z-index: var(--hf-z-header) ;
    width: 100% ;
    transition: background-color, box-shadow ;
    transition-duration: var(--hf-t-duration) ;
}

.hf-header .hf-header__inner {
    display: flex ;
    align-items: center ;
    justify-content: space-between ;
    gap: 2rem ;
    padding-block: 2.4rem ;
    transition: padding-block var(--hf-t-duration) ;
}

@media (max-width: 1023px) {
    .hf-header .hf-header__inner {
        gap: 1.6rem ;
        padding-block: 2rem ;
    }
}

@media (max-width: 767px) {
    .hf-header .hf-header__inner {
        padding-block: 1.2rem ;
    }
}

.hf-header .hf-header__logo {
    --hf-logo-max-width: 9.1rem ;
    margin-right: 0 ;
    flex-shrink: 0 ;
    transition: max-width var(--hf-t-duration) ;
}

.hf-header .hf-header__logo:not(:last-child) {
    margin-right: auto ;
}

@media (max-width: 1023px) {
    .hf-header .hf-header__logo {
        --hf-logo-max-width: 5.8rem ;
    }
}

.hf-header .hf-header__menu {
    display: contents ;
}

@media (max-width: 767px) {
    .hf-header .hf-header__menu {
        position: fixed ;
        top: 0 ;
        left: 0 ;
        z-index: -1 ;
        display: flex ;
        flex-direction: column ;
        gap: 3.2rem ;
        width: 100% ;
        height: 100dvh ;
        padding: var(--hf-header-height) var(--hf-shell-gutter) var(--hf-shell-gutter) ;
        background-color: var(--hf-c-white) ;
        overflow: auto ;
        transform: translateX(-100%) ;
        transition: transform var(--hf-t-duration) ;
    }
}

.hf-header .hf-header__nav {
    margin-inline: auto ;
    padding-bottom: 0.2rem ;
    transition: padding-bottom var(--hf-t-duration) ;
}

@media (max-width: 1023px) {
    .hf-header .hf-header__nav {
        padding-bottom: 0 ;
    }
}

@media (max-width: 767px) {
    .hf-header .hf-header__nav {
        margin-inline: 0 ;
        padding-top: 2rem ;
    }
}

.hf-header .hf-header__actions {
    margin-inline: 1.2rem -0.2rem ;
    padding-bottom: 0.5rem ;
    transition: padding-bottom var(--hf-t-duration) ;
}

@media (max-width: 1023px) {
    .hf-header .hf-header__actions {
        margin-inline: 0 ;
        padding-bottom: 0 ;
    }
}

@media (max-width: 767px) {
    .hf-header .hf-header__actions {
        position: sticky ;
        bottom: calc(-1 * var(--hf-shell-gutter)) ;
        z-index: 1 ;
        margin-block: auto calc(-1 * var(--hf-shell-gutter)) ;
        padding-bottom: var(--hf-shell-gutter) ;
        background-color: white ;
    }
}

@media (max-width: 767px) {
    .hf-header .hf-header__btn {
        width: 100% ;
    }
}

.hf-header.hf-scrolled {
    background-color: var(--hf-c-white) ;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15) ;
}

.hf-header.hf-scrolled .hf-header__inner {
    padding-block: 1.2rem ;
}

@media (max-width: 1023px) {
    .hf-header.hf-scrolled .hf-header__inner {
        padding-block: 1rem ;
    }
}

.hf-header.hf-scrolled .hf-header__logo {
    --hf-logo-max-width: 6.1rem ;
}

@media (max-width: 1023px) {
    .hf-header.hf-scrolled .hf-header__logo {
        --hf-logo-max-width: 4.8rem ;
    }
}

.hf-header.hf-scrolled .hf-header__nav {
    padding-bottom: 0 ;
}

.hf-header.hf-scrolled .hf-header__actions {
    padding-bottom: 0 ;
}

@media (max-width: 767px) {
    .hf-header.hf-scrolled .hf-header__actions {
        padding-bottom: var(--hf-shell-gutter) ;
    }
}

.hf-header.hf-no-transition {
    transition: none ;
}

.hf-header.hf-no-transition * {
    transition: none ;
}

@media (max-width: 767px) {
    .hf-menu-open .hf-header .hf-header__menu {
        transform: translateX(0) ;
    }
}

/* ========================================
   Footer
   ======================================== */
*:has(+ .hf-footer) {
    position: relative ;
    margin-bottom: -2px ;
}

*:has(+ .hf-footer):after {
    content: "" ;
    position: absolute ;
    top: 100% ;
    left: 0 ;
    width: 100% ;
    height: 4px ;
    margin-top: -2px ;
    /*background-color: var(--hf-c-white) ;*/
}

.hf-footer {
    --hf-shape-thickness: 0.5rem ;
    --hf-shape-size: 15.1rem ;
    --hf-shape-left-x: 0 ;
    --hf-shape-left-y: 0.8rem ;
    --hf-shape-mid-x: 87.35% ;
    --hf-shape-mid-y: var(--hf-shape-size) ;
    --hf-shape-right-x: 100% ;
    --hf-shape-right-y-factor: 0.59 ;
    --hf-shape-right-y: calc(var(--hf-shape-size) * var(--hf-shape-right-y-factor)) ;
    --hf-shape-left: var(--hf-shape-left-x) var(--hf-shape-left-y) ;
    --hf-shape-mid: var(--hf-shape-mid-x) var(--hf-shape-mid-y) ;
    --hf-shape-right: var(--hf-shape-right-x) var(--hf-shape-right-y) ;
    position: relative ;
    isolation: isolate ;
    overflow: hidden ;
    z-index: var(--hf-z-footer) ;
    padding-top: var(--hf-shape-size) ;
}

@media (max-width: 1023px) {
    .hf-footer {
        --hf-shape-thickness: 0.4rem ;
        --hf-shape-size: 12rem ;
    }
}

@media (max-width: 767px) {
    .hf-footer {
        --hf-shape-size: 8rem ;
    }
}

.hf-footer:before, .hf-footer:after {
    content: "" ;
    position: absolute ;
    inset: 0 ;
    background-color: var(--hf-c-yellow-600) ;
    clip-path: polygon(0% 0%, var(--hf-shape-left), var(--hf-shape-mid), var(--hf-shape-right), 100% 0%) ;
}

.hf-footer:after {
    content: "" ;
    position: absolute ;
    inset: 0 ;
    background-color: var(--hf-c-white) ;
    margin-top: calc(-1 * var(--hf-shape-thickness)) ;
}

.hf-footer .hf-footer__inner {
    position: relative ;
    padding-block: 4.2rem 4.6rem ;
}

@media (max-width: 1023px) {
    .hf-footer .hf-footer__inner {
        padding-block: 2rem 3.2rem ;
    }
}

.hf-footer .hf-footer__logo {
    --hf-logo-max-width: 10.5rem ;
    margin-bottom: 0 ;
    display: block ;
    margin-inline: auto ;
}

.hf-footer .hf-footer__logo:not(:last-child) {
    margin-bottom: 2.9rem ;
}

@media (max-width: 1023px) {
    .hf-footer .hf-footer__logo {
        --hf-logo-max-width: 9.4rem ;
        margin-bottom: 0 ;
    }
    .hf-footer .hf-footer__logo:not(:last-child) {
        margin-bottom: 2rem ;
    }
}

@media (max-width: 767px) {
    .hf-footer .hf-footer__logo {
        --hf-logo-max-width: 6.8rem ;
    }
}

.hf-footer .hf-footer__nav {
    margin-bottom: 0 ;
    border-block: 3px solid currentColor ;
    padding: 2.9rem 1.7rem 2.3rem 0 ;
}

.hf-footer .hf-footer__nav:not(:last-child) {
    margin-bottom: 5.8rem ;
}

@media (max-width: 1023px) {
    .hf-footer .hf-footer__nav {
        margin-bottom: 0 ;
        border-block-width: 2px ;
        padding: 2.2rem 0 2rem ;
    }
    .hf-footer .hf-footer__nav:not(:last-child) {
        margin-bottom: 4.2rem ;
    }
}

@media (max-width: 767px) {
    .hf-footer .hf-footer__nav {
        margin-bottom: 0 ;
        padding-block: 1.6rem 1.4rem ;
    }
    .hf-footer .hf-footer__nav:not(:last-child) {
        margin-bottom: 3.2rem ;
    }
}

.hf-footer .hf-footer__nav ul {
    --hf-row-gap: 2.2rem ;
    --hf-col-gap: 4.4rem ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    gap: var(--hf-row-gap) var(--hf-col-gap) ;
    list-style: none ;
}

@media (max-width: 1023px) {
    .hf-footer .hf-footer__nav ul {
        --hf-row-gap: 2rem ;
        --hf-col-gap: 3.8rem ;
    }
}

@media (max-width: 767px) {
    .hf-footer .hf-footer__nav ul {
        --hf-row-gap: 1.2rem ;
        --hf-col-gap: 2.4rem ;
        flex-wrap: wrap ;
        justify-content: flex-start ;
        padding-inline: 1.4rem ;
    }
}

@media (max-width: 767px) {
    .hf-footer .hf-footer__nav li {
        flex: 0 0 calc(33.3333333333% - var(--hf-col-gap) * 2 / 3) ;
    }
}

@media (max-width: 767px) {
    .hf-footer .hf-footer__nav li:nth-child(3n+2) {
        text-align: center ;
    }
}

@media (max-width: 767px) {
    .hf-footer .hf-footer__nav li:nth-child(4n+3) {
        text-align: right ;
    }
}

.hf-footer .hf-footer__nav a {
    color: #fff;
    text-decoration: none ;
    transition: color var(--hf-t-duration) ;
}

@media (hover: hover) and (pointer: fine) {
    .hf-footer .hf-footer__nav a:is(:hover, :focus-visible) {
        color: var(--hf-c-yellow-600) ;
    }
}

@media (hover: none) or (pointer: coarse) {
    .hf-footer .hf-footer__nav a.hf-active {
        color: var(--hf-c-yellow-600) ;
    }
}

.hf-footer .hf-footer__body {
    display: flex ;
    gap: 2.5rem ;
    margin-left: -0.2rem ;
}

@media (max-width: 1023px) {
    .hf-footer .hf-footer__body {
        gap: 2rem ;
        margin-left: 0 ;
    }
}

@media (max-width: 767px) {
    .hf-footer .hf-footer__body {
        flex-wrap: wrap ;
        gap: 2rem ;
    }
}

.hf-footer .hf-footer__content {
    max-width: 62rem ;
    font-size: 1.4rem ;
}

@media (max-width: 1023px) {
    .hf-footer .hf-footer__content {
        max-width: 48rem ;
    }
}

@media (max-width: 767px) {
    .hf-footer .hf-footer__content {
        width: 100% ;
        max-width: 100% ;
    }
}

.hf-footer .hf-footer__copy {
    margin-bottom: 0 ;
    font-size: 1.6rem ;
}

.hf-footer .hf-footer__copy:not(:last-child) {
    margin-bottom: 0.9rem ;
}

.hf-footer .hf-footer__cta {
    width: 100% ;
    max-width: 52.4rem ;
    padding-top: 0.2rem ;
}

@media (max-width: 1023px) {
    .hf-footer .hf-footer__cta {
        max-width: min(42rem, 50%) ;
    }
}

@media (max-width: 767px) {
    .hf-footer .hf-footer__cta {
        width: 100% ;
        max-width: 100% ;
    }
}

/* ========================================
   Form Subscribe (Footer)
   ======================================== */
.hf-form-subscribe form {
    display: flex ;
    gap: 1.1rem ;
}

@media (max-width: 1023px) {
    .hf-form-subscribe form {
        gap: 0.8rem ;
    }
}

.hf-form-subscribe .hf-form__input {
    flex: 1 ;
    appearance: none ;
    min-width: 0 ;
    border: none ;
    border-radius: 10px ;
    padding: 1.1rem 1.7rem 0.5rem ;
    background-color: var(--hf-c-white) ;
    color: var(--hf-c-black) ;
    font-size: 1.8rem ;
    line-height: 1.5 ;
}

@media (max-width: 1023px) {
    .hf-form-subscribe .hf-form__input {
        padding: 0.7rem 1.2rem 0.5rem ;
        font-size: 1.6rem ;
    }
}

@media (max-width: 767px) {
    .hf-form-subscribe .hf-form__input {
        border-radius: 8px ;
    }
}

.hf-form-subscribe .hf-form__input::placeholder {
    color: var(--hf-c-gray-300) ;
}

.hf-form-subscribe .hf-form__btn {
    --hf-btn-min-size: 15rem ;
    --hf-btn-border-size: 1px ;
    --hf-btn-rounding: 10px ;
    --hf-btn-padding-block: 1.1rem 1rem ;
    --hf-btn-padding-inline: 1rem 1.5rem ;
    --hf-btn-fw: 600 ;
    --hf-btn-fz: 1.8rem ;
    --hf-btn-lh: 1.0556 ;
}

@media (max-width: 1023px) {
    .hf-form-subscribe .hf-form__btn {
        --hf-btn-min-size: 13.8rem ;
        --hf-btn-padding-block: 1rem ;
        --hf-btn-padding-inline: 1.2rem ;
        --hf-btn-fz: 1.6rem ;
    }
}

@media (max-width: 767px) {
    .hf-form-subscribe .hf-form__btn {
        --hf-btn-min-size: 11.6rem ;
        --hf-btn-rounding: 8px ;
        --hf-btn-padding-block: 0.8rem ;
        --hf-btn-padding-inline: 1rem ;
    }
}
