.first-screen {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 57px);
    min-height: 400px;
    position: relative;
    padding: 10px;
}

.first-screen::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .4;
    z-index: 1;
    top: 0;
    pointer-events: none;
}

.first-screen__footer {
    height: 12px;
    background: #212121;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 0 0 15px 15px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
}

.background-video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    z-index: 0;
    inset: 0;
    pointer-events: none;
}

.first-screen-text {
    z-index: 2;
}

.first-screen__title {
    font-weight: 700;
    font-size: 6.4rem;
    line-height: 8.5rem;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    padding: 0 15px;
}

.first-screen__button--mobile {
    display: none;
}

.first-screen__button {
    width: 15px;
    height: 36px;
    display: block;
    background: url('/assets/images/first-screen/button-down.svg') no-repeat center center;
    position: absolute;
    bottom: 9%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s ease infinite;
}


@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(80%);
    }

    100% {
        transform: translateY(0);
    }
}

@media screen and (max-width: 1023px) {

    .first-screen__title {
        font-size: 5.2rem;
        line-height: 6.8rem;
    }

}

@media screen and (max-width: 767px) {

    .first-screen__title {
        font-size: 2.4rem;
        line-height: 3.2rem;
    }

    .first-screen__button--mobile {
        display: block;
        text-align: center;
        width: 94px;
        height: 19px;
        font-weight: 400;
        font-size: 1.2rem;
        line-height: 1.6rem;
        color: #fff;
        border: 1px solid #fff;
        text-decoration: none;
        transition: .4s all;
        margin: 40% auto 0 auto;
        text-transform: uppercase;
    }

    .first-screen__button--mobile:hover {
        color: #000;
        background-color: #fff;
    }

    .first-screen__button {
        display: none;
    }

}