#banner {
    width: 100%;
    height: 1272px;
    overflow: hidden;
}

.banner_gradient {
    background: url(../assets/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
    width: 100%;
    height: 100%;
    display: flex;
    position: relative;
    align-items: flex-end;
    max-width: 2070px;
    margin: 0 auto;
}

.left_shtora,
.right_shtora {
    position: absolute;
    height: 110%;
    top: 0;
    background-image: url(../assets/curtain2.png);
    background-size: cover;
    z-index: 10;
    width: 50%;
    transform-origin: center;
    transition: transform 0.5s ease, left 0.5s ease, right 0.5s ease;
}

.left_shtora {
    left: 0;
}

.right_shtora {
    right: 0;
}

.banner_bg {
    background: linear-gradient(180deg, rgba(19, 0, 36, 0.00) 0%, rgba(19, 0, 36, 0.76) 47.12%, #130024 100%);
    width: 100%;
    height: 100%;
    max-height: 283px;
}

.banner_content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    max-width: 937px;
    margin: 0 auto;
    padding-bottom: 126px;
}

.hidden {
    display: none;
}

.banner_pre_title {
    color: #CC00FF;
    text-align: center;
    font-family: Jost;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 2.8px;
    text-transform: uppercase;
}

.banner_title {
    color: #FFF;
    text-shadow: 0 0 34px rgba(204, 0, 255, 0.80), 0 0 34px rgba(204, 0, 255, 0.42);
    font-size: 64px;
    letter-spacing: -0.64px;
}

.banner_after_title {
    color: #FFF;
    text-align: center;
    font-family: Evolventa bold;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    max-width: 670px;
}

@media (max-width: 1280px) {
    #banner {
        margin-bottom: 112px;
    }
}

@media (max-width: 920px) {
    #banner {
        height: 858px;
        padding-top: 70px;
    }

    .banner_gradient {
        background-image: url(../assets/banner-m.jpg);
    }

    .banner_pre_title {
        font-size: 18px;
        line-height: 24px;
        letter-spacing: normal;
    }

    .banner_after_title {
        font-size: 16px;
        line-height: 18px;
        max-width: 263px;
    }

    .banner_bg {
        height: auto;
    }

    .banner_content {
        display: flex;
        flex-direction: column;
        gap: 8px;
        align-items: center;
        max-width: 937px;
        margin: 0 auto;
        padding-bottom: 0;
    }
}