#banner {
    width: 100%;
    overflow: hidden;
    padding: 128px 16px 58px;
}

.banner_wrapper {
    width: 100%;
    max-width: 1488px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.banner_first {
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
    justify-content: center;
}

.girl_left,
.girl_right {
    display: none;
}

.banner_title {
    text-align: center;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.30), 0px 2px 6px rgba(0, 0, 0, 0.15);
    font-family: Colus;
    font-size: 32px;
    font-weight: 400;
    line-height: 36px;
    letter-spacing: -0.32px;
    padding-bottom: 10px;
}

.banner_title_block {
    max-width: 500px;
}

.banner_title span {
    color: #AA0909;
}

body.dark .banner_title {
    text-shadow: none;
}

body.dark .banner_title span {
    background: linear-gradient(180deg, #BD9C49 0%, #E6B843 63.5%, #EECE7F 79%, #8C7845 98.5%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.banner_after_title {
    text-align: center;
    font-size: 18px;
    line-height: 24px;
}

.banner_window {
    position: relative;
    width: 343px;
    height: 171px;
    border-radius: 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.04) 0%, rgba(0, 0, 0, 0.04) 100%);
    box-shadow: 0px -1.25px 0.833px 0px #FFF inset, 0px -2.508px 0.502px 0px rgba(255, 255, 255, 0.30) inset, 0px 1.254px 2.508px 0px rgba(0, 0, 0, 0.40) inset, 0px 0.833px 0px 0px #FFF, 0px -0.833px 0px 0px rgba(0, 0, 0, 0.25);
}

body.dark .banner_window {
    background: rgba(255, 255, 255, 0.02);
    box-shadow: -2px -2px 4px 0px rgba(255, 255, 255, 0.25) inset, 2px 2px 4px 0px rgba(0, 0, 0, 0.25) inset;
}

.banner_pers {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.banner_second {
    padding: 51px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    justify-content: center;
}


@media (min-width: 875px) {

    .banner_pers_block {
        display: none;
    }

    #banner {
        padding: 170px 16px 100px;
    }

    .banner_title {
        font-size: 64px;
        line-height: 68px;
        letter-spacing: -0.64px;
    }

    .banner_after_title {
        font-size: 24px;
        line-height: 32px;
    }

    .banner_title_block {
        max-width: 840px;
    }
}

@media (min-width: 1245px) {
    .girl_left,
    .girl_right {
        display: block;
        position: absolute;
    }

    .girl_left {
        left: -200px;
        top: 5px;
        height: 1087px;
    }

    .girl_right {
        right: -200px;
        top: 12px;
        height: 1087px;
    }

    #banner {
        height: 1040px;
    }

    .banner_title_block {
        max-width: 800px;
    }

    .banner_wrapper {
        justify-content: center;
        height: 100%;
    }
}

@media (min-width: 1420px) {
    .banner_title_block {
        max-width: 955px;
    }
}

@media (min-width: 1680px) {
    .girl_left {
        left: -285px;
        top: 5px;
        height: 1087px;
    }

    .girl_right {
        right: -296px;
        top: 12px;
        height: 1087px;
    }
}