/* 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;
}

/* STRUCTURE */
body {
	width: 100vw;
	height: 100vh;
	background: black;
}
#menu {
	position: fixed;
	top: 5%;
	text-align: center;
	width: 100%;
	height: auto;
}

/* BANNER */
header.section .image {
	background-size: contain;
	background-color: black;
	z-index: -100;
}

header.section #logo {
	width: 90%;
	margin: 0 5%;
	height: 20%;
	position: absolute;
	text-indent: -9999px;
	top: 20%;
	background: transparent url('/assets/images/logo.png') center center no-repeat;
	background-size: contain;
}

header.section #scroll {
	position: absolute;
	bottom: 7.5%;
	width: 100%;
	height: 45px;
	background: transparent url('/assets/images/scroll.png') center center no-repeat;
	background-size: contain;
}

header.section .text {
	width: 90%;
	padding: 0 5%;
	height: auto;
	position: absolute;
	top: 50%;
	color: white;
	text-align: center;
	left: 0;
}

header.section .text span {
	max-width: 900px;
	display: inline-block;

}

/* FOOTER */
footer.section#footer .text {
	color: white;
	display: block;
	position: static;
	height: auto;
	padding: 5vh 5% 0;
	max-width: 600px;
	margin: auto;
}

footer.section#footer .text:first-child {
	padding: 0 5%;
}

/* SECTION FULLSITE.JS */

#fullpage {
	width: 100%;
	height: 100%;
}
.section {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
footer.section {
	height: auto;
	background-color: black;
	color: white;
	text-align: center;
}

.section .image {
	background-color: black;
	background: center center no-repeat;
	background-size: cover;
}
.section .image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 10s;
}
.section .block {
	position: absolute;
	width: 100%;
	height: 100%;
	left: -100%;
	top: 0;
	transition: all 1.4s ease;
}
.section.right .block {
	left: auto;
	right: -100%;
}
.section.active .block {
	left: 0;
}
.section.active.right .block {
	left: auto;
	right: 0;
}
.section .text {
	position: absolute;
	height: 100%;
	left: 100px;
	width: 420px;
	top: 20%;
	min-width: 420px;
}

.section.right .text {
	right: 100px;
	left: auto;
}
.section .skew {
	position: absolute;
	top: 0;
	left: -1000px;
	width: 1700px;
	padding: 0;
	transform: skew(-16deg);
	height: 100%;
	min-width: 660px;
}
.section.right .skew {
	left: auto;
	right: -1000px;
	width: 1700px;
	min-width: 660px;
	transform: skew(16deg);
}
.section.active .image {
	transform: scale(1.07);
	transition: all 10s ease;
}

	/*colors*/
.section.white {
	color: black;
}.section.white h2 {
	color: #EC000E;
}.section.white .skew {
	background-color: white;
}

.section.red {
	color: white;
}.section.red h2 {
	color: white;
}.section.red .skew {
	background-color: #EC000E;
}


/* FONTS */
h2 {
	font: bolder 96px/100% "Arial Black", Helvetica, sans-serif;
	letter-spacing: -10px;
	margin-bottom: 20px;
}

p, .text {
	font: normal 20px/140% Arial, Helvetica, sans-serif;
}

.footer .text {
	font-size: 16px;
}

h3 {
	color: #EC000E;
	font: bolder 36px/100% "Arial Black", Helvetica, sans-serif;
	letter-spacing: -5px;
}

a {
	color: #EC000E;
	text-decoration: none;
}

a:hover {
	color: #EC000E;
	text-decoration: underline;
}
