*,
*:before,
*:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.skw-pages {
    overflow: hidden;
    position: relative;
    height: 100vh;
}

.skw-page {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
}

.skw-page__half {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100vh;
    transition: transform 1s;
}

.skw-page__half--left {
    left: 0;
    transform: translate3d(-32.4vh, 100%, 0);
}

.skw-page__half--right {
    left: 50%;
    transform: translate3d(32.4vh, -100%, 0);
}

.skw-page.active .skw-page__half {
    transform: translate3d(0, 0, 0);
}

.skw-page__skewed {
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 140%;
    height: 100%;
    transform: skewX(-18deg);
    background: #000;
}

.skw-page__half--left .skw-page__skewed {
    left: -40%;
}

.skw-page__half--right .skw-page__skewed {
    right: -40%;
}

.skw-page__content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 30%;
    color: #fff;
    transform: skewX(18deg);
    transition: transform 1s, opacity 1s;
    background-size: cover;
}

.skw-page__half--left .skw-page__content {
    padding-left: 25%;
    padding-right: 30%;
    transform-origin: 100% 0;
}

.skw-page__half--right .skw-page__content {
    padding-left: 30%;
    padding-right: 30%;
    transform-origin: 0 100%;
}

.skw-page.inactive .skw-page__content {
    opacity: 0.5;
    transform: skewX(18deg) scale(0.95);
}

.skw-page__heading {
    margin-bottom: 15px;
    text-transform: uppercase;
    font-size: 25px;
    text-align: center;
}

.skw-page__description {
    font-size: 18px;
    text-align: center;
}

.skw-page__link {
    color: #FFA0A0;
}

.skw-page-1 .skw-page__half--left .skw-page__content {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/mousover-img-1.jpg");
}

.skw-page-1 .skw-page__half--right .skw-page__content {
    background: #292929;
}

.skw-page-2 .skw-page__half--left .skw-page__content {
    background: #292929;
}

.skw-page-2 .skw-page__half--right .skw-page__content {
    background-image: url("../images/story-desktop/ISTRAWU_WEB_LR-105.jpg");
}

.skw-page-3 .skw-page__half--left .skw-page__content {
    background-image: url("../images/story-desktop/ISTRAWU_WEB_LR-42.jpg");
}

.skw-page-3 .skw-page__half--right .skw-page__content {
    background: #292929;
}

.skw-page-4 .skw-page__half--left .skw-page__content {
    background: #292929;
}

.skw-page-4 .skw-page__half--right .skw-page__content {
    background-image: url("../images/story-desktop/ISTRAWU_WEB_LR-24.jpg");
}

.skw-page-5 .skw-page__half--left .skw-page__content {
    background-image: url("../images/story-desktop/ISTRAWU_WEB_LR-28.jpg");
}

.skw-page-5 .skw-page__half--right .skw-page__content {
    background: #292929;
}

.skw-page-6 .skw-page__half--left .skw-page__content {
    background: #292929;
}

.skw-page-6 .skw-page__half--right .skw-page__content {
    background-image: url("ISTRAWU_WEB_LR-67.jpg");
}

.skw-page-7 .skw-page__half--left .skw-page__content {
    background-image: url("ISTRAWU_WEB_LR-61.jpg");
}

.skw-page-7 .skw-page__half--right .skw-page__content {
    background: #292929;
}


/* basic page config */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    background-color: #fff;
    color: #555;
    font-family: 'Roboto Mono', monospace;
    font-weight: 300;
    font-size: 20px;
    text-rendering: optimizeLegibility;
}

body {
    background-color: black;
}

a {
    text-decoration: none;
}

li {
    list-style: none;
}

header {
    position: relative;
}

.box {
    max-width: 1300px;
    margin: 0 auto;
}

.box-head {
    max-width: 1140px;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}


/* Style The Dropdown Button */


/* :after {
display: block;
height: 2px;
background-color: #046307;
content: "";
width: 800px;
margin: 0 auto;
margin-top: 15px;
} */


/* ARROW IN DA NEE */

.arrow {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, 50%);
}

.arrow span {
    display: block;
    width: 12px;
    height: 12px;
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    margin: -10px;
    -webkit-animation: animate 2s infinite;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    -webkit-animation-delay: -0.2s;
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    -webkit-animation-delay: -0.4s;
    animation-delay: -0.4s;
}

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

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


/* Mobile version configuration */

.mobile-story {
    display: none;
}

.line-container-left {
    display: flex;
    text-align: center;
    background-color: #292929;
    height: 50vh;
    min-height: 500px;
}

.line-container-right {
    display: flex;
    text-align: center;
    background-color: #292929;
    height: 50vh;
    min-height: 500px;
}

h3 {
    margin: 0;
    padding: 0;
}

.pict-1 {
    background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/142996/mousover-img-1.jpg");
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
}

.pict-2 {
    background-image: url("/story-mobile/ISTRAWU_WEB_LR-116.jpg");
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
}

.pict-3 {
    background-image: url("/story-mobile/ISTRAWU_WEB_LR-42.jpg");
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top right;
}

.pict-4 {
    background-image: url("/story-mobile/ISTRAWU_WEB_LR-71.jpg");
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.pict-5 {
    background-image: url("/story-mobile/ISTRAWU_WEB_LR-24.jpg");
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top left;
}

.pict-6 {
    background-image: url("/story-mobile/ISTRAWU_WEB_LR-105.jpg");
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.right-side {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.left-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    height: 100%;
}

.right-side p {
    padding: 10px;
    background-color: #292929;
}

.left-side p {
    padding: 10px;
    background-color: #292929;
}