@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');

/* ===== BASE ===== */

body {
    font: 13px Helmet, Freesans, sans-serif;
}

html {
    overflow-y: auto;
}

body,
select,
input,
textarea {
    color: #333;
}

a {
    color: #03f;
}

a:hover {
    color: #69f;
}

::-moz-selection {
    background: #f35d14;
    color: #fff;
    text-shadow: none;
}

::selection {
    background: #f35d14;
    color: #fff;
    text-shadow: none;
}


/*	j.mp/webkit-tap-highlight-color */

a:link {
    -webkit-tap-highlight-color: #f35d14;
}

ins {
    background-color: #f35d14;
    color: #000;
    text-decoration: none;
}

mark {
    background-color: #f35d14;
    color: #000;
    font-style: italic;
    font-weight: bold;
}


/* Mozilla dosen't style placeholders by default */

input:-moz-placeholder {
    color: #a9a9a9;
}

textarea:-moz-placeholder {
    color: #a9a9a9;
}

blockquote {
    padding: 16px;
    background: #eee;
}


/* ===== LAYOUT ===== */

div.wrapper {
    background-image: url('/assets/img/bg/BG_C_16-9.jpg');
    background-position: -100% center;
    background-size: cover;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
}


/* ===== ORANGE TOP ELEMENT ===== */

#orange {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
}

#logo {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(45%);
    z-index: 100;
    width: 100vw;
    height: 4.94vw;
    background-image: url(https://jobblenne.test.reon.digital/assets/css/../img/logo.png);
    background-size: auto 100%;
    background-position: center center;
    display: block;
    background-repeat: no-repeat;
}


/* ===== BOTTOM BUTTON ===== */

.scrollMe {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 232px;
    height: 60px;
    background-image: url('../img/gorgessen_v2.png');
    background-size: contain;
    background-position: bottom center;
    background-repeat: no-repeat;
    z-index: 600;
    cursor: pointer;
    transition: bottom 0.7s ease-out;
    transition-delay: 0.5s;
}

.infoButton {
    position: absolute;
    bottom: 9px;
    right: 12px;
    background-image: url('../img/info.svg');
    background-size: contain;
    background-position: bottom center;
    width: 28px;
    height: 28px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

body.preintro {
    bottom: -60px;
}

.scrollMe span {
    color: #fff;
    text-align: center;
    display: block;
    font-family: 'Century Gothic';
    font-weight: bold;
    font-size: 29px;
    line-height: 60px;
}


/* ===== RADIAL GLOW ===== */

.glowSpot {
    position: absolute;
    width: 100vw;
    height: 100vw;
    background: rgba(255, 255, 255, 0);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 65%);
    top: 20%;
    z-index: 2;
    pointer-events: none;
}


/* ===== ARROWS NAVIGATION ===== */

.arrowNav {
    position: absolute;
    top: 50%;
    width: 146px;
    background-repeat: no-repeat;
    height: 106px;
    display: block;
    background-image: url('../img/arrows.svg');
    background-size: contain;
    background-position: center center;
    z-index: 52;
    cursor: pointer;
    opacity: 0.75;
    transition: left 0.6s ease-out, right 0.6s ease-out, opacity 0.5s linear;
}

.arrowNav.left {
    left: 10px;
    transform: translateY(-50%);
}

body.preintro .arrowNav.left {
    left: -120px;
}

.arrowNav.right {
    right: 30px;
    transform: translateY(-50%) rotate(180deg);
}


/* --- Cookie consent --- */

.cookie-policy {
    position: absolute;
    bottom: -65px;
    display: none;
    padding: 8px 10px 5px;
    width: 700px;
    max-width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    align-items: center;
    box-sizing: border-box;
    z-index: 10000;
    transition: bottom 0.5s;
    transition-timing-function: ease-out;
}

.cookie-policy.visible {
    bottom: 0;
}

.cookie-policy__content {
    flex-grow: 1;
    padding-right: 25px;
    line-height: 1.4;
}

.cookie-policy__content a {
    color: white;
    font-weight: bold;
}

.cookie-policy__continue {
    padding: 10px 20px;
    margin-right: 15px;
    border: 1px solid white;
    border-radius: 40px;
    text-decoration: none;
    color: #fff;
}

.cookie-policy__deny {
    text-decoration: none;
    padding: 10px 0px;
    color: #dedede;
    min-width: 100px;
    text-align: center;
    margin-right: 5px;
    font-size: 90%;
}

.cookie-policy__deny:focus,
.cookie-policy__deny:hover {
    color: white;
    text-decoration: underline;
}

.cookie-policy__continue:focus,
.cookie-policy__continue:hover {
    background-color: white;
    color: #333;
}

.cookie-policy__learn {
    display: block;
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.5);
}

.cookie-policy__learn:focus,
.cookie-policy__learn:hover {
    color: #fff;
}

@media screen and (max-width: 560px) {
    .cookie-policy {
        text-align: center;
        width: 100%;
        padding-bottom: 0;
        bottom: -120px;
    }
    .cookie-policy .cookie-policy__content {
        margin-bottom: 15px;
        text-align: left;
    }
    .cookie-policy .cookie-policy__continue {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .cookie-policy {
        flex-direction: column;
    }
    p.cookie-policy__content br {
        display: none;
    }
    .cookie-policy .cookie-policy__continue {
        position: absolute;
        bottom: 12px;
        left: 10px;
        margin-bottom: 0px;
        padding: 6px 10px;
    }
    .cookie-policy .cookie-policy__deny {
        position: absolute;
        bottom: 13px;
        left: 110px;
        padding: 6px 0px;
    }
    .cookie-policy .cookie-policy__content {
        margin-bottom: 50px;
    }
}


/* --- MEdia queries --- */

@media (min-width: 768px) {
    .arrowNav.right:hover {
        opacity: 1;
        animation: wiggleRight 0.8s;
        animation-iteration-count: infinite;
    }
    @keyframes wiggleRight {
        10% {
            right: 30px;
        }
        50% {
            right: 10px;
        }
        90% {
            right: 30px;
        }
    }
    .arrowNav.left:hover {
        opacity: 1;
        animation: wiggleLeft 0.8s;
        animation-iteration-count: infinite;
    }
    @keyframes wiggleLeft {
        10% {
            left: 10px;
        }
        50% {
            left: -10px;
        }
        90% {
            left: 10px;
        }
    }
}

body.preintro .arrowNav.right {
    right: -110px;
}


/* ===== NAVIGATION WITH SMALL IMAGES ===== */

.navigation {
    position: absolute;
    bottom: 3%;
    z-index: 50;
    width: 100vw;
    height: 20%;
    left: 50%;
    transform: translateX(-50%);
    transition: bottom 0.7s ease-out;
    margin-left: 0;
    overflow: hidden;
}

body.preintro .navigation {
    bottom: -21%;
}

.navigation .slider {
    width: 70vw;
    margin: 0 auto;
    overflow: hidden;
}

.navigation .thumbnail {
    width: 100%;
    height: 6vw;
    background-size: cover;
    background-position: center center;
    display: block;
    border-radius: 12px;
    margin: 0 0px;
    opacity: 0.62;
    filter: saturate(0.8);
    transition: opacity 0.2s, filter 0.2s;
    cursor: pointer;
}

.navigation .thumbnail:hover {
    opacity: 1;
    filter: saturate(1);
}

.navigation .thumbnail.active {
    opacity: 1;
    filter: saturate(1);
    box-shadow: 0 0 1vw rgb(0 0 0 / 30%);
}

.navigation .thumbnail h2 {
    font-size: 30px;
    color: black;
    background: white;
    font-weight: bold;
    text-align: center;
}

.navigation .carousel-cell {
    margin-left: 30px;
    width: calc(11.667vw - 30px);
    /* 1/6th of 70vw: the current width of .navigation, minus the margin */
}

.navigation .flickity-slider {
    margin-left: -5.9vw;
}

.navigation .flickity-viewport {
    overflow: visible !important;
    margin-left: 0%;
    position: relative;
}

.intro {
    display: none;
}

#is18v2 {
    display: none;
    z-index: 200;
    background: none;
    transition: top 0.7s;
}

#is18v2 .question h4 {
    color: white;
    font-size: 2.6vw;
    font-weight: normal;
    margin-bottom: 2vw;
}

#is18v2 .btn {
    color: #fff;
    cursor: pointer;
    font-size: 25px;
    font-weight: 400;
    line-height: 45px;
    margin: 0 0 2em;
    max-width: 190px;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    width: 100%;
}

@media (min-width: 600px) {
    #is18v2 .btn {
        margin: 0 1.5vw 0em;
    }
}

#is18v2 .btn:hover {
    text-decoration: none;
}

#is18v2 .btn-1 {
    background: transparent;
    font-weight: 100;
    display: inline-block;
}

#is18v2 .btn-1 svg {
    height: 45px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

#is18v2 .btn-1 rect {
    fill: none;
    stroke: #fff;
    stroke-width: 2;
    stroke-dasharray: 422, 0;
    transition: all 0.35s linear;
}

#is18v2 .btn-1:hover {
    background: rgba(225, 51, 45, 0);
    font-weight: 900;
    letter-spacing: 1px;
}

#is18v2 .btn-1:hover rect {
    stroke-width: 5;
    stroke-dasharray: 25, 410;
    stroke-dashoffset: 113;
    transition: all 1.05s cubic-bezier(0.19, 1, 0.22, 1);
}

#is18v2.visible {
    top: 3vw;
}

#logoHolder.upper {
    top: 39%;
}

body.blue.isChrome #svgHolder svg path {
    /* Only works in chrome. */
    transition: 0.6s;
    d: path("M1,0.262c0,0-0.174-0.11-0.5-0.11c-0.334,0-0.5,0.11-0.5,0.11V0h1V0.262z");
    transition-timing-function: ease-out;
}

body.isNotChrome.blue #texture {
    -webkit-clip-path: url(#svgPathSmall);
    clip-path: url(#svgPathSmall);
}

body.blue #svgHolder {
    background: transparent;
}


/*body.blue #logoHolder.upper {
    top: 7%;
    margin-left: -10vw;
}

body.blue #logoIcon {
    width: 4.5vw;
}

body.blue #logoText {
    font-size: 3vw;
    margin-left: 53.4vw;
    margin-top: 0;
}*/

body.blue #logoHolder.upper {
    top: 7%;
    margin-left: -59.4vw;
    transform: scale(0.5);
}

.intro .container p.p1,
.intro .container p.p2,
.intro .container .next {
    display: none;
    opacity: 0;
}


/* ===== RIGHT SIDE TEXT SECTION ===== */

#leaves {
    position: absolute;
    top: 36.5%;
    left: 35%;
    z-index: 2;
}

#leaves img {
    width: 13.5vw;
}

#textSection {
    position: absolute;
    z-index: 40;
    color: white;
    width: 50vw;
    left: 50vw;
    top: 33%;
    font-family: 'Century Gothic';
    text-shadow: 0 0 2vw rgb(0 0 0 / 30%);
    opacity: 1;
    /* transition: opacity 0.6s ease-out; */
    transition-delay: 0.3s;
}

body.preintro #textSection {
    opacity: 0;
}

#textSection h2 {
    font-size: 3vw;
    font-weight: bold;
    line-height: 3vw;
    text-shadow: 0 0 2vw rgb(0 0 0 / 30%);
    margin-bottom: 2vw;
    opacity: 0;
}

#textSection .explanation {
    padding-left: 1.6vw;
    padding-top: 0.4vw;
    padding-bottom: 0.4vw;
    font-size: 1.2vw;
    position: relative;
    opacity: 0;
}

#textSection .explanation .border {
    content: ' ';
    width: 3px;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
}

#textSection .explanation p {
    margin-bottom: 1vw;
    line-height: 120%;
    font-size: 18px;
}

#textSection .explanation p:last-of-type {
    margin-bottom: 0;
}

#textSection .text {
    display: none;
    position: absolute;
    pointer-events: none;
    width: 70%;
}

#textSection .text.active {
    display: block;
    pointer-events: initial;
}

#infoButton {
    position: absolute;
    z-index: 50;
    width: 10.8vw;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 10vw;
    top: 24%;
    left: 42%;
    cursor: pointer;
    height: 3.4vw;
    overflow: hidden;
}

#infoButton:before {
    content: ' ';
    width: 100%;
    position: absolute;
    height: 350%;
    background: white;
    opacity: 0;
    top: -126%;
    left: -35%;
    z-index: -1;
    transition: opacity 0.35s ease-out, transform 0.35s ease-out;
    border-radius: 100%;
    transform: scale(0);
}

#infoButton:hover:before {
    opacity: 1;
    transform: scale(1.8);
}

#infoButton img {
    width: 2.78vw;
    position: absolute;
    top: 0.25vw;
    left: 0.3vw;
    filter: brightness(2);
}

#infoButton span {
    font-family: 'Century Gothic';
    font-weight: bold;
    line-height: 3.1vw;
    font-size: 1.25vw;
    margin-left: 3.5vw;
}


/* ===== INFO POPUP ===== */

#popup {
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 5000;
    display: none;
}

#popup.visible {
    display: block;
    pointer-events: initial;
}

#popup .bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: opacity 0.3s;
    opacity: 0;
    transition-timing-function: ease-out;
    cursor: pointer;
}

#popup.visible .bg {
    opacity: 1;
}

#popup .modal {
    width: 46vw;
    height: auto;
    position: fixed;
    z-index: 200;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.2);
    background: #e5436a;
    border-radius: 1.6vw;
    box-shadow: 0 0 1vw rgb(0 0 0 / 30%);
    padding-bottom: 3.5vw;
    opacity: 0;
    margin-top: -30vh;
    transition: opacity 0.25s ease-out, margin 0.25s ease-out, transform 0.25s ease-out;
    transition-timing-function: ease-out;
}

#popup.visible .modal {
    opacity: 1;
    margin-top: 0;
    transform: translate(-50%, -50%) scale(1);
}

#popup .modal .header {
    padding-left: 3vw;
    padding-right: 1.2vw;
    padding-top: 1.5vw;
    padding-bottom: 1.5vw;
    min-height: 5vw;
}

#popup .modal .headerButton {
    border: 2px solid #fff;
    border-radius: 3vw;
    width: 13vw;
    position: relative;
    height: 2.6vw;
}

#popup .modal .headerButton img {
    position: absolute;
    width: 2.2vw;
    top: 0.15vw;
    left: 0.2vw;
    filter: brightness(3);
}

#popup .modal .headerButton span {
    color: #fff;
    font-family: 'Century Gothic';
    font-weight: bold;
    font-size: 0.9vw;
    line-height: 2.4vw;
    margin-left: 3vw;
}

#popup .modal .body {
    background: white;
    padding-left: 3vw;
    padding-right: 1.7vw;
    padding-top: 1.6vw;
    padding-bottom: 2vw;
}

#popup .modal .body p {
    font-size: 1.1vw;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #575659;
    margin-bottom: 1vw;
}

#popup .modal .body p strong {
    font-weight: 600;
    color: black;
    text-transform: uppercase;
}

.close {
    position: absolute;
    right: 1.2vw;
    top: 1.5vw;
    width: 2.3vw;
    height: 2.3vw;
    opacity: 1;
    border: 2px solid #fff;
    border-radius: 100%;
    cursor: pointer;
}

.close:hover {
    opacity: 1;
}

.close:before,
.close:after {
    position: absolute;
    left: 1.05vw;
    content: ' ';
    height: 1.3vw;
    width: 2px;
    top: 0.4vw;
    background-color: #fff;
}

.close:before {
    transform: rotate(45deg);
}

.close:after {
    transform: rotate(-45deg);
}


/* ===== CAROUSEL ===== */

.carouselBg {
    /* background: #a4d1f1; */
    background-image: url('/assets/img/bg/BG_C_16-9.jpg');
    background-position: right center;
    background-size: cover;
    position: absolute;
    z-index: 3;
    left: 0;
    top: 0;
    width: 38%;
    height: 100%;
    opacity: 1;
    transition: opacity 0.5s ease-out;
}

body.preintro .carouselBg {
    opacity: 0;
}

.carousel {
    position: absolute;
    width: 38%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 5;
    opacity: 1;
}

body.preintro .carousel {
    opacity: 0;
}

.carousel .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: left 1s, opacity 0.5s;
    pointer-events: none;
}

.carousel .slide .text {
    position: absolute;
    font-size: 3vw;
    line-height: 100%;
    color: white;
    top: 33%;
    font-family: 'Century Gothic';
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
    text-shadow: 0 0 2vw rgb(0 0 0 / 30%);
}

.carousel .slide .text br.mobileBreak {
    display: none;
}

.carousel .slide.active {
    pointer-events: initial;
    opacity: 1;
}

.carousel .slide.hidden {
    opacity: 0;
}


.carousel .slide.hidden.left {
    left: -100%;
}

.carousel .slide.hidden.right {
    left: 100%;
}

.carousel:has(.fullSlide.active) {
    z-index: 51;
    overflow: unset;
}

.carousel .fullSlide {
    z-index: 51;
    width: 100vw;
    background-position: center;
    background-size: cover;
}

.carousel .fullSlide .small-text {
    font-size: 2vw;
    line-height: 100%;
    color: white;
    font-family: 'Century Gothic';
    text-shadow: 0 0 2vw rgb(0 0 0 / 30%);
    text-align: center;
    margin-bottom: 70px;
    text-transform: none;
}
.carousel .fullSlide .text {
    text-transform: uppercase;
    text-align: center;
    width: 60% !important;
    left: 50%  !important;
}




/* Slide 1: Car */

.carousel .slide1 .image {
    position: absolute;
    width: 100%;
    top: 20%;
    left: 0;
    /* background: #a4d1f1; */
    height: 19vw;
    overflow: hidden;
}

.carousel .slide1 .image img {
    position: absolute;
    width: 100%;
}

.carousel .slide1 .image .smoke {
    /*mix-blend-mode: multiply;*/
}

.carousel .slide1.hidden .image {
    left: -135%;
}

.carousel .slide1.hidden.right .image {
    left: 103%;
}

.carousel .slide1.animating .image {
    transition: left 0.75s;
}

.carousel .slide1.hidden .text {
    left: -45%;
}

.carousel .slide1.hidden.right .text {
    left: 127%;
}

.carousel .slide1.animating .text {
    transition: left 0.95s;
}

.carousel .slide1 .image .smokeAnim {
    mix-blend-mode: darken;
    height: 210%;
    width: 110vh;
    position: absolute;
    transform: rotate( -70deg);
    top: -47%;
    left: -17%;
    z-index: 0;
    opacity: 0.4;
    filter: invert(1) saturate(0);
}


/* Slide 2: Magnifying glass */

.carousel .slide2 .text {
    font-size: 3vw;
    left: 50%;
    width: 60%;
}

.carousel .slide2 .image {
    position: absolute;
    width: 47%;
    top: 26%;
    left: 67%;
}

.carousel .slide2 .image img {
    width: 100%;
}

.carousel .slide2.hidden .image {
    left: -45%;
}

.carousel .slide2.hidden.right .image {
    left: 97%;
}

.carousel .slide2.animating .image {
    transition: left 0.75s;
}

.carousel .slide2.hidden .text {
    left: -31%;
}

.carousel .slide2.hidden.right .text {
    left: 133%;
}

.carousel .slide2.animating .text {
    transition: left 0.95s;
}


/* Slide 3: Burning tires */

.carousel .slide3 .text {
    font-size: 3vw;
    left: 70%;
    width: 80%;
}

.carousel .slide3 .image {
    position: absolute;
    width: 47%;
    top: 26%;
    left: 67%;
}

.carousel .slide3 .image img {
    width: 100%;
}

.carousel .slide3.hidden .image {
    left: -104%;
    opacity: 0;
}

.carousel .slide3.hidden.right .image {
    left: 104%;
}

.carousel .slide3.animating .image {
    transition: left 0.75s, opacity 0.8s;
}

.carousel .slide3.hidden .text {
    left: -40%;
}

.carousel .slide3.hidden.right .text {
    left: 164%;
}

.carousel .slide3.animating .text {
    transition: left 0.95s;
}

.carousel .slide3 .flameAnim {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 90%;
    left: 0;
    mix-blend-mode: screen;
    opacity: 1;
    filter: saturate(2.2);
}

/* .carousel .slide3 .image:before {
    content: ' ';
    position: absolute;
    width: 100%;
    bottom: 0;
    height: 40%;
    z-index: 1;
    background: rgb(164, 209, 241);
    background: linear-gradient( 0deg, rgba(164, 209, 241, 1) 0%, rgba(164, 209, 241, 0) 100%);
} */


/* Slide 4: Burning leaves */

.carousel .slide4 .text {
    font-size: 3vw;
    left: 50%;
    width: 100%;
}

.carousel .slide4 .image {
    position: absolute;
    width: 164%;
    top: -3%;
    left: 0%;
}

.carousel .slide4 .image img {
    width: 100%;
}

.carousel .slide4.hidden .image {
    left: -165%;
    opacity: 0;
}

.carousel .slide4.hidden.right .image {
    left: 100%;
}

.carousel .slide4.animating .image {
    transition: left 0.75s, opacity 0.8s;
}

.carousel .slide4.hidden .text {
    left: -40%;
}

.carousel .slide4.hidden.right .text {
    left: 164%;
}

.carousel .slide4.animating .text {
    transition: left 0.95s;
}


/* Slide 5: Burning forest */

.carousel .slide5  {
    background-position: center;
    background-size: cover;
    background-image: url('/assets/img/slide3-mobile.jpg');
}

.carousel .slide5 .text {
    font-size: 3vw;
    left: 80%;
    width: 100%;
}

.carousel .slide5 .image {
    position: absolute;
    width: 132%;
    top: 13%;
    left: 0%;
}

.carousel .slide5 .image img {
    width: 100%;
}

.carousel .slide5.hidden .image {
    left: -165%;
    opacity: 0;
}

.carousel .slide5.hidden.right .image {
    left: 100%;
}

.carousel .slide5.animating .image {
    transition: left 0.75s, opacity 0.8s;
}

.carousel .slide5.hidden .text {
    left: -40%;
}

.carousel .slide5.hidden.right .text {
    left: 164%;
}

.carousel .slide5.animating .text {
    transition: left 0.95s;
}


/* Slide 6: Alarm */


.carousel .slide6  {
    background-position: center;
    background-size: cover;
    background-image: url('/assets/img/slide4-mobile.jpg');
}

.carousel .slide6 .text {
    font-size: 2.9vw;
    left: 50%;
    text-shadow: 0 0 2vw rgb(0 0 0 / 10%);
}

.carousel .slide9 .image {
    position: absolute;
    width: 50%;
    top: 48%;
    left: 58%;
}

.carousel .slide6 .image {
    position: absolute;
    width: 132%;
    top: 13%;
    left: 0%;
}

.carousel .slide6 .image img {
    width: 100%;
}

.carousel .slide6.hidden .image {
    left: -45%;
}

.carousel .slide6.hidden.right .image {
    left: 97%;
}

.carousel .slide6.animating .image {
    transition: left 0.75s;
}

.carousel .slide6.hidden .text {
    left: -27%;
}

.carousel .slide6.hidden.right .text {
    left: 133%;
}

.carousel .slide6.animating .text {
    transition: left 0.95s;
}


/* Slide 7: Popcorn */

.carousel .slide7  {
    background-position: center;
    background-size: cover;
    background-image: url('/assets/img/slide5-mobile.jpg');
}

.carousel .slide7 .text {
    font-size: 3vw;
    left: 63%;
    text-shadow: 0 0 2vw rgb(0 0 0 / 10%);
}

.carousel .slide11 .image {
    position: absolute;
    width: 45%;
    top: 45%;
    left: 65%;
}

.carousel .slide7 .image {
    position: absolute;
    width: 132%;
    top: 13%;
    left: 0%;
}

.carousel .slide7 .image img {
    width: 100%;
}

.carousel .slide7.hidden .image {
    left: -45%;
}

.carousel .slide7.hidden.right .image {
    left: 100%;
}

.carousel .slide7.animating .image {
    transition: left 0.75s;
}

.carousel .slide7.hidden .text {
    left: -32%;
}

.carousel .slide7.hidden.right .text {
    left: 133%;
}

.carousel .slide7.animating .text {
    transition: left 0.95s;
}


/* ===== INTRO SCENES ===== */

.intro {
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(/assets/img/bg/BG_C_16-9.jpg);
    background-position: center;
    background-size: cover;
    z-index: 60;
    font-family: 'Century Gothic';
}

.intro .question {
    position: absolute;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100vw;
}

.intro .question h4 {
    color: #f31434;
    font-size: 4vw;
    font-weight: bold;
    margin-bottom: 2.5vw;
}

.intro .question .options span {
    color: #ffffff;
    font-size: 4vw;
    font-weight: bold;
    text-shadow: 0 0 2vw rgb(0 0 0 / 30%);
    cursor: pointer;
}

.intro .question .options span:first-of-type {
    margin-right: 10vw;
}

.intro .question .options span:hover {
    text-decoration: underline;
}

.intro.intro-1 {
    display: none;
}

.intro .container {
    position: absolute;
    bottom: 6%;
    left: 50%;
    width: 53vw;
    transform: translateX(-50%);
}

.intro .container p {
    font-size: 2.1vh;
    color: white;
    margin-bottom: 4vh;
}

.intro .container .next p {
    font-size: 1.75vw;
    text-align: left;
    float: left;
    font-weight: bold;
}

.intro .container .next a, .intro .container .nextStep a {
    float: right;
    background: #f45414;
    color: white;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    line-height: 3.3vw;
    min-width: 10vw;
    text-align: center;
    font-size: 1.4vw;
    border-radius: 0.6vw;
    overflow: hidden;
    position: relative;
    top: -0.5vw;
}

.intro .container .next a span {
    position: relative;
    z-index: 2;
    font-weight: bold;
    transition: all 0.3s;
    display: block;
}

.intro .container .next a:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    z-index: 1;
}

.intro .container .next a:hover {
    color: #fff;
}

.intro .container .next a:hover:before,
.intro .container .next a.clicked:before {
    width: 100%;
}

.intro .container .next a:hover span,
.intro .container .next a.clicked span {
    transform: scale(1.05);
}

.intro.intro-2 {
    display: none;
}

.intro.intro-2 .container {
    width: 94vw;
}

.intro.intro-1 .container.hidden {
    opacity: 0;
    transform: translateX(100%);
}

.intro.intro-1 .container.first {
    top: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.7s, transform 0.7s;
}

.intro.intro-1 .container.first .nextStep {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
}

.intro.intro-1 .container.first .nextStep a {
    float: none;
    padding: 20px 40px;
}

.intro.intro-1 .container.first .nextStep a span {
    font-weight: bold;
}

.intro.intro-1 .container.second {
    transition: opacity 0.7s, transform 0.7s;
}

.intro.intro-1 .container h2 {
    text-align: center;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 4vh;
    margin-bottom: 2.1vh;
}

.intro.intro-2 .container .row {
    display: block;
    margin-bottom: 3vw;
}

.intro.intro-2 .container .row .col {
    display: inline-block;
    width: 28%;
    vertical-align: top;
    opacity: 0;
}

.intro.intro-2 .container .row .col.col-1 {
    text-align: left;
}

.intro.intro-2 .container .row .col.col-2 {
    text-align: center;
    margin-left: 5.5%;
    margin-right: 5.5%;
}

.intro.intro-2 .container .row .col.col-3 {
    text-align: right;
}

.intro.intro-2 .container .row .col h2 {
    color: white;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 4vh;
    margin-bottom: 2.1vh;
}

.intro.intro-2 .container .row .col p {
    font-size: 2.5vh;
    max-width: 85%;
    margin-bottom: 5vh;
}

.intro.intro-2 .container .row .col.col-2 p {
    max-width: unset;
}

.intro.intro-2 .container .row .col.col-3 p {
    margin-left: 5%;
    max-width: 95%;
}

.intro.intro-2 .container .next {
    width: 48vw;
    display: block;
    margin: 0 auto;
}

/* .intro.intro-2 {
    background: #709cd3;
} */

.styledScrollbar::-webkit-scrollbar-track {
    border-radius: 10px;
    background-color: #F5F5F5;
}

.styledScrollbar::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
    border-radius: 10px;
}

.styledScrollbar::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, .1);
    background-color: #f35d14;
}

.intro.intro-1 .container .scrollDownIndicator {
    display: none;
}

.intro.intro-1 .container.scrollIndicatorVisible .scrollDownIndicator {
    display: block;
}

.scrollDownIndicator {
    position: fixed;
    bottom: 110px;
    left: 50%;
    z-index: 2;
    display: inline-block;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
    color: #fff;
    font: normal 400 20px/1 'Josefin Sans', sans-serif;
    letter-spacing: .1em;
    text-decoration: none;
    transition: opacity .3s;
    padding-top: 0px;
}

.scrollDownIndicator:hover {
    opacity: .5;
}

.scrollDownIndicator span {
    position: absolute;
    top: 0;
    left: 50%;
    width: 34px;
    height: 34px;
    margin-left: -12px;
    border-left: 4px solid #fff;
    border-bottom: 4px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-animation: sdb05 1.5s infinite;
    animation: sdb05 1.5s infinite;
    box-sizing: border-box;
}

@-webkit-keyframes sdb05 {
    0% {
        -webkit-transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        -webkit-transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

@keyframes sdb05 {
    0% {
        transform: rotate(-45deg) translate(0, 0);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: rotate(-45deg) translate(-20px, 20px);
        opacity: 0;
    }
}

.mobileDetails {
    display: none;
    cursor: pointer;
    margin-top: 15px;
    text-align: center;
}


/* Media queries
-------------------------------------------------------------------------------*/

@media screen and (max-width: 1600px) {
    .intro .container p {
        font-size: 2.4vh;
        margin-bottom: 3vh;
    }
    .intro.intro-2 .container .row .col h2 {
        font-size: 3vh;
    }
    .intro.intro-2 .container .row .col p {
        font-size: 2.2vh;
    }
    .close {
        right: 2vw;
        top: 1.7vw;
        width: 30px;
        height: 30px;
    }
    .close:before,
    .close:after {
        height: 18px;
        top: 4px;
        left: 12px;
    }
}

@media (max-aspect-ratio: 9/5) and (min-width: 768px) {
    .intro .container p {
        font-size: 18px;
    }
    .intro.intro-2 .container .row .col h2 {
        font-size: 3vh;
        margin-bottom: 2vh;
    }
    .intro.intro-2 .container .row .col p {
        font-size: 2vh;
    }
    #leaves {
        top: 30.5%;
    }
    /* .navigation {
        bottom: 10%;
    } */
}

@media screen and (max-width: 1320px) {
    .intro .container {
        width: 57vw;
    }
    .intro.intro-2 .container .row {
        margin-bottom: 2vw;
    }
    #logoHolder circle {
        transform: scale(1.6);
        transform-origin: 50% 50%;
    }
    .intro.intro-2 .container .row .col h2 {
        font-size: 4vh;
    }
    .intro.intro-2 .container .row .col p {
        font-size: 2.5vh;
    }
    .intro.intro-2 .container .row .col.col-2 {
        margin-left: 4%;
        margin-right: 4%;
    }
    .intro.intro-2 .container .row .col {
        width: 30.4%;
    }
    .carousel .slide .text {
        width: 60%;
        left: 70%;
    }
}

@media screen and (max-width: 1024px) {
    .intro .container {
        bottom: 5%;
    }
    .intro .container p {
        font-size: 20px;
    }
    #infoButton {
        top: 21%;
    }
    .arrowNav {
        width: 80px;
        height: 80px;
    }
    .scrollMe {
        width: 200px;
        height: 40px;
        background-repeat: no-repeat;
    }
    .scrollMe span {
        font-size: 20px;
        line-height: 35px;
    }
    #textSection {
        top: 31%;
    }
    .carousel .slide .text {
        top: 31%;
    }
    /* .navigation {
        bottom: 4%;
    } */
    .infoButton {
        width: 20px;
        height: 20px;
        bottom: 10px;
    }
    .nextStep a {
        font-size: 16px !important;
    }
    .small-text {
        font-size: 22px !important;
    }
}

@media screen and (max-width: 990px) {
    .intro .container {
        width: 80vw;
        bottom: unset;
        top: 25%;
    }
    #logoHolder circle {
        transform: scale(2);
    }
    .intro.intro-2 .container .row .col {
        width: 30.3%;
    }
    .intro.intro-2 .container .row .col h2 {
        font-size: 3vh;
    }
    .intro.intro-2 .container .row .col p {
        font-size: 2.3vh;
    }
    .arrowNav {
        width: 60px;
        height: 60px;
    }
    .arrowNav.left {
        left: 10px;
    }
    .arrowNav.right {
        right: 15px;
    }
}

@media screen and (max-width: 768px) {
    div.wrapper {
        background-image: url('/assets/img/bg/BG_C_16-9.jpg');
        background-position: center 30%;
        background-size: cover;
    }
    #logoHolder svg {
        width: 13vw;
    }
    #logoHolder circle {
        display: none;
    }
    #logoHolder #loadingText {
        top: 15vw;
        font-size: 7vw;
        width: 28vw;
    }
    #logoIcon {
        width: 18vw;
        margin-top: -0.5vw;
    }
    #logoText {
        font-size: 11.2vw;
        margin-top: 0.9vw;
        margin-left: 61.8vw;
    }
    #logoHolder .blocker {
        width: 18vw;
        height: 2.6vw;
        margin-left: -5.6vw;
        margin-top: -8vw;
    }
    #logoHolder.left {
        margin-left: -80.6vw;
    }
    #is18v2 .question h4 {
        font-size: 5.5vw;
        margin-bottom: 4vw;
    }
    #is18v2 .btn {
        font-size: 14px;
        line-height: 40px;
        max-width: 110px;
        margin: 0 6vw 0em;
    }
    #is18v2 .btn-1 svg {
        height: 40px;
    }
    #is18v2.visible {
        top: 2vw;
    }
    #logoHolder.upper {
        top: 38%;
    }
    #is18v2 .btn-1:hover rect {
        stroke-dashoffset: 241;
    }
    body.blue #logoHolder.upper {
        top: 24px;
        margin-left: -58.4vw;
        transform: scale(0.2);
    }
    body.blue #texture {
        height: 300px;
    }
    .intro .container {
        width: calc(100% - 34px);
        bottom: unset;
        top: 100px;
        max-height: calc(100vh - 105px);
        overflow: auto;
        padding-right: 20px;
    }
    .intro .container p {
        font-size: 18px;
    }
    .intro .next p,
    .intro .container .next p {
        font-size: 20px;
        text-align: center;
        float: none;
    }
    .intro .next a,
    .intro .container .next a {
        float: none;
        display: block;
        width: 200px;
        margin: 0 auto 40px;
        font-size: 20px;
        height: 40px;
    }
    .intro .next a span,
    .intro .container .next a span {
        line-height: 40px;
    }
    .intro.intro-2 .container .row .col {
        display: block;
        width: 100%;
    }
    .intro.intro-2 .container .row .col.col-2,
    .intro.intro-2 .container .row .col.col-3 {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
    .intro.intro-2 .container .next {
        width: 100%;
    }
    .intro.intro-2 .container .row .col.col-3 p {
        margin-left: 0;
        max-width: unset;
    }
    .intro.intro-2 .container .row .col p {
        margin-bottom: 20px;
    }
    .intro.intro-2 .container .row .col h2 br {
        display: none;
    }
    .scrollMe {
        display: none;
    }
    .navigation {
        display: none;
    }
    #infoButton {
        display: block;
        top: unset;
        bottom: 8%;
        left: 8%;
        height: 9vw;
        width: 29vw;
    }
    #infoButton img {
        width: 5.9vw;
        position: absolute;
        top: 0.85vw;
        left: 0.7vw;
    }
    #infoButton span {
        line-height: 7.3vw;
        font-size: 3.5vw;
        margin-left: 7.8vw;
    }
    .arrowNav {
        width: 30px;
        height: 30px;
        transform: initial;
        top: unset;
        bottom: 15px;
    }
    .arrowNav.left {
        transform: initial;
        left: calc(50% - 40px);
    }
    .arrowNav.right {
        transform: rotate( 180deg);
        right: calc(50% - 40px);
    }
    .carousel,
    .carouselBg {
        width: 100%;
        -webkit-clip-path: polygon(0px 0px, 100% 0%, 100% 20%, 0% 60%);
        clip-path: polygon(0px 0px, 100% 0%, 100% 20%, 0% 60%);
    }
    .carousel:has(.fullSlide.active) {
        -webkit-clip-path: polygon(0px 0px, 100% 0%, 100% 100%, 0% 100%);
        clip-path: polygon(0px 0px, 100% 0%, 100% 100%, 0% 100%);
    }
    .glowSpot {
        width: 100vw;
        height: 130vh;
        top: -25%;
        opacity: 0.6;
    }
    #leaves {
        top: 32%;
        left: 28%;
        transform: rotate( 21deg);
    }
    #leaves img {
        width: 58vw;
    }
    #textSection {
        bottom: 15%;
        width: 90vw;
        left: 6.2vw;
        cursor: pointer;
        top: unset;
        z-index: 5000;
        height: 36vh;
    }
    #textSection .text {
        bottom: 0;
        width: 100%;
    }
    #textSection h2 {
        font-size: 7vw;
        line-height: 9vw;
        padding-bottom: 10px;
        text-align: left;
    }
    #textSection .explanation p {
        margin-bottom: 2vw;
        line-height: 120%;
        font-size: 3.5vw;
    }
    #textSection h2 br {
        display: none;
    }
    #textSection .explanation .border {
        width: 2px;
    }
    #popup {
        z-index: 10000;
    }
    #popup .modal {
        width: 90vw;
        padding-bottom: 15px;
    }
    #popup .modal .header {
        min-height: 40px;
    }
    #popup .modal .body {
        padding-top: 10px;
        padding-left: 15px;
        padding-right: 15px;
        padding-bottom: 15px;
        max-height: calc(100vh - 170px);
        overflow: auto;
    }
    #popup .modal .body p {
        font-size: 16px;
        margin-bottom: 8px;
    }
    #popup .modal .headerButton {
        width: 150px;
        height: 30px;
    }
    #popup .modal .headerButton img {
        width: 22px;
        top: 2px;
        left: 4px;
    }
    #popup .modal .headerButton span {
        font-size: 10px;
        line-height: 25px;
        margin-left: 34px;
    }
    .close {
        right: 15px;
        top: 9px;
        width: 30px;
        height: 30px;
    }
    .close:before,
    .close:after {
        height: 18px;
        top: 4px;
        left: 12px;
    }
    .carousel .slide .text {
        font-size: 30px !important;
        line-height: 120%;
    }
    .carousel .slide .text {
        top: 12%;
        left: 50%;
        width: 90vw;
    }
    .carousel .slide1 .image {
        width: 100%;
        top: 19%;
        left: 0%;
        height: 100%;
        background: transparent;
    }
    .carousel .slide1 .image img {
        transform: scaleX(-1);
    }
    .carousel .slide1.hidden .image {
        left: -142%;
    }
    .carousel .slide .text br {
        display: none;
    }
    .carousel .slide .text br.mobileBreak {
        display: block;
    }
    .carousel .slide2 .text {
        width: 80%;
        font-size: 7vw;
    }
    .carousel .slide2 .image {
        left: 6%;
        top: 13%;
    }
    .carousel .slide3 .text {
        left: 51%;
        font-size: 7vw;
    }
    /* .carousel .slide3 .image img {
        display: none;
    } */
    .carousel .slide3 .image img.flameAnim {
        display: block;
    }
    .carousel .slide3 .image {
        left: 0%;
        top: 13%;
    }
    .carousel .slide3.hidden.right .image {
        left: 0%;
    }
    .carousel .slide3.hidden.left .image {
        left: 0%;
    }
    .carousel .slide4 .image img {
        display: none;
    }
    .carousel .slide4 .image {
        height: 60vh;
        background-image: url('../img/slide3-mobile.jpg');
        width: 100vw;
        background-size: cover;
        left: 0%;
        top: 0%;
    }
    .carousel .slide4.hidden.right .image {
        left: 0%;
    }
    .carousel .slide4.hidden.left .image {
        left: 0%;
    }
    .carousel .slide4 .text {
        left: 50%;
        font-size: 7vw;
    }
    .carousel .slide5 .image img {
        display: none;
    }
    .carousel .slide5 .image {
        height: 60vh;
        background-image: url('../img/slide3-mobile.jpg');
        width: 100vw;
        background-size: cover;
        left: 0%;
        top: 0%;
    }
    .carousel .slide5.hidden.right .image {
        left: 0%;
    }
    .carousel .slide5.hidden.left .image {
        left: 0%;
    }
    .carousel .slide5 .text {
        left: 51%;
    }
    .carousel .slide6 .text {
        left: 50%;
        font-size: 6.6vw;
    }
    .carousel .slide6 .image {
        height: 60vh;
        background-image: url('../img/slide4-mobile.jpg');
        width: 100vw;
        background-size: cover;
        left: 0%;
        top: 0%;
    }
    .carousel .slide6.hidden .image {
        left: -52%;
    }
    .carousel .slide6.hidden.right .text {
        left: 150%;
    }
    .carousel .slide7 .text {
        left: 52.5%;
        font-size: 6vw;
    }
    .carousel .slide7 .image {
        height: 60vh;
        background-image: url('../img/slide5-mobile.jpg');
        width: 100vw;
        background-size: cover;
        left: 0%;
        top: 0%;
    }
    .carousel .slide7.hidden.right .image {
        left: 90%;
    }
    .carousel .slide7.hidden .image {
        left: -75%;
    }
    .carousel .slide7.hidden .text {
        left: -35%;
    }
    .carousel .slide7.hidden.right .text {
        left: 150%;
    }
    .carousel .slide2.hidden.right .text {
        left: 143%;
    }
    .infoButton {
        width: 20px;
        height: 20px;
        bottom: 17px;
        right: 30px;
    }
    .carousel .slide9 .image {
        position: absolute;
        width: 70%;
        top: 20%;
        left: 0px;
    }
    .carousel .slide11 .image {
        position: absolute;
        width: 45%;
        top: 30%;
        left: 0;
    }
}

@media screen and (max-width: 580px) {
    body.blue #logoHolder.upper {
        margin-left: -62.4vw;
        transform: scale(0.35);
    }
    .intro .container p {
        font-size: 17px;
        margin-bottom: 17px;
    }

    .carousel .fullSlide .text {
        width: 80% !important;
    }
}

@media screen and (max-width: 400px) {
    body.blue #logoHolder.upper {
        margin-left: -64.9vw;
        transform: scale(0.4);
    }
    .intro .container {
        padding-right: 16px;
    }
    .intro .container p {
        font-size: 16px;
    }
    .intro .container .next p {
        font-size: 18px;
    }
}

@media screen and (max-width: 330px) {
    .close {
        top: 5px;
    }
    #popup .modal .headerButton {
        border-radius: 30px;
    }
    #popup .modal {
        width: 92vw;
    }
    #popup .modal .body {
        padding-left: 12px;
        padding-right: 12px;
        max-height: calc(100vh - 148px);
    }
    #popup .modal .body p {
        font-size: 14px;
    }
    .intro .question {
        top: 54%;
    }
    .intro .container {
        width: calc(100% - 24px);
    }
    body.blue #logoHolder.upper {
        margin-left: -69.9vw;
        transform: scale(0.6);
    }
    .intro .container {
        top: 85px;
    }
    .intro .container p {
        font-size: 14px;
        margin-bottom: 16px;
    }
    .carousel .slide .text {
        top: 17%;
        font-size: 16px !important;
    }
    #textSection h2 {
        line-height: 18px;
        padding-bottom: 0;
        margin-bottom: 10px;
        font-size: 16px;
        max-width: calc(100% - 20px);
    }
    #textSection .explanation {
        padding-left: 10px;
        padding-top: 5px;
        padding-bottom: 5px;
        margin-bottom: 10px;
    }
    #textSection .explanation p {
        margin-bottom: 5px;
        line-height: 115%;
        font-size: 11px;
    }
    .arrowNav {
        width: 24px;
        height: 24px;
        bottom: 10px;
    }
    #leaves img {
        width: 52vw;
    }
    .carousel .slide7 .image {
        width: 50%;
        top: 26%;
        left: -2.5%;
    }
    .carousel .slide1.hidden.right .text {
        left: 147%;
    }
    .carousel .slide2 .image {
        left: -3%;
        top: 12%;
        width: 43%;
    }
    .carousel .slide3 .image {
        height: 100vh;
        width: 130vw;
        left: -30%;
        top: -25%;
    }
    .carousel .slide3.hidden.left .image {
        left: -30%;
    }
    .carousel .slide3.hidden.right .image {
        left: -30%;
    }
    .carousel .slide4 .image {
        height: 100vh;
        width: 130vw;
        left: -30%;
        top: -25%;
    }
    .carousel .slide4.hidden.left .image {
        left: -30%;
    }
    .carousel .slide4.hidden.right .image {
        left: -30%;
    }
    .carousel .slide5 .image {
        height: 100vh;
        width: 130vw;
        left: -30%;
        top: -25%;
    }
    .carousel .slide5.hidden.left .image {
        left: -30%;
    }
    .carousel .slide5.hidden.right .image {
        left: -30%;
    }
    .carousel .slide6 .image {
        width: 65%;
        top: 22%;
        left: -5%;
    }
}

@media screen and (max-height: 710px) {
    #textSection .explanation p {
        font-size: 14px;
    }
}

@media screen and (max-height: 670px) {
    .carousel .fullSlide .small-text {
        margin-bottom: 20px;
    }
}

@media screen and (max-height: 510px) {
    .carousel .fullSlide .text {
        font-size: 22px;
    }
}

@media screen and (max-height: 600px) {
    #textSection .explanation p {
        font-size: 12px;
    }
}