.loader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0284c7;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;

    /* container */
    .loading-container {
        width: 100%;
        max-width: 520px;
        text-align: center;
        color: #fff;
        position: relative;
        margin: 0 32px;
    }

    /* text */
    .loading-text {
        font-size: 5vw;
        line-height: 64px;
        letter-spacing: 10px;
        margin-bottom: 32px;
        display: flex;
        justify-content: space-evenly;
    }

    .loading-text span {
        animation: moveLetters 2.4s infinite ease-in-out;
        transform: translateX(0);
        position: relative;
        display: inline-block;
        opacity: 0;
    }

    /* delays */
    .loading-text span:nth-child(1) {
        animation-delay: .1s;
    }

    .loading-text span:nth-child(2) {
        animation-delay: .2s;
    }

    .loading-text span:nth-child(3) {
        animation-delay: .3s;
    }

    .loading-text span:nth-child(4) {
        animation-delay: .4s;
    }

    .loading-text span:nth-child(5) {
        animation-delay: .5s;
    }

    .loading-text span:nth-child(6) {
        animation-delay: .6s;
    }

    .loading-text span:nth-child(7) {
        animation-delay: .7s;
    }
}

@keyframes moveLetters {
    0% {
        transform: translateX(-15vw);
        opacity: 0;
    }

    33.3%,
    66% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(15vw);
        opacity: 0;
    }
}