/* Globally setting box-sizing, padding, and margin on all elements */
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

/* Body */

body {
	background-color: #d9dcd6;
}

/* Header -- contains navigation bar */

header {
	padding: 20px;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
		'Lucida Sans', Arial, sans-serif;
	background-color: #2a607c;
	color: #ffffff;
}

/* Navigation */

.nav-header {
	display: inline-block;
	font-size: 48px;
}

.seo {
	color: #d9dcd6;
}

/* floating nav menu to the right side */
.nav-menu {
	padding-top: 15px;
	margin-right: 20px;
	float: right;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	font-size: 20px;
}

/* taking bullets out off the list */
.nav-list {
	list-style: none;
}

/* setting nav links to inline-block to be listed horizontally */
.nav-item {
	display: inline-block;
	margin-left: 25px;
}

.nav-link {
	color: #ffffff;
	text-decoration: none;
}

/* Main Site Image */
/* setting the large image to cover 100% of the width */
.hero-img {
	height: 800px;
	width: 100%;
	margin-bottom: 25px;
	background-size: cover;
	background-position: center;
}

/* Main Content */

#main {
	width: 75%;
	display: inline-block;
	margin-left: 20px;
}

.main-content {
	margin-bottom: 20px;
	padding: 50px;
	height: 300px;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	background-color: #0072bb;
	color: #ffffff;
}

/* floating img left */
.float-left {
	float: left;
	margin-right: 25px;
}

/* floating img right */
.float-right {
	float: right;
	margin-left: 25px;
}

/* img max heigh to 200px */
.main-img {
	max-height: 200px;
}

/* setting header font-size to 36px and margin-bottom to 20px */
.main-header {
	margin-bottom: 20px;
	font-size: 36px;
}

/* Aside Content (Benefits) */
/* Clearing both floats and floating to the right of the page */
#benefits {
	margin-right: 20px;
	padding: 20px;
	clear: both;
	float: right;
	width: 20%;
	height: 100%;
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	background-color: #2589bd;
}

.benefits-content {
	margin-bottom: 32px;
	color: #ffffff;
}

.benefits-header {
	margin-bottom: 10px;
	text-align: center;
}

.benefits-img {
	display: block;
	margin: 10px auto;
	max-width: 150px;
}

/* Footer */
/* Cleared floats and centered */
#footer {
	padding: 30px;
	clear: both;
	font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande',
		'Lucida Sans', Arial, sans-serif;
	text-align: center;
}

#footer article {
	font-size: 20px;
}