@charset "UTF-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
html {
	background-color:#4f484c;
}
body {
	font:300 16px/26px 'Open Sans',Helvetica, Arial, sans-serif;
	color:#766f71;
	background-color:#fff;
	overflow-x: hidden;
}
br.clear {
	clear:both;
}

header {
	background-color:#f4f0ef;
	padding-top:10px;
	position: relative;
	min-height: 150px;
}

header a {
	background: url('images/logo.svg') no-repeat;
	background-size: contain;
	display: inline-block;
	position: absolute;
	top: 20px;
}

header img {
	display: block;
	visibility: hidden;
}

/* ========= NAVIGATION ========= */

nav {
	background-color:#e97d24;
	height:45px;
}
nav ul,
header div,
.main > section,
.three-column > div,
.contact > div,
footer div {
	max-width: 1100px;
	margin-left: auto;
	margin-right: auto;
}

nav li {
	float:right;
	list-style:none;
	margin-right:30px;
	height:45px;
	line-height:45px;
}

nav a {
	color:#fff;
	text-decoration:none;
	text-transform:uppercase;
}

nav a:hover {font-weight:400;}

/* ========= MAIN SECTION ========= */

.main {padding-top:40px;}

h1 {
	font-size:46px;
	font-weight:300;
	line-height:normal;
	padding-bottom:20px;
}

p {padding-bottom:20px;}

section {
	display: flex;
	margin-bottom: 50px;
}

.mainimg {
	margin-left: 30px;
	border-radius:170px;
	border:8px solid #e97d24;
}

section.three-column {
	padding:50px;
	margin-bottom: 0;
	max-width: none;
	background-color: #e3d9d6;
}

.three-column > div {
	display: flex;
	justify-content: space-between;
}

article {
	display:inline-block;
	width: 28%;
	text-align:justify;
	vertical-align:text-top;
}

article + article + article {margin-right:0;}

h3 {
	font-weight:600;
	font-size:24px;
	line-height:normal;
	text-align:center;
	color:#e97d24;
	clear:both;
	padding-bottom:20px;
}

article div {text-align:center;width:100%;}

/* ========= CONTACT FORM ========= */

form {
	display: flex;
	justify-content: space-between;
}

.col1 {
	width: 65%;;
}

.col1 {
	display: flex;
	flex-flow: row wrap;
}

.col1 > * {
	width: 45%;
}

.col2 {
	width: 30%;
	margin-left: 5%;
}

h2 {font-size:36px;font-weight:300;padding-bottom:50px;}
input {margin-bottom:20px;}

.contact {
	clear:both;
	background-color:#f4f0ef;
	padding:50px 0;
}

input[type="text"], input[type="tel"], input[type="email"] {
	border:none;
	background-color:#e3d9d6;
	height:40px;
	border-radius:20px;
	font:italic 16px 'Open Sans';
	color:#fff;
	text-indent: 15px;
	margin-right: 5%;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
textarea:focus {
	background-color:#fff;
	outline:none;
	font-style:normal;
	color:#766f71;
}

input[name="state"] {width:110px;}
input[name="zip"] {width:160px;}

form p label {
	width: 100px;
	display: inline-block;
}

textarea {
	width: 100%;
	height:175px;
	border-radius:20px;
	border:none;
	resize:none;
	background-color:#e3d9d6;
	font:normal 16px 'Open Sans';
	color:#766f71;
}

input[type="reset"], input[type="submit"] {
	display:block;
	margin:auto;
	border:none;
	cursor:pointer;
}

input[type="submit"] {
	margin-top:20px;
	margin-bottom:10px;
	width:150px;
	height:40px;
	border-radius:20px;
	background-color:#e97d24;
	font:300 18px 'Open Sans';
	color:#fff;
}

input[type="submit"]:hover {background-color:#d24f16;}
input[type="reset"]:hover {color:#333;}

input[type="reset"] {
	font:300 14px 'Open Sans';
	color:#766f71;
	background:none;
}

/* ========= FOOTER ========= */

footer {background-color:#4f484c;height:50px;}

footer p {
	float:left;
	font-size:13px;
	color:#e3d9d6;
	line-height:50px;
}

footer ul {
	float:right;
	width:180px;
	padding-top:10px;
}

footer ul li {
	float:left;
	margin-left:5px;
	list-style:none;
	font-size:0;
	background:url(images/sprite.png) no-repeat 0 0;
	width:31px;
	height:31px;
}

footer a {
	display:block;
	width:31px;
	height:31px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
}

footer a:hover {
	border: 3px solid;
}

footer a[href*=facebook] {border-color: #3b5998;}
footer a[href*=twitter] {border-color: #1da1f2;}
footer a[href*=google] {border-color: #ea4335;}
footer a[href*=linkedin] {border-color: #0077b5;}
footer a[href*=youtube] {border-color: #f00;}

footer ul li + li{background-position:-35px 0;}
footer ul li + li + li{background-position:-70px 0;}
footer ul li + li + li + li{background-position:-105px 0;}
footer ul li + li + li + li + li{background-position:-140px 0;}

/* ========== MOBILE DEVICES ========== */

@media (max-width: 1150px) {
	nav ul, section, .contact, footer div {
		padding-left: 3%;
		padding-right: 3%;
		max-width: none !important;
	}
	nav ul {
		padding-right: 3%;
	}

	form {
		display: block;
	}

	.col1, .col2 {
		width: 100%;
	}

	.col2 {
		margin-left: 0;
	}

	.col1 p:first-of-type {
		text-align: right;
		padding-right: 10px;
	}
}

@media (max-width: 900px) {
	h1 {
		font-size: 36px;
	}

	section {
		display: block;
	}

	.mainimg {
		display: none;
	}

	.three-column > div {
		display: block;
	}

	.three-column article {
		width: 100%;
		margin-bottom: 30px;
		display: block;
	}
}

@media (max-width: 800px) {
	section > div {
		width: 100%;
	}
}

@media (max-width: 600px) {
	header {
		min-height: 125px;
		padding-left: 20px;
	}

	header a {
		max-width: 300px;
	}

	.main > section, section.three-column, .contact {
		padding: 5%;
	}

	h1 {
		font-size: 26px;
	}
	.col1 {
		display: block;
	}

	.col1 > * {
		width: 100%;
	}

	.contact .col1 p {
		text-align: center;
	}

	footer {
		height: auto;
	}

	footer p, footer ul {
		float: none;
		text-align: center;
		margin: auto;
		padding: 0;
	}
}
