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

*,
*:before,
*:after {
	box-sizing: border-box;
}
a {
	color: #bf8450;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
a img {
	border: 0;
}
img {
	display: block;
	width: 100%;
	height: auto;
}
body {
	font: 16px/1.2 Arial, Helvetica, sans-serif;
	background: #5a5349;
	margin: 0;
	padding: 0;
	color: #1e1b18;
}
h1 {
	font-size: 30px;
	text-align: center;
}
h2 {
	font-size: 24px;
}
.wrapper {
	margin: 0 auto;
	max-width: 1000px;
	width: 100%;
	text-align: left;
	background-color: #f2f2f2;
	box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}
aside {
	width: 30.5%;
	display: inline-block;
	vertical-align: top;
}
.home {
	background: #8d7b6d url('../images/logo.png') center no-repeat;
	height: 137px;
	display: block;
	width: 100%;
}
.mobile-menu {
	display: none;
	color: #fff;
	width: 60px;
	height: 60px;
	background-color: #c4b6a9;
	transition: background-color 0.5s;
	text-align: center;
	font-size: 24px;
	line-height: 60px;
	float: right;
	position: relative;
	z-index: 100;
}
.mobile-menu:active,
.mobile-menu:hover {
	text-decoration: none;
}
nav.open .hamburger,
.close-x {
	display: none;
}
.hamburger,
nav.open .close-x {
	display: block;
}
nav.open .mobile-menu {
	background-color: #8d7b6d;
}
nav {
	background: rgb(196,182,169);
	background: linear-gradient(180deg, rgba(196,182,169,1) 0%, rgba(242,242,240,1) 100%);
}
nav > ul {
	background: rgb(177,170,164);
	background: linear-gradient(180deg, rgba(177,170,164,1) 0%, rgba(242,242,240,0) 100%);
	margin: 0;
	list-style: none;
	font-size: 14px;
	padding: 20px 20px 40px;
	margin: 0 15px 15px;
	top: 15px;
	position: relative;
}
	nav li {
		padding: 0 0 20px;
		font-weight: bold;
	}
	nav a {
		text-decoration: none;
		color: #1e1b18;
	}
	nav ul ul {
		margin: 0;
		padding: 0 0 0 20px;
	}
	nav ul ul li {
		list-style: none;
		margin: 0;
		padding: 0;
		font-weight: normal;
	}
	nav ul ul li a {
		color: #554d44;
	}
.contentRight {
	width: 69.5%;
	display: inline-block;
	vertical-align: top;
}
header {
	height: 138px;
	padding: 10px 15px 0 0;
	color: #8c7b6c;
	text-align: right;
}
main {
	padding: 15px;
}
form {
	margin-bottom: 50px;
}
form label {
  display: block;
  font-weight: bold;
}
form input,
form select,
form textarea {
	height: 30px;
	width: 100%;
	font: 16px/1.2 Arial, Helvetica, sans-serif;
}
form select {
	background-color: #fff;
}
form textarea {
	height: 60px;
}
form div {
	margin: 0 0 15px;
	width: 100%;
	max-width: 250px;
}
form .address div {
	max-width: none;
	display: inline-block;
	margin-right: 2%;
}
form .address .street {
	width: 100%;
	display: block;
	margin-right: 0;
}
form .address .city {
	width: 48%;
}
form .address .state {
	width: 10%;
}
form .address .zip {
	width: 38%;
	margin-right: 0;
}
form .textarea {
	max-width: 100%;
}
footer {
	color: #f2f2f2;
	text-align: center;
	padding: 18px 0;
	font-size: 12px;
}
footer a {
	color: #f2f2f2;
}
@media screen and (max-width: 500px) {
	aside,
	.contentRight {
		width: 100%;
		display: block;
	}
	nav ul {
		display: none;
	}
	nav.open ul {
		display: block;
	}
	.contentRight {
		margin-top: 60px;
	}
	.mobile-menu {
		display: block;
	}
	form div {
		max-width: none;
	}
	form .address div,
	form .address .city,
	form .address .state,
	form .address .zip {
		width: 100%;
		display: block;
		margin-right: 0;
	}
}