/* START: Global tags */
html {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    height: 100%;
    overscroll-behavior: contain;
    overflow: hidden;
}

:root {
    --black: #000;
    --white: #fff;
    --red: #ff001f;
    --size: 12px;
}

body {
    width: 100%;
    height: 100%;
    color: var(--white);
    font-size: var(--size);
    font-family: sans-serif;
    overflow-x: hidden;
}

* {
    margin: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

*:focus {
    outline: none;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

::selection {
    background: var(--black);
    color: var(--white);
}

::-moz-selection {
    background: var(--black);
    color: var(--white);
}

p:not(:last-child) {
    margin-bottom: 1em;
}

a,
a:hover,
a:link {
    text-decoration: none;
    transition: color 0.4s ease, background-color 0.4s ease, opacity 0.4s ease;
    -webkit-transition: color 0.4s ease, background-color 0.4s ease,
        opacity 0.4s ease;
    -moz-transition: color 0.4s ease, background-color 0.4s ease,
        opacity 0.4s ease;
    -o-transition: color 0.4s ease, background-color 0.4s ease,
        opacity 0.4s ease;
}

em {
}

strong {
}

input {
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* REVEALS */
.reveal.revealImg {
    opacity: 0;
    transform: scale(0.9);
    -webkit-transform: scale(0.9);
    transition: opacity 0.4s ease, transform 0.4s ease;
    -webkit-transition: opacity 0.4s ease, transform 0.4s ease;
}

.reveal.revealImg.revealed {
    opacity: 1;
    transform: scale(1);
    -webkit-transform: scale(1);
}

.reveal.revealText {
    opacity: 0;
    transform: translate3d(0, 2.5vw, 0);
    -webkit-transform: translate3d(0, 2.5vw, 0);
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
    -webkit-transition: opacity 0.35s ease-out, transform 0.35s ease-out;
    transition-delay: 0.2s;
}

.reveal.revealText.revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.reveal.revealLine {
    position: relative;
}

.reveal.revealLine:after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 0;
    background: var(--light-green);
    transition: width 0.7s ease-out;
    -webkit-transition: width 0.7s ease-out;
    transition-delay: 0.2s;
}

.reveal.revealLine.revealed:after {
    width: 100%;
}

/* GENERAL CLASSES */
.flex-row {
    display: flex;
    flex-direction: row;
}

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

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.red {
    color: var(--red);
}

/* CONTENT */
main {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 100vh;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.background video.mobile {
    display: none;
}

#initial,
#reveal {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    transition: opacity 0.6s ease;
    -webkit-transition: opacity 0.6s ease;
}

#initial {
    justify-content: flex-end;
    align-items: flex-start;
    padding: 23px 32px;
    transition-delay: 0.4s;
    position: fixed;
}

body.show-info #initial {
    opacity: 0;
    pointer-events: none;
    transition-delay: 0s;
}

#initial .flex-row {
    gap: 95px;
    font-size: 0.85vw;
    line-height: 1;
}

#initial a {
    color: var(--white);
}

#reveal {
    background: rgba(0, 0, 0, 0.8);
    padding: 6vw 1.7vw 1.7vw;
    min-height: 100vh;
    justify-content: space-between;
    opacity: 0;
    pointer-events: none;
    transition-delay: 0s;
}

body.show-info #reveal {
    opacity: 1;
    pointer-events: visible;
    transition-delay: 0.4s;
}

.swiper {
    width: 100%;
    height: 30vw;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    max-width: 55%;
    object-fit: contain;
    margin: 0 auto;
}

.mySwiper .swiper-button-prev,
.mySwiper .swiper-button-next {
    width: 24px;
    height: 8px;
    background-repeat: no-repeat !important;
    background-size: contain !important;
}

.mySwiper .swiper-button-prev {
    background-image: url(../assets/img/arrow-prev.svg);
}

.mySwiper .swiper-button-next {
    background-image: url(../assets/img/arrow-next.svg);
}

.mySwiper .swiper-button-prev:after,
.mySwiper .swiper-button-next:after {
    content: none;
}

header {
    width: 100%;
    z-index: 10;
    position: fixed;
    top: 0;
    left: 0;
    color: var(--white);
    padding: 20px;
    text-align: center;
}

header .logo {
    font-size: 22px;
    line-height: 1;
    font-family: "Euclid", sans-serif;
    letter-spacing: 0.3em;
}

header button {
    border: 0;
    background-color: transparent;
    font-size: 1.04vw;
    line-height: 1;
    color: var(--white);
    position: absolute;
    right: 20px;
    top: 20px;
    cursor: pointer;
    padding: 0;
    font-family: "BeirutText", serif;
}

header button span:last-child,
body.show-info header button span:first-child {
    display: none;
}

body.show-info header button span:last-child {
    display: block;
}

.text {
    font-size: 0.94vw;
    line-height: 1.2;
    gap: 1.75vw;
    font-family: "BeirutText", serif;
}

.text .column {
    width: 33.33%;
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    -webkit-transform: translate3d(0, 20px, 0);
    transition: opacity 0.25s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.25s ease, transform 0.5s ease;
    position: relative;
}

body.show-info .text .column {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
}

.text .column span {
    display: block;
    margin-bottom: 25px;
}

.text .column a {
    color: #fff;
    text-decoration: underline;
    margin-top: 15px;
    text-align: right;
}

/* RESPONSIVE */
@media only screen and (max-width: 1024px) {
    #initial {
        padding: 20px;
    }

    #initial .flex-row {
        font-size: 2.9vw;
        gap: 50px;
    }

    #reveal {
        padding: 18vw 20px 20px;
    }

    .swiper {
        height: 85vw;
        padding-bottom: 10vw !important;
    }

    .mySwiper .swiper-button-prev,
    .mySwiper .swiper-button-next {
        top: unset;
        margin-top: unset;
        bottom: 2.25vw;
        width: 45px;
        height: 18px;
    }

    .mySwiper .swiper-button-prev {
        left: 0;
    }

    .mySwiper .swiper-button-next {
        right: 0;
    }

    .swiper-slide img {
        max-width: 85%;
    }

    .text {
        font-size: 2.6vw;
        flex-direction: column;
        gap: 0;
    }

    .text .column {
        width: 100%;
        margin-top: 10vw;
    }
}

@media only screen and (max-width: 768px) {
    header .logo {
        font-size: 17px;
        text-align: left;
    }

    header button {
        font-size: 19px;
    }

    .background video.desktop {
        display: none;
    }

    .background video.mobile {
        display: block;
    }

    .text {
        font-size: 4.25vw;
    }
}

@media only screen and (max-width: 550px) {
    #initial .flex-row {
        font-size: 4.25vw;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }
}
