body::before {
    content: "mobile";
    display: none;
}
@media only screen and (min-width: 1050px) {
    body::before {
        content: "desktop";
    }
}
@media only screen and (min-width: 1050px) {
    body[data-hijacking="on"] {
        overflow: hidden;
    }
}
.cd-section {
    height: 100vh;
}
.cd-section .cd-section-content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cd-section .cd-section-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    left: 0;
    top: 0;
}
.cd-section .cd-texts {
    position: relative;
}
.cd-section .cd-texts .title {
    font-size: 140px;
    font-weight: 700;
    color: #fff;
}
@media (max-width: 992px) {
    .cd-section .cd-texts .title {
        font-size: 80px;
    }
}
@media (max-width: 576px) {
    .cd-section .cd-texts .title {
        font-size: 40px;
    }
}
.cd-section .cd-texts .link {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    text-transform: uppercase;
}
.cd-section .cd-texts .link::after {
    content: "";
    display: block;
    width: 68px;
    height: 2px;
    background-color: #fff;
    margin-top: 2px;
    transition: 0.2s;
}
.cd-section .cd-texts .link:hover::after {
    width: 100%;
}
.cd-section:first-of-type > div {
    background-color: #00315A;
}
.cd-section:first-of-type > div::before {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 20px;
    z-index: 2;
    font-weight: 700;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: #6a7083;
}
.cd-section:nth-of-type(2) > div {
    background-color: #2e5367;
}
.cd-section:nth-of-type(3) > div {
    background-color: #267481;
}
.cd-section:nth-of-type(4) > div {
    background-color: #fcb052;
}
.cd-section:nth-of-type(5) > div {
    background-color: #00315A;
}
.cd-section .cd-section-img {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media only screen and (min-width: 1050px) {
    .cd-section h2 {
        font-size: 4rem;
        font-weight: 300;
    }
    [data-hijacking="on"] .cd-section {
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
    }
    [data-hijacking="on"] .cd-section > div {
        visibility: visible;
    }
    [data-hijacking="off"] .cd-section > div {
        opacity: 0;
    }
    [data-animation="rotate"] .cd-section {
        -webkit-perspective: 1800px;
        -moz-perspective: 1800px;
        perspective: 1800px;
    }
    [data-hijacking="on"][data-animation="rotate"] .cd-section:not(:first-of-type) {
        -webkit-perspective-origin: center 0;
        -moz-perspective-origin: center 0;
        perspective-origin: center 0;
    }
    [data-animation="scaleDown"] .cd-section > div,
    [data-animation="gallery"] .cd-section > div,
    [data-animation="catch"] .cd-section > div {
        box-shadow: 0 0 0 rgba(25, 30, 46, 0.4);
    }
    [data-animation="opacity"] .cd-section.visible > div {
        z-index: 1;
    }
}
@media only screen and (min-width: 1050px) {
    .cd-section:first-of-type > div::before {
        display: none;
    }
}
@media only screen and (min-width: 1050px) {
    .cd-section > div {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        -webkit-transform: translateZ(0);
        -moz-transform: translateZ(0);
        -ms-transform: translateZ(0);
        -o-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
    [data-hijacking="on"] .cd-section > div {
        position: absolute;
    }
    [data-animation="rotate"] .cd-section > div {
        -webkit-transform-origin: center bottom;
        -moz-transform-origin: center bottom;
        -ms-transform-origin: center bottom;
        -o-transform-origin: center bottom;
        transform-origin: center bottom;
    }
}