/*----------------------------------------
reset
------------------------------------------*/
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;vertical-align: baseline;font: inherit;font-size: 100%;}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section,button {display: block;}body {line-height: 1;}ol,ul {list-style: none;}blockquote,q {quotes: none;}blockquote:before,blockquote:after,q:before,q:after {content: '';content: none;}table {border-spacing: 0;border-collapse: collapse;}


/*----------------------------------------
general
------------------------------------------*/
html, body {
	position: relative;
	width: 100%;
	height: 100%;
	font-size: 100%;
	font-family: 'Open Sans', sans-serif;
}
body {
	padding-top: 100px;
}
a {
	color: inherit;
	text-decoration: none;
}
img {
	display: block;
	outline: none;
	border: none;
}
em {
	font-style: italic;
}
strong {
	font-weight: bold;
}
.underline {
	text-decoration: underline;
}
nav, section, article {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	width: 100%;
}


/*----------------------------------------
layout
------------------------------------------*/
.container {
	position: relative;
	margin: 0 auto;
	max-width: 1000px;
	width: 85%;
	height: 100%;
}
.section {
	position: relative;
	clear: both;
	overflow: hidden;
	height: 100%;
}
.section > .subsection {
	position: relative;
	float: left;
	margin-left: 4%;
	width: 48%;
	height: 100%;
}
.section > .subsection:first-child {
	margin-left: 0;
}
.section > .subsection img {
	width: 100%;
	height: auto;
}


/*----------------------------------------
navigation
------------------------------------------*/
nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	height: 100px;
	background: #fff;
	box-shadow: 0 2px 3px rgba(0,0,0,.1);
	font-size: 18px;
	color: #5C504A;
}
nav .section > .subsection {
	width: 68%;
}
nav .section > .subsection:first-child {
	display: table;
	width: 28%;
}
nav li {
	display: table;
	float: left;
	width: 20%;
	height: 100%;
}
nav .section > .subsection:first-child > a,
nav li > a {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
nav ul a:hover {
	background: #f3f3f3;
}
nav .logo {
	position: relative;
	height: 100%;
	background: url("../images/logo.jpg") center center no-repeat;
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
}


/*----------------------------------------
article
------------------------------------------*/
article {
	height: 300px;
	text-align: center;
	background: url("../images/money.jpg") center center no-repeat fixed;
	-webkit-background-size: cover;
	background-size: cover;
	color: #fff;
}
article.calendar {
	background: url("../images/calendar.jpg") center center no-repeat fixed;
	-webkit-background-size: cover;
	background-size: cover;
}
article.hero {
	height: 700px;
	background: url("../images/house.jpg");
	background: url("../images/house-front.png"), url('../images/money.jpg');
	background-attachment: scroll;
	background-attachment: scroll, fixed;
	background-position: center;
	background-position: bottom, center;
	-webkit-background-size: cover;
	-webkit-background-size: 1000px, cover;
	background-size: cover;
	background-size: 1000px, cover;
	background-repeat: no-repeat;
}
article.hero .grass {
	position: absolute;
	background: #4B793E;
	width: 100%;
	height: 19px;
	bottom: 0;
	left: 0;
}
article > .container {
	display: table;
}
article .section {
	display: table-cell;
	vertical-align: middle;
}
article h1.hero {
	margin-top: 80px;
	text-transform: uppercase;
	font-weight: 800;
	font-size: 70px;
	line-height: 85px;
}
article h1.quote {
	font-family: "Crete Round", serif;
	font-weight: 400;
	font-size: 26px;
	line-height: 32px;
	-webkit-font-smoothing: antialiased;
}
article h1.important {
	font-family: 'Open Sans', sans-serif;
	font-weight: 800;
	font-size: 36px;
	-webkit-font-smoothing: subpixel-antialiased;
}
article h2.citation {
	margin-top: 20px;
	font-size: 20px;
	opacity: .8;
}
article h2.date {
	font-weight: 700;
	font-size: 20px;
	margin-top: 20px;
	margin-bottom: 4px;
}
article p {
	line-height: 20px;
	opacity: .8;
}
article.footer {
	background: white;
	color: #555;
}


/*----------------------------------------
content
------------------------------------------*/
section {
	padding: 70px 0;
}
section .lead {
	text-align: center;
}
section.bgLight {
	background: #f3f3f3;
}
section header {
	margin-bottom: 45px;
	color: #5C504A;
	text-align: center;
	font-weight: 700;
	font-family: "Crete Round", serif;
}
section header h1 {
	margin-bottom: 10px;
	font-size: 45px;
}
section header h2 {
	font-size: 22px;
	opacity: .8;
}
section h3.map-element {
	margin-bottom: 5px;
	font-weight: 700;
	font-size: 18px;
}
section h3.question {
	margin-bottom: 5px;
	color: rgb(92, 80, 74);
	text-transform: uppercase;
	font-weight: 700;
	font-size: 32px;
}
section h4.question-info {
	font-size: 26px;
	font-family: "Crete Round", serif;
	line-height: 32px;
}
section p {
	display: block;
	margin-bottom: 30px;
	color: #555;
	font-weight: 400;
	font-size: 22px;
	line-height: 30px;
}
section p.map-info {
	font-size: 18px;
	line-height: 24px;
}
section small {
	display: block;
	margin-top: 10px;
	margin-bottom: 40px;
	font-size: 16px;
	opacity: .8;
}
section ul {
	margin-bottom: 30px;
	color: #555;
	font-weight: 400;
	font-size: 19px;
	line-height: 30px;
}
section ul li {
	margin-bottom: 10px;
	margin-left: 20px;
	list-style-type: square;
}
section .divide {
	margin: 60px 0;
	border-top: 1px solid #ccc;
}
section .cRed {color: #D6695C;}
section .cBlue {color: #0976BE;}
section .cGreen {color: #4D8358;}
section .cBlack {color: #504239;}
section .cLight {color: #f3f3f3;}
section .cDark {color: #404040;}
section .cGray {color: #b3b3b3;}


/*----------------------------------------
elements
------------------------------------------*/
.button {
	display: inline-block;
	padding: 12px 30px;
	border: none;
	background: #0976BE;
	color: #fff;
	font-size: 22px;
	cursor: pointer;
	-webkit-appearance: none;
}
.button:hover {
	background: #4D8358;
}
.input-box {
	position: relative;
	display: block;
	margin-bottom: 30px;
	padding: 10px;
	width: 100%;
	outline: none;
	border: 1px solid #333333;
	background: #f3f3f3;
	color: #999999;
	font-size: 18px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-appearance: none;
}
.input-box:hover {
	background: #fff;
}
.link {
	border-bottom: 1px solid #0976BE;
	color: #0976BE;
}
.link:hover {
	border-bottom-color: #4D8358;
	color: #4D8358;
}


/*----------------------------------------
fancy
------------------------------------------*/
::selection {
	background: #5C8A65;
	color: #fff;
}
::-moz-selection {
	background: #5C8A65;
	color: #fff;
}
::-webkit-scrollbar {
	width: 15px;
	background: white;
}
::-webkit-scrollbar-track {
	background: white;
}
::-webkit-scrollbar-thumb {
	border: 3px solid white;
	background: #cccccc;
}

.show-mobile {display: none;}
.hide-mobile {display: block;}


/*-----------------------------------------------------------------
tablet
-----------------------------------------------------------------*/
@media all and (max-width: 900px) {
	/* general ---------------------------------------- */
	body {
		padding-top: 50px;
	}

	/* layout ---------------------------------------- */
	.show-mobile {display: block !important;}
	.hide-mobile {display: none !important;}

	.container {
		width: 85%;
	}
	.section > .subsection {
		margin-top: 30px;
		margin-left: 0;
		width: 100%;
	}
	.section > .subsection:first-child {
		margin-top: 0px;
	}
	.section > .subsection img {
		margin: 0 auto;
		width: 60%;
		height: auto;
	}

	/* nav ---------------------------------------- */
	nav {
		height: 50px;
		font-size: 14px;
	}
	nav .container {
		width: 100%;
	}
	nav .section > .subsection {
		margin: 0;
		width: 100%;
	}
	nav ul a:active {
		background: #f3f3f3;
	}
	.mobile-logo {
		height: 80px;
		background: #fff;
	}
	.mobile-logo img {
		display: block;
		margin: 0 auto;
		width: 40%;
		height: auto;
	}

	/* article ---------------------------------------- */
	article {
		background: url("../images/money.jpg");
		-webkit-background-position: center center;
		background-position: center center;
		-webkit-background-attachment: scroll;
		background-attachment: scroll;
		-webkit-background-size: 300%;
		background-size: 300%;
		color: #fff;
	}
	article.calendar {
		background: url("../images/calendar.jpg");
		-webkit-background-position: center center;
		background-position: center center;
		-webkit-background-attachment: scroll;
		background-attachment: scroll;
		-webkit-background-size: 300%;
		background-size: 300%;
	}
	article.hero {
		height: 400px;
		background: url("../images/house.jpg");
		background-attachment: scroll;
		background-position: center;
		-webkit-background-size: cover;
		background-size: cover;
		background-repeat: no-repeat;
	}
	article h1.hero {
		margin-top: 45px;
		font-size: 35px;
		line-height: 45px;
	}
	article h1.quote {
		font-size: 22px;
		line-height: 28px;
	}
	article h1.important {
		font-size: 28px;
	}
	article h2.citation {
		margin-top: 18px;
		font-size: 18px;
	}
	article h2.date {
		font-size: 20px;
		margin-top: 18px;
		margin-bottom: 4px;
	}

	/* content ---------------------------------------- */
	section {
		padding: 50px 0;
	}
	section header {
		margin-bottom: 25px;
	}
	section header h1 {
		margin-bottom:6px;
		font-size: 35px;
	}
	section header h2 {
		font-size: 18px;
	}
	section h3.map-element {
		margin-bottom: 5px;
		font-size: 18px;
	}
	section h3.question {
		margin-bottom: 5px;
		font-size: 30px;
	}
	section h4.question-info {
		font-size: 28px;
		line-height: 32px;
	}
	section p {
		margin-bottom: 22px;
		font-size: 20px;
		line-height: 31px;
	}
	section p.map-info {
		font-size: 22px;
		line-height: 30px;
	}
	section small {
		margin-top: 5px;
		margin-bottom: 30px;
		font-size: 16px;
	}
	section ul {
		margin-bottom: 22px;
		font-size: 18px;
		line-height: 26px;
	}
	section ul li {
		margin-bottom:8px;
	}
	section .divide {
		margin: 50px 0;
		border-top: 1px solid #ccc;
	}
	.button {
		position: relative;
		display: block;
		margin: 0 auto;
		padding: 12px 0;
		width: 30%;
		text-align: center;
		font-size: 20px;
		border-radius: 0;
	}
	.button:active {
		background: #4D8358;
	}
	.input-box {
		border-radius: 0;
	}
}


/*-----------------------------------------------------------------
phone
-----------------------------------------------------------------*/
@media all and (max-width: 550px) {
	.container {
		width: 95%;
	}
	.section > .subsection {
		margin-top: 22px;
		margin-left: 0;
		width: 100%;
	}
	.section > .subsection:first-child {
		margin-top: 0px;
	}
	.section > .subsection img {
		width: 100%;
		height: auto;
	}

	/* nav ---------------------------------------- */
	nav {
		height: 50px;
		font-size: 9px;
	}
	nav .container {
		width: 100%;
	}
	nav .section > .subsection {
		margin: 0;
		width: 100%;
	}
	nav ul a:active {
		background: #f3f3f3;
	}
	.mobile-logo {
		height: 80px;
		background: #fff;
	}
	.mobile-logo img {
		display: block;
		margin: 0 auto;
		width: 60%;
		height: auto;
	}

	/* article ---------------------------------------- */
	article.hero {
		height: 300px;
		background: url("../images/house.jpg");
		background-attachment: scroll;
		background-position: center;
		-webkit-background-size: cover;
		background-size: cover;
		background-repeat: no-repeat;
	}
	article h1.hero {
		margin-top: 25px;
		font-size: 26px;
		line-height: 34px;
	}
	article h1.quote {
		font-size: 22px;
		line-height: 28px;
	}
	article h1.important {
		font-size: 26px;
	}
	article h2.citation {
		margin-top: 18px;
		font-size: 18px;
	}
	article h2.date {
		font-size: 18px;
		margin-top: 18px;
		margin-bottom: 4px;
	}


	/* content ---------------------------------------- */
	section {
		padding: 40px 0;
		text-align: center !important;
	}
	section header {
		margin-bottom: 25px;
	}
	section header h1 {
		margin-bottom: 6px;
		font-size: 28px;
	}
	section header h2 {
		font-size: 18px;
	}
	section h3.map-element {
		margin-bottom: 5px;
		font-size: 18px;
	}
	section h3.question {
		margin-bottom: 5px;
		font-size: 28px;
	}
	section h4.question-info {
		font-size: 24px;
		line-height: 28px;
	}
	section p {
		margin-bottom: 22px;
		font-size: 18px;
		line-height: 26px;
	}
	section p.map-info {
		font-size: 18px;
		line-height: 26px;
	}
	section small {
		margin-top: 5px;
		margin-bottom: 22px;
		font-size: 16px;
	}
	section ul {
		text-align: left;
		margin-bottom: 22px;
		font-size: 18px;
		line-height: 26px;
	}
	section ul li {
		margin-bottom:8px;
	}
	section .divide {
		margin: 22px 0;
		border-top: 1px solid #ccc;
	}
	.button {
		width: 100%;
		padding: 12px 0;
		margin: 0;
		border-radius: 0;
	}
	.button:active {
		background: #4D8358;
	}
	.input-box {
		margin-bottom: 20px;
		border-radius: 0;
	}
}