#banner {
    overflow: hidden;
}

.banner_wrapper {
    width: 100%;
    position: relative;
    height: 100vh;
    overflow: hidden;
    max-height: 2000px;
}

.banner_wrapper video {
    position: absolute;
    top: 0;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, 0);
    object-fit: cover;
    z-index: 1;
}

.banner_content {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 48px 48px 24px;
    position: relative;
    z-index: 2;
}

.banner_text {
    max-width: 1548px;
    min-width: 80%;
    padding: 40px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(245, 245, 245, 0.80) 20%, #EAEAEA 50%, rgba(245, 245, 245, 0.80) 80%, rgba(255, 255, 255, 0.00) 100%);
    text-align: center;
    position: relative;
}

.banner_wrapper_v2 .banner_text {
    padding: 40px 0 24px;
}

.banner_text:before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(245, 245, 245, 0.80) 20%, #EAEAEA 50%, rgb(255 255 255 / 74%) 80%, rgba(255, 255, 255, 0.00) 100%);
    z-index: 0;
    height: 4px;
    width: 100%;
}

.banner_text:after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 0px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.00) 0%, rgba(245, 245, 245, 0.80) 20%, #EAEAEA 50%, rgb(255 255 255 / 74%) 80%, rgba(255, 255, 255, 0.00) 100%);
    z-index: 0;
    height: 4px;
    width: 100%;
}

.banner_title {
    padding-bottom: 8px;
    filter: drop-shadow(0 1px 2px #0000007e)
}

.banner_title span {
    background: var(--Red-Gradient, linear-gradient(270deg, #330303 14.81%, #800707 57.41%, #330303 100%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner_line {
    text-transform: uppercase;
    padding-bottom: 32px;
}

.after_banner {
    text-align: center;
    font-family: Evolventa;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

.banner_but {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 24px;
}

.banner_video {
    display: block;
}

.banner_video_mini {
    display: none;
}

@media (max-width: 1500px) {
    .banner_text {
        min-width: 100%;
    }

    .banner_title {
        font-size: 48px;
        line-height: 130%;
        letter-spacing: -0.48px;
    }
}

@media (max-width: 1400px) {

    .banner_title {
        padding-bottom: 13px;
    }

    .banner_line {
        padding-bottom: 16px;
        font-size: 24px;
        line-height: 130%;
        letter-spacing: -0.24px;
    }

    .banner_but {
        gap: 16px;
    }

    .banner_text {
        padding: 32px;
    }

    .banner_title {
        font-size: 40px;
        line-height: 130%;
        letter-spacing: -0.4px;
    }
}

@media (max-width: 1020px) {
    .banner_wrapper {
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    }

    .banner_video_mini {
        display: block;
    }

    .banner_video {
        display: none;
    }

    .banner_wrapper video {
        position: absolute;
        top: 60px;
        left: 0;
        min-width: 100%;
        min-height: auto;
        transform: none;
        object-fit: contain;
        z-index: 1;
    }

    .banner_text {
        border-top: 3px solid #FFF;
        border-bottom: 3px solid #FFF;
        background: #E9E9E9;
    }

    .banner_content {
        padding: 48px 0px 0;
    }
}

@media (max-width: 850px) {
    .banner_text {
        padding: 20px;
    }

    .banner_wrapper {
        height: 100dvh;
        max-height: 910px;
    }

    .banner_title {
        font-size: 32px;
        line-height: 110%;
        letter-spacing: -0.32px;
    }

    .banner_line {
        font-size: 16px;
        line-height: 130%;
        letter-spacing: -0.16px;
        padding-bottom: 12px;
    }

    .banner_title {
        padding-bottom: 8px;
    }

}