/*=== Base Styles ===*/
html {
	height: 100%;
}
body {
	/* Setting height for html and height/min-height to 100% forces the background to repeat the entire viewport */
	height: 100%;
	min-height: 100%;
	font-family: 'Montserrat', sans-serif;
	font-size: 16px;
	background: #fff; /* Fallback background */
    background: -webkit-linear-gradient(90deg, #fff 50%, #eeeeee 50%); 	/* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(90deg, #fff 50%, #eeeeee 50%); 		/* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(90deg, #fff 50%, #eeeeee 50%); 		/* For Firefox 3.6 to 15 */
    background: linear-gradient(90deg, #fff 50%, #eeeeee 50%); 			/* Standard syntax */
}
h1 {
	display: block;
	float: left;
	width: 100%;
	font-size: 1.875em;
	line-height: 1;
	font-weight: normal;
	color: #607d8b;
	padding: 15px 0px;
	text-align: center;
}
h2, h3, h4 {
	display: block;
	float: left;
	width: 100%;
	font-size: 1.125em;
	line-height: 3;
	font-weight: bold;
	color: #263238;
	border-top: 1px solid #e0e0e0;
	text-align: center;
}
p {
	display: block;
	float: left;
	width: 100%;
	font-family: 'Roboto', sans-serif;
	font-size: .75em;
	line-height: 2;
	color: #607d8b;
}
a {
	color: #00bcd4;
	text-decoration: none;
}
a:hover {
	color: #263238;
}
.container {
	min-width: 320px;
	height: 100%;
	margin: 0px auto;
}
/*=== End Base Styles ===*/



/*=== Navigation ===*/
header {
	float: left;
	width: 100%;
	background-color: #fff;
	border-bottom: 2px solid #eeeeee;
}
.header_container {
	min-width: 320px;
}
header img {
	height: 50px;
	padding: 0px 20px;
}
nav {
	position: fixed;
	z-index: 2;
	float: left;
	width: 100%;
}
.modal {
	display: none;
	position: fixed;
	z-index: 1;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.60);
}
.burger_menu {
	display: block;
	float: right;
	width: 50px;
	height: 50px;
	background-image: url(../img/btn_menu.png);
	background-size: contain;
	border-left: 1px solid #eeeeee;
}
.menu {
	display: none;
	float: left;
	width: 100%;
	background-color: #fff;
}
.menu.show {
	display: block;
}
.menu li {
	display: block;
	float: left;
	width: 100%;
}
.menu a {
	display: block;
	float: left;
	width: 100%;
	font-size: .875em;
	line-height: 3.5em;
	font-weight: normal;
	text-align: center;
	text-decoration: none;
	border-bottom: 1px solid #eeeeee;
}
.intro {
	display: none;
}
/*=== Navigation ===*/



/*=== Main Content ===*/
main {
	float: left;
	width: 100%;
	min-width: 320px;
	min-height: 100%;
	margin: 50px 0px 0px 0px;
	background-color: #eeeeee;
	box-sizing: border-box;
}
main > section {
	float: left;
	width: 100%;
	margin: 0px 0px 20px 0px;
}
.gallery {
	float: left;
	width: 100%;
}
.gallery a {
	display: block;
	float: left;
	background-color: #fff;
	
	width: 100%;
	box-sizing: border-box;
	padding: 10px;
	margin: 0px 0px 10px 0px;
}
.gallery a:focus {
	outline: none;
}
.gallery a img {
	float: left;
	width: 100%;
	height: auto;
	box-sizing: border-box;
	border: 1px solid #eeeeee;
	transition: border .5s;
}
.gallery a:hover img {
	border: 1px solid #cfd8dc;
}
/*=== End Main Content ===*/



/*=== Social Media ===*/
.social_media {
	width: 200px;
	margin: 0px auto;
}
.social_media li {
	display: block;
	float: left;
	margin: 0px 10px 0px 0px;
}
.social_media li:last-child {
	margin: 0px;
}
.social_media a {
	float: left;
	display: block;
	width: 60px;
	height: 60px;
	margin: 10px 0px;
}
.social_media img {
	width: 100%;
	height: auto;
}
#contact p {
	text-align: center;
	margin: 0px 0px 10px 0px;
}
/*=== End Social Media ===*/



/*=== Media Queries ===*/
/* Mobile */
@media only screen and (min-width : 320px) {
	.container {
		max-width: 480px;
	}
	nav {
		width: 100%;
	}
	header > img {
		float: left;
	}
	main {
		padding: 0px 20px;
	}
}
/* Mobile Wide */
@media only screen and (min-width : 480px) {
	.container {
		max-width: 768px;
	}
	.gallery a {
		width: calc(50% - 5px);
	}
	.gallery a:nth-of-type(2n) {
		margin: 0px 0px 10px 10px;
	}
}
/* Tablet */
@media only screen and (min-width : 768px) {
	.container {
		max-width: 960px;
	}
	nav {
		width: 180px;
		padding: 0px 20px;
	}
	header {
		width: 100%;
	}
	header > img {
		float: right;
		padding: 0px;
	}
	.burger_menu {
		display: none;
	}
	.menu {
		display: block;
	}
	.menu a {
		text-align: right;
	}
	.modal {
		display: none;
	}
	main {
		float: right;
		width: calc(100% - 220px);
		margin: 0px;
		padding: 0px 30px;
		min-height: 100%;
	}
	.intro {
		display: block;
		float: left;
		width: 100%;
		margin: 20px 0px 0px 0px;
		text-align: right;
		font-style: italic;
	}
}
/* Desktop */
@media only screen and (min-width : 960px) {
	.container {
		width: 960px;
	}
	main {
		width: 740px;
	}
}
/*=== End Media Queries ===*/