/* RESET */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	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-collapse: collapse;
	border-spacing: 0;
}

/* RESET END */

body {
	font-family: 'Lato', sans-serif;
	max-width: 1200px;
	margin: auto;
}

.displayNone {
	display: none;
}

.left {
	float: left;
}

.right {
	float: right;
}

.header {
	display: flex;
	flex-wrap: wrap;
	width: 80%;
	margin: auto;
}

.headerItem {
	vertical-align: middle;
	margin: auto;
	text-decoration: none;
	color: #333333;
	font-size: 20pt;
	width: 30%;
	padding: 0 -20px;
   text-align: center;
}

a.headerItem {
	width: 150px;
	padding: 5px;
}

a.active {
	background-color: #fafafa;
}

a.headerItem:hover {
	color: #000000;
	font-weight: bold;
	background-color: #eaeaea;
}

h2 {
	text-align: center;
	color: #333333;
	font-size: 20pt;
	padding-bottom: 10px;
	text-transform: uppercase;
}

p {
	text-align: center;
	color: #333333;
	font-size: 18px;
	line-height: 20pt;
}

.topLogo {
	display: block;
	width: 150px;
	margin: auto;
}

.contentRow, .about, .contact {
	margin: 40px;
}

.contentRow {
	margin-top: 20px;
}

.contentRow {
	display: flex;
	flex-wrap: wrap;
}

.item {
	margin: 0 auto 10px;
	float: left;
	text-decoration: none;
}

.item img {
	border: 1px solid #333333;
}

.MainPage .item img {
	height: 200px;
	width: 200px;
	margin: 20px;
	border: 1px solid #333333;
}

.gallery .item{
	margin-bottom: 30px;
}

.gallery .item img, .gallery .item video{
	width: 100%;
	max-height: 750px;
	margin-bottom: 15px;
}

.contentRow a img{
	transition: transform .2s;
}

.contentRow a:hover p{
	font-weight: bolder;
	color: #000000;
}

.contentRow a:hover img{
	transform: scale(1.1);
}

.contentRow p {
	margin-top: -10px;
}

.divider {
	margin: 40px;
	border-bottom: 1px solid #333333;
}

.about p {
	margin: auto;
	width: 75%;
	text-align: center;
	margin-bottom: 10px;
}

.about a {
	color: #333333;
	text-decoration: none;
	border-bottom: 1px solid #bcbcbc;
}

.about a:hover {
	font-weight: bolder;
	color: #000000;
	border-color: #000000;
}

.contact{
	margin-bottom: 20px;
}

.contact p, .contact a {
	margin: 10px;
	text-decoration: none;
	color: #333333;
}

.contact a:hover {
	font-weight: bolder;
	color: #000000;
}

.contact img {
	width: 20px;
	position: relative;
    top: 5px;
}

.clear{
	clear: both;
	height: 60px;
}

@media (max-width: 800px) {

	.header {
		width: 100%;
	}

	.topLogo {
		width: 100px;
	}

	.headerItem {
		font-size: 15pt;
	}

	a.headerItem {
		width: 100px;
	}

	.about p, .contact p{
		width: 90%;
		color: #000000;
	}

	.contentRow p, h2 {
		color: #000000;
	}
}
