.splash {
    color: #fff;
    display: flex;
    height: 100vh;
    max-width: 100%;
    min-height: 768px;
    position: relative;
    text-align: center;
    width: 100%;
}

.splash-title {
    font-family: "English 111 Vivace BT";
    font-size: 2.75em;
    line-height: 1em;
    margin-bottom: 0.5em;
    padding-top: 1em;
    position: relative;
    z-index: 2;
}

@media (min-width: 576px) {
    .splash-title {
        font-size: 5em;
    }
}

.splash-background {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.splash-background img,
.splash-background video {
    height: 100%;
    left: 0;
    object-fit: cover;
    object-position: 67.5% 50%;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    transition: opacity ease-out 500ms;
    width: 100%;
}

.splash-background img.background--ready,
.splash-background video.background--ready {
    opacity: 1;
}

.splash-background img {
    transition: opacity ease-out 500ms, filter ease-out 500ms;
}

.splash-background img.background--ready {
    -webkit-filter: brightness(75%);
            filter: brightness(75%);
}

.splash-center {
    margin: auto;
    width: 100%;
}

.splash-center--ready {
    opacity: 1;
}

.splash-center .swiper {
    padding-left: 16px;
    padding-right: 16px;
}

.splash-logo {
    max-width: 480px;
}

@media (max-width: 576px) {
    .splash-logo {
        max-width: 256px;
    }   
}

.swiper-slide {
    padding: 0 1em 1em;
}

.splash-slide {
    display: flex;
    height: 100vh;
}

.splash-slide__margin-auto {
    margin: auto;
    padding: 0 48px;
    width: 100%;
}

.splash-slide__title {
    font-size: 2em;
    font-weight: 800;
}

@media (max-width: 719px) {
    .splash-slide__title {
        font-size: 1.5em;
    }
}

.splash-slide__text {
    font-size: 1.25em;
    margin-top: 1em;
}

.splash-scroll-text {
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-fill-mode: both;
    animation-name: splash-scroll-text;
    animation-play-state: running;
    animation-timing-function: ease-in-out;
    bottom: 16px;
    font-size: 1.25em;
    font-weight: bold;
    margin: auto;
    padding: 32px 16px;
    text-align: center;
}

@keyframes splash-scroll-text {
    0% {
        opacity: 1;
    } 50% {
        opacity: 0.2;
    } 100% {
        opacity: 1;
    }
}

@media (max-width: 1183px) {
    .splash-scroll-text {
        bottom: 80px;
    }
}