html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
p {
	margin: 10px 0;
}
a  {
	text-decoration: none;
}
html, body {
	height: 100%;
	max-width: 100%;
}
body {
	background-color: #FFF;
	color: #020202;
	font: 13px 'Libre Franklin', sans-serif;
	-webkit-font-smoothing: antialiased;
}

.clear {
	clear: both;
}
a.learnMore {
	background-color: #333333;
	color: #FFF;
	display: inline-block;
	font-size: 20px;
	font-weight: 700;
	padding: 10px 40px;
	text-transform: uppercase;
}

header {
	box-sizing: border-box;
	height: 80px;
	position: relative;
	z-index: 3;
}
header .wrap {
	position: relative;
}
header .logo {
	text-align: center;
}
header .logo img {
	display: inline-block;
	height: 63px;
	margin-top: 10px;
	vertical-align: top;
}
#topNav {
	bottom: 0;
	display: none;
	position: absolute;
	right: 0;
}
#topNav a {
	color: #020202;
	cursor: pointer;
	display: inline-block;
	font-size: 15px;
	font-weight: 700;
	margin: 0 15px;
	text-transform: uppercase;
}
#mobileControls {
	background-color: #333333;
	height: 47px;
	width: 100%;
}
#mobileToggle {
	float: right;
	margin-right: 13px;
	padding: 13px;
	width: 25px;
}
#mobileToggle div {
	background-color: #FFF;
	height: 3px;
	margin: 3px 0;
	width: 100%:
}
#nav {
	background-color: #FFF;
	border-left: 2px solid #666;
	bottom: 0;
	position: fixed;
	right: 0;
	top: 0;
	transform: translateX(100%);
	transition: transform 0.2s linear;
	width: 80%;
	z-index: 5;
}
#nav.expand {
	transform: translateX(0);
}
#mobileNavControls {
	padding: 20px 30px;
}
#mobileNavControls i {
	color: #000;
	font-size: 30px;
}
#mobileNavControls i.fa-times {
	float: right;
}
#nav ul {
	padding: 0 30px;
}
#nav ul li.expandable .firstExtra {
	display: none;
}
#nav ul li {
	border-bottom: 1px solid #e7e7e7;
	display: block;
	padding: 20px 0;
	position: relative;
}
#nav ul li.expandable:after {
	border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #000;
	content: '';
  height: 0; 
  position: absolute;
  right: 0;
  top: 24px;
  width: 0; 
}
#nav ul li.expandable.expanded:after {
	border-right: 6px solid transparent;
  border-top: 6px solid #000;
  border-left: 6px solid transparent;
}
#nav ul li a {
	color: #333;
	font-size: 17px;
	font-weight: 500;
	text-transform: uppercase;
}
#nav ul li ul {
	display: none;
}
#nav ul li.expanded ul {
	display: block;
}
#nav ul > li > ul {
	margin-top: 15px;
}
#nav ul > li > ul > li {
	border: none;
	padding: 10px 0;
}
#nav ul li ul li .extra {
	display: none;
}

#content {
	box-sizing: border-box;
	position: relative;
	width: 100%;
	z-index: 1;
}

footer {
	background-color: #000;
	box-sizing: border-box;
	color: #FFF;
	height: 80px;
	padding: 20px;
	position: relative;
	z-index: 2;
}
footer p {
	font-size: 16px;
	font-weight: 700;
}
footer p a {
	color: #FFF;
}

@media (min-width: 1200px) {
	header {
		background-image: url('/assets/images/header-pattern-slim.jpg');
		background-position: top left;
		background-repeat: repeat-x;
		background-size: auto 100%;
		height: 123px;
	}
	header .wrap, footer .wrap, #nav ul {
		margin: 0 auto;
		width: 90%;
	}
	header .logo {
		text-align: left;
	}
	header .logo img {
		height: 103px;
	}
	#topNav {
		display: block;
	}
	#mobileControls {
		display: none;
	}
	#nav {
		background-color: rgba(0,0,0,0.8);
		border-bottom: 6px solid #ede7d7;
		border-left: none;
		border-top: 6px solid #ede7d7;
		bottom: auto;
		left: 0;
		padding: 0;
		position: absolute;
		top: 100%;
		transform: translateX(0);
		width: 100%;
	}
	#mobileNavControls  {
		display: none;
	}
	#nav ul {
		text-align: right;
	}
	#nav ul li {
		border: none;
		display: inline-block;
		margin: 0 15px;
		padding: 15px 0;
		position: static;
		vertical-align: top;
	}
	#nav ul li.expandable:after {
		display: none;
	}
	#nav ul li a {
		color: #FFF;
		font-weight: 700;
	}
	#nav ul li:hover a {
		color: #ede6d4
	}
	#nav ul li.mobileOnly {
		display: none;
	}
	#nav ul li.expandable:hover ul {
		display: block;
	}
	#nav ul li.expandable ul {
		background-color: #ede7d7;
		box-sizing: border-box;
		left: 0;
		margin: 0;
		min-height: 160px;
		padding: 15px 0;
		position: absolute;
		right: 0;
		text-align: left;
		top: 100%;
		width: 100%;
	}
	#nav ul li.expandable .firstExtra {
		display: block;
		float: right;
		margin: 0 5% 0 0;
		width: 817px;
	}
	#nav ul li.expandable .firstExtra .extra {
		height: 100%;
		position: absolute;
		right: calc(5% + 15px);
		top: 0;
		width: 572px;
		z-index: 1;
	}
	#nav ul li.expandable ul li {
		display: block;
		float: right;
		margin: 0 5% 0 0;
		width: 817px;
	}
	#nav ul li.expandable ul li > a {
		color: #000;
		display: block;
		font-size: 14px;
		max-width: 25%;
		text-transform: none;
	}
	#nav ul li.expandable ul li:hover > a {
		color: #976935;
	}
	#nav ul li.expandable ul li .extra {
		background-color: #ede7d7;
		height: 100%;
		position: absolute;
		right: calc(5% + 15px);
		top: 0;
		width: 572px;
		z-index: 2;
	}
	#nav ul li.expandable ul li:hover .extra {
		display: block;
	}
	#nav ul li.expandable ul .extra .wrap {
		bottom: 0;
		height: 100%;
		position: absolute;
		right: 50%;
		width: 50%;
	}
	#nav ul li.expandable ul .extra figure {
		align-items: flex-end;
		bottom: 0;
		display: flex;
		height: 100%;
		justify-content: flex-end;
    overflow: hidden;
    position: absolute;
    right: 0;
    width: 50%;
	}
	#nav ul li.expandable ul .extra figure img {
		flex-shrink: 0;
		max-height: 100%;
		max-width: 100%;
	}
	#nav ul li.expandable ul .extra .wrap p {
		color: #000;
		font-size: 13px;
		font-weight: 500;
		left: 0;
		margin: 0;
		position: absolute;
		text-transform: none;
		top: 25px;
		width: 90%;
	}
	
	#content {
		margin: -123px 0 -80px;
		min-height: 100%;
		padding: 123px 0 80px;
	}
}

/*Home*/
article.hero-a, .header-a .details {
	position: relative;
	width: 100%;
}
article.hero-a figure img, .header-a .details figure img {
	display: block;
	width: 100%;
}
article.hero-a .wrap, .header-a .details .inner {
	background-color: rgba(0,0,0,0.6);
	bottom: 20px;
	box-sizing: border-box;
	color: #FFF;
	left: 20px;
	padding: 10px 20px;
	position: absolute;
	width: 60%;
}
article.hero-a .wrap h2, .header-a .details .inner h1 {
	font-size: 20px;
	font-weight: 700;
	line-height: 22px;
}
article.hero-a .wrap p, .header-a .details .inner p {
	display: none;
	font-size: 15px;
	font-weight: 500;
	line-height: 19px;
}
.home .owl-controls {
	background-color: #ede6d4;
	padding: 8px 0;
	width: 100%;
}
.owl-pagination {
	text-align: center;
	width: 100%:
}
.owl-page {
	background-color: #beb8a8;
	display: inline-block;
	cursor: pointer;
	height: 10px;
	margin: 0 8px;
	transition: background-color 0.3s linear;
	width: 20px;
}
.owl-page.active {
	background-color: #000;
}
.owl-prev, .owl-next {
	background-color: rgba(0,0,0,0.7);
	color: #FFF;
	font-size: 30px;
	font-weight: 500;
	padding: 15px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.owl-prev {
	left: 0;
}
.owl-next {
	right: 0;
}
#home_content {
	padding: 30px 20px;
}
#home_content_image {
	display: block;
	margin: 10px 0;
	max-width: 100%;
}
#home_content_wrap {
	box-sizing: border-box;
}
#home_content_wrap h1 {
	font-size: 26px;
	font-weight: 700;
}
#home_content_wrap p {
	font-size: 15px;
	line-height: 19px;
}
#home_content_wrap a.learnMore {
	margin-top: 20px;
}
@media (min-width: 1200px) {
	article.hero-a .wrap, .header-a .details .inner {
		bottom: auto;
		left: 5%;
		outline: 4px solid #000;
		outline-offset: 4px;
		padding: 20px 30px;
		top: 70%;
		transform: translateY(-50%);
		width: 40%;
	}
	article.hero-a .wrap h2, .header-a .details .inner h1 {
		font-size: 30px;
		line-height: 40px;
	}
	article.hero-a .wrap p, .header-a .details .inner p {
		display: block;
		font-size: 17px;
		line-height: 22px;
	}
	#home_content {
		padding: 60px 0;
	}
	#home_content .wrap {
		margin: 0 auto;
		width: 90%;
	}
	#home_content_image {
		display: inline-block;
		margin: 0;
		max-width: 40%;
		vertical-align: top;
	}
	#home_content_wrap {
		display: inline-block;
		margin: 0;
		max-width: 60%;
		padding: 0 40px;
		vertical-align: top;
	}
	#home_content_wrap h1 {
		font-size: 30px;
	}
	#home_content_wrap p {
		font-size: 17px;
		line-height: 22px;
	}
}

.page-a {
	padding: 20px;
}
.page-a .copy {
	font-size: 14px;
	line-height: 18px;
}
.page-a .moreBox {
	background-color: #ebebeb;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.7);
	box-sizing: border-box;
	color: #000;
	font-size: 16px;
	margin-top: 20px;
	padding: 20px;
	text-align: center;
}
.page-a .moreBox .learnMore {
	background-color: #99662d;
	box-sizing: border-box;
	display: block;
	margin-top: 10px;
	padding: 10px 0;
	width: 100%;
}
.page-a .carousel-a {
	margin: 20px 0;
}
.page-a .copy ul {
	list-style: disc outside none;
	padding-left: 20px;
}
.page-a .copy strong {
	font-weight: 700;
}

.notFound {
	padding: 20px;
}
.notFound h1, .contact h1 {
	font-size: 30px;
	font-weight: 700;
	padding: 0 0 20px 10px;
}
.notFound .body-content {
	font-size: 18px;
	font-weight: 600;
}
.contact .form-group {
	box-sizing: border-box;
	display: inline-block;
	padding: 10px;
	vertical-align: top;
	width: 100%;
}
.contact .form-group input[type="text"], .contact .form-group input[type="email"], .contact .form-group textarea {
	border: 1px solid #999;
	border-radius: 5px;
	box-sizing: border-box;
	font-size: 16px;
	padding: 10px;
	width: 100%;
}
.contact h2 {
	font-size: 18px;
	font-weight: 600;
	padding: 10px 0;
}
.contact .types {
	text-align: center;
}
.contact .types .checkboxWrap {
	display: inline-block;
	margin: 10px;
}
.contact .types input[type="checkbox"] {
	float: left;
	height: 20px;
	padding: 0;
	margin: 0;
	width: 20px;
}
.contact .types label {
	float: left;
	font-size: 18px;
	margin: 0 5px;
}
.contact .sendButton {
	background-color: #333333;
	border: none;
  color: #FFF;
  cursor: pointer;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  padding: 10px 40px;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
	#noHeaderSpacer {
		height: 100px;
		width: 100%;
	}
	.page-a {
		margin: 20px auto;
		width: 90%;
	}
	.page-a .copy {
		display: inline-block;
		font-size: 18px;
		line-height: 28px;
		vertical-align: top;
		width: 70%;
	}
	.page-a .copy p:first-child {
		margin-top: 0;
	}
	.page-a .moreBox {
		display: inline-block;
		float: right;
		font-size: 17px;
		font-weight: 600;
		line-height: 21px;
		margin-top: 0;
		vertical-align: top;
		width: 25%;
	}
	.page-a .carousel-a {
		margin: 40px 0 20px;
	}
	.notFound h1 {
		padding: 0 5%;
	}
	.notFound .body-content {
		padding: 0 5%;
	}
	.contact .wrap {
		margin: 20px auto;
		width: 90%;
	}
	.contact .form-group.half {
		width: 50%;
	}
}