.notice_banner {
    position: relative;
    width: 100%;
    margin: 0 auto;
    min-height: 600px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.notice_banner .wrapper_large {
    padding: 180px 0 190px;
}

.notice_banner_image {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: var(--black);
}

.notice_banner img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.notice_banner h1 {
    position: relative;
    color: var(--white);
    text-align: center;
    margin: 0 auto 30px;
    font-size: 100px;
    width: 600px;
    z-index: 5;
}

.notice_banner p {
    position: relative;
    width: 500px;
    margin: 0 auto 40px;
    text-align: center;
    z-index: 5;
}

.notice_banner .buttons_container {
    position: relative;
    justify-content: center;
    z-index: 5;
}

.notice_banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.4);
}

.notice_banner .cashews {
    position: absolute;
    top: 140px;
    left: 0;
    width: 360px;
    height: 360px;
    opacity: 0.25;
    z-index: 0;
}

.notice_banner .spring_onion {
    position: absolute;
    top: 280px;
    right: 0;
    width: 330px;
    height: 330px;
    opacity: 0.25;
    z-index: 0;
}

.notice_banner .spring_onion svg path,
.notice_banner .spring_onion svg rect,
.notice_banner .cashews svg path,
.notice_banner .cashews svg rect {
    fill: var(--white);
}


@media (max-width: 1250px) {
    .notice_banner {
        border: none;
        padding: 0;
        width: 100%;
    }

    .notice_banner_image {
        width: 100%;
        height: 100%;
    }

    .notice_banner h1 {
        font-size: 44px;
        text-align: center;
    }
}


@media (max-width: 1200px) {
    .notice_banner .cashews,
    .notice_banner .cashews svg {
        width: 230px;
        height: 230px;
    }

    .notice_banner .spring_onion,
    .notice_banner .spring_onion svg {
        width: 210px;
        height: 210px;
    }
}

@media (max-width: 950px) {
    .notice_banner .cashews {
        top: 0px;
        left: 0;
    }

    .notice_banner .spring_onion {
        top: unset;
        bottom: 50px;
        right: 0;
    }
}

@media (max-width: 800px) {
    .notice_banner {
        justify-content: center;
    }

    .notice_banner h1,
    .notice_banner p {
        width: 100%;
    }
}

@media (max-width: 660px) {
    .notice_banner .buttons_container {
        flex-direction: column;
    }

    .notice_banner .buttons_container .button,
    .notice_banner .buttons_container .button_2 {
        margin: 0 auto 25px;
    }

    .notice_banner .buttons_container .button_2:last-of-type {
        margin-right: auto;
        margin-bottom: 0;
    }

    .notice_banner .buttons_container .button,
    .notice_banner .buttons_container .button_2 {
        width: 100%;
    }

    .notice_banner .cashews,
    .notice_banner .spring_onion {
        display: none;
    }
}

@media (max-width: 600px) {
    .notice_banner {
        justify-content: center;
    }
}