:root {
    --content-max-width: 83rem;
    --distance-to-side: max(0px, calc((100vw - var(--content-max-width)) / 2));
    --min-side-padding: 1rem;

    --smaller-content-max-width: 55rem;
    --smaller-distance-to-side: max(0px, calc((100vw - var(--smaller-content-max-width)) / 2));

    --cubic-transition: cubic-bezier(.42,0,.58,1);

    --brand-color: #E15F00;
    --brand-color-70: #E15F00B3;
    --brand-color-20: #E15F0033;
    --color-creme: #F1EBE0;
    --color-light-grey: #EBEBEB;
    --color-black: #241F21;
    --color-grey: #989898;
    --color-grey-dark: #393939;
    --color-grey-medium: #C2C2C2;
    --color-bg-black: #0D0D0D;
    --color-grey-line: #404040;
    --color-dark-line: #272727;
    --color-dark-line-50: #27272780;
    --color-form-grey: #565656;
    --info-bar-bg-color: #1F1F1F;
    color: white;

    --outline-focus: 1.5px solid var(--brand-color);
    --outline-focus-offset: 2px;
}

@media screen and (min-width: 768px) {
    :root {
        --block-distance-y: 7rem;
    }
}

@media screen and (max-width: 767px) {
    :root {
        --block-distance-y: 3rem;
    }
}

:focus {
    outline: var(--outline-focus);
    outline-offset: var(--outline-focus-offset);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 101;
}

.skip-link:focus {
  left: 0;
  top: 0;
  width: auto;
  height: auto;
  background: #000;
  color: #fff;
  padding: 1rem;
  text-decoration: none;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin:0;
    background-color: var(--color-bg-black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-size: 1rem;
    line-height: 1rem;
    font-weight: normal;
}

p {
    margin: 0;
}

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

ul {
    list-style-position: inside;
    margin: 0;
    padding: 0;
}

button {
    -webkit-appearance: none;
    appearance: none;
    border: none;
    background: none;
    color: inherit;
    font: inherit;
    padding: 0;
    margin: 0;
    outline: none;
    box-shadow: none;
    cursor: pointer;
}

.overflow-hidden {
    overflow: hidden;
}

.hidden {
    display: none !important;
}

.content-max-width {
    max-width: var(--content-max-width);
    padding-left: var(--min-side-padding);
    padding-right: var(--min-side-padding);
    margin-left: auto;
    margin-right: auto;
}

.smaller-content-max-width {
    max-width: var(--smaller-content-max-width);
    padding-left: var(--min-side-padding);
    padding-right: var(--min-side-padding);
    margin-left: auto;
    margin-right: auto;
}

.default-section-y-distance {
    /* 
        padding-top: var(--block-distance-y);
        padding-bottom: var(--block-distance-y);
    */
    margin-top: var(--block-distance-y);
    margin-bottom: var(--block-distance-y);
}

.default-section-padding-y-distance {
    padding-top: var(--block-distance-y);
    padding-bottom: var(--block-distance-y);
}

@media screen and (min-width: 768px) {
    .font-110 {
        font-size: 6.25rem;
        line-height: 93.6%;
    }
    
    .font-100 {
        font-size: 5.625rem;
        line-height: 97%;
    }
    
    .font-76 {
        font-size: 4.125rem;
        line-height: 100%;
    }
    
    .font-65 {
        font-size: 3.438rem;
        line-height: 104.6%;
    }
    
    .font-55 {
        font-size: 2.813rem;
        line-height: 100%;
    }
    
    .font-40 {
        font-size: 2.188rem;
        line-height: 96.2%;
    }
    
    .font-35 {
        font-size: 1.875rem;
        line-height: 94.29%;
    }
    
    .font-28 {
        font-size: 1.563rem;
        line-height: 121.72%;
    }
    
    .font-25 {
        font-size: 1.438rem;
        line-height: 109.98%;
    }
    
    .font-24 {
        font-size: 1.375rem;
        line-height: 110.42%;
    }
    
    .font-21 {
        font-size: 1.188rem;
        line-height: 133.28%;
    }
    
    .font-20 {
        font-size: 1.125rem;
        line-height: 105.04%;
    }
    
    .font-19 {
        font-size: 1.063rem;
        line-height: 147.31%;
    }
    
    .font-18 {
        font-size: 1rem;
        line-height: 147.2%;
    }
    
    .font-17 {
        font-size: 0.938rem;
        line-height: 135.28%;
    }
    
    .font-15 {
        font-size: 0.875rem;
        line-height: 135.28%;
    }
    
    .font-12 {
        font-size: 0.688rem;
        line-height: 120.4%;
    }
}

@media screen and (max-width: 767px) {
    .font-110 {
        font-size: 3.8rem;
        line-height: 93.6%;
    }
    
    .font-100 {
        font-size: 3.25rem;
        line-height: 97%;
    }
    
    .font-76 {
        font-size: 3.0rem;
        line-height: 100%;
    }
    
    .font-65 {
        font-size: 2.6rem;
        line-height: 104.6%;
    }
    
    .font-55 {
        font-size: 2.2rem;
        line-height: 100%;
    }
    
    .font-40 {
        font-size: 1.9rem;
        line-height: 96.2%;
    }
    
    .font-35 {
        font-size: 1.7rem;
        line-height: 94.29%;
    }
    
    .font-28 {
        font-size: 1.4rem;
        line-height: 121.72%;
    }
    
    .font-25 {
        font-size: 1.3rem;
        line-height: 109.98%;
    }
    
    .font-24 {
        font-size: 1.2rem;
        line-height: 110.42%;
    }
    
    .font-21 {
        font-size: 1.188rem;
        line-height: 133.28%;
    }
    
    .font-20 {
        font-size: 1.125rem;
        line-height: 105.04%;
    }
    
    .font-19 {
        font-size: 1.063rem;
        line-height: 147.31%;
    }
    
    .font-18 {
        font-size: 1rem;
        line-height: 147.2%;
    }
    
    .font-17 {
        font-size: 0.938rem;
        line-height: 135.28%;
    }
    
    .font-15 {
        font-size: 0.875rem;
        line-height: 135.28%;
    }
    
    .font-12 {
        font-size: 0.688rem;
        line-height: 120.4%;
    }
}

.colorized {
    color: var(--brand-color);
}

.button-wrapper {
    width: max-content;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(max(1, var(--buttons-counted)), 1fr);
    column-gap: 2rem;
    row-gap: 1rem;
}

@media screen and (min-width: 768px) {
    .button-wrapper {
        width: max-content;
        max-width: 100%;
        display: grid;
        grid-template-columns: repeat(max(1, var(--buttons-counted)), 1fr);
        column-gap: 2rem;
        row-gap: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .button-wrapper {
        width: 100%;
        display: grid;
        grid-template-columns: 100%;
        row-gap: 1rem;
    }
}

.button-wrapper .button {
    width: 100%;
}

button {
    -webkit-appearance: none;
    appearance: none;
    border: none;
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    height: max-content;
    max-width: 100%;
    padding: .55rem 1.25rem;
    font-size: 1.5rem;
    line-height: 1.656rem;
    font-weight: 400;
    letter-spacing: 1px;
    cursor: pointer;
    font-family: 'STIX Two Text';
    text-transform: uppercase;
}

.button-special {
    background-color: var(--brand-color);
    color: white;
    box-shadow: 0 0 0 .5px var(--color-creme), 0 0 0 2px var(--brand-color);
}

.button-glass {
    /* border: .5px solid var(--color-creme); */
    background-color: #16161699;
    color: var(--color-creme);
    box-shadow: 0 0 0 .5px var(--color-creme), 0 0 0 2px #16161699;
}

.button-text {
    color: var(--color-light-grey);
    text-decoration: underline;
    font-family: 'Staatliches';
    font-size: 1.563rem;
    line-height: 1.719rem;
    transition: color 150ms cubic-bezier(0.39, 0.575, 0.565, 1);
}

.button-text:hover {
    color: var(--brand-color);
}

.wishlist-icon svg {
    color: var(--brand-color);
    cursor: pointer;
    transition: fill 150ms var(--cubic-transition);
    fill: transparent;
}

.wishlist-icon:hover svg {
    fill: var(--brand-color-20);
}

.wishlist-icon.active svg {
    fill: var(--brand-color);
}

.loader-relative {
    position: relative !important;
}

.loader-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    padding: inherit;
    width: 100%;
    height: 100%;
    background-color: rgb(0, 0, 0, .3);
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    -webkit-animation: 2s linear infinite svg-animation;
    animation: 2s linear infinite svg-animation;
    height: 1.5rem;
    position: relative;
    fill: #fff;
    margin: auto;
}

@keyframes svg-animation {
    0% {
      transform: rotateZ(0)
    }

    100% {
        transform: rotateZ(360deg)
    }
}

@-webkit-keyframes svg-animation {
    0% {
        transform: rotateZ(0)
      }
  
      100% {
          transform: rotateZ(360deg)
      }
}


.loader circle {
    -webkit-animation: 1.4s ease-in-out infinite both circle-animation;
    animation: 1.4s ease-in-out infinite both circle-animation;
    display: block;
    fill: transparent;
    stroke: #fff;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 280;
    stroke-width: 10px;
    transform-origin: 50% 50%
}

@keyframes circle-animation {
    0%,
    25% {
      stroke-dashoffset: 280;
      transform: rotate(0)
    }

    50%,
    75% {
      stroke-dashoffset: 75;
      transform: rotate(45deg)
    }

    100% {
      stroke-dashoffset: 280;
      transform: rotate(360deg)
    }
}

@-webkit-keyframes circle-animation {
    0%,
    25% {
      stroke-dashoffset: 280;
      transform: rotate(0)
    }

    50%,
    75% {
      stroke-dashoffset: 75;
      transform: rotate(45deg)
    }

    100% {
      stroke-dashoffset: 280;
      transform: rotate(360deg)
    }
}

@keyframes hide-element {
    0% {
        opacity: 1;
        visibility: visible;
    }
    99.99% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@-webkit-keyframes hide-element {
    0% {
        opacity: 1;
        visibility: visible;
    }
    99.99% {
        opacity: 1;
        visibility: visible;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes show-element {
    0% {
        display: none;
    }
    99.99% {
        display: none;
    }
    100% {
        display: flex;
    }
}

@-webkit-keyframes show-element {
    0% {
        display: none;
    }
    99.99% {
        display: none;
    }
    100% {
        display: flex;
    }
}

.product-not-available {
    display: flex;
    align-items: center;
    gap: .5rem;
}
.product-not-available::before {
    content: '';
    display: block;
    width: 0.563rem;
    height: 0.563rem;
    border-radius: 50%;
    background-color: red;
}

/* partials */
.colorized-horn-heading {
    width: 100%;
    height: max-content;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.colorized-horn-heading span {
    display: inline-flex;
    flex-wrap: wrap;
}

.colorized-horn-heading svg {
    display: inline-block;
    margin-top: -.25rem;
    margin-left: .5rem;
    vertical-align: top;
    height: auto;
}

@media screen and (min-width: 768px) {
    .colorized-horn-heading svg {
        width: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .colorized-horn-heading svg {
        width: 1.2rem;
    }
}

/* matrix custom */
.anchor {
    width: 0;
    height: 0;
    opacity: 0;
    pointer-events: none;
}

/* matrix special custom */
.image-banner__section:has(+ section.recipe-slider__section .default-section-padding-y-distance) .image-banner, .image-banner__section:has(+ .anchor + section.recipe-slider__section .default-section-padding-y-distance) .image-banner {
    margin-bottom: 0;
}

.image-banner__section + section.recipe-slider__section .default-section-padding-y-distance, .image-banner__section + .anchor + section.recipe-slider__section .default-section-padding-y-distance {
    margin-top: 0;
}

.image-text__section:has(+ .image-text__section .default-section-y-distance) .image-text, .image-text__section:has(+ .anchor + .image-text__section .default-section-y-distance) .image-text {
    margin-bottom: 1rem;
}

.image-text__section + .image-text__section .default-section-y-distance, .image-text__section + .anchor + .image-text__section .default-section-y-distance {
    margin-top: 1rem;
}

.text__section:has(+ .text__section) {
    margin-bottom: 0;
}

.text__section + .text__section {
    margin-top: 0;
}

.text__section:has(.text.default-section-padding-y-distance) + .text__section .text.default-section-padding-y-distance {
    padding-top: 0;
}

section:has( > .default-section-padding-y-distance):has( + .image-banner__section) {
    margin-bottom: 0;
}

section.default-section-y-distance.default-section-padding-y-distance:first-of-type {
    margin-top: 0;
}

section.default-section-y-distance.default-section-padding-y-distance:last-of-type {
    margin-bottom: 0;
}

/*  */
.custom-checkbox {
    --default-not-checked-color: var(--color-bg-black);
    --default-checked-color: var(--brand-color);
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--not-checked-color, var(--default-not-checked-color));
    cursor: pointer;
    background-color: transparent;
    transition: background-color 120ms var(--cubic-transition), border-color 120ms var(--cubic-transition);
}

.custom-checkbox:has(input:checked) {
    border-color: var(--checked-color, var(--default-checked-color));
    background-color: var(--checked-color, var(--default-checked-color));
}

.custom-checkbox:has(input:focus) {
    border-color: var(--checked-color, var(--default-checked-color));
}

.custom-checkbox input {
    position: absolute;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
}

.custom-checkbox span {
    display: block;
    width: 85%;
    height: 85%;
    -webkit-mask: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"/></svg>') no-repeat 50% 50%;
    mask: url('data:image/svg+xml; utf8, <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"/></svg>') no-repeat 50% 50%;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: white;
    transition: opacity 120ms var(--cubic-transition);
}

.custom-checkbox input:checked + span {
    opacity: 1;
}

.custom-checkbox input:not(:checked) + span {
    opacity: 0;
}

/* Header Nav */
@media screen and (min-width: 768px) {
    #info-bar__right {
        gap: 3rem;   
    }

    #info-bar-content {
        flex-wrap: wrap-reverse;   
    }
}

@media screen and (max-width: 767px) {
    #info-bar__right {
        gap: 1.5rem;   
    }

    #info-bar__right a span {
        display: none;
    }
}
header #info-bar:not(:has(#header-searchbar.active)) {
    overflow: hidden;
}

#info-bar {
    width: 100%;
    background-color: var(--info-bar-bg-color);
    position: relative;
}

#info-bar-content {
    width: 100%;
    padding-top: 1.19rem;
    padding-bottom: 1.19rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 5rem;
    row-gap: 1rem;
    color: var(--color-grey);
}

#info-bar__left {
    flex-grow: 1;
}

#info-bar__right {
    width: max-content;
    max-width: 100%;
    display: flex;
    align-items: center;
}

#info-bar__right a {
    display: flex;
    align-items: center;
    gap: .61rem;
    transition: color 80ms var(--cubic-transition);
}

#info-bar__right a:hover {
    color: var(--brand-color);
}

#info-bar__right svg {
    display: block;
    width: auto;
    height: .984rem;
}

.header__account {
    position: relative;
    display: grid;
    place-items: center;
}

.header__account-icon {
    width: max-content;
    height: max-content;
    padding: .75rem 1rem;
}

.header__account-icon svg {
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    object-position: center;
}

.header__account-menu {
    display: none;
    position: absolute;
    background-color: var(--brand-color);
}

.header__account:hover .header__account-menu, .header__account:focus-within .header__account-menu {
    display: block;
}

.header__account-menu-heading {
    text-align: center;
    font-weight: 600;
    padding: .75rem .75rem !important;
    border-bottom: 1px solid white;
}

.header__account-not-logged-in {
    margin-top: .5rem;
    width: max-content;
    display: flex;
    flex-direction: column;
}

:is(.header__account-logged-in, .header__account-not-logged-in) > * { 
    padding: .25rem .55rem !important;
}

.header__account-logged-in {
    margin-top: .5rem;
    width: max-content;
    display: flex;
    flex-direction: column;
}

.header__account-logged-in > *:not(#header__acount-name) {
    padding-left: 1.5rem !important;
}

#header__acount-name span {
    font-weight: bold;
}

.cart-products-counted {
    display: inline;
}
@media screen and (min-width: 768px) {
    #header-content > .header__account {
        display: none
    }

    .header__account-menu {
        top: 100%;
    }

    .header__account-icon svg {
        width: 1.8rem;
    }
}

@media screen and (max-width: 767px) {
    .header__account-menu {
        top: calc(100% + 1rem);
    }

    .header__account-icon svg {
        width: 1.5rem;
    }

    .wishlist-link svg {
        width: 1.5rem;
        height: auto;
    }
    
    .open-side-cart svg {
        width: 1.3rem;
        height: auto;
    }

    .open-side-cart.button {
        font-size: 1.3rem;
    }
}

header {
    position: sticky;
    top: 0;
    z-index: 98;
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: max-content 1fr max-content;
    transition: grid-template-rows 400ms var(--cubic-transition);
}

header.fly-out {
    grid-template-rows: max-content 0fr max-content;
}

#header-content {
    width: 100%;
    text-transform: uppercase;
    padding-top: 1rem;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #131313B2;
    padding-left: calc(var(--distance-to-side) + var(--min-side-padding));
    padding-right: calc(var(--distance-to-side) + var(--min-side-padding));
}

#header-content .logo-wrapper {
    display: block;
    width: auto;
}

#header-content .logo-wrapper :is(img, svg) {
    width: auto;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

#header-content .nav-item.special-item a, #header-content .nav-item.special-item button {
    font-size: inherit;
}

#header-content .wishlist-link {
    color: var(--brand-color);
}

@media screen and (min-width: 768px) {
    header nav .nav-item:has(> .is-active) {
        /* text-decoration: underline; */
        border: 1px solid white;
    }

    #header-content .logo-wrapper {
        height: 2rem;
    }

    #header-content > .wishlist-link {
        display: none;
    }

    #header-content > .button.open-side-cart {
        display: none;
    }
    
    #header-content nav {
        height: max-content;
        font-weight: 500;
    }

    #header-content :is(a, button) {
        white-space: nowrap;
    }

    #header-content nav ul{
        list-style-type: none;
        list-style-position: inside;
        margin: 0;
        padding: 0;
    }

    #header-content nav ul.nav-list__level-1 {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: flex-end;
        gap: .5rem;
    }

    #header-content nav ul li {
        height: max-content;
        position: relative;
    }

    #header-content nav .nav-item__level-1 {
        display: grid;
        grid-template-columns: max-content max-content;
    }

    #header-content nav ul li.nav-item__level-1:not(.special-item) a.nav-link__level-1:hover, #header-content nav ul li.nav-item__level-1:not(.special-item) a.nav-link__level-1:focus-within {
        background-color: var(--brand-color-70);
    }

    #header-content nav ul li a.nav-link__level-2:hover, #header-content nav ul li a.nav-link__level-2:focus-within {
        color: white;
    }

    #header-content nav ul li :is(a, p, button:not(.nav-chevron)) {
        display: block;
        padding: .75rem 1rem;
    }

    #header-content nav ul.nav-list__level-2 {
        pointer-events: none;
        opacity: 0;
        min-width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        font-weight: 400;
        box-shadow: 0px 10px 15px -3px rgba(0,0,0,0.1);
    }

    #header-content nav .nav-item__level-1:not(.special-item):hover, #header-content nav .nav-item__level-1:not(.special-item):focus-within {
        background-color: var(--brand-color-70);
    }

    #header-content nav li.nav-item__level-1:hover ul.nav-list__level-2, #header-content nav li.nav-item__level-1:focus-within ul.nav-list__level-2 {
        background-color: var(--brand-color-70);
        pointer-events: all;
        opacity: 1;
    }

    #header-content nav .nav-item__level-2:hover, #header-content nav .nav-item__level-2:focus-within {
        background-color: var(--brand-color-70);
    }

    #header-content nav .logo-wrapper {
        display: none;
    }

    #header-content :is(.nav-x__close-mobile-menu) {
        display: none;
    }

    #header-content .nav-chevron__show-level-2 {
        width: max-content;
        height: 100%;
        padding-right: .5rem;
        display: flex;
        align-items: center;
    }

    #header-content nav .nav-link__level-1:has(+ .nav-chevron__show-level-2:hover), #header-content nav .nav-link__level-1:hover + .nav-chevron__show-level-2, #header-content nav .nav-chevron__show-level-2:hover,
    #header-content nav .nav-link__level-1:has(+ .nav-chevron__show-level-2:focus-within), #header-content nav .nav-link__level-1:focus-within + .nav-chevron__show-level-2, #header-content nav .nav-chevron__show-level-2:focus-within {
        background-color: var(--brand-color-70);
    }
    
    #header-content .nav-chevron--bottom {
        display: block;
        width: .83rem;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    #header-content .wishlist-link {
        margin-right: .5rem;
    }
    #header-content #open-mobile-menu {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    #header-content {
        justify-content: flex-start;
        gap: 1rem;
    }

    #header-content > .logo-wrapper {
        width: 8rem; 
        height: auto;
        order: 2;
    }

    #header-content nav .logo-wrapper {
        width: auto;
        height: 4rem; 
        order: 2;
    }

    #header-content > .wishlist-link {
        order: 3;
        margin-left: auto;
    }

    #header-content > .header__account {
        order: 4;
    }

    #header-content > .button.open-side-cart {
        order: 5;
    }

    #header-content > .logo-wrapper :is(img, svg) {
        width: 100%;
        height: auto;
    }

    #header-content nav {
        order: 1;
        cursor: pointer;
        color: var(--color-light-grey);
    }

    #header-content nav.opened {
        cursor: unset;
    }
    
    #header-content nav > .nav-list {
        pointer-events: none;
        position: fixed;
        width: 100vw;
        height: 100vh;
        top: 0;
        right: 100vw;
        z-index: 99;
        background-color: var(--color-black);
        transition: right 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
        display: flex;
        flex-direction: column;
        overflow: scroll;
    }

    #header-content nav.opened > .nav-list {
        right: 0;
        pointer-events: all;
    }
    
    #header-content nav #open-mobile-menu::before {
        content: '';
        display: block;
        width: 1.5rem;
        height: 1.5rem;
        -webkit-mask: url('/assets/system-files/burger-menu.svg') no-repeat 50% 50%;
        mask: url('/assets/system-files/burger-menu.svg') no-repeat 50% 50%;
        -webkit-mask-size: contain;
        mask-size: contain;
        background-color: white;
    }

    #header-content nav ul{
        list-style-type: none;
        list-style-position: inside;
        margin: 0;
        padding: 0;
    }

    #header-content nav .nav-list__level-1 {
        padding: 8rem 1rem calc(10vh + 1rem) 1rem;
        gap: .75rem;
    }

    #header-content nav .logo-wrapper {
        display: block;
        width: min(60%, 25rem);
        height: max-content;
        position: fixed;
        top:  2rem;
        left: 1rem;
        z-index: 1;
        opacity: 0;
        pointer-events: none;
        transition: opacity 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
        border-bottom: 1px solid var(--grey-line-color);
    }

    #header-content nav.opened .logo-wrapper {
        opacity: 1;
        pointer-events: all;
    }

    #header-content nav .logo-wrapper a {
        display: block;
        width: 100%;
        height: max-content;
    }

    #header-content nav .logo-wrapper :is(img, svg) {
        width: 100%;
        height: auto;
    }

    #header-content .nav-item__level-1 {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 2rem;
        grid-template-rows: max-content 0fr;
        transition: grid-template-rows 100ms cubic-bezier(0.39, 0.575, 0.565, 1);
    }

    #header-content .nav-item__level-1.opened {
        grid-template-rows: max-content 1fr;
    }   

    #header-content .nav-item__level-1.special-item {
        display: none;
    }

    #header-content :is(.nav-link, .nav-heading) {
        width: 100%;
        display: block;
        padding: .25rem 1rem .25rem 1rem;
    }

    #header-content .nav-chevron__show-level-2 {
        cursor: pointer;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        position: relative;
        /* border-left: 1px solid var(--color-light-grey); */
        /* border-right: 1px solid var(--color-light-grey); */
        /* border-bottom: 1px solid var(--color-light-grey); */
        /* color: var(--grey-line-color); */
    }
    
    #header-content .nav-chevron--bottom {
        position: absolute;
        display: block;
        width: 60%;
        height: 60%;
        object-fit: contain;
        object-position: center;
        transform: rotate(-90deg);
        transition: transform 100ms cubic-bezier(0.39, 0.575, 0.565, 1);
    }

    
    #header-content .nav-x__close-mobile-menu {
        cursor: pointer;
        position: fixed;
        z-index: 1;
        top: 2rem;
        right: 1rem;
        display: block;
        width: 1.25rem;
        height: 1.25rem;
        color: var(--color-light-grey);
        opacity: 0;
        pointer-events: none;
    }

    #header-content nav.opened .nav-x__close-mobile-menu {
        opacity: 1;
        pointer-events: all;
        transition: opacity 250ms cubic-bezier(0.39, 0.575, 0.565, 1);
    }
    
    #header-content .nav-x__close-mobile-menu .nav-x {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
    }

    #header-content .nav-item__level-1.opened .nav-chevron--bottom {
        transform: rotate(0);
    }
    
    #header-content .nav-list__level-2 {
        grid-column: 1 / -1;
        overflow: hidden;
        padding-left: 1rem;
        padding-right: 2.5rem;
    }

    #header-content .nav-list__level-2 li:first-child {
        padding-top: .5rem;
    }

    #header-content .nav-list__level-2 li:last-child {
        padding-bottom: .5rem;
    }

    #header-content .nav-item__level-1:last-child {
        height: 10vh;
        display: none;
        position: fixed;
        bottom: 0;
        left: 0;
        text-align: center;
        background-color: white;
    }
}

#info-banner {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: black;
}

#info-banner-content {
    width: 100%;
    height: 100%;
}

#info-banner .swiper-slide {
    padding: 1.5rem 2rem;
    text-align: center;
}
/*  */