/**
 * partials/reset
 * ---
 * Reset file
 * NOTE: also `normalize.css` is used
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */img,legend{border:0}legend,td,th{padding:0}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,optgroup,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre,textarea{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}table{border-collapse:collapse;border-spacing:0}

// Global box-sizing
*,
*:after,
*:before {
	box-sizing: border-box;
}

html {
	font-size: 100%;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
}

body {
	font-family: 'Merriweather', serif;
	font-size: 18px;
	line-height: 1.9;
	color: #000;
	background-color: #fff;
	width: 100%;
	clear: both;
	position: relative;
	content: " ";
	overflow-x: hidden;
}
	
img {
	max-width: 100%;
	vertical-align: middle;
}

a {
	color: #51683C;
	text-decoration: none;

	&:focus,
	&:hover {
		text-decoration: underline;
	}

	&:active {
	color: #000;
	}
}
input[type="email"],
input[type="text"],
input[type="search"] {
	font-size: inherit;
	line-height: inherit;
}
::selection {
	background-color: #64804A;
	color: #fff;
	text-shadow: none;
}
.wrapper {
  max-width: 1060px;
  width: 95%;
  padding: 0;
  margin: 0 auto;
  position: relative;
}
.btn,h1,h2,h3 {
	line-height: 1.3;
}
.btn {
	text-transform: uppercase;
	text-align: center;
	font-weight: 400;
	padding: 18px 50px;
	display: table;
	font-size: 0.88em;
	background: #51683C;
	color: #fff;
	letter-spacing: .04em;
	border-radius: 0 !important;
}
.btn:hover {
	background: #2C2724;
	color: #fff;
}

hr {
	border: none;
	height: 2px;
	background: #000;
	width: 100%;
	margin: 30px 0;
}
.btn,
.button,
a {
	text-decoration: none;
	-webkit-transition: all 0.1s linear 0s;
	-moz-transition: all 0.1s linear 0s;
	transition: all 0.1s linear 0s;
}
.btn:hover,
.button:hover,
a:hover {
	text-decoration: none;
	-webkit-transition: all 0.1s linear 0s;
	-moz-transition: all 0.1s linear 0s;
	transition: all 0.1s linear 0s;
}

a:link,
a:visited,
a:focus,
a:active {
	text-decoration: none !important;
}
.section {
	width: 100%;
	display: table;
	clear: both;
	position: relative;
	content: " ";
}
.header {
	text-align: center;
}
.logo-img {
	width: 280px;
	margin: 70px auto 110px;
}
.fwimage {
	width: 100%;
	margin-bottom: 20px;
}
.halfimage {
	width: 49.85%;
	float: right;
}
.halfimage:first-child {
	float: left;
}
.twocolimg {
	margin: 20px 0 55px;
}
.intro {
	line-height: 2.15;
	font-size: 0.88em;
	margin-bottom: 85px;
}
.intro-left {
	width: 46%;
	float: left;
}
.intro-right {
	width: 45%;
	float: right;
	color: #51683C;
}
.textblock .wrapper {
	max-width: 690px;
}
.textblock .wrapper p {
	margin: 40px 0;
}
.ctabtn .btn {
	margin: 65px auto 140px;
}
.footer {
	background: #2C2724;
	color: #fff;
	text-align: center;
	padding: 55px 0;
	font-size: 0.88em;
}
.footer p {
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	border-left: 1px solid #fff;
	margin-left: 10px;
	padding-left: 12px;
}
.footer p:first-child {
	border-left: none;
	margin-left: 0;
	padding-left: 0;
}
.footer a {
	color: #fff;
}
.footer a:hover {
	color: #51683C;
}
@media only screen and (max-width: 900px) {
	.logo-img {
		margin: 50px 0 70px;
	}
	.intro-left,
	.intro-right {
		width: 48%;
	}
	.twocolimg {
		margin-bottom: 30px;
	}
	.ctabtn .btn {
		margin: 40px auto 90px;
	}
	.footer p {
		width: 100%;
		margin: 15px 0 !important;
		padding-left: 0 !important;
		border-left: none !important;
	}
}
@media only screen and (max-width: 760px) {
	.intro-left, .intro-right {
		width: 100%;
	}
	.intro {
		margin-bottom: 55px;
	}
}
@media only screen and (max-width: 500px) {
	.halfimage {
		width: 100% !important;
		margin: 2px 0 !important;
	}
	.logo-img {
		width: 240px;
	}
	body {
		font-size: 17px;
	}
}