.banner_wrapper {
    background-image: url(../assets/banner.jpg);
    height: 100vh;
    max-height: 1080px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.banner_content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px;
    position: relative;
}

.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;
    margin-top: 90px;
    z-index: 2;
}

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%);

}

.little_text {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translate(-50%);
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    max-width: 601px;
}

.little_title {
    color: #FFFFFF;
    text-transform: uppercase;
}

.little_aftertitle {
    color: #FFFFFF;
    text-align: center;
    font-family: Evolventa;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 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%;
}

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%);
}

body.dark .banner_text:after {
    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 {
    background: linear-gradient(0deg, rgba(51, 3, 3, 1) 10%, rgba(170, 9, 9, 1) 70%, rgba(170, 9, 9, 1) 28%, rgba(51, 3, 3, 1) 95%);
    -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;
    padding-bottom: 8px;
}

body.dark .banner_title {
    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;
}

.banner_divider {
    position: absolute;
    z-index: 0;
    top: 0;
    opacity: 10%;
    object-fit: cover;
    height: 100%;
    object-position: center;
    left: 0;
    width: 100%;
    pointer-events: none;
}

.banner_divider svg {
    width: 100%;
}

@media (max-width: 1150px) {

    .banner_content {
        padding: 0;
    }
}

@media (max-width: 900px) {

    .banner_content {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .banner_wrapper {
        height: 605px;
    }

    .banner_text {
        padding: 32px;
        margin-top: 235px;
        min-width: 100%;
    }

    .little_aftertitle {
        font-family: "Jost";
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 16px;
    }

    .little_text {
        bottom: 14px;
        max-width: 335px;
        left: 0%;
        transform: translate(-0%);
        position: relative;
    }
}