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

html.has-scroll-smooth {
    overflow: hidden;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

:root {
    --white: #fff;
    --black: #000;
    --orange: #ff9000;
    --blue: #e9f6f6;
    --container: 78.5vw;
}

body {
    width: 100%;
    height: 100%;
    background: #ffffff;
    font-size: 24px;
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    overflow-x: hidden;
}

body.loaded {
    opacity: 1;
}

* {
    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: black;
    color: white;
}

::-moz-selection {
    background: black;
    color: white;
}

p:not(:last-child) {
    margin-bottom: 20px;
}

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

em {
}

strong {
}

input {
}

.transition {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.slowTransition {
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

.reveal {
    opacity: 0;
    transform: translate3d(0px, 40px, 0px);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-delay: 0.5s;
}

.revealOpacity {
    transform: translate3d(0px, 100%, 0px);
    transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-delay: 0.25s;
}

.revealLeft {
    opacity: 0;
    transform: translate3d(40px, 0px, 0px);
    transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-delay: 0.5s;
}

.revealOpacity.is-inview {
    transform: none;
}

.reveal.is-inview,
.revealLeft.is-inview {
    opacity: 1;
    transform: none;
}

section {
    position: relative;
}

.slider {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-delay: 0.5s;
}

.slider.is-inview {
    opacity: 1;
    pointer-events: visible;
}

.text-line {
    display: block;
    overflow: hidden;
}

span.pretext {
    display: inline-block;
    transition-delay: 0.6s !important;
}

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

.mainScrollContainer::-webkit-scrollbar {
    display: none;
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

.mainScrollContainer {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

a.animatedButton {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

a.animatedButton:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 0;
    transform: scaleY(0);
    transform-origin: center top;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0, 1);
}

a.animatedButton:hover:before {
    transform-origin: center bottom;
    transform: scaleY(1);
}

a.animatedButton .button-text {
    position: relative;
    display: block;
    overflow: hidden;
}

a.animatedButton span {
    display: block;
    position: relative;
    transition: all 0.2s ease;
    -webkit-transition: opacity 0.3s cubic-bezier(0.4, 0, 0, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0, 1);
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0, 1),
        transform 0.6s cubic-bezier(0.4, 0, 0, 1);
}

a.animatedButton span:last-child {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    position: absolute;
    top: 0;
    bottom: 0;
}

a.animatedButton:hover span:first-child {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

a.animatedButton:hover span:last-child {
    opacity: 1;
    transform: none;
}

h2.title-desktop {
    display: flex;
}

h2.title-mobile {
    display: none;
}

/* HEADER */
header {
    height: 85px;
    padding: 0 40px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    -webkit-transform: translate3d(0px, -100%, 0px);
    transform: translate3d(0px, -100%, 0px);
}

header.notification {
    height: 110px;
}

.notification-bar {
    background-color: var(--main-dark-color);
    color: var(--main-light-color);
    position: relative;
    height: 25px;
    width: 100%;
}

#fakeHeader {
    height: 85px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-bottom: 2px solid var(--black);
    z-index: 8;
    -webkit-transform: translate3d(0px, -100%, 0px);
    transform: translate3d(0px, -100%, 0px);
}

.revealHeader header,
.revealHeader #fakeHeader {
    transform: none;
}

header .logo {
    width: 180px;
    opacity: 0;
    -webkit-transform: translate3d(50px, 0px, 0px);
    transform: translate3d(50px, 0px, 0px);
}

.animateHeader header .logo {
    opacity: 1;
    transform: none;
}

header .logo svg {
    width: 100%;
    height: auto;
    display: block;
}

header .menu {
    display: flex;
    align-items: center;
}

header nav ul {
    display: flex;
}

header nav ul li {
    margin-left: 35px;
}

header nav ul li a {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.06em;
    color: var(--black);
    display: block;
    opacity: 0;
    -webkit-transform: translate3d(-50px, 0px, 0px);
    transform: translate3d(-50px, 0px, 0px);
}

header .language {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.06em;
    -webkit-transform: translate3d(-50px, 0px, 0px);
    transform: translate3d(-50px, 0px, 0px);
    opacity: 0;
    transition-delay: 0.75s;
    position: relative;
}

header .language:after {
    content: "↓";
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1;
    display: block;
    position: absolute;
    right: -2px;
    top: -1px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

header .language:hover:after {
    -webkit-transform: translateX(100%) rotate(90deg);
    transform: translateX(100%) rotate(90deg);
    top: 1px;
    right: -4px;
}

.animateHeader header nav ul li a,
.animateHeader header .language {
    opacity: 1;
    transform: none;
}

.animateHeader header nav ul li:last-child a {
    transition-delay: 0.25s;
}

.animateHeader header nav ul li:first-child a {
    transition-delay: 0.5s;
}

header .language ul {
    list-style: none;
}

header .language ul.wpml-ls-sub-menu {
    position: absolute;
    top: 0;
    left: 0;
    padding-right: 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
    display: flex;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

header .language:hover ul.wpml-ls-sub-menu {
    opacity: 1;
    padding-right: 12px;
}

header .language ul.wpml-ls-sub-menu li:not(:last-child) {
    margin-right: 14px;
}

header .language a {
    color: var(--black);
}

header .language .wpml-ls-item-es-ame .wpml-ls-sub-menu .wpml-ls-item-es,
header .language .wpml-ls-item-en-us .wpml-ls-sub-menu .wpml-ls-item-en,
header .language .wpml-ls-item-us .wpml-ls-sub-menu .wpml-ls-item-en,
header .language .wpml-ls-item .wpml-ls-sub-menu .wpml-ls-item-es-ame,
header .language .wpml-ls-item .wpml-ls-sub-menu .wpml-ls-item-en-us,
header .language .wpml-ls-item .wpml-ls-sub-menu .wpml-ls-item-us,
header .language .wpml-ls-item-es .wpml-ls-sub-menu .wpml-ls-item-es-ame {
    display: none;
}

#hamburger {
    display: block;
    width: 0px;
    height: 12px;
    position: relative;
    margin-left: 35px;
    overflow: hidden;
}

.animateHeader #hamburger {
    width: 64px;
}

.menu-opened #hamburger {
    height: 35px;
}

.toggleMenu span {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    display: block;
    transform-origin: center;
}

.toggleMenu span:first-child {
    top: 0;
}

.toggleMenu:hover span:first-child,
.menu-opened .toggleMenu span:first-child {
    -webkit-transform: translateX(calc(100% + 10px));
    transform: translateX(calc(100% + 10px));
}

.toggleMenu span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -10px;
    display: block;
    background: var(--black);
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.menu-opened .toggleMenu span:first-child:before {
    width: 34px;
    left: -25px;
    top: 16px;
    -webkit-transform: translateX(-100%) rotate(45deg);
    transform: translateX(-100%) rotate(45deg);
}

.toggleMenu span:last-child {
    bottom: 0;
}

.toggleMenu span:last-child:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: -10px;
    display: block;
    background: var(--black);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

.menu-opened .toggleMenu span:last-child:after {
    width: 34px;
    right: -25px;
    top: -17px;
    -webkit-transform: translateX(100%) rotate(-45deg);
    transform: translateX(100%) rotate(-45deg);
}

.toggleMenu:hover span:last-child,
.menu-opened .toggleMenu span:last-child {
    -webkit-transform: translateX(calc(-100% - 10px));
    transform: translateX(calc(-100% - 10px));
}

.parallaxBlock {
    display: block;
    position: relative;
}

/* MAINMENU */
#mainMenu {
    width: 33vw;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9;
    -webkit-transform: translate3d(100%, 0px, 0px);
    transform: translate3d(100%, 0px, 0px);
    display: flex;
    flex-direction: column;
}

#mainMenu .inner-menu {
    width: 100%;
    height: 100%;
    position: relative;
    background: var(--white);
    border-left: 2px solid var(--black);
}

#mainMenu.expanded {
    width: 50vw;
}

.menu-opened #mainMenu {
    transform: none;
}

#mainMenu > * {
    width: 100%;
}

#mainMenu .top {
    padding-top: 105px;
    padding-left: 4.6vw;
    padding-right: 3.85vw;
    -webkit-height: calc(100% - 7vw);
    height: calc(100% - 7vw);
}

#mainMenu .top .main-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
}

#mainMenu .top .main-menu .submenu::-webkit-scrollbar {
    display: none;
}

#mainMenu .top .main-menu .submenu {
    overflow: hidden;
    overflow-y: scroll;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    height: 2px;
    width: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 2px solid var(--black);
}

#mainMenu.expanded .top .main-menu .submenu {
    height: 100%;
}

#mainMenu .bottom {
    padding-top: 1.65vw;
    padding-bottom: 1.5vw;
    height: 7vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

#mainMenu .bottom .menu-logo {
    display: none;
}

#mainMenu a {
    color: var(--black);
}

#mainMenu .top .main-menu > a {
    position: relative;
}

#mainMenu .top .main-menu > a.sections {
    display: flex;
    align-items: center;
    margin-bottom: 0.65vw;
}

#mainMenu .top .main-menu > a.sections img {
    width: 2.3vw;
    height: auto;
    margin-left: 1.25vw;
}

#mainMenu.expanded .top .main-menu > a.sections img {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#mainMenu .top .main-menu .submenu a {
    padding-left: 2.6vw;
    position: relative;
    display: block;
    margin: 0.65vw 0;
    opacity: 0;
    pointer-events: none;
}

#mainMenu .top .main-menu .submenu a:last-child {
    margin-bottom: 1.65vw;
}

#mainMenu .top .main-menu .submenu.show a {
    opacity: 1;
    pointer-events: visible;
}

#mainMenu .top .main-menu .submenu a:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    top: 0.1vw;
    background: url("../images/list-arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 1.2vw;
    height: 1.2vw;
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
}

#mainMenu .top .main-menu .submenu a:hover:before {
    left: 0.75vw;
}

#mainMenu .bottom a,
#mainMenu .bottom span {
    display: inline-block;
    margin: 0 1.15vw;
}

#mainMenu .bottom a:hover {
    opacity: 0.5;
}

/* CONTENT */
.mainScrollContainer {
    padding-top: 85px;
}
#hero {
    width: 100%;
    min-height: 52.5vw;
    position: relative;
    border-bottom: 2px solid var(--black);
}

#hero .layout {
    transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: opacity 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
}

#hero video,
#hero .layout .cover img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    left: 0;
    top: 0;
}

#hero.playing .layout.play,
#hero .layout.pause {
    pointer-events: none;
    opacity: 0;
}

#hero.playing:hover .layout.pause {
    pointer-events: visible;
    opacity: 1;
}

#hero .layout,
#hero .layout .cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#hero .layout .caption {
    position: absolute;
    left: 50%;
    top: -webkit-calc(50% + 42px);
    top: calc(50% + 42px);
    color: var(--white);
    -webkit-transform: translate3d(-50%, -50%, 0px);
    transform: translate3d(-50%, -50%, 0px);
    font-size: 13.85vw;
    line-height: 1;
}

#hero .layout .caption .text-line {
    display: block;
    overflow: hidden;
    position: relative;
}

#hero .layout .caption .playtext {
    display: inline-block;
    transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: transform 1.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transform: translate3d(0px, 100%, 0px);
    transform: translate3d(0px, 100%, 0px);
    transition-delay: 0.8s;
    position: relative;
}

.revealContent #hero .layout .caption .playtext {
    transform: none;
}

.revealContent #hero .layout .caption span {
    display: inline-block;
    -webkit-transition: all 300ms cubic-bezier(0.28, 0.38, 0, 1);
    transition: all 300ms cubic-bezier(0.28, 0.38, 0, 1);
}

.revealContent #hero .layout .caption:hover .playtext span:first-child {
    position: relative;
}

.revealContent #hero .layout .caption:hover .playtext span:first-child {
    -webkit-transform: translate3d(0px, -100%, 0px);
    transform: translate3d(0px, -100%, 0px);
    opacity: 1;
}

#hero .layout .caption span.shadow {
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transform: translate3d(0px, 100%, 0px);
    transform: translate3d(0px, 100%, 0px);
    opacity: 0;
}

.revealContent #hero .layout .caption:hover .playtext span.shadow {
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
    opacity: 1;
}

#hero .mute {
    position: absolute;
    width: 33px;
    height: 33px;
    top: 40px;
    right: -50px;
    transition-delay: 1s;
}

.revealContent #hero .mute {
    right: 50px;
}

#hero .mute img {
    position: absolute;
    top: 0;
}

#hero .mute img.on {
    left: 2px;
}

#hero:not(.muted) .mute img.off,
#hero.muted .mute img.on {
    opacity: 0;
}

#introSlider .swiper-pagination {
    bottom: 5.75vw;
    max-width: var(--container);
    right: 0;
    margin: 0 auto;
    display: flex;
}

#introSlider .swiper-pagination .box.swiper-pagination-bullet {
    width: 7.7vw;
    height: 3px;
    border-radius: 1px;
    background: #d9d9d9;
    position: relative;
    opacity: 1;
}

#introSlider .swiper-pagination .box.swiper-pagination-bullet:after {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    display: block;
    background: var(--black);
    border-radius: 1px;
}

#introSlider
    .swiper-pagination
    .box.swiper-pagination-bullet.swiper-pagination-bullet-active:after {
    animation-name: slider;
    animation-duration: 12s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

@keyframes slider {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

#introSlider {
    border-bottom: 2px solid var(--black);
}

#introSlider .intro-slider {
    height: 47vw;
    background: var(--white);
}

#introSlider .intro-slider .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left;
}

#introSlider .intro-slider .slide-content {
    width: 100%;
    max-width: var(--container);
    display: flex;
    flex-direction: column;
}

#introSlider h2 .mobile {
    display: none;
}

#introSlider .intro-slider .slide-content > *:not(h2) {
    max-width: 43vw;
    opacity: 0;
    -webkit-transform: translate3d(0px, 50px, 0px);
    transform: translate3d(0px, 50px, 0px);
}

#introSlider
    .intro-slider
    .swiper-slide.swiper-slide-active
    .slide-content.is-inview
    > :not(h2) {
    opacity: 1;
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

#introSlider
    .intro-slider
    .swiper-slide:not(.swiper-slide-active)
    .slide-content.is-inview
    > *:not(h2) {
    transition-delay: 0s !important;
}

#introSlider .intro-slider .slide-content > h2 {
    margin-top: 2.3vw;
    margin-bottom: 3.1vw;
}

#introSlider
    .intro-slider
    .swiper-slide.swiper-slide-active
    .slide-content.is-inview
    h2
    span {
    transform: none;
}

#introSlider
    .intro-slider
    .swiper-slide:not(.swiper-slide-active)
    .slide-content.is-inview
    h2
    span {
    transition-delay: 0s !important;
}

#introSlider .intro-slider .swiper-slide a {
    color: var(--orange);
    text-decoration: underline;
}

#introSlider .swiper-button-next,
#introSlider .swiper-button-prev,
.locations-slider .swiper-button-next,
.locations-slider .swiper-button-prev {
    height: 50%;
    left: unset;
    right: 0;
    width: 5.5vw;
    border-left: 1px solid var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    z-index: 1;
    background: var(--white);
}

.locations-slider .swiper-button-next,
.locations-slider .swiper-button-prev {
    border-right: 0;
    border-left: 1px solid var(--black);
}

.locations-slider .swiper-button-next {
    border-top: 1px solid var(--black);
}

.locations-slider .swiper-button-prev {
    border-bottom: 1px solid var(--black);
}

.locations-slider .swiper-button-next.swiper-button-disabled,
.locations-slider .swiper-button-prev.swiper-button-disabled {
    opacity: 1;
    pointer-events: visible;
}

#introSlider .swiper-button-next:hover,
#introSlider .swiper-button-prev:hover,
.locations-slider .swiper-button-next:hover,
.locations-slider .swiper-button-prev:hover {
    background: var(--black);
}

.locations-slider .swiper-button-next.swiper-button-disabled:hover,
.locations-slider .swiper-button-prev.swiper-button-disabled:hover {
    background: var(--white);
}

#introSlider .swiper-button-next,
.locations-slider .swiper-button-next {
    top: 0;
    border-bottom: 1px solid var(--black);
}

#introSlider .swiper-button-next:after,
#introSlider .swiper-button-prev:after,
.locations-slider .swiper-button-next:after,
.locations-slider .swiper-button-prev:after {
    font-size: 1.2vw;
    color: var(--black);
}

#introSlider .swiper-button-next:hover:after,
#introSlider .swiper-button-prev:hover:after,
.locations-slider .swiper-button-next:hover:after,
.locations-slider .swiper-button-prev:hover:after {
    color: var(--white);
}

.locations-slider .swiper-button-next.swiper-button-disabled:after,
.locations-slider .swiper-button-prev.swiper-button-disabled:after {
    opacity: 0.2;
}

.locations-slider .swiper-button-next.swiper-button-disabled:hover:after,
.locations-slider .swiper-button-prev.swiper-button-disabled:hover:after {
    color: var(--black);
}

.locations-slider .swiper-pagination {
    bottom: 0;
    transform: translate3d(0, 100%, 0);
    padding-left: 10.75vw;
    padding-top: 1vw;
    text-align: left;
}

#eyeBanner {
    position: relative;
    width: 100%;
    height: 37vw;
    background: var(--blue);
    overflow: hidden;
}

#eyeBanner .eye-content {
    position: absolute;
    height: 100%;
    width: 125vw;
    display: flex;
}

#eyeBanner .eye-content.toggle {
    -webkit-transform: translate3d(-25vw, 0px, 0px);
    transform: translate3d(-25vw, 0px, 0px);
}

#eyeBanner .eye-content > * {
    height: 100%;
    display: flex;
}

#eyeBanner .eye-content .primary {
    width: 95vw;
}

#eyeBanner .eye-content .secondary {
    width: 30vw;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 5vw;
    opacity: 0;
    pointer-events: none;
}

#eyeBanner .eye-content.toggle .secondary {
    opacity: 1;
    pointer-events: visible;
}

#eyeBanner .eye-content .primary > * {
    display: flex;
}

#eyeBanner .eye-content .primary .image {
    justify-content: center;
    align-items: center;
    width: 50vw;
}

#eyeBanner .eye-content .primary .title {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 45vw;
    position: relative;
}

#eyeBanner .eye-content .primary .image .lottie {
    width: 30vw;
}

#eyeBanner .eye-content .primary .image img {
    width: 30vw;
    height: auto;
    display: block;
    opacity: 0;
    transform: scale(0.1);
    transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -moz-transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    -o-transition: all 0.8s cubic-bezier(0.645, 0.045, 0.355, 1);
    transition-delay: 0.8s;
}

#eyeBanner .eye-content .primary .image.is-inview img {
    opacity: 1;
    transform: scale(1);
}

#eyeBanner .eye-content.toggle .primary .title a {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#eyeBanner .eye-content .primary .title a {
    margin-top: 1.15vw;
    width: 2.3vw;
    height: 2.3vw;
    position: relative;
}

#eyeBanner .eye-content .primary .title a img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(-50%, -50%, 0px) scale(1);
    transform: translate3d(-50%, -50%, 0px) scale(1);
}

#eyeBanner .eye-content .primary .title a:hover img {
    -webkit-transform: translate3d(-50%, -50%, 0px) scale(1.25);
    transform: translate3d(-50%, -50%, 0px) scale(1.25);
}

#eyeBanner .logos {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

#eyeBanner .logos img {
    display: block;
    width: auto;
    height: 3vw;
    margin-top: 1.5vw;
}

#eyeBanner .logos img:not(:first-child) {
    margin-left: 1.5vw;
}

#clients {
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

#clients:after {
    content: "";
    display: block;
    width: 100%;
    position: relative;
    padding-bottom: 44%;
}

#clients > * {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

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

#clients .clients-content {
    padding: 8.8vw;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#clients h2 {
    max-width: 60vw;
}

#clients div.inter {
    max-width: 45vw;
    margin-top: 3.85vw;
    margin-bottom: 4vw;
}

#clients .clients-slider .swiper-slide {
    width: auto !important;
}

#clients .clients-slider .swiper-slide > .client-logo {
    width: auto;
    padding: 3.5vw;
    height: auto;
    min-height: 10vw;
    border: 2px solid #323232;
    display: flex;
    justify-content: center;
    align-items: center;
}

#clients .clients-slider .swiper-slide > * {
    opacity: 0.2;
}

#clients .clients-slider .swiper-slide.swiper-slide-prev > *,
#clients .clients-slider .swiper-slide.swiper-slide-next > * {
    opacity: 0.4;
}

#clients .clients-slider .swiper-slide.swiper-slide-active > * {
    opacity: 1;
}

#clients .clients-slider .swiper-slide > a:hover {
    opacity: 0.8;
}

#clients .clients-slider .swiper-slide > .client-logo img {
    display: block;
}

#tabs {
    background: var(--white);
    padding: 12.3vw 0 10.75vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 2px solid var(--black);
}

#tabs .tabs-intro {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: var(--container);
}

#tabs .tabs-intro > * {
    max-width: 34.6vw;
}

#tabs .tabs-intro h2 {
    margin-top: 1.5vw;
    margin-bottom: 2.3vw;
}

#tabs .tabs-content {
    display: flex;
    flex-direction: column;
    margin-top: 5.75vw;
    width: 100%;
    max-width: var(--container);
}

.mobileSpan {
    display: none;
}

.tabs-cat {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 3.1vw;
}

.tabs-cat .cat:not(.active) {
    opacity: 0.2;
}

.tabs-cat .cat.active span.orange {
    color: var(--orange);
}

.tabs-toggler {
    margin: 0 2vw;
    border: 2px solid var(--black);
    width: 7vw;
    height: 3.6vw;
    border-radius: 1.7vw;
    padding: 0.4vw;
    position: relative;
}

.tabs-toggler span {
    display: block;
    height: -webkit-calc(100% - 0.8vw);
    height: calc(100% - 0.8vw);
    width: -webkit-calc(2.6vw + 4px);
    width: calc(2.6vw + 4px);
    background: var(--black);
    position: absolute;
    top: 0.4vw;
    left: 0.4vw;
    border-radius: 1.3vw;
}

.tabs-toggler.activating span {
    width: 5.8vw;
}

.tabs-content.publisher .tabs-toggler span {
    left: unset;
    right: 0.4vw;
}

#tabs .tabs-panel {
    border: 2px solid var(--black);
}

.tabs-content.publisher .tabs-panel.adv,
.tabs-panel.publisher {
    display: none;
}

.tabs-content.publisher .tabs-panel.publisher {
    display: block;
}

#tabs .tab-entry {
    background: var(--white);
    color: var(--black);
    display: flex;
    justify-items: flex-start;
    align-items: center;
    padding: 1vw 3.4vw;
    position: relative;
}

#tabs .tab-entry:not(:last-child) {
    border-bottom: 2px solid var(--black);
}

#tabs .tab-entry.active {
    background: var(--black);
    color: var(--white);
}

.adv .tab-entry:first-child.active svg > g > g:nth-child(2) path,
.adv .tab-entry:first-child.active svg > g > g:nth-child(3) path,
.adv .tab-entry:nth-child(2).active svg > g > g:first-child path,
.adv .tab-entry:nth-child(3).active svg > g > g:not(:nth-child(2)) path,
.adv .tab-entry:nth-child(4).active svg > g > g:not(:nth-child(5)) path,
.publisher .tab-entry:first-child.active svg > g > g:first-child path,
.publisher
    .tab-entry:nth-child(2).active
    svg
    > g
    > g:first-child
    > g
    > g:not(:first-child)
    > g
    path,
.publisher .tab-entry:nth-child(3).active svg > g > g:not(:first-child) path,
.publisher .tab-entry:nth-child(4).active svg > g > g > g:nth-child(2) path {
    stroke: var(--white);
}

#tabs .tab-entry .pictos {
    position: relative;
    margin-right: 5vw;
    height: 6vw;
    width: 6vw;
}

#tabs .tab-entry.active .pictos {
    width: 8.8vw;
    height: 10vw;
}

#tabs .tab-entry .pictos img {
    height: 100%;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

#tabs .tab-entry .pictos img:last-child {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

#tabs .tab-entry.active pictos img:first-child {
    opacity: 0;
}

#tabs .tab-entry.active .pictos img:last-child {
    opacity: 1;
}

#tabs .tab-entry .arrow {
    display: block;
    width: 2.3vw;
    height: auto;
    -webkit-transform: rotate(90deg) scale(1);
    transform: rotate(90deg) scale(1);
    position: absolute;
    right: 4.6vw;
    top: 3vw;
}

#tabs .tab-entry:hover .arrow {
    -webkit-transform: rotate(90deg) scale(1.25);
    transform: rotate(90deg) scale(1.25);
}

#tabs .tab-entry.active .arrow {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

#tabs .tab-entry .text {
    width: 100%;
    max-width: 34vw;
}

#tabs .tab-entry .text .tab-text {
    overflow: hidden;
    height: 0;
    color: var(--white);
    opacity: 0;
}

#tabs .tab-entry.active .text .tab-text {
    opacity: 1;
    transition-delay: 0.35s;
}

#audience {
    padding: 9.23vw 0 17.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--black);
}

#audience .inner {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: var(--container);
}

#audience .inner h2 {
    margin-bottom: 3.5vw;
    width: 100%;
}

#audience .row {
    width: 100%;
    display: flex;
    position: relative;
}

#audience .column {
    width: 50%;
}

#audience .column > div.textFontSize1 {
    max-width: 30vw;
    margin-top: 2vw;
}

#audience .column > div.textFontSize1 h3 {
    font-size: 1.5vw;
    line-height: 1.2;
    margin-bottom: 1.75vw;
}

#audience .steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-items: center;
    margin-top: 5vw;
}

#audience .step {
    margin: 0.65vw 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

#audience .step.active {
    padding: 5vw 0 9.5vw;
}

#audience .step.active:first-child {
    padding-top: 0;
}

#audience .step:before,
#audience .step:after {
    content: "";
    display: block;
    background: url("../images/thin-arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 1vw;
    height: 3.8vw;
    position: absolute;
    opacity: 1;
    pointer-events: none;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
}

#audience .step.active:before,
#audience .step.active:after {
    transition-delay: 0.4s;
}

#audience .step:not(.active):before,
#audience .step:not(.active):after {
    opacity: 0;
}

#audience .step:before {
    top: 2vw;
}

#audience .step.active:before {
    top: 1vw;
}

#audience .step:first-child:before,
#audience .step:last-child:after {
    content: none;
}

#audience .step:after {
    bottom: 2vw;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

#audience .step.active:after {
    bottom: 1vw;
}

#audience a.stoggler {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: var(--black);
    font-size: 1.5vw;
    line-height: 1.2;
    padding: 1vw 1.85vw;
    border: 1px solid var(--black);
    border-radius: 3vw;
    display: inline-block;
}

#audience .step.active a.stoggler {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    color: var(--orange);
    border: 0;
}

#audience .step.active a.stoggler span {
    font-family: "Syne", sans-serif;
    text-transform: initial;
    font-size: 2.15vw;
}

#audience .step.active a.stoggler:before {
    opacity: 0 !important;
}

#audience .step.active a.stoggler span:first-child {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

#audience .step.active a.stoggler span:last-child {
    opacity: 1;
    transform: none;
}

#audience .step > div {
    width: 30vw;
    opacity: 0;
    position: absolute;
    bottom: 5.75vw;
    pointer-events: none;
}

#audience .step.active > div {
    opacity: 1;
    transition-delay: 0.4s;
}

#audience .step-image {
    position: relative;
    width: 100%;
}

#audience .column:first-child .step-image {
    display: none;
}

#audience .step-image:after {
    content: "";
    position: relative;
    display: block;
    width: 100%;
    padding-bottom: 124%;
}

#audience .step-image .step-picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
}

#audience .step-image .step-picture.active {
    opacity: 1;
}

#audience .step-image .step-picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

#banner {
    display: block;
    overflow: hidden;
    min-height: 55vw;
}

#banner .yolo {
    width: 100%;
    height: 100%;
}

#banner .background {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

#banner #stickyDiv {
    position: absolute;
    top: -100vh;
    bottom: -100vh;
    right: 0;
    left: 0;
}

#banner .background .img {
    position: absolute;
    top: -100vh;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
    -webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
}

#banner .background .img.show {
    opacity: 1;
}

#banner .banner-content {
    position: absolute;
    width: 100%;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--white);
    top: 0;
    left: 0;
    padding: 7.3vw 0 8vw;
}

#banner .banner-content h2 {
    max-width: 55vw;
}

#banner .banner-content .banner-text {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#banner .banner-content .banner-text h3 {
    max-width: 90vw;
    margin: 6.55vw 0 1.35vw;
    line-height: 1;
}

#banner .banner-content .banner-text > div {
    max-width: 32.3vw;
}

#banner span.pretext {
    position: absolute;
    bottom: 3vw;
    text-align: center;
    width: 100%;
    left: 0;
    right: 0;
    opacity: 0;
    color: var(--white);
    display: inline-block;
}

#banner span.pretext.is-inview {
    opacity: 0.55;
}

#beforeHorizontal {
    padding-top: 11.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

#beforeHorizontal .inner {
    width: 100%;
    max-width: var(--container);
    display: flex;
    flex-direction: column;
    align-items: center;
}

#beforeHorizontal .inner h2 {
    text-align: center;
}

#beforeHorizontal .inner img {
    -webkit-transform: rotate(90deg) translate3d(-120%, 0px, 0px);
    transform: rotate(90deg) translate3d(-120%, 0px, 0px);
    width: 7.7vw;
    height: auto;
    display: block;
    margin-top: 2vw;
}

#beforeHorizontal .inner img.is-inview {
    -webkit-transform: rotate(90deg) translate3d(0px, 0px, 0px);
    transform: rotate(90deg) translate3d(0px, 0px, 0px);
}

#beforeHorizontal .horizontal-header {
    width: 100%;
    display: flex;
}

#beforeHorizontal .horizontal-header .column {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

#beforeHorizontal .horizontal-header .column h3 {
    margin-top: 1.5vw;
}

#horizontal {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    top: 0;
    left: 0;
    opacity: 1;
}

#horizontal .pin-wrap {
    height: -webkit-calc(12vw + 40px);
    height: calc(12vw + 40px);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 85px 40px 0;
}

#horizontal .pin-wrap .horizontal-toggler {
    display: inline-block;
    padding: 0 5vw;
    float: left;
    position: relative;
}

#horizontal .pin-wrap .horizontal-toggler:first-child {
    padding-left: 0;
}

#horizontal .pin-wrap .horizontal-toggler:last-child {
    padding-right: 0;
}

#horizontal .pin-wrap .horizontal-toggler:before,
#horizontal .pin-wrap .horizontal-toggler:after {
    content: "";
    display: block;
    background: url(../images/thin-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 1vw;
    height: 3.8vw;
    position: absolute;
    opacity: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    top: 0.25vw;
}

#horizontal .pin-wrap .horizontal-toggler.active:before,
#horizontal .pin-wrap .horizontal-toggler.active:after {
    opacity: 1;
    transition-delay: 0.4s;
}

#horizontal .pin-wrap .horizontal-toggler:before {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    left: 25px;
}

#horizontal .pin-wrap .horizontal-toggler.active:before {
    left: 0;
}

#horizontal .pin-wrap .horizontal-toggler:first-child:before {
    content: none;
}

#horizontal .pin-wrap .horizontal-toggler:after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 25px;
}

#horizontal .pin-wrap .horizontal-toggler.active:after {
    right: 0;
}

#horizontal .pin-wrap .horizontal-toggler:last-child:after {
    content: none;
}

#horizontal .pin-wrap .horizontal-toggler a {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    color: var(--black);
    font-size: 1.5vw;
    line-height: 1.2;
    padding: 1vw 0;
    border: 1px solid var(--black);
    border-radius: 3vw;
    display: flex;
    width: auto;
    text-align: center;
}

#horizontal .pin-wrap .horizontal-toggler a.togglerMobile {
    display: none;
}

#horizontal .pin-wrap .horizontal-toggler.active a {
    font-family: "Syne", sans-serif;
    font-weight: 700;
    font-size: 2vw;
    color: var(--orange);
    border: 0;
}

#horizontal .pin-wrap .horizontal-toggler.active a span {
    font-family: "Syne", sans-serif;
}

#horizontal .pin-wrap .horizontal-toggler a:before {
    background: var(--blue);
}

#horizontal .pin-wrap .horizontal-toggler.active a:before {
    opacity: 0 !important;
}

#horizontal .pin-wrap .horizontal-toggler.active a span:first-child {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

#horizontal .pin-wrap .horizontal-toggler.active a span:last-child {
    opacity: 1;
    transform: none;
}

#horizontal .background-video {
    position: fixed;
    width: 100%;
    height: -webkit-calc(100% - (12vw + 40px));
    height: calc(100% - (12vw + 40px));
    left: 0;
    bottom: 0;
    opacity: 0;
}

#horizontal .background-video {
    position: absolute;
}

#horizontal .background-video.load {
    opacity: 1;
}

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

#horizontal .background-video .captions {
    width: 100%;
    max-width: var(--container);
    position: absolute;
    bottom: 5.75vw;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: var(--white);
}

.horizontal-caption {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
}

.horizontal-caption.active {
    opacity: 1;
    pointer-events: visible;
}

.horizontal-caption:first-child {
    padding-bottom: 11.5vw;
}

.horizontal-caption .big {
    font-size: 6.3vw;
    line-height: 0.9;
    display: inline-block;
    width: auto;
}

.horizontal-caption:not(.active) .big span.revealOpacity.is-inview {
    transform: translate3d(0px, 100%, 0px);
}

.horizontal-caption .small {
    opacity: 0;
    width: 21.7vw;
    position: absolute;
}

.horizontal-caption:nth-child(1) .small {
    left: 23.7vw;
    top: 8vw;
}

.horizontal-caption:nth-child(2) .small {
    left: 37vw;
    bottom: -1vw;
}

.horizontal-caption:nth-child(3) .small {
    width: 18vw;
    left: 44vw;
    bottom: -1vw;
}

.horizontal-caption:nth-child(4) .small {
    left: 37vw;
    top: 0;
}

.horizontal-caption.active .small {
    transition-delay: 0.25s;
    opacity: 1;
}

#intel {
    background: var(--black);
    color: var(--white);
    padding: 12.5vw 0 10.5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#intel > * {
    width: 100%;
    max-width: var(--container);
}

#intel h2 {
    max-width: 100%;
}

#intel .separator {
    background: var(--orange);
    height: 5px;
    width: 9.25vw;
    display: block;
    margin: 3.45vw 0;
}

#intel a.intel-toggler {
    display: none;
}

#intel .intel-body {
    display: flex;
    justify-content: space-between;
}

#intel .intel-body > * {
    width: 50%;
}

#intel .intel-body > div:first-child {
    max-width: 31vw;
}

#intel .intel-body .intel-video {
    width: 38vw;
    border-radius: 7px;
    overflow: hidden;
    transition-delay: 0.5s;
    position: relative;
}

#intel .intel-body .intel-video:after {
    content: "";
    display: block;
    width: 100%;
    position: relative;
    padding-bottom: 56%;
}

#intel .intel-body .videoLoader {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#intel .intel-body .videoLoader video,
#intel .intel-body picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

#intel .intel-body .videoLoader img,
#videos .swiper-slide img.pulseImage {
    position: absolute;
    width: 4.3vw;
    height: auto;
    display: block;
    bottom: 2.1vw;
    left: 2.1vw;
    -webkit-transform: scale(1);
    transform: scale(1);
}

#videos .swiper-slide img.pulseImage {
    /* TODO: remove display none when asked for creative video slider */
    display: none;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
    top: 50%;
    left: 50%;
    transform-origin: center center;
}

#videos .swiper-slide a:hover img.pulseImage {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1.25);
    transform: translate3d(-50%, -50%, 0) scale(1.25);
}

#intel .intel-body .videoLoader:hover img {
    -webkit-transform: scale(1.25);
    transform: scale(1.25);
}

#videos {
    background: var(--white);
    border-bottom: 2px solid var(--black);
    padding: 11.5vw 0 16.5vw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#videos .videos-header {
    width: 100%;
    max-width: var(--container);
    margin-bottom: 4.6vw;
}

#videos .videos-header h2 {
    margin-top: 1.7vw;
    margin-bottom: 2.5vw;
    max-width: 53.85vw;
}

#videos .videos-header h2 strong,
#creative h2 strong {
    color: var(--orange);
}

#videos .videos-header > div {
    max-width: 40.4vw;
}

#videos .video-slider .swiper-slide {
    width: auto !important;
}

#videos .video-slider .swiper-slide > a {
    width: 46vw;
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid var(--black);
    border-radius: 8px;
    cursor: default;
}

#videos .video-slider .swiper-slide:not(.swiper-slide-active) {
    pointer-events: none;
}

#videos .video-slider .swiper-slide:not(.swiper-slide-active) > a {
    filter: grayscale(1);
}

#videos .video-slider .swiper-slide > a:after {
    content: "";
    display: block;
    width: 100%;
    position: relative;
    padding-bottom: 56.5%;
    pointer-events: none;
}

#videos .video-slider .swiper-slide > a img {
    pointer-events: none;
}

#videos .video-slider .swiper-slide > a img:not(.pulseImage) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#videos
    .video-slider
    .swiper-slide:not(.swiper-slide-active)
    > a
    img.pulseImage {
    opacity: 0;
}

#creative {
    background: var(--white);
    padding-bottom: 13vw;
    display: flex;
    justify-content: center;
    border-bottom: 2px solid var(--black);
}

#creative .inner {
    width: 100%;
    max-width: var(--container);
    display: flex;
    justify-content: space-between;
}

#creative .inner .column:first-child {
    width: 32vw;
    display: flex;
    position: relative;
    flex-direction: column;
}

#creative .inner .column:last-child {
    width: 46vw;
    padding-top: 11.5vw;
}

#creative #stickyCreative {
    width: 100%;
    height: 100%;
}

#creative .stickyContent {
    width: 100%;
    padding-top: 11.5vw;
}

#creative h2 {
    margin-bottom: 3.45vw;
}

#creative .column:first-child .stickyContent > div {
    max-width: 27vw;
}

#creative .inner .column:first-child .stickyContent > .text-line:last-child {
    margin-top: 3vw;
}

#creative .inner .column:first-child img {
    width: 7.7vw;
    height: auto;
    display: block;
    transform: translate3d(-100%, 0px, 0px);
}

#creative .inner .column:first-child img.is-inview {
    transform: translate3d(-16%, 0px, 0px);
}

#creative .creative-image {
    width: 100%;
    position: relative;
}

#creative .creative-image:not(:last-child) {
    margin-bottom: 2.7vw;
}

#creative .creative-image:after {
    content: "";
    display: block;
    position: relative;
    width: 100%;
    padding-bottom: 60%;
}

#creative .creative-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

#about {
    background: var(--blue);
    padding: 8vw 0 11.5vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-bottom: 2px solid var(--black);
}

#about .inner,
#locations .inner {
    width: 100%;
    max-width: var(--container);
    margin-bottom: 4.6vw;
}

#about .inner > *:not(a) {
    max-width: 39vw;
}

#about .inner h2 {
    margin-bottom: 2.4vw;
}

#about .inner > div.inter .mobile {
    display: none;
}

#about .inner a {
    font-size: 1.15vw;
    line-height: 1.2;
    color: var(--black);
    border: 1px solid var(--black);
    border-radius: 3vw;
    padding: 0.6vw 1.85vw;
    width: 23vw;
    margin-top: 5vw;
}

#about .inner a img {
    display: block;
    width: 2.46vw;
    height: auto;
    margin-right: 0.65vw;
    z-index: 1;
}

#about .teamBlock {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

#about .teamBlock .panel {
    width: 100%;
    max-width: 88.5vw;
    display: flex;
    flex-direction: column;
}

.panel .top {
    padding: 7vw 5.4vw 2.7vw;
    position: relative;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.panel .bottom {
    background: var(--black);
    color: var(--white);
    padding: 2.7vw 5.4vw;
}

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

.panel .top .background.mobile {
    display: none;
}

.panel .top .team-text,
.panel .bottom > div {
    position: relative;
    max-width: 25vw;
}

.panel .top .team-text span {
    max-width: 20vw;
    display: block;
    line-height: 1;
    margin-bottom: 2.15vw;
}

.panel .top .background figure {
    width: 100%;
    height: 100%;
    background-repeat: no-repeat !important;
    background-position: 50% !important;
    display: block;
}

.teamBlock > a {
    position: absolute;
    right: 10.75vw;
    bottom: 3.85vw;
    color: var(--white);
    border: 1px solid var(--white);
    border-radius: 3vw;
    padding: 1vw 1.85vw;
    font-size: 1.15vw;
    line-height: 1.2;
}

.teamBlock > a:hover {
    background: var(--white);
    color: var(--black);
}

#locations {
    background: var(--white);
    padding: 11.5vw 0;
    overflow-x: hidden;
}

#locations .inner {
    margin: 0 auto;
    margin-bottom: 5.4vw;
}

#locations .inner > * {
    max-width: 36vw;
}

#locations .inner h2 {
    margin-bottom: 1.9vw;
}

#locations .locations-slider {
    height: 25.85vw;
    padding-left: 10.75vw;
    padding-right: -webkit-calc(5.5vw + 40px);
    padding-right: calc(5.5vw + 40px);
    position: relative;
}

#locations .swiper-slide {
    width: 24.25vw !important;
    height: 100%;
    position: relative;
}

#locations .swiper-slide .slide-content,
#locations .swiper-slide .cover {
    position: relative;
    width: 100%;
    height: 100%;
}

#locations .swiper-slide .cover {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.5vw 2vw;
}

#locations .swiper-slide .slide-content:hover .cover {
    height: 50%;
}

#locations .swiper-slide .cover .poster {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#locations .swiper-slide .cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#locations .swiper-slide .cover > div {
    position: relative;
    color: var(--white);
}

#locations .swiper-slide .cover > div.cross {
    display: none;
}

#locations .swiper-slide .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
}

#locations .swiper-slide .info img {
    -webkit-transform: rotate(90deg) translate3d(-2vw, 0px, 0px);
    transform: rotate(90deg) translate3d(-2vw, 0px, 0px);
    width: 3vw;
    height: 3vw;
    display: block;
    margin-bottom: 0.5vw;
    opacity: 0;
    transition-delay: 0.5s;
}

#locations .swiper-slide .slide-content:hover .info img {
    opacity: 1;
    -webkit-transform: rotate(90deg) translate3d(0px, 0px, 0px);
    transform: rotate(90deg) translate3d(0px, 0px, 0px);
}

#locations .swiper-slide .info > div {
    opacity: 0;
    transition-delay: 0.85s;
}

#locations .swiper-slide .slide-content:hover .info > div {
    opacity: 1;
}

#locations .swiper-slide .info p:not(:last-child) {
    margin-bottom: 15px;
}

#locations .swiper-slide .info strong {
    font-weight: 400;
    font-size: 1.15vw;
    line-height: 1.2;
}

#locations .swiper-slide .info a {
    color: var(--black);
    text-decoration: underline;
}

#footerBanner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8.46vw 0 6.9vw;
    background: var(--black);
    color: var(--white);
}

#footerBanner .background {
    position: absolute;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat !important;
    background-size: cover !important;
}

#footerBanner .inner {
    width: 100%;
    max-width: var(--container);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

#footerBanner .inner > * {
    max-width: 36.9vw;
    display: inline-block;
}

#footerBanner .inner > *.text-line span {
    display: inline-block;
}

#footerBanner .inner > span:first-child {
    margin-bottom: 5.77vw;
}

#footerBanner .inner > div {
    font-size: 1.38vw;
    margin-top: 7.7vw;
}

#footerBanner a {
    color: var(--white);
    text-decoration: underline;
}

#footerBanner a:hover {
    opacity: 0.5;
}

#footer {
    height: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    color: var(--black);
    padding: 0 40px;
    position: relative;
    font-size: 1.23vw;
    line-height: 1;
}

#footer .footer-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0px);
    transform: translate3d(-50%, -50%, 0px);
    width: 215px;
}

#footer .footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}

#footer .social a {
    margin-left: 20px;
}

#footer .menu a {
    margin-left: 5px;
}

#footer a {
    color: var(--black);
}

#footer a:not(.footer-logo):hover {
    opacity: 0.5;
}

/* VIDEO CONTAINER */
.videoContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    background: var(--white);
    pointer-events: none;
    -webkit-transform: translate3d(100%, 0px, 0px);
    transform: translate3d(100%, 0px, 0px);
}

.videoContainer.show {
    transform: none;
    pointer-events: visible;
}

.videoContainer .video-close {
    position: absolute;
    top: 22px;
    left: 40px;
    border-radius: 50%;
    -webkit-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
    width: 40px;
}

.videoContainer .video-close:hover {
    -webkit-transform: rotate(45deg) scale(1.25);
    transform: rotate(45deg) scale(1.25);
}

.videoContainer .video-close img {
    width: 100%;
    height: auto;
    display: block;
}

.videoContainer .videoBlock {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.videoContainer .videoBlock.active {
    opacity: 1;
}

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

/* LOCOMOTIVE */
.c-scrollbar {
    z-index: 50;
    pointer-events: none;
}

/* LOADING */
#loadingLayout {
    position: fixed;
    z-index: 99;
    background: var(--blue);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.revealContent #loadingLayout {
    transform: translate3d(0px, -150%, 0px);
}

/* LOCOMOTIVE */
html:not(.has-scroll-smooth) #banner {
    max-height: 64vh;
}

html:not(.has-scroll-smooth) #banner .background .img {
    top: 0;
}

/* ANIMATIONS */
@keyframes pulse1 {
    0% {
        transform: scale(1);
    }
    60% {
        transform: scale(1);
    }
    70% {
        transform: scale(1.25);
    }
    80% {
        transform: scale(1.1);
    }
    90% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes pulse2 {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 104, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 104, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 104, 0, 0);
    }
}

.revealContent #hero .mute {
    animation: pulse1 2s infinite;
}

.pulseImage {
    box-shadow: 0 0 0 rgba(255, 104, 0, 1);
    animation: pulse2 2s infinite;
    border-radius: 50%;
}

a:hover .pulseImage {
    animation: pulse2 0.62s infinite;
}

/* LEGAL */
#legal {
    padding-top: 1.75vw;
    padding-bottom: 8.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid var(--black);
}

#legal .inner {
    transition-delay: 1s;
    width: 52%;
    margin: 0 auto;
}

#legal h1 {
    margin-bottom: 3vw;
}

#legal h2,
#legal h3 {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 1.25vw;
    margin-top: 3vw;
}

#legal p:not(:last-child) {
    margin-top: 1.25vw;
}

#e404 {
    height: calc(100vh - 150px - 90px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#e404 .title {
    font-size: 8rem;
}

#e404 .subtitle {
    text-transform: uppercase;
}

#e404 .content {
    margin-top: 2rem;
    font-size: 1rem;
}

#e404 .content a {
    font-weight: bold;
    text-decoration: none;
    color: inherit;
}



#layerAcceptCookie {
    position: fixed;
    bottom: 20px;
    right: 40%;
    width: 20%;
    z-index: 340;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    font-size: 16px;
    line-height: 21px;
    font-weight: 400;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .2s ease-in, visibility .2s ease-in;
    transition: opacity .2s ease-in, visibility .2s ease-in;
}

#layerAcceptCookie p a {
    color: #FF8400;
}

#layerAcceptCookie .button {
    text-align: center;
    width: 32%;
    display: inline-block;
    background-color: #FF8400;
    color: #fff;
    border-radius: 2px;
    padding: 13px 0;
    margin-top: 30px;
}

#layerAcceptCookie .accept-ck:hover {
    text-decoration: none;
}

#layerAcceptCookie.visible {
    opacity: 1;
    visibility: visible;
}

#cookie_selector table{
    width: 100%;
    border-bottom: 1px solid;
    margin-bottom: 20px;
}

#cookie_selector table th{
    text-align: left;
    font-size: x-large;
    line-height: 50px;
    font-weight: bolder;
}

#layerAcceptCookie .link_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#cookie_selector.hidden,
#cookie_text.hidden,
#cookieSelctor .hidden
{
    display: none;
}

@media screen and (max-width: 600px) {
    #layerAcceptCookie {
        right: 0;
        max-width: 100%;
    }
}
