@import url(https://fonts.googleapis.com/css?family=Roboto:400,900italic,900,700italic,700,500italic,500,400italic,300italic,300,100italic,100);
* {
	margin: 0;
	padding: 0;
}

html {
	overflow: scroll;
	overflow-x: hidden;
	overscroll-behavior: contain;
	background-color: #000000;
}

::-webkit-scrollbar {
	width: 0;
	/* Remove scrollbar space */
	background: transparent;
	/* Optional: just make scrollbar invisible */
}

/* Optional: show position indicator */

::-webkit-scrollbar-thumb {
	background: #ffffff;
}

.webgl {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 0;
}

.loading-page {
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: Roboto;
}

.loading-page .counter {
	text-align: center;
}

.loading-page .counter p {
	font-size: 3em;
	font-weight: 100;
	color: #ffffff;
}

.loading-page .counter h1 {
	color: white;
	font-size: 4em;
	margin-top: -10px;
	font-family: "Roboto Condensed", "Arial", "Helvetica", sans-serif;
}

.loading-page .counter {
	position: relative;
	width: 200px;
}

.loading-page.loaded {
	-webkit-transition: opacity 0.5s;
	-moz-transition: opacity 0.5s;
	-ms-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
	opacity: 0;
}

.infobox {
	flex-flow: row wrap;
	position: fixed;
	width: 100%;
	bottom: 0;
	display: flex;
	flex-direction: row;
	align-items: center;
	margin: 50px 0;
	opacity: 0;
	transform: translate(0px, 100vh);
	/* hide info box until the intro animations are completed */
}

.infobox p {
	color: white;
	z-index: 99;
}

.alignleft {
	width: 33.33333%;
	text-align: center;
}

.aligncenter {
	width: 33.33333%;
	text-align: center;
}

.alignright {
	width: 33.33333%;
	text-align: center;
}

@media (max-width: 767px) {
	.alignleft {
		flex-basis: 100%;
		width: 100%;
	}
	.aligncenter {
		flex-basis: 100%;
		width: 100%;
	}
	.alignright {
		flex-basis: 100%;
		width: 100%;
	}
}

.button {
	fill: #ffffff;
	color: #ffffff;
	background-color: #ffffff00;
	border-style: solid;
	border-width: 2px 2px 2px 2px;
	border-color: #ffffff;
	display: inline-block;
	line-height: 1;
	font-size: 15px;
	padding: 12px 24px;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	text-align: center;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	margin: 4px;
	font-family: "Roboto Condensed", "Arial", "Helvetica", sans-serif;
	font-size: 14px;
	font-weight: 600;
}

a.button-link.button.size-sm:hover {
	background-color: white;
	color: black;
	border-color: black;
}

.button span {
	text-decoration: inherit;
}

.button-content-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.button-text {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-ordinal-group: 11;
	-ms-flex-order: 10;
	order: 10;
	display: inline-block;
}

.align-center .button {
	width: auto;
}

a:link, a:hover, a:active, a:visited {
	text-decoration: none;
}

span.screen-reader-text {
	display: none;
}

.fy-icon {
	padding: 0px 10px;
}

svg.icon.facebook {
	fill: white;
}

.footer {
	position: fixed;
	width: 100%;
	bottom: 0;
	font-family: "Roboto Condensed", "Arial", "Helvetica", sans-serif;
	font-size: 14px;
	font-weight: 600;
	margin: 10px 0;
	opacity: 0;
	transform: translate(0px, 100vh);
	/* hide info box until the intro animations are completed */
}

.container {
	width: 100%;
	text-align: center;
	color: white;
}

.container a {
	color: white;
}

.box {
	width: 50%;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.2);
	padding: 35px;
	border: 2px solid #fff;
	border-radius: 20px/50px;
	background-clip: padding-box;
	text-align: center;
}

.overlay {
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0, 0, 0, 0.7);
	visibility: hidden;
	opacity: 0;
	display: flex;
	align-items: center;
}

.overlay:target {
	visibility: visible;
	opacity: 1;
}

.popup {
	margin: 70px auto;
	padding: 20px;
	background: #fff;
	border-radius: 5px;
	max-width: 50%;
	position: relative;
	font-family: "Roboto Condensed", "Arial", "Helvetica", sans-serif;
	font-size: 15px;
	font-weight: 400;
	transform: translate(0px, 100vh);
}

.popup h2 {
	margin-top: 0;
	color: #333;
	font-family: Tahoma, Arial, sans-serif;
}

.popup a {
	color: #00612F;
}

.popup .close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 30px;
	font-weight: bold;
	text-decoration: none;
	color: #333;
}

.popup .close:hover {
	color: #000000;
}

.popup .content {
	max-height: 30%;
	overflow: auto;
	padding: 10px;
    font-size: 14px;
    font-weight: 400;
}

@media screen and (max-width: 700px) {
	.box {
		width: 70%;
	}
	.popup {
		width: 70%;
	}
}

/*# sourceMappingURL=main.css.map*/