.header-interior,
.header-interior .img-cont,
.header-interior .inner {
	position: relative;
}

.header-interior .slide {
	margin-bottom: 6px;
}

.header-interior .img-cont {
	height: 0;
	width: 100%;
	padding-bottom: 141%; /* Sets the image box with the correct aspect ratio of the image to prevent content from pushing down when the image loads */
}

.header-interior .img-cont::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70%;
	background: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 100%);
	pointer-events: none;
}
.header-interior .img-cont::before {
	content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.80) 0%, rgba(0,0,0,0) 100%);
    pointer-events: none;
}
.header-interior .img-cont img {
	width: 100%;
}



@media (min-width: 40em) {
	.header-interior .img-cont {
		padding-bottom: calc(773/1920 * 100%);
	}
}

@media (min-width: 64em) {
	.header-interior .img-cont {
		padding-bottom: calc(550/1366 * 100%);
	}

	.header-interior .slide {
		margin-bottom: 26px;
	}
	
	.header-interior h4,
	.header-interior h4 a {
		font-size: 25px;
		line-height: 30px;
		font-weight: 900;
	}

	.header-interior .content-section p {
		font-size: 17px;
		line-height: 27px;
	}
}

@media (min-width: 1200px) {
	.header-interior .content-section {
		width: 1200px;
		left: 0;
		right: 0;
		margin: 0 auto;
	}
}

