.grid { 
	position: absolute;
	top: 0; left: 0; 
	width: 100%; 
	height: 3000px;  
	z-index: 10; 
	opacity: 0.15; 
	background: url(../images/grid.png) repeat-y 50% 0;  
	pointer-events: none;

}

/* Typography */

body {
	font-size: 1.6em;
	line-height: 1.687; /* 27px */
	font-family: 'Open Sans', sans-serif;
	color: #333;
}

h1, h2, h3, h4, h5, h6 {
	font-family: Oswald, sans-serif;
	font-weight: bold;
	margin-bottom: 2.7rem;
	line-height: 1.2em;
}

h1 {
	font-size: 3.2rem;
}

h2 {
	font-size: 2.7rem;
}

h3 {
	font-size: 2.3rem;
}

h4 {
	font-size: 2rem;
}

h5 {
	font-size: 1.6rem;
}

h6 {
	font-size: 1.3rem;
	font-weight: normal;
	text-transform: uppercase;
}

p {
	margin-bottom: 2.7rem;
	letter-spacing: 0.2px;
	text-align: justify;
}

a {
	color: #45d9d4;
	font-weight: bold;
	text-decoration: none;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

a:hover {
	color: #333;
}

ul { list-style: none; }
ul, ul > li {
	margin: 0;
	padding: 0;
}

blockquote {
	font-size: 1.9rem;
	line-height: 1.6;
	margin: 42px 0;
	padding: 10px 30px;
	border-left: 5px solid #45d9d4;
	margin-left: 20px;
	font-weight: bold;
	color: #555;
}

label {
	display: block;
	margin-bottom: 2.7rem;
}

label span {
	display: block;
	margin-left: 10px;
	margin-bottom: 10px;
	color: #7c7c7c;
	font-weight: bold;
	font-size: 1.5rem;
}

input[type="text"], textarea {
	font-size: 1.6rem;
	line-height: 3rem;
	outline: none;
	border-radius: 0;
	height: auto;
	margin-bottom: 0;
	padding: 12px 20px;
	background-color: #f5f8fa;
	border: 0!important;
	font-weight: normal;
	width: 100%;
}

textarea {
	height: 27rem;
}

input[type="text"]:active, 
input[type="text"]:focus,
textarea:active,
textarea:focus {
		background-color: #eff2f4;
}


@media (min-width: 550px) {
	p { text-align: left; }
}

/* Styles */


ul.disc {
	margin-bottom: 2.7rem;
	list-style: outside disc;
	margin-left: 60px;
}

ul.disc li {
	line-height: 2.7rem;
	font-size: 1.6rem;
	color: #444;
	letter-spacing: 0.2px;
}

.double-list {
	margin-bottom: 2.7rem;
}

.double-list ul {
	float: left;
	margin-right: 40px;
	margin-bottom: 0;
}

.double-list::after {
	content: "";
	display: table;
	clear: both;
}

.no-margin { margin-bottom: 0; }
.double-margin { margin-bottom: 5.4rem; }

.small {
	font-size: 1.2rem;
}

.mobile-view {
	display: block;
	width: 0;
	height: 0;
	font: 0/0 a;
	text-shadow: none; 
	color: transparent;
}

.button, input[type="submit"], button {
	display: inline-block;
	color: #fff;
	background: #3dbfbb;
	line-height: 20px;
	font-size: 1.4rem;
	padding: 10px 15px;
	height: auto;
	border: 0;
	margin: 0;
	border-radius: 0;
	min-width: 100px;
}

.button:hover, input[type="submit"]:hover, button:hover {
	color: #fff;
	background: #222;
}

.clear {
	clear: both;
}

.clearfix::after{
	content: "";
    clear: both;
    display: table;
}

.reveal {
	opacity: 0;
	-webkit-transition: -webkit-transform 0.7s ease, opacity 0.7s ease;
	-moz-transition: -moz-transform 0.7s ease, opacity 0.7s ease;
	-o-transition: -o-transform 0.7s ease, opacity 0.7s ease;
	transition: transform 0.7s ease, opacity 0.7s ease;
	-webkit-transform: translate3d(0, 20px, 0);
	-moz-transform: translate3d(0, 20px, 0);
	-o-transform: translate3d(0, 20px, 0);
	transform: translate3d(0, 20px, 0);
}

.reveal-start {
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	-moz-transform: translate3d(0, 0, 0);
	-o-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}

@media only screen and (min-width: 550px) {
	.mobile-view { display: none; }
}

/* header */

.header .triangle {
	position: fixed;
	top: 0; 
	right: 50%;
	margin-top: -320px;
	margin-right: -100px;
	width: 400px;
	height: 400px;
	background-color: #f5f8fa;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	z-index: -10;
}

.header .logo {
	margin: 30px 0;
	text-align: center;
}

.header .menu {
	font-size: 1.4rem;
	line-height: 1;
	text-transform: uppercase;
	font-weight: bold;
	overflow: hidden;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.header .menu-closed .menu {
	opacity: 0;
}

.header .menu li {
	text-align: center;
	display: block;
	margin-bottom: 10px;
}

.header .menu a {
	display: inline-block;
	padding: 10px 15px;
	border-radius: 3px;	
	color: #575757;
}

.header .menu .active a,
.header .menu a:hover {
	background-color: #292929;
	color: #fff;
}

.header .menu .active a {
	cursor: default;
	pointer-events: none;
}

.header .mobile-menu {
	display: block;
	margin: 0 auto;
	width: 48px;
	height: 48px;
	background: url(../images/menu.png) no-repeat 0 -48px;
	background-size: 48px 96px;
	margin-top: 27px;
}

.header .menu-closed .mobile-menu {
	background: url(../images/menu.png) no-repeat 0 0;
	background-size: 48px 96px;
	margin-top: 0;
}

.header nav  {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all 0.3s;
	padding: 54px 0 40px;
}

.header .menu-closed {
	padding: 0;
	margin-bottom: 40px;
}


@media (min-width: 550px) {

	.header .nav-fixed .menu {
		position: fixed;
		top: 0;
		left: 0;
		background-color: #fff;
		background-color: rgba(255,255,255,0.8);
		padding: 14px 0 4px;
		z-index: 1000;
	} 
	
	.header .nav-fixed {
		-webkit-transition-duration: 0;
		-moz-transition-duration: 0;
		-o-transition-duration: 0;
		transition-duration: 0;
	}


	.header {
		margin-bottom: 54px;
		padding: 0 20px;
	}
	
	.header nav {
		background: none;
		padding: 0;
	}
	
	.header .logo {
		margin: 54px 0;
	}
	
	.header .menu {
		width: 100%;
		text-align: center;
		height: auto!important;
		-webkit-transition: none;
		-moz-transition: none;
		-o-transition: none;
		transition: none;
		opacity: 1!important;
	}
	
	.header .menu li {
		display: inline-block;
		margin-right: 10px;
	}
	
	.header .mobile-menu { 
		display: none; 
	}
	
	
	.header .triangle  {
		margin-top: -250px;
	}
}


@media (min-width: 750px) {
	.header {
		padding: 0 100px;
	}
	
	
	.header .triangle  {
		margin-top: -220px;
		1left: 22%;
	}
}


/* page header */

.page-header {
	position: relative;
	width: 100%;
	height: 350px;
	margin-bottom: 27px;
	background-position: 50% 0%;
	background-repeat: no-repeat;
	background-size: cover;	
	overflow: hidden;
}

.page-header .overlay {
	position: absolute;
	top: 16%;
	left: 10%;
	width: 80%;
}

.page-header .motto {
	font-size: 2rem;
	line-height: 1.6;
	font-weight: bold;
	color: #fff;
	margin-bottom: 27px;
}


@media (min-width: 550px) {

	.page-header {
		margin-bottom: 54px;
		height: 80vh;
		max-height: 500px;
		background-position-y: 180px; /* initial image offset */
		background-attachment: fixed;
	}
	
	.page-header .overlay {
		top: 20%;
		width: 70%;
	}
	
	.page-header .motto {
		font-size: 2.0rem;
	}
}

@media (min-width: 750px) {

	.page-header .overlay {
		top: 22%;
		width: 50%;
	}
	
	.page-header .motto {
		font-size: 2.3rem;
		margin-bottom: 5.4rem;
	}
}


/* page content */

.page h1, .page h2, .page h3, .page h4 {
	text-align: center;
}

.page h1, .page h2 {
	margin: 4.0rem;
}

.page h3, .page h4 {
	margin-top: 4.0rem;
}


.page h1::after, .page h2::after {
	content: "";
	display: block;
	width: 40%;
	min-width: 180px;
	margin: 0 auto;
	padding-bottom: 10px;
	border-bottom: 2px solid #eee;
}

.page {
	margin-bottom: 80px;
}


/* contact box */

.participate {
	position: relative;
	width: 80%;
	margin: 0 auto;
	min-height: 190px;
	margin-bottom: 54px!important;
	padding: 27px;
	box-sizing: border-box;	
	border-radius: 5px;
	border: 3px dashed #eee;
}

.participate .message {
	padding-left: 100px;
	min-height: 85px;
	font-size: 1.8rem;
	line-height: 1.5;
	padding-top: 14px;
	margin-bottom: 27px;
	font-family: Oswald, sans-serif;
	color: #888888;
	box-sizing: border-box;
	background: url(../images/sales.png) no-repeat 0 0;
}

.participate .contacts {
	text-align: center;
}

.participate .contacts  a {
	display: block;
	color: #555;
	font-size: 1.5rem;
	line-height: 27px;
}

.participate .contacts  a:hover {
	color: #222;
	text-decoration: underline;
}


@media (min-width: 550px) {
	.participate {
		width: 75%;
		max-width: 700px;
		padding: 54px;
	}
}

@media (min-width: 750px) {
	.participate .contacts {
		text-align: right;
	}
	
	.participate  .message {
		margin-bottom: 0;
		padding-top: 0;
	}
	
	.participate .message, .participate .contacts {
		float: left;
		width: 50%;
	}
	
	.page h1 {
		margin-bottom: 5.6rem;
	}
}

/* mail form */

.mailform {
	margin: 0 10px;
	padding-top: 27px;
}

.mailform .form-reply {
	font-size: 1.5rem;
	margin-left: 20px;
	color: #d9765f;
}

@media (min-width: 750px) {
	.mailform {
		padding-top: 54px;
		width: 85%;
		margin: 0 auto;
		max-width: 640px;
	}
	
	.mailform input[type="submit"] {
		margin-top: 27px;
	}
}

/* footer & social */

.footer {
	padding: 27px 0 40px;
	text-align: center;
}

.footer .copyright, 
.footer .created {
	font-size: 1.2rem;
	line-height: 2.7rem;
	color: #999;
}

.footer .created {
	color: #ccc;
	line-height: 2rem;
}

.footer .created a {
	color: inherit;
	font-weight: normal;
}

.footer .created a:hover {
	text-decoration: underline;
	color: #888;
}

.footer .social {
	padding: 27px 0;
	margin-bottom: 27px;
}

.social {
	float: left;
	position: relative;
	left: 50%;
}

.social ul {
	float: left;
	position: relative;
	left: -50%;
}

.social li {
	float: left;
	margin: 0 13px;
}

.social a {
	display: block;
	width: 32px;
	height: 32px;
	font: 0/0 a;
	text-shadow: none; 
	color: transparent;
}

.social a:hover {
	opacity: 0.8;
	-webkit-transform: translateY(-2px);
	-moz-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	-o-transform: translateY(-2px);
}

.social .twitter { 
	background: url(../images/social/twitter_alt.png) no-repeat 0 0; 
}

.social .facebook { 
	background: url(../images/social/facebook.png) no-repeat 0 0; 
}

.social .youtube { 
	background: url(../images/social/youtube.png) no-repeat 0 0; 
}


/* scroll top */

.top {
	position: fixed;
	left: 0; right: 0;
	height: 10px;
	background: #222;
	z-index: 1000;
	-webkit-transition: bottom 0.3s ease;
	-webkit-transition: bottom 0.3s ease;
	-webkit-transition: bottom 0.3s ease;
	-webkit-transition: bottom 0.3s ease;
	bottom: -40px;
}

.top.show-top {
	bottom: 0;
}

.top > a {
	position: absolute;
	left: 50%;
	margin-left: -30px;
	bottom: 5px;
	width: 60px;
	height: 30px;
	font: 0/0 a;
	text-shadow: none; 
	color: transparent;
	outline: none;
	background: #222 url(../images/top.png) no-repeat 50% 50%;
	background-size: 24px 24px;
}

@media (min-width: 550px) {	
	.footer { margin-bottom: 0; }
	.top { display: none; }
}


@media (min-width: 400px) {}
@media (min-width: 550px) {}
@media (min-width: 750px) {}
@media (min-width: 1000px) {}
@media (min-width: 1200px) {}