/* NORMALIZE */


article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block;}audio,canvas,video{display:inline-block;}audio:not([controls]){display:none;height:0;}[hidden]{display:none;}html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%;}body{margin:0;}a:focus{outline:thin dotted;}a:active,a:hover{outline:0;}h1{font-size:2em;margin:0.67em 0;}abbr[title]{border-bottom:1px dotted;}b,strong{font-weight:bold;}dfn{font-style:italic;}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0;}mark{background:#ff0;color:#000;}code,kbd,pre,samp{font-family:monospace,serif;font-size:1em;}pre{white-space:pre-wrap;}q{quotes:"\201C" "\201D" "\2018" "\2019";}small{font-size:80%;}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline;}sup{top:-0.5em;}sub{bottom:-0.25em;}img{border:0;}svg:not(:root){overflow:hidden;}figure{margin:0;}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em;}legend{border:0;padding:0;}button,input,select,textarea{font-family:inherit;font-size:100%;margin:0;}button,input{line-height:normal;}button,select{text-transform:none;}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer;}button[disabled],html input[disabled]{cursor:default;}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0;}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box;}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none;}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0;}textarea{overflow:auto;vertical-align:top;}table{border-collapse:collapse;border-spacing:0;}


*, *:after, *:before { -webkit-box-sizing: border-box; box-sizing: border-box; }
.clearfix:before, .clearfix:after { content: ''; display: table; }
.clearfix:after { clear: both; }

body {
	background: #fff;
	color: #1c2634;
	font-weight: 400;
	font-size: 1em;
	font-family: 'Amatic SC', Arial, sans-serif;
}

a {
	color: #2CC185;
	text-decoration: none;
	outline: none;
}

a:hover, a:focus {
	color: #74777b;
}

.hidden {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	opacity: 0;
}

.container > section {
	padding: 5em 0;
	font-size: 1.25em;
	min-height: 100%;
}

p {
	text-align: center;
	padding: 1em;
}

/* Header */
.header {
	padding: 7em 0 3em;
	letter-spacing: -1px;
	text-align: center;
}

.header h1 {
	max-width: 1200px;
	margin: 0 auto;
	font-weight: 800;
	font-size: 4.2em;
	line-height: 1;
}
.header h1 small {
	font-size: 0.4em;
	position: relative;
	top: -0.8em;
	left: 0.2em;
}

.header h1 em {
	font-style: normal;
	font-size: .5em;
	position: relative;
	top: -.25em;
}

.header h1 span {
	display: block;
	font-size: 53%;
	font-weight: 100;
	padding-top: 0.325em;
	color: #586372;
}

.vroum {
	font-style: italic !important;
}
.vroum::after {
	content: "💨";
}

@media screen and (max-width: 1280px) {
	.header h1 {
		padding: 0 0.5em;
	}
}

@media screen and (max-width: 30em) {
	.container > section {
		padding: 3em 0;
	}
	.header {
		padding: 2em 0 0.5em;
	}
	.header h1 {
		font-size: 2.5em;
	}
}


@media screen and (max-width: 25em) {
	.icon {
		font-size: 0.8em;
	}
}




.header {
	padding-top: 1.6rem;
	padding-bottom: 1rem;
}

.header img {
	width: 400px;
}

@media screen and (max-width: 1000px) {
	.header img {
		width: 300px;
	}
}

body.home .header img {
	opacity: 0;
	transform: scale(.9) translateY(-40%);
	animation: .6s .3s logoIn forwards ease-out;
}

@keyframes logoIn {
	from {
		opacity: 0;
		transform: scale(.9) translateY(-40%);
	}
	to {
		opacity: 1;
		transform: scale(1) translateY(0);
	}
}

.header h1 span {
	padding-top: 0;
}

section {
	max-width: 1400px;
	margin: 0 auto;
	padding-top: 1rem !important;
	padding-bottom: 1rem !important;
}

nav ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 1rem;
	padding: 0 1rem;
	margin: 0;
}

@media screen and (max-width: 1000px) {
	nav ul {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media screen and (max-width: 650px) {
	nav ul {
		padding: 0 .8rem;
		grid-gap: .5rem;
	}
}

nav ul li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	
	opacity: 0;
	transform: scale(.94);
	animation: .6s 0s fadeIn forwards cubic-bezier(0.2, 0.4, 0.4, 2.6);
}

nav ul li:nth-of-type(1) { animation-delay: 0.8s; }
nav ul li:nth-of-type(2) { animation-delay: 1.05s; }
nav ul li:nth-of-type(3) { animation-delay: 1.3s; }
nav ul li:nth-of-type(4) { animation-delay: 1.55s; }
nav ul li:nth-of-type(5) { animation-delay: 1.8s; }
nav ul li:nth-of-type(6) { animation-delay: 2.05s; }
nav ul li:nth-of-type(7) { animation-delay: 2.3s; }
nav ul li:nth-of-type(8) { animation-delay: 2.55s; }
nav ul li:nth-of-type(9) { animation-delay: 2.8s; }
nav ul li:nth-of-type(10) { animation-delay: 3.05s; }

@keyframes fadeIn {
	from {
		opacity: 0;
		transform: scale(.94);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}

nav ul li a {
	display: block;
}

nav ul li img {
	max-width: 100%;
	width: 100%;
	height: auto;
	border: solid 2px #fff;
	box-shadow: 0 0 15px rgba(0,0,0,0.25);
	transform: scale(.99);
	transition: all .2s ease-in-out;
}

nav ul li a:hover img {
	transform: scale(1.02);
	box-shadow: 0 0 30px rgba(0,0,0,0.3);
}






