@font-face {
  font-family: 'Bree Serif';
  src: local('Bree Serif'), url(fonts/bree-serif.woff) format('woff');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-weight: 400;
  src: local('Roboto Condensed'), local('RobotoCondensed-Regular'), url(fonts/roboto-condensed.woff) format('woff');
}

@font-face {
  font-family: 'Roboto Condensed';
  font-weight: 700;
  src: local('Roboto Condensed Bold'), local('RobotoCondensed-Bold'), url(fonts/roboto-condensed-bold.woff) format('woff');
}

/*
	Generic Elements
	================
*/

* {
	font-family: "Roboto Slab", sans-serif;
	line-height: 1.5em;
}

body {
	margin: 0;
	background-color: #f4efe6;
}

h1, h2 {
	color: #222;
	font-family: "Roboto Slab";
	/*font-family: "Bree Serif";*/
	font-weight: normal;
	font-size: 1.5em;
	text-align: center;
	text-transform: uppercase;
}

p {
	color: #344950;
}

strong {
	color: #222;
}

a {
	color: #08c;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}

abbr {
	border-bottom: 1px dotted #999;
}

.clear {
	clear: both;
}

.asterisk {
	color: #bbb;
}

.hint {
	font-size: 0.9em;
	color: #555;
}

/*
	Header
	======
*/

header {
	background: #d4ceb4 url(images/bg-blur.jpg) no-repeat top center;
	background-size: cover;
	margin-bottom: 48px;
	padding-bottom: 48px;
}

header#bg-deck {
	background: #aeaaa3 url(images/bg-blur-deck.jpg) repeat;
}

header#bg-wood {
	background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 15%), url(images/bg-wood.jpg) repeat;
	/*background: #5a4f4a url(images/bg-wood.jpg) repeat;*/
	background-size: auto;
}

/*
	Navigation
	==========
*/

header nav {
	/*background: linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 100%);*/
	/*border-top: 4px solid rgba(32, 0, 0, 0.15);*/
	text-align: center;
	margin: 0 auto 35px auto;
	padding-top: 16px;
}

header a {
	font-family: "Bree Serif", sans-serif;
	font-size: 1.25em;
	color: #fff;
	text-transform: uppercase;
	text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.35);
	padding: 8px 16px;
}

a#logo {
	transition: 0.3s;
	padding: 0;
	margin: 0 64px;
}

#logo img {
	margin-bottom: -82px;
	position: relative;
	z-index: 99;
	display: inline-block;
	vertical-align: text-bottom;
}

#logo:hover {
	filter: brightness(110%);
	-webkit-filter: brightness(110%);
}

.slide {
	background: #fff;
	display: block;
	margin: 0 auto;
	padding: 4px;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.35);
	border-radius: 2px;
}

/*
	Sections
	========
*/

main {
	margin: 0 auto;
	width: 1000px;
	display: block;
}

section {
	border-top: 1px solid #ddd;
	margin: 32px 0;
}

section:first-child {
	border: none;
}

footer {
	margin: 48px auto;
	text-align: center;
}

/*
	Services Section
	================
*/

#services {
	list-style: none;
	padding: 0;
}

#services li {
	text-align: center;
	width: 33.33%;
	height: 7em;
	float: left;
}

#services h3 {
	font-size: 1em;
	margin: 4px;
}

#services p {
	font-size: 0.9em;
	color: #444;
	margin: 0;
}

/*#services li {
	border-left: 1px solid #e5e5e5;
	border-bottom: 1px solid #e5e5e5;
	margin: 0;
}

#services li:nth-of-type(3n-2) {
	border-left: 1px none;
}

#services li:nth-of-type(n+7) {
	border-bottom: 1px none;
}*/

/*
	Contact Form
	============
*/

#contact-us div {
	float: left;
}

#contact-us div:first-child {
	width: 50%;
}

#contact-us div+div {
	width: 50%;
}

label {
	display: none;
}

input[type="email"], input[type="text"], textarea {
	box-sizing: border-box;
	font-size: 1.2em;
	border: 2px solid #e0e0e0;
	border-radius: 3px;
	padding: 8px 24px;
	width: 49%;
}

textarea {
	font-size: 1em;
	width: 100%;
	height: 10em;
}