#preloader-page {
    height: 100vh;
    width: 100%;
    position: absolute;
    background: #000;
    z-index: 99999;
    overflow: hidden;
}

.loader-text-container {
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    height: 100vh;
    width: 100vw;
}

.loader-text {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0 10px;
    text-transform: uppercase;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 50px;
    color: #fff;
}

@media only screen and (max-width: 992px) {
    .loader-text {
        font-size: 28px;
    }
}

.loader-text span {
    display: inline-block;
    opacity: 0;
    animation: 0.5s fadeIn forwards;
    letter-spacing: 1.7px;
}

.loader-text::before {
    content: "";
    position: absolute;
    background-color: #fff;
    height: 100%;
    width: 0%;
    margin: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    transition: 0.6s cubic-bezier(0.755, 0.05, 0.855, 0.06);
}

.animation--step-2::before {
    width: 100%;
}

.animation--step-3 span {
    opacity: 0;
    animation: none;
}

.animation--step-3::before {
    margin-left: auto;
    width: 0%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}