.notice_banner {
    position: relative;
    width: 100%;
    padding: 140px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.notice_banner_image img {
    width: 100%;
	height: 100%;
	box-sizing: border-box;
	object-fit: cover;
	object-position: 50% 50%;
    opacity: 0.6
}

.notice {
    width: 570px;
    margin-left: auto;
    z-index: 5;
    box-sizing: border-box;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.left .notice {
    margin-left: 0;
}

.notice h2 {
    font-size: 70px;
    color: var(--white);
    text-align: left;
    line-height: 1.3;
    margin: 0;
}

.notice p {
    margin: 25px 0;
}

.notice .subheading {
    text-transform: uppercase;
    color: var(--white);
	background-color: var(--red);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 14px;
	font-family: 'Cooper Hewitt', sans-serif;                                                
    font-weight: 709;
	font-size: 15px;
	width: max-content;
    margin-top: 0;
    margin-bottom: 20px;
}

.notice .button {
    margin-top: 20px;
}

@media (max-width: 1300px) {
    .notice {
        margin: 0 auto;
        align-items: center;
    }

    .notice h2 {
        text-align: center;
    }

    .notice .subheading {
        margin: 0 auto 20px;
    }

    .notice .button {
        margin: 20px auto 0;
    }
}

@media (max-width: 650px) {
    .notice {
        width: 100%;
    }
    
    .notice h2 {
        font-size: 48px;
    }
}