* {
	margin: 0; 
	padding: 0;
}

body {
	font: 15px 'Quattrocento Sans', Arial, Helvetica, sans-serif;
	color: #595959;
	background: #E6EDDC;
}

a {
	text-decoration: none;
	color: #94C7B6;
}
a img {
	border: none; 
}

header, section, footer {
	width: 88%;
	padding: 1em 6%; 
	position: relative;
	background: #fff;
}
header {
	height: 100px; 
}
	header nav {
		float: right; 
		height: 100px; 
		width: 230px; 
		-webkit-column-count: 2;
	  	-webkit-column-gap: 5px;
	 	-moz-column-count: 2;
		-moz-column-gap: 5px;
		column-count: 2;
		column-gap: 5px;
		margin: 10px 0;
	}
		header nav a {
			color: #939393;
			display: block;
			text-align: right;
			font: italic 14px/25px 'Sorts Mill Goudy', serif;
		}
		header nav a .fa {
			text-align: left; 
			width: 2em;
			padding-left: 1em;
			color: #fff;
		}
		header nav a:hover {
			color: #D3643B;
		}
		header nav a:hover i {
			color: #94C7B6; 
		}

section {
	background: none;
	width: 84%;
	padding: 1em 8%; 
	background: url('images/subtle_dots_bg.png');
	padding-bottom: 1.5em;
}
	section h1 {
		font: 700 italic 25px/35px 'Sorts Mill Goudy', serif;
		text-transform: lowercase;
		margin-bottom: 10px;
	}
	section h1.teal {
		color: #94C7B6;
	}
	section h1.red {
		color: #E88F71;
	}
	section p {
		margin-bottom: 1em;
	}

section#homepage {
	background: url('images/index_bg.jpg') no-repeat;
	background-size: cover; 
	background-position: center center; 
	height: 200px; 
}

section#homepage_options {

}
	section#homepage_options h1 {
		font: 15px/35px 'Oswald', Helvetica, sans-serif;
		text-transform: uppercase;
		border-top: 2px solid #ADADAD;
		border-bottom: 2px solid #ADADAD;
		text-align: center; 
		letter-spacing: .3em;
	}
	section#homepage_options div {
		width: 27%; 
		margin: 1em 3%;
		display: inline-block;
		text-align: center;
		vertical-align: top;
	}

table.pricing {
	margin: auto; 
	border-spacing: 0;
	display: inline-table;
	vertical-align: top;
	margin: 2em 4.5%;
	width: 40%;
}
	table.pricing tr {
		background: white; 
	}
	table.pricing th, td {
		padding: 1em;
	}
	table.pricing th {
		background: #F6E7E2;
	}
	table.pricing tr td:first-child, table.pricing tr th:first-child {
		text-align: left; 
		width: 65%;
	}
	table.pricing tr td:last-child, table.pricing tr th:last-child {
		text-align: right; 
		width: 35%;
	}

blockquote {
	background: #F6E7E2;
	padding: 1em;
	width: 50%; 
	margin: auto; 
	margin-bottom: 1em;
	text-align: center;
}

form {
	width: 60%;
	margin: auto; 
	background: #CCE8DE;
	padding: 1.5em;
}
	form div {
		margin-bottom: 1em;
		width: 100%;
	}
	form label {
		width: 20%;
		display: inline-block;
		text-align: right;
		vertical-align: middle;
	}
	form input, form textarea {
		margin-left: 1em;
		width: 70%; 
		border: none; 
		background: #fff; 
		padding: .5em;
		font: 16px 'Quattrocento Sans', sans-serif;
		resize: none; 
	}
	form input[type=submit] {
		width: 30%; 
		margin-left: 35%; 
		background: #fff;
	}

footer {
	font-size: 14px; 
	line-height: 20px;
	background: #E6EDDC;
}
	footer a {
		color: #595959;
	}
		footer a:hover {
			color: #000;
		}
	footer div {
		display: inline-block;
		width: 20%;
		padding: 2.5%; 
		vertical-align: top;
	}
	footer div b {
		text-transform: uppercase;
		font-size: .9em;
	}
	footer div i {
		width: 20px; 
		text-align: right; 
		padding-right: 1em;
	}
	footer h1 {
		font: italic 1em 'Sorts Mill Goudy', serif;
		border-bottom: 1px dashed #B7C6A1;
		margin-bottom: 1em;
	}

@media (max-width: 900px) {
	section#homepage_options div {
		width: 90%;
	}
	header {
		height: 200px;
		text-align: center;
	}

	header nav {
		display: block;
		width: 100%;	
		-webkit-column-count: 3;
	  	-webkit-column-gap: 5px;
	 	-moz-column-count: 3;
		-moz-column-gap: 5px;
		column-count: 3;
		column-gap: 5px;
	}
	header nav a {
		font-size: 1.5em;
		text-align: center;
	}
	header nav a .fa {
		display: none; 
	}
	table.pricing {
		width: 90%;
	}
	form {
		width: 90%;
	}
	footer div {
		display: block; 
		width: 95%;
	}
}