.banner-wrapper {
    width: 100%;
    height: 456px;
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 1;
}

.banner-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 48px;
    gap: 24px;

    position: absolute;
    height: 436px;
    left: 64px;
    top: 0px;
}

#banner-image {
    position: relative;
    width: 93%;
    height: 436px;
    left: 52px;
    top: 30px;
    background: url(../../images/404banner.jpeg);
    background-size: cover;
    background-position: center;
}

#banner-title {
    width: 342px;
    height: 48px;
    font-style: normal;
    font-weight: 800;
    font-size: 48px;
    line-height: 100%;
    display: flex;
    align-items: center;
    color: var(--accent-1);
    flex: none;
    order: 0;
    align-self: stretch;
    flex-grow: 0;
}

#banner-text {
    width: 342px;
    height: 48px;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #37155C;
    flex: none;
    order: 1;
    align-self: stretch;
    flex-grow: 0;
}

.banner-btn {
    position: relative;
}

#button-text {
    width: 83px;
    height: 18px;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 700;
    font-size: 12px;
    line-height: 150%;
    color: var(--accent-1);
    flex: none;
    order: 0;
    flex-grow: 0;
}

@media only screen and (max-width: 1023px) {


    .banner-wrapper {
        width: 100%;
        height: 452px;
        flex: none;
        order: 0;
        align-self: stretch;
        flex-grow: 1;
    }

    .banner-left {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        padding: 48px;
        gap: 24px;

        position: absolute;
        width: 317px;
        height: 452px;
        left: 32px;
        top: 32px;
    }

    #banner-image {
        position: relative;
        width: 93%;
        height: 436px;
        top: 30px;
        background: url(../../images/404banner.jpeg);
        background-size: cover;
        background-position: center;
    }

    #banner-text {
        width: 221px;
        height: 72px;
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
        color: #37155C;
        flex: none;
        order: 1;
        align-self: stretch;
        flex-grow: 0;
    }
}

@media only screen and (max-width: 599px) {
    #banner-image {
        width: 343px;
        height: 200px;
        left: 22px;
    }

    .banner-left {
        left: 0px;
        top: 100px;
        padding: 0;
    }
}