#banner {
    padding-bottom: 12px;
    box-shadow: #00000026 0px 0px 3px 3px inset, #00000026 0px 0px 3px 3px inset;
}

.banner_wrapper {
    background-image: url(../assets/banner.jpg);
    height: 1000px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top;
}

.banner_content {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 48px;
}

.banner_text {
    max-width: 1548px;
    min-width: 80%;
    padding: 56px;
    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;
}

body.dark .banner_text {
    background: linear-gradient(90deg, rgba(27, 27, 27, 0.00) 0%, rgba(27, 27, 27, 0.80) 20%, #1B1B1B 50%, rgba(27, 27, 27, 0.80) 80%, rgba(27, 27, 27, 0.00) 100%);
}

.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%;
}

body.dark .banner_text:after,
body.dark .banner_text:before {
    background: linear-gradient(90deg, rgba(27, 27, 27, 0.00) 0%, rgba(27, 27, 27, 0.80) 20%, #1B1B1B 50%, rgba(27, 27, 27, 0.80) 80%, rgba(27, 27, 27, 0.00) 100%);
}

.banner_title {
    padding-bottom: 8px;
}

.banner_title span {
    background: linear-gradient(0deg, rgba(51, 3, 3, 1) 10%, rgba(170, 9, 9, 1) 55%, rgba(170, 9, 9, 1) 42%, rgba(51, 3, 3, 1) 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-transform: uppercase;
    text-shadow: 0px 2px 4px #00000059;
}

body.dark .banner_title span {
    background: linear-gradient(180deg, #FFE5A3 0%, #CBA74C 63.5%, #EECE7F 79%, #8C7845 98.5%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: none;
}

.banner_line {
    text-transform: uppercase;
    padding-bottom: 40px;
}

.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: 16px;
}

@media (max-width: 1500px) {
    .banner_text {
        min-width: 100%;
    }
}

@media (max-width: 700px) {
    .banner_text {
        padding: 26px 16px;
        background: #f5f5f5cc;
    }

    body.dark .banner_text {
        background: linear-gradient(90deg, rgba(27, 27, 27, 0.00) 0%, rgba(27, 27, 27, 0.80) 0%, #1B1B1B 50%, rgba(27, 27, 27, 0.80) 100%, rgba(27, 27, 27, 0.00) 100%);
    }

    .banner_content {
        height: 100%;
        display: flex;
        align-items: flex-end;
        justify-content: center;
        padding: 0;
    }
}

@media (max-width: 600px) {
    .banner_wrapper {
        height: 650px;
        background-image: url(../assets/banner_m.jpg);
        background-position: left;
    }

    .banner_line {
        text-transform: none;
        padding-bottom: 16px;
    }

    .after_banner {
        font-size: 14px;
        line-height: 24px;
    }
}