@charset "utf-8";

@font-face {
    font-family: "Helvetica Neue LT Pro";
    src: url("https://accurato.com.ar/css/fonts/helvetica-neue-lt-pro-roman.woff2") format("woff2"),
        url("https://accurato.com.ar/css/fonts/helvetica-neue-lt-pro-roman.woff") format("woff");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Helvetica Neue LT Pro";
    src: url("https://accurato.com.ar/css/fonts/helvetica-neue-lt-pro-bold.woff2") format("woff2"),
        url("https://accurato.com.ar/css/fonts/helvetica-neue-lt-pro-bold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Awesome Serif";
    src: url("https://accurato.com.ar/css/fonts/awesome-serif-regular-italic.woff2") format("woff2"),
        url("https://accurato.com.ar/css/fonts/awesome-serif-regular-italic.woff") format("woff");
    font-weight: 400;
    font-style: italic;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    border: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    text-decoration: none;
    vertical-align: baseline;
}

html {
    height: 100%;
    font-size: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body {
    height: 100%;
    background-color: #FFFFFF;
    color: #4B3D66;
    font-family: "Helvetica Neue LT Pro", sans-serif;
    font-size: 16px;
    line-height: 1;
    font-weight: 400;
    cursor: default;
    scroll-behavior: smooth;
}

input,
textarea,
select,
button {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    font-variant-numeric: lining-nums;
    border: none;
    outline: none;
    background: none;
}

div:focus,
span:focus,
input:focus,
textarea:focus,
select:focus,
button:focus {
    outline: none;
    background-image: none;
}

div,
span,
a,
input,
textarea,
select,
button {
    -webkit-tap-highlight-color: transparent;
}

div::-moz-focus-inner,
span::-moz-focus-inner,
input::-moz-focus-inner,
textarea::-moz-focus-inner,
select::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg,
form {
    display: block;
}

.touch {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

/* BAR */

.bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.2s;
    z-index: 99;
}

.bar-compact {
    background-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(24px);
}

.bar-alt.bar-compact {
    background-color: rgba(75, 61, 102, 0.4);
}

.bar-layout {
    display: grid;
    grid-template-columns: 140px 1fr 140px;
    column-gap: 16px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 32px;
    padding-bottom: 36px;
    padding-left: 24px;
    padding-right: 24px;
    transition: 0.2s;
}

.bar-compact .bar-layout {
    padding-top: 6px;
    padding-bottom: 16px;
}

.bar-buttons {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 648px;
    margin: 0 auto;
    padding-top: 31px;
    transition: 0.2s;
}

.bar-compact .bar-buttons {
    padding-top: 25px;
}

.bar-button-frame {
    position: relative;
}

.bar-button {
    color: #A87E97;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    white-space: nowrap;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.bar-button:hover {
    opacity: 0.5;
}

.touch .bar-button:hover {
    opacity: 1;
}

.bar-button:active,
.touch .bar-button:active {
    opacity: 0.5;
}

.bar-menu {
    display: none;
    align-items: center;
    justify-content: flex-end;
    padding-top: 16px;
}

.bar-menu-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 44px;
    height: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    cursor: pointer;
}

.bar-menu-line {
    width: 100%;
    height: 1px;
    background-color: #A87E97;
    transition: 0.25s;
}

.bar-menu-btn:hover .bar-menu-line {
    background-color: #4B3D66;
    transform: scaleX(0.7);
}

.touch .bar-menu-btn:hover .bar-menu-line {
    background-color: #A87E97;
    transform: scaleX(1);
}

.bar-menu-btn:active .bar-menu-line,
.touch .bar-menu-btn:active .bar-menu-line {
    background-color: #4B3D66;
    transform: scaleX(0.7);
}

.bar-fill {
    height: 144px;
    border-bottom: solid 1px rgba(114, 84, 158, 0.15);
}

.bar-box {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    padding-top: 6px;
    transform: translateX(-50%);
    z-index: 100;
}

.bar-box-buttons {
    display: flex;
    flex-direction: column;
    padding: 24px;
    border-radius: 7px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
    text-align: center;
}

.bar-box-button {
    display: inline-block;
    padding-top: 8px;
    padding-bottom: 8px;
    color: #4B3D66;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    white-space: nowrap;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.bar-box-button:first-of-type {
    padding-top: 0px;
}

.bar-box-button:last-of-type {
    padding-bottom: 0px;
}

.bar-box-button:hover {
    opacity: 0.5;
}

.touch .bar-box-button:hover {
    opacity: 1;
}

.bar-box-button:active,
.touch .bar-box-button:active {
    opacity: 0.5;
}

.bar-box-button-on {
    opacity: 0.5;
}

.bar-box-button-on:hover {
    opacity: 0.5;
}

.touch .bar-box-button-on:hover {
    opacity: 0.5;
}

.bar-box-button-on:active,
.touch .bar-box-button-on:active {
    opacity: 0.5;
}

/* PANEL */

.panel {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 540px;
    height: 100%;
    background-color: #A87E97;
    animation: panel-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    overflow: auto;
    z-index: 120;
}

@keyframes panel-anima {
    0% {
        transform: translate(10%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.panel-bg {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(75, 61, 102, 0.5);
    backdrop-filter: blur(8px);
    animation: panel-bg-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    z-index: 119;
}

@keyframes panel-bg-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.panel-frame {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    padding-top: 10%;
    padding-bottom: 10%;
    padding-left: 10%;
    padding-right: 10%;
}

.panel-layout {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.panel-actions {
    display: flex;
    justify-content: center;
    column-gap: 16px;
}

.panel-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    cursor: pointer;
}

.panel-close img {
    display: block;
    width: 16px;
    height: 16px;
    transition: 0.5s;
}

.panel-close:hover img {
    transform: rotate(180deg);
}

.touch .panel-close:hover img {
    transform: rotate(0deg);
}

.panel-close:active img,
.touch .panel-close:active img {
    transform: rotate(180deg);
}

.panel-buttons {
    flex: auto;
    display: flex;
    align-items: center;
    padding-bottom: 64px;
}

.panel-buttons-layout {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    width: 100%;
    padding-top: 32px;
}

.panel-networks {
    flex: none;
    display: flex;
    justify-content: center;
    column-gap: 24px;
    padding-bottom: 32px;
}

.panel-link-block {
    position: relative;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    opacity: 0;
    text-align: center;
    transform: translateY(-32px);
    animation-name: panel-link-anima;
    animation-duration: 0.4s;
    animation-fill-mode: forwards;
    transition: 0.25s;
}

.panel-link {
    display: inline-block;
    color: #FFFFFF;
    font-size: 12px;
    line-height: 12px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.panel-link:hover {
    opacity: 0.5;
}

.touch .panel-link:hover {
    opacity: 1;
}

.panel-link:active,
.touch .panel-link:active {
    opacity: 0.5;
}

.panel-link-on {
    opacity: 0.5;
}

.panel-link-on:hover {
    opacity: 0.5;
}

.touch .panel-link-on:hover {
    opacity: 0.5;
}

.panel-link-on:active,
.touch .panel-link-on:active {
    opacity: 0.5;
}

.panel-link-block:nth-child(1) {
    animation-delay: 0.1s;
}

.panel-link-block:nth-child(2) {
    animation-delay: 0.2s;
}

.panel-link-block:nth-child(3) {
    animation-delay: 0.3s;
}

.panel-link-block:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes panel-link-anima {
    from {
        opacity: 0;
        transform: translateY(-32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.panel-social {
    width: 24px;
    height: 24px;
    opacity: 0;
    transform: scale(0.75);
    cursor: pointer;
    animation-name: panel-social-anima;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
}

.panel-social img {
    width: 100%;
    height: 100%;
    transition: 0.25s;
}

.panel-social:hover img {
    transform: scale(1.25);
}

.touch .panel-social:hover img {
    transform: scale(1);
}

.panel-social:active img,
.touch .panel-social:active img {
    transform: scale(1.25);
}

.panel-social:nth-child(1) {
    animation-delay: 0.5s;
}

.panel-social:nth-child(2) {
    animation-delay: 0.75s;
}

.panel-social:nth-child(3) {
    animation-delay: 1s;
}

@keyframes panel-social-anima {
    from {
        opacity: 0;
        transform: scale(0.75);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* NAV */

.nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    background-color: rgba(232, 232, 232, 0.5);
    backdrop-filter: blur(18px);
    opacity: 0;
    transform: translateY(50%);
    transition: 0.25s;
    z-index: 19;
}

.nav-on {
    display: block;
    animation-name: nav-anima;
    animation-duration: 0.35s;
    animation-fill-mode: forwards;
}

@keyframes nav-anima {
    0% {
        opacity: 0;
        transform: translateY(50%);
    }

    100% {
        opacity: 1;
        transform: translateY(0%);
    }
}

.nav-layout {
    display: flex;
    flex-wrap: wrap;
    column-gap: 70px;
    justify-content: center;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    column-gap: 8px;
    padding: 8px;
    color: #263068;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s;
}

.nav-btn:hover {
    opacity: 0.5;
}

.touch .nav-btn:hover {
    opacity: 1;
}

.nav-btn:active,
.touch .nav-btn:active {
    opacity: 0.5;
}

.nav-prev {
    text-align: right;
}

.nav-next {
    text-align: left;
}

/* GLOBAL */

.margin {
    position: relative;
    padding-left: 56px;
    padding-right: 56px;
}

.frame {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.frame-alt {
    max-width: 1232px;
}

.frame-alt-2 {
    max-width: 1480px;
}

.layout-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.creme {
    background-color: #F9F4EC;
    background-color: rgb(249, 244, 236);
}

.gray {
    background-color: #F7F7F7;
}

.title {
    color: #A87E97;
    font-size: 40px;
    line-height: 110%;
}

.title-alt {
    color: #A87E97;
    font-size: 32px;
    line-height: 110%;
}

.centered {
    text-align: center;
}

.text {
    font-size: 15px;
    line-height: 26px;
}

.text-alt {
    font-size: 17px;
    line-height: 26px;
}

.script {
    display: inline-block;
    font-family: "Awesome Serif", serif;
    font-weight: 400;
    font-style: italic;
}

.section {
    padding-bottom: 80px;
    color: #72549E;
    font-size: 32px;
    line-height: 110%;
    text-align: center;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 200px;
    border: solid 1px #F9F4EC;
    background-color: rgba(0, 0, 0, 0.1);
    color: #F9F4EC;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.button:hover {
    border-color: transparent;
    background-color: #F9F4EC;
    color: #A87E97;
}

.touch .button:hover {
    border-color: #F9F4EC;
    background-color: rgba(0, 0, 0, 0.1);
    color: #F9F4EC;
}

.button:active,
.touch .button:active {
    border-color: transparent;
    background-color: #F9F4EC;
    color: #A87E97;
}

.button-down {
    display: flex;
    justify-content: center;
    animation: button-down-anima 1.35s linear infinite;
}

@keyframes button-down-anima {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    40% {
        opacity: 0;
        transform: translateY(14px);
    }

    60% {
        opacity: 0;
        transform: translateY(-14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.button-alt {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    height: 32px;
    padding-left: 18px;
    padding-right: 18px;
    border-radius: 200px;
    border: solid 1px #A87E97;
    background-color: rgba(255, 255, 255, 0.1);
    color: #A87E97;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.button-alt:hover {
    border-color: transparent;
    background-color: #A87E97;
    color: #F9F4EC;
}

.touch .button-alt:hover {
    border-color: #A87E97;
    background-color: rgba(255, 255, 255, 0.1);
    color: #A87E97;
}

.button-alt:active,
.touch .button-alt:active {
    border-color: transparent;
    background-color: #A87E97;
    color: #F9F4EC;
}

.button-alt svg {
    margin-top: -1px;
}

.button-alt polygon {
    fill: #A87E97;
    transition: 0.25s;
}

.button-alt:hover polygon {
    fill: #F9F4EC;
}

.touch .button-alt:hover polygon {
    fill: #A87E97;
}

.button-alt:active polygon,
.touch .button-alt:active polygon {
    fill: #F9F4EC;
}

.button-alt-2 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    height: 32px;
    padding-left: 20px;
    padding-right: 18px;
    border-radius: 200px;
    background-color: #A87E97;
    color: #F9F4EC;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.button-alt-2:hover {
    background-color: #72549E;
}

.touch .button-alt-2:hover {
    background-color: #A87E97;
}

.button-alt-2:active,
.touch .button-alt-2:active {
    background-color: #72549E;
}

.button-alt-2 svg {
    margin-top: -1px;
}

.button-alt-2 polygon {
    fill: #F9F4EC;
}

.button-alt-3 {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    column-gap: 8px;
    height: 32px;
    padding-left: 20px;
    padding-right: 18px;
    border-radius: 200px;
    border: solid 1px #A87E97;
    background-color: rgba(255, 255, 255, 0.1);
    color: #A87E97;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.1em;
    text-align: center;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.button-alt-3:hover {
    border-color: transparent;
    background-color: #72549E;
    color: #F9F4EC;
}

.touch .button-alt-3:hover {
    border-color: #A87E97;
    background-color: rgba(255, 255, 255, 0.1);
    color: #A87E97;
}

.button-alt-3:active,
.touch .button-alt-3:active {
    border-color: transparent;
    background-color: #72549E;
    color: #F9F4EC;
}

.button-alt-3 svg {
    margin-top: -1px;
}

.button-alt-3 polygon {
    fill: #A87E97;
    transition: 0.25s;
}

.button-alt-3:hover polygon {
    fill: #F9F4EC;
}

.touch .button-alt-3:hover polygon {
    fill: #A87E97;
}

.button-alt-3:active polygon,
.touch .button-alt-3:active polygon {
    fill: #F9F4EC;
}

.breadcrumbs {
    display: flex;
    column-gap: 10px;
    padding-top: 48px;
    padding-bottom: 56px;
}

.breadcrumbs-link {
    color: #A87E97;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.breadcrumbs-link:hover {
    color: #72549E;
}

.touch .breadcrumbs-link:hover {
    color: #A87E97;
}

.breadcrumbs-link:active,
.touch .breadcrumbs-link:active {
    color: #72549E;
}

.breadcrumbs-divisor {
    color: #A87E97;
    font-size: 10px;
    line-height: 10px;
    font-weight: 700;
}

/* DISPLAY */

.display {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #F9F4EC;
}

.display-swiper {
    width: 100%;
    height: 100% !important;
    touch-action: pan-y !important;
    overflow: hidden;
    --swiper-theme-color: #FFFFFF;
    --swiper-pagination-left: unset !important;
    --swiper-pagination-right: 24px !important;
    --swiper-pagination-bottom: 0px;
    --swiper-pagination-bullet-size: 7px;
    --swiper-pagination-bullet-width: 7px;
    --swiper-pagination-bullet-height: 7px;
    --swiper-pagination-bullet-horizontal-gap: 7px;
    --swiper-pagination-bullet-vertical-gap: 8px;
    --swiper-pagination-bullet-inactive-color: rgb(255, 255, 255);
    --swiper-pagination-bullet-inactive-opacity: 0.3;
}

.swiper-wrapper {
    position: relative !important;
}

.display-slide {
    position: relative !important;
    width: 100% !important;
}

.slide-picture {
    position: relative;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: slide-picture-anima;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes slide-picture-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #616063;
    opacity: 0.25;
    mix-blend-mode: multiply;
}

.slide-overlay-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 180px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.slide-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/gradient.png);
    background-repeat: no-repeat;
    background-size: 100% 360px;
    background-position: top left;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-layout {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    height: 100%;
    margin: 0 auto;
    padding-top: 3%;
    padding-left: 24px;
    padding-right: 24px;
}

.slide-layout>div {
    width: 100%;
}

.slide-title {
    color: #FFFFFF;
    font-size: 70px;
    line-height: 110%;
    text-align: center;
}

.slide-title .script {
    font-size: 120px;
}

.display-slide-on .slide-title {
    animation-name: slide-title-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes slide-title-anima {
    0% {
        opacity: 0;
        transform: translateY(-10%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-caption {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    padding-top: 24px;
    color: #FFFFFF;
    font-size: 22px;
    line-height: 130%;
    text-align: center;
}

.display-slide-on .slide-caption {
    animation-name: slide-caption-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes slide-caption-anima {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.slide-button {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    padding-bottom: 8%;
}

.slide-btn {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 18px;
}

/* HEADER */

.header {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.header-alt {
    height: 50%;
}

.header-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #F9F4EC;
    background-image: url(../assets/grapes.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: slide-picture-anima;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.header-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(249, 244, 236, 0) 0%, rgba(249, 244, 236, 1) 100%);
}

.header-gradient-alt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(75, 61, 102, 0) 0%, rgba(75, 61, 102, 1) 100%);
    mix-blend-mode: multiply;
}

.header-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-content .slide-title {
    animation-name: header-title-anima;
    animation-duration: 3s;
    animation-fill-mode: forwards;
}

@keyframes header-title-anima {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.header-title {
    padding-top: 3%;
    color: #F9F4EC;
    font-size: 50px;
    line-height: 110%;
    text-align: center;
    animation-name: header-title-anima-alt;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes header-title-anima-alt {
    0% {
        opacity: 0;
        transform: translateY(-10%);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* GRAPES */

.grapes {
    position: relative;
    width: 100%;
    padding-top: 200px;
    padding-bottom: 400px;
}

.grapes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.grapes-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/grapes-1.png);
    background-position: right 15% top;
    background-size: cover;
    background-repeat: no-repeat;
}

.grapes-1 {
    position: absolute;
    top: -13.61058601134216%;
    left: 63.07291666666667%;
    width: 9.270833333333333%;
    z-index: 2;
    transform: translateY(-50%);
}

.grapes-1-img {
    width: 100%;
    padding-bottom: 106.7415730337079%;
    background-image: url(../assets/grapes-2.png);
    background-position: right 15% top;
    background-repeat: no-repeat;
    background-size: cover;
}

.grapes-2 {
    position: absolute;
    top: -9.6%;
    left: 75.98958333333333%;
    width: 6.458333333333333%;
    z-index: 2;
    transform: translateY(-50%);
}

.grapes-2-img {
    width: 100%;
    padding-bottom: 104.0322580645161%;
    background-image: url(../assets/grapes-3.png);
    background-position: right 15% top;
    background-repeat: no-repeat;
    background-size: cover;
}

.grapes-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.grapes-gradient-2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    mix-blend-mode: screen;
    opacity: 0;
}

.grapes-content {
    width: 100%;
    max-width: 370px;
}

.grapes-title {
    padding-bottom: 24px;
}

.grapes-text {
    padding-bottom: 48px;
    text-shadow: 0 0 6px rgba(255, 255, 255, 0.25);
}

/* COLLECTIONS */

.collections-title {
    border-bottom: solid 1px rgba(114, 84, 158, 0.15);
}

.collection {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.collection-intro {
    order: 1;
    position: relative;
    background-color: #F9F4EC;
    overflow: hidden;
}

.collection:nth-child(even) .collection-intro {
    order: 2;
}

.collection-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
}

.collection-info {
    order: 2;
    padding-top: 148px;
    padding-bottom: 148px;
    padding-left: 24px;
    padding-right: 24px;
    background-color: #FFFFFF;
}

.collection:nth-child(even) .collection-info {
    order: 1;
}

.collection-name {
    padding-bottom: 60px;
    color: #A87E97;
    font-size: 32px;
    line-height: 110%;
    text-align: center;
}

.collection-name-alt {
    padding-bottom: 24px;
}

.collection-swiper {
    width: 100% !important;
    max-width: 370px !important;
    padding-bottom: 24px !important;
    --swiper-theme-color: rgba(168, 126, 151, 0);
    --swiper-pagination-bottom: 0px;
    --swiper-pagination-bullet-size: 9px;
    --swiper-pagination-bullet-width: 9px;
    --swiper-pagination-bullet-height: 9px;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-pagination-bullet-inactive-color: rgb(168, 126, 151, 0);
    --swiper-pagination-bullet-inactive-opacity: 1;
}

.collection-swiper-alt {
    padding-bottom: 48px !important;
}

.collection-swiper .swiper-pagination-bullet {
    border: solid 1px rgb(168, 126, 151, 0.6);
    border-radius: 20px;
    transition: 0.25s;
}

.collection-swiper .swiper-pagination-bullet-active {
    border-color: rgb(168, 126, 151, 1);
    width: 23px;
}

.collection-slide {
    position: relative !important;
    width: 100% !important;
}

.collection-product {
    display: flex;
    flex-direction: column;
}

.collection-image {
    width: 100%;
    padding-bottom: 125%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.collection-button {
    margin-top: 24px;
    text-align: center;
}

.collection-button-alt {
    margin-top: 0px;
}

.collection-blocks {
    padding-top: 52px;
    padding-bottom: 52px;
    overflow: hidden;
}

.collection-block-1 {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
}

.collection-block-2 {
    display: grid;
    grid-template-columns: 1.25fr 1fr;
    margin-top: -20%;
}

.collection-picture-1 {
    padding-right: 32px;
}

.collection-image-1 {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 10px;
    background-color: #F9F4EC;
    margin-left: -30px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.collection-picture-2 {
    padding-left: 32px;
}

.collection-image-2 {
    width: 100%;
    padding-bottom: 100%;
    border-radius: 10px;
    background-color: #f0ebe4;
    margin-right: -30px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.collection-content-1 {
    display: flex;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-right: 10%;
}

.collection-content-1>div {
    width: 100%;
    max-width: 560px;
}

.collection-content-2 {
    display: flex;
    padding-top: 58%;
    padding-left: 14%;
}

.collection-content-2>div {
    width: 100%;
    max-width: 560px;
}

.collection-paragraph-first {
    padding-bottom: 16px;
    font-size: 20px;
    line-height: 28px;
}

.collection-paragraph-first .script {
    color: #BC8853;
    font-size: 22px;
}

.collection-paragraph {
    padding-bottom: 10px;
    font-size: 17px;
    line-height: 26px;
}

.collection-products {
    padding-top: 48px;
    padding-bottom: 48px;
}

.collection-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    row-gap: 48px;
    padding-top: 48px;
    padding-bottom: 64px;
    padding-left: 18px;
    padding-right: 18px;
}

.collection-item-frame {
    width: 33.33333333333333%;
    padding-left: 6px;
    padding-right: 6px;
}

.collection-item {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    color: #4B3D66;
    transition: 0.35s;
}

.collection-item:hover {
    color: #A87E97;
}

.touch .collection-item:hover {
    color: #4B3D66;
}

.collection-item:active,
.touch .collection-item:active {
    color: #A87E97;
}

.collection-item:hover .collection-item-image {
    filter: brightness(110%);
}

.touch .collection-item:hover .collection-item-image {
    filter: brightness(100%);
}

.collection-item:active .collection-item-image,
.touch .collection-item:active .collection-item-image {
    filter: brightness(110%);
}

.collection-item-picture {
    background-color: #FFFFFF;
    border-radius: 7px;
    overflow: hidden;
}

.collection-item-image {
    width: 100%;
    padding-bottom: 125%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: 0.35s;
}

.collection-item-info {
    padding-left: 10px;
    font-size: 15px;
    line-height: 20px;
}

/* PRODUCTS */

.product-layout {
    column-gap: 32px;
    row-gap: 32px;
    align-items: start;
}

.product-display {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
}

.product-picture {
    flex: auto;
    width: 100%;
    height: 100%;
    min-height: 420px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    animation-name: product-picture-anima;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes product-picture-anima {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.product-gallery {
    flex: none;
    overflow: hidden;
}

.gallery-swiper-frame {
    position: relative;
    width: 100%;
}

.gallery-swiper {
    width: 100% !important;
    padding-bottom: 28px !important;
    --swiper-theme-color: rgba(168, 126, 151, 0);
    --swiper-pagination-bottom: 0px;
    --swiper-pagination-bullet-size: 7px;
    --swiper-pagination-bullet-width: 7px;
    --swiper-pagination-bullet-height: 7px;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-pagination-bullet-inactive-color: rgb(168, 126, 151, 0);
    --swiper-pagination-bullet-inactive-opacity: 1;
}

.gallery-swiper .swiper-pagination {
    text-align: right !important;
    margin-right: -4px;
}

.gallery-swiper .swiper-pagination-bullet {
    border: solid 1px rgb(168, 126, 151, 0.6);
    border-radius: 20px;
    transition: 0.25s;
}

.gallery-swiper .swiper-pagination-bullet-active {
    border-color: rgb(168, 126, 151, 1);
    width: 23px;
}

.gallery-slide {
    position: relative !important;
    display: block !important;
    width: 25% !important;
    border-radius: 7px;
    overflow: hidden;
}

.gallery-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-image {
    width: 100%;
    padding-bottom: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #F9F4EC;
}

.gallery-play {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(114, 84, 158, 0);
    transition: 0.25s;
}

.gallery-link:hover .gallery-play {
    background-color: rgb(114, 84, 158, 0.25);
}

.touch .gallery-link:hover .gallery-play {
    background-color: rgb(114, 84, 158, 0);
}

.gallery-link:active .gallery-play,
.touch .gallery-link:active .gallery-play {
    background-color: rgb(114, 84, 158, 0.25);
}

.gallery-play img {
    width: 18px;
    height: 18px;
    margin: 16px;
    opacity: 0.75;
    transition: 0.25s;
}

.gallery-link:hover .gallery-play img {
    opacity: 1;
}

.touch .gallery-link:hover .gallery-play img {
    opacity: 0.75;
}

.gallery-link:active .gallery-play img,
.touch .gallery-link:active .gallery-play img {
    opacity: 1;
}

.product-name {
    color: #A87E97;
    font-size: 28px;
    line-height: 110%;
}

.product-body {
    padding-top: 16px;
    padding-bottom: 16px;
    color: #A87E97;
    font-size: 10px;
    line-height: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-description {
    font-size: 14px;
    line-height: 20px;
}

.product-description p {
    padding-bottom: 16px;
}

.product-description p:last-of-type {
    padding-bottom: 0px;
}

.product-presentation {
    padding-top: 16px;
    font-size: 14px;
    line-height: 20px;
}

.product-actions {
    display: flex;
    column-gap: 20px;
    padding-top: 28px;
    padding-bottom: 28px;
}

.product-tabs {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.product-tab {
    padding-bottom: 5px;
    color: #4B3D66;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.25s;
}

.product-tab span:nth-child(2) {
    display: none;
}

.product-tab:hover {
    color: #A87E97;
}

.touch .product-tab:hover {
    color: #4B3D66;
}

.product-tab:active,
.touch .product-tab:active {
    color: #A87E97;
}

.product-tab-on {
    color: #A87E97;
    border-bottom: solid 1px #A87E97;
}

.product-tab-on:hover {
    color: #A87E97;
}

.touch .product-tab-on:hover {
    color: #A87E97;
}

.product-tab-on:active,
.touch .product-tab-on:active {
    color: #A87E97;
}

.product-tabs-contents {
    padding-top: 16px;
    font-size: 14px;
    line-height: 20px;
    overflow: hidden;
}

.product-tabs-content {
    display: none;
}

.product-tabs-content-on {
    display: block;
    animation: product-tabs-content-anima 0.35s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes product-tabs-content-anima {
    0% {
        transform: translate(5%);
        opacity: 0;
    }

    100% {
        transform: translate(0);
        opacity: 1;
    }
}

.product-features {
    position: relative;
    padding-top: 160px;
    padding-bottom: 180px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
}

.product-features-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0.3;
}

.product-features-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 125%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
}

.product-features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 12%;
    row-gap: 48px;
}

.product-feature {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    width: 180px;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
}

.product-feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 72px;
}

.products-experience {
    overflow: hidden;
}

.stores-title {
    width: 100%;
    max-width: 370px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 32px;
    font-size: 25px;
    line-height: 33px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
}

.stores-group {
    padding-top: 40px;
    padding-bottom: 16px;
    color: #72549E;
    font-size: 18px;
    font-weight: 700;
    line-height: 110%;
    text-transform: uppercase;
}

.stores-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.stores-item {
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 70%;
    border-radius: 8px;
    border: solid 1px rgba(168, 126, 151, 0.25);
    overflow: hidden;
    transition: 0.25s;
}

.stores-item:hover {
    border: solid 1px rgba(114, 84, 158, 1);
}

.touch .stores-item:hover {
    border: solid 1px rgba(168, 126, 151, 0.25);
}

.stores-item:active,
.touch .stores-item:active {
    border: solid 1px rgba(114, 84, 158, 1);
}

.stores-item-logo {
    position: absolute;
    top: 0px;
    left: 0px;
    width: calc(100% - 0px);
    height: calc(100% - 0px);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    filter: invert(60%) sepia(15%) saturate(500%) hue-rotate(270deg);
    transition: 0.25s;
}

.stores-item:hover .stores-item-logo {
    filter: invert(37%) sepia(21%) saturate(1200%) hue-rotate(230deg) brightness(90%) contrast(95%);
}

.touch .stores-item:hover .stores-item-logo {
    filter: invert(60%) sepia(15%) saturate(500%) hue-rotate(270deg);
}

.stores-item:active .stores-item-logo,
.touch .stores-item:active .stores-item-logo {
    filter: invert(37%) sepia(21%) saturate(1200%) hue-rotate(230deg) brightness(90%) contrast(95%);
}

/* HOME */

.home-resveratrol-left,
.home-resveratrol-right {
    position: relative;
    background-color: #F9F4EC;
    overflow: hidden;
}

.home-resveratrol-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: slide-picture-anima;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.home-resveratrol-left .home-resveratrol-picture {
    background-image: url(../assets/skin.jpg);
}

.home-resveratrol-right .home-resveratrol-picture {
    background-image: url(../assets/grapes-alt-2.jpg);
}

.home-resveratrol-content {
    position: relative;
    padding-top: 38%;
    padding-bottom: 38%;
    padding-left: 24px;
    padding-right: 24px;
    color: #FFFFFF;
    font-size: 70px;
    line-height: 110%;
    text-align: center;
}

.home-resveratrol-content .script {
    font-size: 120px;
}

/* FEATURES */

.features {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 64px;
    row-gap: 48px;
    padding-top: 110px;
    z-index: 2;
}

.feature {
    display: flex;
    column-gap: 20px;
    align-items: center;
    width: 270px;
}

.feature-caption {
    font-size: 15px;
    line-height: 18px;
}

/* EXPERIENCE */

.experience {
    position: relative;
    padding-top: 110px;
    padding-bottom: 200px;
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/creme-1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.6;
}

.experience-gradient-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.experience-gradient-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.experience-product {
    padding-top: 80px;
    padding-bottom: 45px;
}

.experience-title {
    position: relative;
    padding-bottom: 82px;
    padding-left: 24px;
    padding-right: 24px;
    font-size: 40px;
    line-height: 110%;
    text-align: center;
}

.experience-title .script {
    color: #A87E97;
    font-size: 49px;
}

.experience-layout {
    position: relative;
    display: flex;
    column-gap: 40px;
    padding-left: 13%;
    overflow: hidden;
}

.experience-info {
    width: 30%;
    padding-top: 50px;
    padding-bottom: 50px;
}

.experiences-slides {
    width: 70%;
    overflow: hidden;
}

.experiences-slides-alt {
    width: 100%;
    padding-left: 10%;
    overflow: hidden;
}

.experience-subtitle {
    padding-bottom: 24px;
    color: #A87E97;
    font-size: 32px;
    line-height: 110%;
}

.experience-info .text {
    padding-bottom: 24px;
}

.experiences-swiper-frame {
    position: relative;
    width: calc(100% + 100px);
}

.experiences-swiper {
    width: 100% !important;
    padding-bottom: 32px !important;
    padding-right: 12px !important;
    --swiper-theme-color: rgba(168, 126, 151, 0);
    --swiper-pagination-bottom: 0px;
    --swiper-pagination-bullet-size: 9px;
    --swiper-pagination-bullet-width: 9px;
    --swiper-pagination-bullet-height: 9px;
    --swiper-pagination-bullet-horizontal-gap: 4px;
    --swiper-pagination-bullet-inactive-color: rgb(168, 126, 151, 0);
    --swiper-pagination-bullet-inactive-opacity: 1;
}

.experiences-swiper .swiper-pagination {
    text-align: left !important;
    margin-left: -4px;
}

.experiences-swiper .swiper-pagination-bullet {
    border: solid 1px rgb(168, 126, 151, 0.6);
    border-radius: 20px;
    transition: 0.25s;
}

.experiences-swiper .swiper-pagination-bullet-active {
    border-color: rgb(168, 126, 151, 1);
    width: 23px;
}

.experiences-slide {
    position: relative !important;
    display: block !important;
    width: 33.33333333333333% !important;
    border-radius: 7px;
    overflow: hidden;
}

.experiences-slides-alt .experiences-slide {
    width: 25% !important;
}

.experiences-link {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.experiences-image {
    width: 100%;
    padding-bottom: 125%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: #F9F4EC;
}

.experiences-play {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(114, 84, 158, 0);
    transition: 0.25s;
}

.experiences-link:hover .experiences-play {
    background-color: rgb(114, 84, 158, 0.25);
}

.touch .experiences-link:hover .experiences-play {
    background-color: rgb(114, 84, 158, 0);
}

.experiences-link:active .experiences-play,
.touch .experiences-link:active .experiences-play {
    background-color: rgb(114, 84, 158, 0.25);
}

.experiences-play img {
    width: 24px;
    height: 24px;
    margin: 16px;
    opacity: 0.5;
    transition: 0.25s;
}

.experiences-link:hover .experiences-play img {
    opacity: 1;
}

.touch .experiences-link:hover .experiences-play img {
    opacity: 0.5;
}

.experiences-link:active .experiences-play img,
.touch .experiences-link:active .experiences-play img {
    opacity: 1;
}

/* MAP */

.map-section {
    padding-top: 100px;
    padding-bottom: 48px;
}

.marquee {
    display: flex;
    flex-direction: column;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14);
    max-width: 100vw;
    margin: auto;
    background-color: #FAF5F3;
    padding-top: 24px;
    padding-bottom: 24px;
    margin-top: 110px;
    margin-bottom: 110px;
}

.marquee-frame {
    display: flex;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14);
    overflow: hidden;
    mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
    -webkit-mask-image: linear-gradient(to right, hsl(0 0% 0% / 0), hsl(0 0% 0% / 1) 20%, hsl(0 0% 0% / 1) 80%, hsl(0 0% 0% / 0));
}

.marquee-logos {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 7);
    min-width: 100%;
    animation: marquee-anima 90s linear infinite;
}

.marquee-frame-reverse .marquee-logos {
    animation-direction: reverse;
    animation-delay: -3s;
}

@keyframes marquee-anima {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - calc(clamp(10rem, 1rem + 40vmin, 30rem) / 14)));
    }
}

.marquee-logos a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: clamp(10rem, 1rem + 8vmin, 30rem);
    padding: calc(clamp(10rem, 1rem + 40vmin, 30rem) / 10);
    aspect-ratio: 16/9;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    filter: invert(60%) sepia(15%) saturate(500%) hue-rotate(270deg);
}

/* RESVERATROL */

.resveratrol-what {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    column-gap: 32px;
    padding-top: 80px;
}

.resveratrol-what-content {
    display: flex;
    align-items: center;
    padding-bottom: 64px;
}

.resveratrol-what-title {
    padding-bottom: 24px;
}

.resveratrol-serum {
    position: relative;
    width: 100%;
    padding-bottom: 97.4%;
    margin-bottom: -23%;
    background-image: url(../assets/serum.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
}

.resveratrol-mountains {
    position: relative;
    padding-top: 300px;
    padding-bottom: 360px;
    overflow: hidden;
}

.resveratrol-mountains-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/mountains.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    animation-name: slide-picture-anima;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.resveratrol-mountains-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(75, 61, 102, 0.16);
    mix-blend-mode: multiply;
}

.resveratrol-mountains-content {
    position: relative;
    max-width: 600px;
    padding-left: 24px;
    padding-right: 24px;
    color: #F9F4EC;
    font-size: 40px;
    line-height: 110%;
    text-align: center;
}

.resveratrol-benefits {
    position: relative;
    padding-bottom: 35%;
}

.resveratrol-benefits-creme {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/creme-2.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.35;
}

.resveratrol-benefits-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(249, 244, 236, 0) 0%, rgba(249, 244, 236, 1) 100%);
}

.resveratrol-benefits-picture {
    position: relative;
    overflow: hidden;
}

.resveratrol-benefits-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/product.jpg);
    background-position: left 10% center;
    background-size: cover;
    background-repeat: no-repeat;
}

.resveratrol-benefits-content {
    position: relative;
    padding-top: 290px;
    padding-bottom: 290px;
    padding-left: 15%;
    padding-right: 15%;
}

.resveratrol-benefits-list {
    display: flex;
    flex-direction: column;
    row-gap: 12px;
    padding-top: 32px;
}

.resveratrol-benefits-content {
    font-size: 22px;
    line-height: 110%;
}

.resveratrol-benefits-content .script {
    color: #A87E97;
    font-size: 24px;
}

.resveratrol-benefit {
    display: flex;
    column-gap: 10px;
}

.resveratrol-benefit img {
    padding-top: 10px;
}

.resveratrol-features {
    position: relative;
    padding-bottom: 100px;
    margin-top: -30%;
}

.resveratrol-features .features {
    padding-top: 56px;
}

.resveratrol-features-caption {
    padding-top: 24px;
}

.resveratrol-lines-title {
    padding-bottom: 40px;
}

.resveratrol-lines-picture {
    position: relative;
    overflow: hidden;
}

.resveratrol-lines-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transition: 1s;
}

.resveratrol-lines-picture .resveratrol-lines-image:nth-child(1) {
    opacity: 1;
}

.resveratrol-lines-products {
    position: relative;
    padding-top: 200px;
    padding-bottom: 200px;
    overflow: hidden;
}

.resveratrol-lines-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
}

.resveratrol-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #242E38;
    padding-top: 140px;
    padding-bottom: 160px;
    color: #FFFFFF;
    font-size: 45px;
    line-height: 110%;
    text-align: center;
    overflow: hidden;
}

.resveratrol-banner .script {
    display: inline-flex;
    padding-right: 5px;
    font-size: 79px;
    transform: translateY(15%);
}

.resveratrol-banner-content {
    position: relative;
}

.resveratrol-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../assets/grapes-alt.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation-name: resveratrol-banner-anima;
    animation-duration: 60s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

@keyframes resveratrol-banner-anima {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

/* MAP */

.map-layout {
    display: flex;
    height: 720px;
    margin-bottom: 160px;
    border-radius: 16px;
    overflow: hidden;
}

.map-layout-alt {
    margin-bottom: 0px;
}

.map-data {
    display: flex;
    flex-direction: column;
    width: 400px;
    padding: 24px;
    background-color: #F9F4EC;
    background-color: #ECE7DE;
}

.map-canvas {
    flex: 1;
    background-color: #ECE7DE;
}

.map-filters {
    flex: none;
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding-bottom: 32px;
}

#map {
    width: 100%;
    height: 100%;
}

#places {
    flex: auto;
    display: flex;
    flex-direction: column;
    row-gap: 18px;
    height: 100%;
    padding-right: 16px;
    overflow: auto;
}

#places::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    border-radius: 30px;
}

#places::-webkit-scrollbar-thumb {
    background: #B6B3AD;
    border-radius: 30px;
    min-height: 70px;
    border: none;
}

#places::-webkit-scrollbar-thumb:hover {
    background: #B6B3AD !important;
}

#places::-webkit-scrollbar-track {
    background: #DDD9D2;
    border-radius: 30px;
}

.place {
    background-color: #F9F4EC;
    border-radius: 9px;
    padding: 16px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 16px;
    line-height: 130%;
    cursor: pointer;
    transition: 0.25s;
}

.place:hover {
    background-color: #FFFFFF;
}

.touch .place:hover {
    background-color: #F9F4EC;
}

.place:active,
.touch .place:active {
    background-color: #FFFFFF;
}

.place-store {
    font-size: 16px;
    font-weight: 700;
}

.place-location {
    color: #A87E97;
    font-weight: 700;
}

.place-address {
    padding-top: 4px;
    font-size: 14px;
}

.place-city {
    font-size: 14px;
}

.checkbox {
    position: relative;
    display: inline-block;
    padding-top: 3px;
    padding-left: 30px;
    margin-left: 2px;
    color: #4B3D66;
    font-size: 15px;
    line-height: 150%;
    font-weight: 400;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: 0.18s;
}

.checkbox input {
    position: absolute;
    width: 0;
    height: 0;
    opacity: 0;
    cursor: pointer;
}

.checkbox-checkmark {
    position: absolute;
    top: 3px;
    left: 0;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: solid 2px #4B3D66;
    transition: 0.25s;
}

.checkbox input:checked~.checkbox-checkmark {
    background-color: #A87E97;
    border-color: #A87E97;
}

.checkbox-checkmark:after {
    content: "";
    display: none;
    position: absolute;
}

.checkbox input:checked~.checkbox-checkmark:after {
    display: block;
}

.checkbox .checkbox-checkmark:after {
    top: 2px;
    left: 5px;
    width: 6px;
    height: 10px;
    border: solid #FFFFFF;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

/* FOOTER */

.footer {
    padding-top: 40px;
    padding-bottom: 32px;
    background-color: #F9F4EC;
}

.footer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    column-gap: 32px;
}

.footer-section {
    padding-bottom: 12px;
    border-bottom: solid 1px rgba(75, 61, 102, 0.5);
    font-size: 13px;
    line-height: 110%;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-buttons {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
    padding-top: 20px;
}

.footer-button {
    color: #4B3D66;
    font-size: 14px;
    line-height: 110%;
    transition: 0.25s;
}

.footer-button:hover {
    color: #A87E97;
}

.touch .footer-button:hover {
    color: #4B3D66;
}

.footer-button:active,
.touch .footer-button:active {
    color: #A87E97;
}

.footer-layout-2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 22px;
    padding-top: 56px;
    text-align: center;
}

.footer-caption {
    color: #A87E97;
    font-size: 45px;
    line-height: 110%;
    text-align: right;
    text-transform: uppercase;
}

.footer-caption .script {
    font-size: 130px;
    line-height: 70%;
    text-transform: none;
}

.footer-brand {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-networks {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 20px;
}

.footer-network {
    cursor: cursor;
}

.footer-network img {
    transition: 0.25s;
}

.footer-network:hover img {
    transform: scale(1.2);
}

.touch .footer-network:hover img {
    transform: scale(1);
}

.footer-network:active img,
.touch .footer-network:active img {
    transform: scale(1.2);
}

/* CONTACT FORM */

.viewer-stores {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(51, 42, 70, 0.75);
    opacity: 0;
    overflow: auto;
    z-index: 100;
}

.viewer-show {
    opacity: 1 !important;
    transition: 0.5s;
}

.viewer-hide {
    opacity: 0 !important;
    transition: 0.35s !important;
}

.stores-layout {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.stores-centered {
    margin: auto;
    width: 100%;
}

.stores-frame {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    border-radius: 12px;
    background-color: #FFFFFF;
}

.stores-close-frame {
    display: flex;
    justify-content: flex-end;
    position: sticky;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
    z-index: 3;
}

.stores-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 100px;
    cursor: pointer;
}

.stores-close img {
    width: 16px;
    height: 16px;
    transition: 0.25s;
}

.stores-close:hover img {
    transform: scale(1.2);
}

.touch .stores-close:hover img {
    transform: scale(1);
}

.stores-close:active img,
.touch .stores-close:active img {
    transform: scale(1.2);
}

.stores-content {
    padding-bottom: 48px;
    padding-left: 48px;
    padding-right: 48px;
}

/* RESPONSIVE */

@media (max-width: 1260px) {

    .grapes-gradient-2 {
        opacity: 1;
    }

    .grapes-1 {
        top: -100px;
        left: unset;
        right: 130px;
        width: 115px;
        filter: brightness(130%);
    }

    .grapes-2 {
        top: -70px;
        left: unset;
        right: 40px;
        width: 80px;
        filter: brightness(130%);
    }

}

@media (max-width: 1200px) {

    .bar-layout {
        grid-template-columns: 140px 1fr;
    }

    .home-resveratrol-content {
        font-size: 40px;
    }

    .home-resveratrol-content .script {
        font-size: 90px;
    }

    .experiences-slides-alt .experiences-slide {
        width: 33.33333333333333% !important;
    }

}

@media (max-width: 1000px) {

    .map-layout {
        flex-direction: column;
        height: auto;
    }

    .map-data {
        order: 2;
        width: 100%;
        height: 600px;
    }

    .map-canvas {
        order: 1;
        width: 100%;
        flex: unset !important;
        height: 480px;
    }

    #map {
        width: 100%;
    }

}

@media (max-width: 960px) {

    .collection {
        grid-template-columns: 1fr;
    }

    .collection-intro {
        padding-bottom: 100%;
    }

    .collection:nth-child(even) .collection-intro {
        order: 1;
    }

    .collection-info {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .layout-half {
        grid-template-columns: 1fr;
    }

    .home-resveratrol-left {
        order: 2;
        padding-bottom: 100%;
    }

    .experience-layout {
        flex-direction: column;
        padding-left: 0%;
    }

    .experience-info {
        width: 100%;
        padding-top: 0px;
        padding-left: 7%;
        padding-right: 7%;
    }

    .experiences-slides {
        width: 100%;
        padding-left: 7%;
    }

    .resveratrol-benefits-picture {
        order: 2;
        padding-bottom: 100%;
    }

    .resveratrol-lines-products {
        order: 2;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .resveratrol-lines-picture {
        order: 1;
        padding-bottom: 100%;
    }

    .resveratrol-benefits-content {
        padding-top: 120px;
        padding-bottom: 140px;
        padding-left: 10%;
        padding-right: 10%;
    }

    .resveratrol-features {
        position: relative;
        padding-bottom: 80px;
        padding-top: 64px;
        margin-top: -30%;
    }

    .collection-blocks {
        padding-top: 32px;
        padding-bottom: 0px;
    }

    .collection-block-1 {
        grid-template-columns: 1fr;
    }

    .collection-block-2 {
        grid-template-columns: 1fr;
        margin-top: -20%;
    }

    .collection-content-1 {
        padding-left: 4%;
        padding-right: 0;
    }

    .collection-content-2 {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .collection-image-1 {
        margin-left: 0px;
    }

    .collection-image-2 {
        margin-right: 0px;
    }

    .collection-item {
        width: 50%;
    }

    .footer-layout {
        grid-template-columns: 1fr 1fr;
    }

    .footer-layout>div:nth-child(1) {
        order: 2;
    }

    .footer-layout>div:nth-child(2) {
        order: 3;
    }

    .footer-caption {
        order: 1;
        grid-column: 1 / -1;
        padding-bottom: 48px;
    }

}

@media (max-width: 920px) {

    .bar-layout {
        padding-right: 16px;
    }

    .bar-layout {
        grid-template-columns: 140px 1fr 140px;
    }

    .bar-buttons {
        display: none;
    }

    .bar-menu {
        display: flex;
    }

    .resveratrol-what {
        grid-template-columns: 1fr;
        padding-top: 70px;
    }

    .resveratrol-what-content {
        padding-bottom: 24px;
    }

    .experiences-slides-alt .experiences-slide {
        width: 50% !important;
    }

    .resveratrol-banner {
        line-height: 120%;
    }

    .resveratrol-banner .script {
        padding-right: 0px;
        transform: translateY(0);
    }

}

@media (max-width: 680px) {

    .slide-title {
        font-size: 32px;
        line-height: 140%;
    }

    .slide-title .script {
        font-size: 66px;
    }

    .slide-caption {
        padding-top: 18px;
        font-size: 18px;
    }

    .grapes-1 {
        top: -80px;
        right: 110px;
        width: 115px;
    }

    .grapes-2 {
        top: -50px;
        right: 20px;
        width: 80px;
    }

}

@media (max-width: 640px) {

    .product-actions {
        flex-direction: column;
        row-gap: 16px;
        padding-top: 48px;
        padding-bottom: 0px;
    }

    .product-action .button-alt-2,
    .product-action .button-alt-3 {
        display: flex;
    }

    .stores {
        padding-top: 28px;
    }

    .footer-layout {
        grid-template-columns: 1fr;
        row-gap: 32px;
    }

    .footer-caption {
        padding-bottom: 24px;
        font-size: 24px;
        text-align: right;
    }

    .footer-caption .script {
        font-size: 64px;
    }

}

@media (max-width: 580px) {

    .grapes-1 {
        top: -40px;
        right: 85px;
        width: 105px;

    }

    .grapes-2 {
        top: -45px;
        right: 10px;
        width: 65px;
    }

    .product-tab span:nth-child(1) {
        display: none;
    }

    .product-tab span:nth-child(2) {
        display: inline;
    }

    .breadcrumbs {
        padding-top: 24px;
        padding-bottom: 32px;
    }

    .breadcrumbs-hidden {
        display: none;
    }

    .breadcrumbs-on {
        font-weight: 700;
    }

    .resveratrol-banner-content .script {
        display: block;
        padding-bottom: 12px;
    }

}

@media (max-width: 490px) {

    .margin {
        padding-left: 24px;
        padding-right: 24px;
    }

    .home-resveratrol-content {
        font-size: 30px;
    }

    .home-resveratrol-content .script {
        font-size: 64px;
    }

    .section {
        padding-bottom: 48px;
        font-size: 26px;
    }

    .title-alt {
        font-size: 26px;
    }

    .grapes {
        padding-top: 140px;
        padding-bottom: 100px;
    }

    .grapes-bg {
        background-position: right 35% top;
    }

    .collection-name {
        padding-bottom: 0px;
        font-size: 26px;
    }

    .features {
        row-gap: 40px;
        padding-top: 72px;
    }

    .experience {
        padding-top: 90px;
        padding-bottom: 64px;
    }

    .experience-title {
        padding-bottom: 64px;
        font-size: 30px;
    }

    .experience-title .script {
        font-size: 39px;
    }

    .experience-subtitle {
        font-size: 24px;
    }

    .experiences-swiper {
        --swiper-pagination-bullet-size: 7px;
        --swiper-pagination-bullet-width: 7px;
        --swiper-pagination-bullet-height: 7px;
        --swiper-pagination-bullet-horizontal-gap: 4px;
    }

    .experiences-slide {
        width: 50% !important;
    }

    .resveratrol-mountains {
        padding-top: 200px;
        padding-bottom: 260px;
    }

    .resveratrol-mountains-content {
        font-size: 30px;
        line-height: 120%;
    }

    .resveratrol-benefits-content {
        padding-top: 100px;
        padding-bottom: 120px;
        font-size: 20px;
        line-height: 120%;
    }

    .resveratrol-benefits-content .script {
        font-size: 22px;
    }

    .resveratrol-banner {
        font-size: 32px;
        line-height: 120%;
    }

    .resveratrol-banner .script {
        padding-right: 0px;
        font-size: 66px;
        transform: translateY(0);
    }

    .collection-blocks {
        padding-top: 24px;
    }

    .collection-grid {
        row-gap: 36px;
    }

    .collection-item {
        width: 100%;
    }

    .experience-product {
        padding-top: 64px;
    }

    .product-features {
        padding-top: 100px;
        padding-bottom: 140px;
    }

    .product-name {
        font-size: 26px;
    }

    .gallery-slide {
        width: 33.33333333333333% !important;
    }

    .experiences-slides-alt {
        padding-left: 24px;
    }

    .map-section {
        padding-top: 64px;
    }

    .map-layout {
        margin-bottom: 100px;
    }

    .map-data {
        padding: 16px;
    }

    #places {
        row-gap: 16px;
    }

    .marquee {
        margin-top: 90px;
        margin-bottom: 90px;
    }

    .marquee-logos {
        animation: marquee-anima 40s linear infinite;
    }

    .marquee-logos a {
        width: clamp(7rem, 1rem + 8vmin, 30rem);
    }

    .stores-frame {
        border-radius: 0px;
    }

    .stores-title {
        padding-top: 100px;
        padding-bottom: 0px;
        font-size: 20px;
        line-height: 28px;
    }

    .stores-group {
        padding-top: 32px;
        font-size: 16px;
    }

    .stores-content {
        padding-left: 24px;
        padding-right: 24px;
    }

    .stores-grid {
        grid-template-columns: 1fr 1fr;
    }

}

.fancybox__content {
    height: 100% !important;
}