html {
	overflow-x: hidden;
}

body {
	margin: 0;
	font-family: 'Nunito Sans', sans-serif;
	overflow-x: hidden;
}

.header {
	text-align: center;
	padding: 47px 0 16px;
}

.banner {
	width: 100%;
	position: relative;
}

.banner img {
	width: 100%
}

.banner h2 {
	color: #fff;
    position: absolute;
    z-index: 1;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 42%;
    width: 100%;
    font-size: 29px;
    letter-spacing: 2px;
	text-align: center;
}

.bottom-content {
	width: 725px;
    margin: auto;
    margin-top: 28px;
}

.bottom-content img, .bottom-content div {
	float: left;
	display: block;
}

.bottom-content img {
    padding-left: 9px;
	margin-right: 45px;
}

.bottom-content div {
	width: 100%;
    font-size: 22px;
    letter-spacing: .8px;
    line-height: 33px;
    color: #323232;
}

.bottom-content span {
    margin-top: 6px;
    display: block;
}

.bottom-content div a {
	color: #323232;
	text-decoration: none;
	font-weight: bold;
}

.clearfix {
	clear: both;
}


<!-- Responsive Programming -->
@media screen and (max-width: 991px) {
	.banner h2 {
		top: 37%;
	}
}

@media screen and (max-width: 768px) {
	.banner h2 {
		top: 30%;
		font-size: 3.8vw;
	}
	
	.bottom-content {
		width: auto;
		margin-left: 15px;
		margin-right: 15px;
	}
}

@media screen and (max-width: 645px) {
	.header {
		padding: 30px 0 16px;
	}
	
	.bottom-content img {
		padding-left: 0 !important;
		float: none;
		margin: auto;
		display: block;
	}
	
	.bottom-content div {
		text-align: center;
	}
}

@media screen and (max-width: 425px) {
	.banner {
		width: 200%;
		margin-left: -50%;
	}
	
	.banner h2 {
		top: 36%;
		font-size: 5.8vw;
		width: 80vw;
		text-align: center;
	}
}


<!-- End Responsive Programming -->