/* character set */
@charset 'utf-8';

/* reset */
* {
	margin: 0;
	padding: 0;
}

/* fonts */
@font-face {
	font-family: 'Montserrat Light';
	src: url('../fonts/montserrat-light.woff2') format('woff2'), url('../fonts/montserrat-light.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Montserrat Semibold';
	src: url('../fonts/montserrat-semibold.woff2') format('woff2'), url('../fonts/montserrat-semibold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Montserrat Bold';
	src: url('../fonts/montserrat-bold.woff2') format('woff2'), url('../fonts/montserrat-bold.woff') format('woff');
	font-weight: normal;
	font-style: normal;
}

/* tags */
html {
	height: 100%;
	overflow-y: scroll;
}
body {
	height: 100%;
	font-family: 'Montserrat Light', sans-serif;
	color: #48484a;
}
h1 {
	margin-bottom: 25px;
	font-size: 1.8em;
	font-weight: normal;
}
h2 {
	margin-bottom: 25px;
	font-size: 1.4em;
	font-weight: normal;
}
h3 {
	margin-bottom: 10px;
	font-size: 1.2em;
	font-weight: normal;
}
p {
	margin-bottom: 25px;
	font-size: 1.2em;
	line-height: 1.5em;
}
small {
	font-size: 1em;
}
img {
	border: 0;
	display: block;
}

/* layout */
#wrapper {
	min-height: 100%;
	display: flex;
	flex-direction: column;
	background-color: #ffffff;
}
header {
	position: fixed;
	width: 100%;
	height: 138px;
	background-color: #ffffff;
}
#logo {
	float: left;
}
#logo img {
	width: 308px;
	height: 64px;
}
nav {
	float: right;
}
#slideshow {
	height: calc(100vh - 138px);
	margin-top: 138px;
	background-color: #e0e0e2
}
main {
	flex: 1 0 auto;
}
footer {
	flex-shrink: 0;
	width: 1200px;
}






#social-wrapper {
	margin-bottom: 70px;
}
.social {
	width: 44px;
	height: 44px;
}
.social a {
	display: block;
	width: 44px;
	height: 44px;
}
.facebook {
	margin-right: 22px;
	background: url('../images/icons/facebook2.png') no-repeat;
	background-size: 44px 44px;
}
.instagram {
	background: url('../images/icons/instagram2.png') no-repeat;
	background-size: 44px 44px;
}
.social img {
	width: 44px;
	height: 44px;
	transition: opacity 0.2s ease-in;
}
.social img:hover {
	opacity: 0;
}

/* lists */
ul {
	list-style-type: none;
}
nav ul { 
	float: right;
}
nav li {
	float: left;
}
article ul, article ol {
	margin-bottom: 25px;
}
article ul li {
	margin: 0 0 10px 40px;
	padding-left: 20px;
	font-size: 1.2em;
	line-height: 1.5em;
	background: url('../images/icons/bullet.png') 0 12px no-repeat;
	background-size: 7px 7px;
}
article ol li {
	margin: 0 0 10px 20px;
	font-size: 1.2em;
	line-height: 1.5em;
}

/* links */
a:link, a:visited, a:active {
	color: #dcb16f;
	text-decoration: underline;
	transition: all 0.2s ease-in;
}
a:hover {
	color: #646466;
}

/* remove background from active links */
a:active {
	background-color: transparent;
}

/* remove active link border from firefox */
:focus {
	outline: none;
}

/* video */
.videoiframe {
	float: none;
	clear: both;
	width: 100%;
	position: relative;
	margin: 50px 0 50px 0;
	padding-bottom: 56.25%;
	padding-top: 50px;
	height: 0;
}
.videoiframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* form */


/* classes */
.clear {
	clear: both;
}

/* images */
img.full {
	width: 100%;
	height: auto;
	margin: 40px 0 0 0;
}
img.half {
	width: 50%;
	height: auto;
	margin: 40px auto 0 auto;
}
img.third {
	width: 33%;
	height: auto;
	margin: 40px auto 0 auto;
}
img.half-left {
	width: 50%;
	height: auto;
	margin: 0 40px 40px 0;
	float: left;
}
img.quarter-left {
	width: 25%;
	height: auto;
	margin: 0 40px 40px 0;
	float: left;
}
img.half-right {
	width: 50%;
	height: auto;
	margin: 0 0 40px 40px;
	float: right;
}
img.quarter-right {
	width: 25%;
	height: auto;
	margin: 0 0 40px 40px;
	float: right;
}

/* media queries */ 
@media screen and (max-width: 1500px) { /* SHRINKING */
	
}
@media screen and (max-width: 1100px) { /* TABLET */
	
}
@media screen and (max-width: 700px) { /* MOBILE */
	
	img.half {
		width: 100%;
		height: auto;
		margin: 40px 0 0 0;
	}
	img.third {
		width: 100%;
		height: auto;
		margin: 40px 0 0 0;
	}
	img.half-left {
		width: 100%;
		height: auto;
		margin: 0 40px 40px 0;
		float: left;
	}
	img.quarter-left {
		width: 100%;
		height: auto;
		margin: 0 40px 40px 0;
		float: left;
	}
	img.half-right {
		width: 100%;
		height: auto;
		margin: 0 0 40px 40px;
		float: right;
	}
	img.quarter-right {
		width: 100%;
		height: auto;
		margin: 0 0 40px 40px;
		float: right;
	}
}