.header {
    padding: 10px 0;
    /* background: rgba(0, 0, 0, 0.5); */
    /* backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: -100%;
    z-index: 1;
    width: 100%;
    pointer-events: none;
    transition: all 0.3s ease;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.5) 55%,
            rgba(0, 0, 0, 1) 100%);
}

.header.header-fixed::before {
    bottom: -50%;
    background: linear-gradient(0deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.5) 25%,
            rgba(0, 0, 0, 1) 100%);
}



.header .inner {
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .header {
        padding: 10px 0 20px;
    }
}

.header .menu-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.header .menu-wrapper .menu-logo {
    width: 20%;
    min-width: 150px;
    display: block;
}

.header .menu-wrapper .menu-logo .logo {
    display: block;
    position: relative;
}

.header .menu-wrapper .menu-logo .logo img {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    transition: all 0.3s ease;
}

.header.header-fixed .menu-wrapper .menu-logo .logo img {
    transform: translateX(-50%) translateY(-30px);
    width: 50%;
}

.header .menu-wrapper .menu ul.menu-list {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 20px;
    width: 100%;
}


.header .menu-wrapper .menu.menu-left,
.header .menu-wrapper .menu.menu-right {
    width: 40%;
    padding-top: 30px;
    transition: all 0.3s ease;
}

.header.header-fixed .menu-wrapper .menu.menu-left,
.header.header-fixed .menu-wrapper .menu.menu-right {
    padding-top: 10px;
}



.header .menu-wrapper .menu.menu-left ul.menu-list {
    justify-content: end;
}

.header .menu-wrapper .menu.menu-right ul.menu-list {
    justify-content: start;
}

.header .menu-wrapper .menu ul.menu-list>li.list-item a.menu-link {
    display: block;
    text-transform: uppercase;
    color: var(--white-primary);
    text-decoration: none;
    font-family: 'Exocet OTCECY';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: 10px 0 12px;
}

@media (min-width: 992px) {
    .header .menu-wrapper .menu ul.menu-list>li.list-item a.menu-link {
        font-size: 16px;
    }
}

@media (min-width: 1400px) {
    .header .menu-wrapper .menu ul.menu-list>li.list-item a.menu-link {
        font-size: 18px;
    }
}

.header .menu-wrapper .menu ul.menu-list>li.list-item a.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: var(--white-primary);
    transition: all 0.3s ease;
}

.header .menu-wrapper .menu ul.menu-list>li.list-item a.menu-link:hover::after {
    width: 70%;
}

.header .menu-wrapper .menu ul.menu-list>li.list-item a.menu-link.current::after {
    width: 70%;
    background: var(--magenta-primary);
}


.header .dropdown-language .dropdown-menu {
    background: var(--blue-primary);
    border: none;
    border-radius: 5px;
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
    min-width: fit-content;
    box-sizing: border-box;
    box-shadow: none;
    overflow: hidden;
    border: 1px solid var(--white-primary);
}

.header .dropdown-language .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--white-primary);
    font-weight: normal;
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header .dropdown-language .btn span {
    display: flex;
}

.header .dropdown-language .dropdown-menu li a.dropdown-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    font-size: 14px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: normal;
    font-style: normal;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.header .dropdown-language .dropdown-menu li a.dropdown-item span {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.header .dropdown-language .dropdown-menu li a.dropdown-item span.ico {
    max-width: 20px;
    min-width: 20px;
    height: 20px;
    object-fit: contain;
    object-position: center;
}

.header .dropdown-language .dropdown-menu li a.dropdown-item span.ico img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.header .dropdown-language .dropdown-menu li a.dropdown-item:hover {
    background: var(--white-primary);
    color: var(--blue-primary);
}

.header .dropdown-language .dropdown-menu li a.dropdown-item.active {
    background: var(--white-primary);
    color: var(--blue-primary);
}


@media(max-width: 991.98px) {
    .header .menu-wrapper {
        display: none;
    }
}

@media(min-width: 992px) {
    .header .menu-wrapper-mobile {
        display: none !important;
    }
}

.header .menu-wrapper-mobile .top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.header .menu-wrapper-mobile .logo-image {
    width: 100px;
    height: auto;
    transition: all 300ms ease;
}

.header.header-fixed .menu-wrapper-mobile .logo-image {
    width: 80px;
}

.header .menu-wrapper-mobile .language-wrapper {
    margin-left: auto;
}

.header .menu-wrapper-mobile .bottom {
    position: relative;
}

.header .menu-wrapper-mobile .menu-mobile {
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    max-width: 100%;
    border-radius: 20px;
    padding: 0 20px;
    border: 1px solid var(--white-primary);
    background: rgba(var(--blue-primary-rgb), 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    -moz-backdrop-filter: blur(10px);
    -ms-backdrop-filter: blur(10px);
    -o-backdrop-filter: blur(10px);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    height: 0;
    opacity: 0;
    overflow: hidden;
}

.openMenu .header .menu-wrapper-mobile .menu-mobile {
    padding: 20px;
    height: auto;
    opacity: 1;
}

.header .menu-wrapper-mobile .menu-mobile ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header .menu-wrapper-mobile .menu-mobile a {
    display: block;
    padding: 10px 0;
    color: var(--white-primary);
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    font-family: 'Minion Pro', serif;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-align: right;
}

.section-hero-home .bg-hero-mobile {
    padding: 150px 0 50px;
    background: url("../img/front/bg-hero.png") no-repeat center center;
    background-image: image-set(url("../img/front/bg-hero.webp") type("image/webp"),
            url("../img/front/bg-hero.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: right 40% center;
    background-size: cover;
}


.section-hero-home {
    padding: 0;
    background: url("../img/front/bg-tapet-blue-big.jpg") no-repeat right bottom;
    background-image: image-set(url("../img/front/bg-tapet-blue-big.webp") type("image/webp"),
            url("../img/front/bg-tapet-blue-big.jpg") type("image/png"));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    z-index: 5;
}

@media (min-width: 992px) {
    .section-hero-home {
        padding: 150px 0 50px;
        background: url("../img/front/bg-hero.png") no-repeat right bottom;
        background-image: image-set(url("../img/front/bg-hero.webp") type("image/webp"),
                url("../img/front/bg-hero.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        position: relative;
        z-index: 5;
    }

    .section-hero-home .bg-hero-mobile {
        background: none;
        padding: 0;
    }
}


@media (min-width: 768px) {
    .section-hero-home {
        padding: 0 0 100px;
    }
}

@media (min-width: 992px) {
    .section-hero-home {
        padding: 300px 0 200px;
        background-position: right 25% center;
    }
}

@media (min-width: 1400px) {
    .section-hero-home {
        padding: 320px 0 200px;
    }
}

@media (min-width: 1920px) {
    .section-hero-home {
        padding: 550px 0 350px;
    }
}

.section-hero-home .cta-wrapper {
    border: 4px solid var(--blue-secondary);
    box-shadow: 0 0 30px 0 var(--magenta-primary);
    padding: 20px;
    text-align: center;
}

.section-hero-home .cta-wrapper .cta-wrapper-inner {
    background: rgba(0, 0, 0, 0.5);
    border: 4px solid var(--magenta-primary);
    box-shadow: 0 0 20px 0 var(--magenta-primary), inset 0 0 20px 0 var(--magenta-primary);
    padding: 40px;
}

.section-hero-home .cta-wrapper h2 {
    text-transform: uppercase;
    font-size: 24px;
}


@media (min-width: 992px) {
    .section-hero-home .cta-wrapper {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
    }

    .section-hero-home .cta-wrapper h2 {
        font-size: 30px;
    }

    .section-hero-home .cta-wrapper,
    .section-hero-home .cta-wrapper .cta-wrapper-inner {
        border-width: 10px;
    }

    .section-hero-home .cta-wrapper .cta-wrapper-inner {
        min-width: 660px;
    }

    .section-hero-home .cta-wrapper .cta-wrapper-inner p {
        font-size: 21px;
    }
}



.section-about-home {
    padding: 100px 0 100px;
    background: url("../img/front/bg-faces-dark-blue.png") no-repeat right bottom;
    background-image: image-set(url("../img/front/bg-faces-dark-blue.webp") type("image/webp"),
            url("../img/front/bg-faces-dark-blue.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    position: relative;

    z-index: 4;
}

@media (min-width: 768px) {
    .section-about-home {
        padding: 200px 0 200px;
    }
}

.section-about-home .hourglass {
    position: absolute;
    right: 0;
    top: 60%;
    transform: translateY(-40%);
    width: 160px;
    max-width: 10%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
}

.section-about-home .hourglass img {
    display: block;
    width: 170%;
}

@media(max-width: 768px) {
    .section-about-home .hourglass {
        opacity: 0.3;
    }
}

.section-choose-home {
    padding: 50px 0;
    background-image: url("../img/front/bg-tapet-blue-big.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    z-index: 4;
}

@media (min-width: 992px) {
    .section-choose-home {
        padding: 100px 0;
    }
}

.section-choose-home .choose-products .col-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.section-choose-home .choose-products .col-item .item {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.section-choose-home .choose-products .col-item .item .image {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    margin: 0 auto 20px;
}

.section-choose-home .choose-products .col-item .item .image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.section-choose-home .choose-products .col-item .item .text {
    text-align: center;
    padding: 0 20px;
}

.section-choose-home .choose-products .col-item .item .text h3 {
    font-family: 'Labor Union';
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    font-size: 18px;
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .section-choose-home .choose-products .col-item .item .text h3 {
        font-size: 24px;
    }
}

@media (min-width: 1400px) {
    .section-choose-home .choose-products .col-item .item .text h3 {
        font-size: 30px;
    }
}

.section-choose-home .choose-products .col-item .item .text h4 {
    font-family: 'Minion Pro';
    font-weight: bold;
    font-style: normal;
    font-display: swap;
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--blue-secondary);
}


.section-choose-home .choose-products .col-item .item .actions {
    margin-top: auto;
    text-align: center;
}

.section-shape-home {
    padding: 50px 0;
    background-image: url("../img/front/bg-tapet-magenta-big.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    z-index: 4;
}


@media (min-width: 992px) {
    .section-shape-home {
        padding: 100px 0;
    }
}

.section-shape-home .image img {
    max-width: 100%;
    width: 150px;
    margin: 0 auto 20px;
    display: block;
    object-fit: contain;
    object-position: center;
}

@media (min-width: 992px) {
    .section-shape-home .image img {
        width: 200px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .section-shape-home .item {
        text-align: center;
    }

    .section-shape-home .section-title {
        margin-bottom: 30px !important;
    }
}

@media (min-width: 992px) {
    .section-shape-home .image img {
        width: 100%;
    }
}


.section-shape-home h3 .small {
    font-size: 18px;
}


.section-shape-home h3 .big {
    font-size: 48px;
    text-shadow: 0 0 10px var(--white-primary);
}

.section-ritual-home {
    padding: 50px 0;
    background: url("../img/front/bg-faces-light-blue.png") no-repeat right bottom;
    background-image: image-set(url("../img/front/bg-faces-light-blue.webp") type("image/webp"),
            url("../img/front/bg-faces-light-blue.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    position: relative;
    z-index: 4;
}

@media (min-width: 992px) {
    .section-ritual-home {
        padding: 100px 0;
    }
}

.section-recipes-home {
    padding: 50px 0;

    background-image: url("../img/front/bg-tapet-blue-big.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

@media (min-width: 992px) {
    .section-recipes-home {
        padding: 100px 0;
    }
}


.section-recipes-home .hourglass {
    position: fixed;
    left: 0;
    top: 60%;
    transform: translateY(-40%);
    width: 160px;
    max-width: 10%;
    z-index: 1;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .section-recipes-home .hourglass {
        opacity: 0.3;
    }
}

.section-recipes-home .hourglass img {
    display: block;
    min-width: 170%;
    width: 170%;
}

.section-recipes-home .recipes {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.section-recipes-home .recipes .recipe {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-recipes-home .recipes .recipe h3 {
    font-size: 44px;
}

@media (min-width: 992px) {
    .section-recipes-home .recipes .recipe h3 {
        font-size: 84px;
    }
}

@media (min-width: 768px) {

    .section-recipes-home .recipes .recipe-cuba-libre {
        padding: 50px 20px;
        aspect-ratio: 4 / 2;
        background: url("../img/front/recipes/cocktail-cuba-libre.png") no-repeat right bottom;
        background-image: image-set(url("../img/front/recipes/cocktail-cuba-libre.webp") type("image/webp"),
                url("../img/front/recipes/cocktail-cuba-libre.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        overflow: hidden;
        position: relative;
        z-index: 2;
    }

    .section-recipes-home .recipes .recipe-pina-colada {
        padding: 120px 20px 50px;
        aspect-ratio: 4 / 2;
        background: url("../img/front/recipes/cocktail-pina-colada.png") no-repeat right bottom;
        background-image: image-set(url("../img/front/recipes/cocktail-pina-colada.webp") type("image/webp"),
                url("../img/front/recipes/cocktail-pina-colada.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: center center;
        background-size: contain;
        overflow: hidden;
        position: relative;
        z-index: 2;
    }
}


.section-moments-home {
    padding: 50px 0;
    overflow: hidden;
    position: relative;
    z-index: 2;
    background-color: var(--blue-primary);
}

.section-moments-home .inner {
    position: relative;
    z-index: 2;
}


.section-moments-home:before,
.section-moments-home:after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    right: 0;
    width: 40%;
    height: 300px;
    max-height: 40%;
    pointer-events: none;
    z-index: 1;
    transition: all 0.9s ease;
}

.section-moments-home:before {
    background: url("../img/front/bg-clepsidra-top.png") no-repeat right bottom;
    background-image: image-set(url("../img/front/bg-clepsidra-top.webp") type("image/webp"),
            url("../img/front/bg-clepsidra-top.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
    top: -100vh;
}

.section-moments-home::after {
    background: url("../img/front/bg-clepsidra-bottom.png") no-repeat right bottom;
    background-image: image-set(url("../img/front/bg-clepsidra-bottom.webp") type("image/webp"),
            url("../img/front/bg-clepsidra-bottom.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    bottom: -100vh;
}

.section-moments-home.in-view:before {
    top: 0;
}

.section-moments-home.in-view::after {
    bottom: 0;
}

@media (min-width: 992px) {
    .section-moments-home {
        padding: 100px 0;
    }
}

.section-moments-home .moments .col-item {
    display: flex;
    margin-bottom: 20px;
}

.section-moments-home .moments .moment {
    display: flex;
    flex-direction: column;
    width: 100%;
    text-decoration: none;
    color: var(--white-primary);
    border: 3px solid transparent;
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease, margin 0.3s ease;
}

.section-moments-home .moments .moment .image {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.section-moments-home .moments .moment .image img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center;
}

.section-moments-home .moments .moment .content {
    padding: 14px 12px;
    border-radius: 0 0 10px 10px;
}

.section-moments-home .moments .moment-teal .content {
    background-color: var(--blue-secondary);
}

.section-moments-home .moments .moment-magenta .content {
    background-color: var(--magenta-primary);
}

.section-moments-home .moments .moment .content h3 {
    font-size: 11px;
    line-height: 1.35;
    text-transform: uppercase;
    margin-bottom: 8px;
    color: var(--white-primary);
}

.section-moments-home .moments .moment .content p {
    font-family: 'GothamSSm', sans-serif;
    font-size: 10px;
    line-height: 1.45;
    margin-bottom: 0;
    color: var(--white-primary);
}

.section-moments-home .moments .moment .arrow {
    display: none;
    font-size: 22px;
    line-height: 1;
    margin-top: 6px;
}

.section-moments-home .moments .moment:hover,
.section-moments-home .moments .moment.is-active {
    position: relative;
    border-color: var(--blue-secondary);
    min-height: 300px;
}

.section-moments-home .moments .moment:hover .image,
.section-moments-home .moments .moment.is-active .image {
    position: absolute;
    inset: 0;
    border-radius: 7px;
}

.section-moments-home .moments .moment:hover .image img,
.section-moments-home .moments .moment.is-active .image img {
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
}

.section-moments-home .moments .moment:hover .content,
.section-moments-home .moments .moment.is-active .content {
    position: relative;
    z-index: 1;
    margin-top: auto;
    border-radius: 0 0 7px 7px;
    background: linear-gradient(to top,
            rgba(12, 31, 43, 0.92) 0%,
            rgba(12, 31, 43, 0.55) 55%,
            transparent 100%);
}

.section-moments-home .moments .moment:hover .content p,
.section-moments-home .moments .moment.is-active .content p {
    display: none;
}

.section-moments-home .moments .moment:hover .arrow,
.section-moments-home .moments .moment.is-active .arrow {
    display: block;
}

.section-moments-home .moments .moment:not(.is-active):hover .content::after {
    content: '\2192';
    display: block;
    color: var(--blue-secondary);
    font-size: 22px;
    line-height: 1;
    margin-top: 6px;
}

@media (min-width: 768px) {
    .section-moments-home .moments .col-item {
        margin-bottom: 0;
    }

    .section-moments-home .moments .moment:hover,
    .section-moments-home .moments .moment.is-active {
        min-height: 100%;
        margin-top: -24px;
        margin-bottom: -24px;
    }

    .section-moments-home .moments .moment .content {
        padding: 18px 16px;
    }

    .section-moments-home .moments .moment .content h3 {
        font-size: 13px;
    }

    .section-moments-home .moments .moment .content p {
        font-size: 11px;
    }
}

@media (min-width: 992px) {
    .section-moments-home .moments .moment .content h3 {
        font-size: 14px;
    }

    .section-moments-home .moments .moment .content p {
        font-size: 12px;
    }
}

.footer {
    padding: 50px 0 30px;
    background: url("../img/front/bg-footer.png") no-repeat right bottom;
    background-image: image-set(url("../img/front/bg-footer.webp") type("image/webp"),
            url("../img/front/bg-footer.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    color: var(--white-primary);
    position: relative;
    z-index: 4;
}

@media(max-width: 767.98px) {
    .footer {
        text-align: center;
    }

    .footer-social,
    .footer-partners,
    .footer-contact,
    .footer-legal {
        justify-content: center;
    }

}

.footer a {
    color: var(--white-primary);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer a:hover {
    color: var(--blue-secondary);
}

.footer .footer-links a.current,
.footer .footer-legal a.current {
    color: var(--blue-secondary);
}

.footer-main {
    row-gap: 32px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-block+.footer-block {
    margin-top: 28px;
}

.footer-title {
    margin-bottom: 20px;
    font-family: 'Exocet OTCECY', sans-serif;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray-primary);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.footer-social-link svg {
    display: block;
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.footer-partners {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-partner-link {
    display: block;
    max-width: 150px;
}

.footer-partner-link img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li+li {
    margin-top: 8px;
}

.footer-links a {
    font-family: 'Minion Pro', serif;
    font-size: 15px;
    line-height: 1.35;
}

.footer-col-brand {
    align-items: center;
    text-align: center;
}

@media (max-width: 991.98px) {
    .footer-col-brand {
        align-items: center;
        text-align: center;
    }
}

.footer-brand {
    width: 100%;
    max-width: 260px;
    margin-bottom: 18px;
}

.footer-brand-link {
    display: block;
}

.footer-brand-link img {
    display: block;
    width: 100%;
    height: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 0;
    font-style: normal;
    font-size: 15px;
    line-height: 1.4;
}

.footer-contact a {
    font-family: inherit;
}

.footer-bottom {
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    font-size: 14px;
    line-height: 1.4;
}

.footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-legal a {
    font-family: 'Minion Pro', serif;
    font-size: 14px;
    line-height: 1.4;
}

@media (min-width: 768px) {
    .footer {
        padding: 70px 0 36px;
    }

    .footer-main {
        margin-bottom: 50px;
    }

    .footer-title {
        font-size: 16px;
    }

    .footer-links a,
    .footer-contact {
        font-size: 16px;
    }

    .footer-bottom {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
    }

    .footer-legal {
        justify-content: flex-end;
    }
}

@media (min-width: 992px) {
    .footer {
        padding: 90px 0 40px;
    }

    .footer-main {
        row-gap: 0;
        margin-bottom: 60px;
    }

    .footer-partner-link {
        max-width: 170px;
    }

    .footer-brand {
        max-width: 300px;
    }
}

.section-attributes {
    padding: 80px 0 80px;

    background-image: url("../img/front/bg-tapet-blue-big.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.section-attributes .section-title {
    margin-bottom: 40px;
}

.section-attributes .product-attributes {
    --bs-gutter-y: 40px;
    margin-top: 50px;
}

.section-attributes .product-attribute {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
    padding: 0 10px;
}

.section-attributes .product-attribute-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
}

.section-attributes .product-attribute-icon img {
    display: block;
    max-width: 100%;
    width: 56px;
    height: auto;
}

.section-attributes .product-attribute-label {
    margin: 10px 0 12px;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-attributes .product-attribute-value {
    margin: 0;
    color: var(--white-primary);
    font-size: 16px;
    line-height: 1.5;
    max-width: 220px;
}

@media (min-width: 768px) {
    .section-attributes {
        padding: 140px 0;
    }

    .section-attributes .section-title {
        margin-bottom: 55px;
    }

    .section-attributes .product-attribute-icon {
        width: 86px;
        height: 86px;
    }

    .section-attributes .product-attribute-label {
        font-size: 16px;
    }

    .section-attributes .product-attribute-value {
        font-size: 18px;
    }
}


.section-hero-product .bg-hero-mobile {
    padding: 250px 0 150px;
    margin-bottom: 30px;
}

.section-hero-product {
    padding: 0 0 70px;
}

@media (min-width: 992px) {
    .section-hero-product {
        padding: 300px 0 150px;
    }
}

@media (min-width: 1600px) {
    .section-hero-product {
        padding: 4050px 0 200px;
    }
}

@media (min-width: 1900px) {
    .section-hero-product {
        padding: 550px 0 350px;
    }
}

.section-hero-product-nightshadow .bg-hero-mobile {
    background: url("../img/front/bg-hero-nightshadow.png") no-repeat right bottom;
    background-image: image-set(url("../img/front/bg-hero-nightshadow.webp") type("image/webp"),
            url("../img/front/bg-hero-nightshadow.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: right 20% center;
    background-size: cover;
}

.section-hero-product-phantom .bg-hero-mobile {
    background: url("../img/front/bg-hero-phantom.png") no-repeat right bottom;
    background-image: image-set(url("../img/front/bg-hero-phantom.webp") type("image/webp"),
            url("../img/front/bg-hero-phantom.png") type("image/png"));
    background-repeat: no-repeat;
    background-position: right 20% center;
    background-size: cover;
}

@media (min-width: 992px) {

    .section-hero-product-nightshadow {
        background: url("../img/front/bg-hero-nightshadow.png") no-repeat right bottom;
        background-image: image-set(url("../img/front/bg-hero-nightshadow.webp") type("image/webp"),
                url("../img/front/bg-hero-nightshadow.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: right 30% center;
        background-size: cover;
    }

    .section-hero-product-phantom {
        background: url("../img/front/bg-hero-phantom.png") no-repeat right bottom;
        background-image: image-set(url("../img/front/bg-hero-phantom.webp") type("image/webp"),
                url("../img/front/bg-hero-phantom.png") type("image/png"));
        background-repeat: no-repeat;
        background-position: right 30% center;
        background-size: cover;
    }
}


.section-hero-product .image {
    margin-bottom: 30px;
}

.section-hero-product h1 {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 400;
    font-family: 'Labor Union', serif;
}

.section-hero-product h2 {
    font-size: 24px;
    line-height: 1.2;
    font-weight: 400;
    font-family: 'Minion Pro', serif;
    color: var(--blue-secondary);
}

.section-hero-product p {
    font-size: 21px;
    font-family: 'Minion Pro', serif;
}


.section-notes {
    padding: 90px 0 0 0;
    position: relative;
}

@media (min-width: 768px) {
    .section-notes {
        padding: 100px 0 0 0;
    }
}


.section-notes .hourglass {
    position: absolute;
    left: 0;
    top: 60%;
    transform: translateY(-40%);
    width: 160px;
    max-width: 10%;
    z-index: 4;
    overflow: hidden;
    display: flex;
    flex-direction: row-reverse;
}

.section-notes .hourglass img {
    display: block;
    min-width: 170%;
    width: 170%;
}

@media (max-width: 768px) {
    .section-notes .hourglass {
        opacity: 0.3;
    }
}

.section-notes-nightshadow {
    background-image: url("../img/front/bg-magenta-big.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: cover;
}

.section-notes .notes-wrapper {
    max-width: 820px;
    margin: 0 auto;
    position: relative;
    background-repeat: no-repeat;
    background-position: bottom 30% center;
    background-size: 60%;
}



.section-notes-phantom .notes-wrapper {
    background-image: url("../img/front/bg-romb-phantom.png");
}


.section-notes-nightshadow .notes-wrapper {
    background-image: url("../img/front/bg-romb-nightshadow.png");
}

.section-notes .product-note {
    position: absolute;
    z-index: 2;
    max-width: 210px;
    text-align: left;
}

.section-notes .product-note-label {
    margin: 0 0 8px;
    font-size: 14px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section-notes .product-note-text {
    margin: 0;
    color: var(--white-primary);
    font-size: 15px;
    line-height: 1.45;
}

.section-notes .product-note::after {
    content: "";
    position: absolute;
    height: 1px;
    background: rgba(var(--blue-secondary-rgb), 0.7);
}


.section-notes .notes-wrapper img {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    height: auto;
    max-height: 70dvh;
    object-fit: contain;
    object-position: center;
}


.section-notes .product-note-nose {
    top: 8%;
    left: 0;
    max-width: 230px;
    text-align: right;
}

.section-notes .product-note-nose::after {
    top: 10px;
    left: 100%;
    width: 70px;
    margin-left: 12px;
}

.section-notes .product-note-palate {
    top: 38%;
    right: 0;
    max-width: 210px;
}

.section-notes .product-note-palate::after {
    top: 10px;
    right: 100%;
    width: 70px;
    margin-right: 12px;
}

.section-notes .product-note-finish {
    bottom: 32%;
    left: 0;
    max-width: 180px;
    text-align: right;
}

.section-notes .product-note-finish::after {
    top: 10px;
    left: 100%;
    width: 70px;
    margin-left: 12px;
}

@media (min-width: 768px) {
    .section-notes .product-note-label {
        font-size: 16px;
    }

    .section-notes .product-note-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .section-notes .notes-wrapper {
        display: flex;
        flex-direction: column;
        gap: 24px;
        max-width: 320px;
        padding-top: 10px;
    }

    .section-notes .product-note {
        position: static;
        max-width: none;
        text-align: left;
    }

    .section-notes .product-note::after {
        display: none;
    }

    .section-notes .notes-wrapper img {
        order: -1;
    }
}

.modal-recipe .modal-dialog {
    margin: 0;
    max-width: none;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
}

.modal-recipe .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.modal-recipe .modal-body {
    height: 100%;
    padding: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.recipe-modal-layout {
    display: flex;
    align-items: stretch;
    min-height: 100%;
}

.recipe-modal-panel {
    min-height: 100%;
}

.recipe-modal-panel-left,
.recipe-modal-panel-right {
    flex: 1 1 0;
    display: none;
}

.recipe-modal-panel-center {
    flex: 1 1 100%;
    width: 100%;
}

.recipe-modal-inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    background-image: url("../img/front/bg-tapet-blue-big.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.recipe-modal-mobile-image {
    display: block;
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 20px;
}

.recipe-modal-mobile-image img {
    display: block;
    width: 100%;
    height: auto;
}

.recipe-modal-content {
    flex: 1 1 auto;
    padding: 40px 24px 50px;
    color: var(--white-primary);
}

.recipe-modal-title {
    margin: 0 0 8px;
    font-size: 42px;
    line-height: 1;
}

.recipe-modal-name {
    margin: 0 0 16px;
    font-size: 22px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.recipe-modal-intro {
    margin: 0 auto 32px;
    max-width: 420px;
    font-size: 16px;
    line-height: 1.5;
}

.recipe-modal-block {
    margin-bottom: 28px;
}

.recipe-modal-label {
    margin: 0 0 12px;
    font-size: 14px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.recipe-modal-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.recipe-modal-list li+li {
    margin-top: 6px;
}

.recipe-modal-text {
    margin: 0 auto;
    max-width: 420px;
    font-size: 16px;
    line-height: 1.5;
}

.recipe-modal-actions {
    margin-top: 36px;
}

@media (min-width: 992px) {

    .recipe-modal-panel-left,
    .recipe-modal-panel-right {
        display: block;
    }

    .recipe-modal-panel-center {
        flex: 1.15 1 0;
        max-width: 560px;
    }

    .recipe-modal-mobile-image {
        display: none;
    }

    .recipe-modal-content {
        padding: 70px 40px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .recipe-modal-title {
        font-size: 56px;
    }

    .recipe-modal-name {
        font-size: 26px;
    }

    .recipe-modal-intro,
    .recipe-modal-text {
        font-size: 18px;
    }

    .recipe-modal-label {
        font-size: 16px;
    }
}

.modal-recipe-cuba-libre .recipe-modal-layout .recipe-modal-panel-left {
    background-image: url("../img/front/modal-cocktail-cuba-libre-left.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.modal-recipe-cuba-libre .recipe-modal-layout .recipe-modal-panel-right {
    background-image: url("../img/front/modal-cocktail-cuba-libre-right.png");
    background-repeat: no-repeat;
    background-position: center right 40%;
    background-size: cover;
}

.modal-recipe-pina-colada .recipe-modal-layout .recipe-modal-panel-left {
    background-image: url("../img/front/modal-cocktail-pina-colada-left.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.modal-recipe-pina-colada .recipe-modal-layout .recipe-modal-panel-right {
    background-image: url("../img/front/modal-cocktail-pina-colada-right.png");
    background-repeat: no-repeat;
    background-position: center right 40%;
    background-size: cover;
}




.section-wysiwyg .wysiwyg a {
    color: var(--white-primary);
    text-decoration: underline;

    &:hover {
        color: var(--white-primary);
        text-decoration: underline;
    }
}



.section-wysiwyg .wysiwyg h1 {
    font-size: 36px;
}

.section-wysiwyg .wysiwyg h2 {
    font-size: 32px;
}

.section-wysiwyg .wysiwyg h3 {
    font-size: 28px;
}

.section-wysiwyg .wysiwyg h4 {
    font-size: 24px;
}