.notice_banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 140px auto;
    height: 800px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-end;
}

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

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

.notice_banner_panel {
    padding: 120px 150px;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    max-width: 550px;
}

@media (min-width: 1600px) {
    .notice_banner_panel {
        padding-right: calc((100% - 1300px) / 2);
    }
}

.notice_banner h3 {
    color: var(--white);
    margin: 0 0 15px;
    font-size: 40px;
    line-height: 1;
    text-align: left;
}

.notice_banner p {
    color: var(--white);
}

.notice_banner .buttons_container {
    margin-top: 25px;
}

.notice_banner .buttons_container .button {
    background-color: var(--gold);
    color: var(--white) !important;
}

.notice_banner .buttons_container .button_2 {
    border: 2px solid var(--white);
    color: var(--white) !important;
}

.notice_banner .buttons_container .button_2:hover {
    background-color: var(--white) !important;
    border: 2px solid var(--white) !important;
    color: var(--dark-blue) !important;
}

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

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

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

@media (max-width: 1000px) {
    .notice_banner_panel {
        padding: 120px;
        text-align: center;
        align-items: center;
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .notice_banner_panel {
        padding: 120px 100px;
    }
}

@media (max-width: 800px) {
    .notice_banner_panel {
        padding: 120px 90px;
    }
}

@media (max-width: 600px) {
    .notice_banner_panel {
        padding: 120px 20px 130px;
    }

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

    .notice_banner_panel .buttons_container {
        flex-direction: column;
        width: 100%;
    }

    .notice_banner_panel .buttons_container .button_2 {
        margin-right: 0;
        margin-bottom: 15px;
    }
}