:root {

	/* COLORS */
	--color-white: rgba(255,255,255,1);
	--color-black: rgba(0,0,0,1);
	--color-marine: rgba(8,64,82,1);
	--color-turkis: rgba(53,170,183,1);
	--color-bluegreen: rgba(26,92,93,1);
	--color-terracotta: rgba(217,82,19,1);
	--color-orange: rgba(239,124,0,1);

	/* FONTS */
	--font-fontfamily: "Roboto Condensed";
	--font-fontweight: 400;
	--font-fontsize: 20px;

	--font-headline-fontfamily: "Roboto Condensed";
	--font-headline-fontweight: 400;
	--font-headline-fontsize: 48px;

	/* DEFS */
	--content-max-width: 1100px;

}

/* GENERALS */
html, body {
	background-color: var(--color-white);
	color: var(--color-black);
	padding: 0px;
	margin: 0px;
	font-family: var(--font-fontfamily);
	font-size: var(--font-fontsize);
	font-weight: var(--font-fontweight);
	line-height: 1.5;
	position: relative;
	overflow-x: hidden;
}

.content-wrapper {
	max-width: var(--content-max-width);
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	position: relative;
	box-sizing: border-box;
	padding-left: 20px;
	padding-right: 20px;
}

::-ms-clear {
	display: none;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

*:focus {
	outline: none;
}

* {
	-webkit-locale: auto !important;
	white-space: normal !important;
}

p {
	margin: 0px;
}

a {
	text-decoration: none;
	color: inherit;
}

.h1, .h2, .h3, h1, h2, h3 {
	font-weight: 400;
	margin: 0px;
	text-align: center;
}

h1 {
	font-size: 38px;
}

h2 {
	font-size: 32px;
	margin-bottom: 20px;
}

h3 {
	font-size: 20px;
}

.uppercase {
	text-transform: uppercase;
}

.padding-top {
	padding-top: 120px;
}

.smaller {
	font-size: small;
}

/* BUTTON */
.button {
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;
	box-sizing: border-box;
	padding: 10px 40px;
	border: none;
	display: inherit;
	cursor: pointer;
	background-color: transparent;
	font-size: 18px;
	font-family: var(--font-fontfamily);
}

.button.white {
	color: var(--color-turkis);
	background-image: url("/assets/gfx/button-background-white.svg");
}

.button.orange {
	color: var(--color-white);
	background-image: url("/assets/gfx/button-background-orange.png");
	display: inline-block;
}

/* TITLE */
.title {
	position: absolute;
	top: 0px;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	z-index: 2;
}

.title img.logo {
	height: 42px;
}

.title ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	right: 0px;
	position: absolute;
	padding-right: inherit;
	top: 50%;
	transform: translateY(-50%);
}

.title ul li {
	display: inline-block;
	padding-left: 10px;
}

.title ul li:first-child {
	padding-left: 0px;
}

.title ul li.active a {
	color: var(--color-white);
}

body.text .title ul li.active a {
	color: var(--color-turkis);
}

.title ul li a {
	text-transform: uppercase;
}


/* VISUAL */
.visual {
	height: 900px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}

.visual .layer-top {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-image: url("/assets/gfx/visual-layer-top.png");
	background-size: auto 100%;
	background-position: center center;
	background-repeat: no-repeat;
}

.visual video {
	position: absolute;
	left: 50%;
	opacity: 0;
}

.visual video.desktop {
	top: 24%;
	height: 63%;
	transform: translateX(-43%);
}

.visual div.visual-title {
	position: absolute;
	width: 420px;
	left: 50%;
	top: 18%;
	transform: translateX(-130%);
	text-align: center;
}

.visual img.visual-title.desktop {
	height: 100%;
}

.visual div.visual-title h2 {
	color: var(--color-white);
	font-size: 18px;
	margin-top: 20px;
	margin-bottom: 0px;
}

.visual div.visual-title a.button {
	display: inline-block;
	margin-top: 20px;
}

.visual .logos {
	position: absolute;
	left: 50%;
	bottom: 11%;
	width: 220px;
	transform: translateX(-50%);
}

.visual .logos.mobile {
	display: none;
}

/* INTRO */
.intro {
	text-align: center;
}

.intro ul {
	list-style: none;
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 40px;
	padding: 0px;
	margin: 0px;
	margin-left: auto;
	margin-right: auto;
	width: 100%;
	max-width: 860px;
}

.intro ul li {
	position: relative;
}

.intro ul li .intro-image-wrapper {
	width: 100%;
	position: relative;
}

.intro ul li .intro-image-wrapper img {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 0px;
}

.intro ul li .intro-image-wrapper img:first-child {
	position: relative;
}

.intro ul li .intro-content-wrapper {
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0px;
	transform: translateY(-50%);
}

.intro ul li .intro-image-wrapper img.animating.scroll {
	animation: intro-animation-scroll 10s infinite;
	animation-fill-mode: backwards;
}

.intro ul li .intro-image-wrapper img.animating.pulse {
	animation: intro-animation-pulse 11s infinite;
}

@keyframes intro-animation-scroll {
	0% {
		margin-top: 0px;
	}
	25% {
		margin-top: -10px;
	}
	50% {
		margin-top: 0px;
	}
	75% {
		margin-top: 10px;
	}
	100% {
		margin-top: 0px;
	}
}

@keyframes intro-animation-pulse {
	0% {
		transform: scale(1);
	}
	25% {
		transform: scale(0.9);
	}
	50% {
		transform: scale(1);
	}
	75% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

/* HOWTO */
.howto {
	color: var(--color-white);
}

.howto .inner-content-wrapper {
	background-color: var(--color-bluegreen);
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
}

.howto .separator {
	height: 100px;
	width: 100%;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-image: url("/assets/gfx/howto-separator-background.svg");
	background-position: center top;
}

.howto .separator.bottom {
	background-position: center bottom;
}

.howto ul {
	list-style: none;
	display: grid;
	column-gap: 60px;
	grid-template-columns: 1fr 1fr 1fr;
	text-align: center;
	margin: 0px;
	padding: 0px;
	margin-bottom: 60px;
	padding-bottom: 0px;
	margin-top: 40px;
	width: 100%;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
}

.howto ul li {
	text-align: center;
}

.howto ul li .icon {
	position: relative;
	margin-bottom: 10px;
}

.howto ul li .icon img:not(.number) {
	width: 100%;
	display: inline-block;
}

.howto ul li .icon img.number {
	position: absolute;
	width: 15%;
}

.howto p.subline {
	font-size: smaller;
	text-align: center;
	width: 100%;
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.howto p.subline a {
	text-decoration: underline;
}
 




/* PARTICIPATE */
.participate {
	text-align: center;
}

.participate ul:not(.gender) {
	list-style: none;
	width: 100%;
	max-width: 940px;
	margin: 0px;
	padding: 0px;
	display: grid;
	column-gap: 40px;
	row-gap: 40px;
	grid-template-columns: 2fr 3fr;
	margin-top: 40px;
	margin-left: auto;
	margin-right: auto;
}

.participate ul:not(.gender)  li:first-child {
	text-align: center;
}

.participate ul:not(.gender)  li:first-child img {
	width: 100%;
	max-width: 320px;
}

.participate .form-wrapper {
	width: 100%;
	max-width: 550px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.participate .form-wrapper.grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 20px;
	margin-bottom: 20px;
}

.input-field-wrapper {
	width: 100%;
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-image: url("/assets/gfx/input-background.png");
	margin-bottom: 20px;
}

input[type="text"],
input[type="email"] {
	width: 100%;
	border: none;
	font-weight: 100;
	font-family: var(--font-fontfamily);
	font-size: var(--font-fontsize);
	font-size: 18px;
	color: var(--color-white);
	box-sizing: border-box;
	padding: 12px 25px;
	background-color: transparent;
}

input[type="text"]::placeholder {
	color: rgba(255,255,255,0.5);
}

.participate ul.gender {
	list-style: none;
	padding: 0px;
	margin: 0px;
	margin-bottom: 20px;
	text-align: left;
}

.participate ul.gender li {
	display: inline-block;
	margin-right: 40px;
}

.participate ul.gender li:last-child {
	margin-right: 0px;
}

.participate #btn-submit {
	margin-top: 40px;
}


/* RECEIPT CONTAINER */
.receipt-container {
	text-align: left;
	padding-bottom: 40px;
	padding-top: 20px;
}

.receipt-container button {
	margin-bottom: 20px;
}

.receipt-container input[type="file"] {
	display: none;
}


/* CHECKBOX */
.checkbox-wrapper {
	position: relative;
	text-align: left;
	padding-left: 40px;
	box-sizing: border-box;
}

div.form-control,
label.form-control {
	position: relative;
	text-align: left;
	display: inline-block;
	padding-left: 40px;
	margin-bottom: 10px;
	margin-top: 10px;
	width: 100%;
}

input[type="radio"],
input[type="checkbox"] {
	-webkit-appearance: none;
	appearance: none;
	background-color: var(--color-marine);
	margin: 0;
	font: inherit;
	color: currentColor;
	width: 1.15em;
	height: 1.15em;
	border: 0.15em solid currentColor;
	border: none;
	border-radius: 0.15em;
	transform: translateY(-0.075em);
	display: grid;
	place-content: center;
	position: absolute;
	top: 5px;
	left: 0px;
}

input[type="radio"]::before,
input[type="checkbox"]::before {
	content: "";
	width: 0.65em;
	height: 0.65em;
	clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
	transform: scale(0);
	transform-origin: bottom left;
	transition: 120ms transform ease-in-out;
	box-shadow: inset 1em 1em var(--color-white);
	background-color: CanvasText;
}

input[type="radio"]:checked::before,
input[type="checkbox"]:checked::before {
	transform: scale(1);
}



/* PLANE */
.plane-wrapper {
	margin-top: 0px;
	width: 100%;
	height: 400px;
	position: relative;
	overflow: hidden;
}

.plane-wrapper video {
	height: 100%;
	left: 50%;
	top: 0px;
	transform: translateX(-50%);
	position: absolute;
}



/* FAQ */
.faq ul {
	list-style: none;
	padding: 0px;
	margin: 0px;
	text-align: center;
	width: 100%;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

.faq ul li {
	padding-top: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid var(--color-black);
}

.faq .question {
	cursor: pointer;
}

.faq ul li.active .question {
	color: var(--color-turkis);
}

.faq .answer {
	display: none;
	padding-top: 20px;
	opacity: 0;
	transition: opacity 1s ease-out;
}

.faq ul li.active .answer {
	display: block;
	opacity: 1;
}



/* FOOTER */
.palm-wrapper {
	margin-top: 0px;
	margin-bottom: -170px;
	text-align: right;
	position: relative;
	z-index: 1;
	padding-top: 100px;
}

.palm-wrapper .content-wrapper {
	max-width: 2500px;
}

.palm-wrapper img {
	width: 360px;
}

.palm-wrapper .cts {
	text-align: center;
}

.palm-wrapper .cts p {
	margin-bottom: 30px;
	max-width: 400px;
	margin-left: auto;
	margin-right: auto;
}

.pre-footer {
	width: 100%;
	margin-top: 80px;
	background-image: url("/assets/gfx/prefooter-background.svg");
	background-size: 100% auto;
	background-position: center top;
	background-repeat: no-repeat;
	height: 100px;
	position: relative;
	z-index: 2;
}

.footer {
	background-color: var(--color-bluegreen);
	width: 100%;
	padding-bottom: 40px;
	color: var(--color-white);
}

.footer ul.bl {
	list-style: none;
	padding: 0px;
	margin: 0px;
	text-align: center;
	padding-top: 20px;
	margin-bottom: 80px;
}

.footer ul.bl li {
	display: inline-block;
	padding-left: 40px;
}

.footer ul.bl li:first-child {
	padding-left: 0px;
}

.footer ul.bl li a {
	text-transform: uppercase;
	color: var(--color-white);
}

.footer ul.bl li a.active {
	color: var(--color-orange);
}

.footer ul.lg {
	padding: 0px;
	margin: 0px;
	position: absolute;
	list-style: none;
	bottom: 0px;
	left: 0px;
	padding-left: inherit;
}

.footer ul.lg li {
	display: inline-block;
	padding-right: 4px;
	position: relative;
}

.footer ul.lg li:last-child {
	padding-right: 0px;
}

.footer ul.lg li img {
	height: 40px;
}

.footer ul.lg li:nth-child(2) img {
	height: 36px;
	margin-bottom: 2px;
}

.footer ul.lg li:nth-child(3) img {
	height: 20px;
	margin-bottom: 10px;
}

.footer p.copyright {
	text-align: center;
}

.footer div.et {
	text-align: center;
	font-size: xx-small;
	position: absolute;
	bottom: 0px;
	right: 0px;
	padding-right: inherit;
	z-index: 2;
}

.footer div.et img {
	margin-top: 5px;
	height: 34px;
}

img.et-background {
	position: absolute;
	bottom: 0px;
	left: 50%;
	width: 220px;
	margin-left: 345px;
	z-index: 1;
}


/* TEXT */
div.text {
	padding-top: 160px;
	padding-bottom: 60px;
}

div.text h1 {
	text-align: center;
	margin-bottom: 60px;
}

div.text p {
	text-align: center;
}




/* REPONSIVES */
@media all and (max-width: 1140px) {
	img.et-background {
		left: auto;
		right: -15px;
	}
}

@media all and (max-width: 1100px) {
	.visual {
		height: 750px;
	}
	.visual div.visual-title {
		width: 300px;
	}
	.visual .logos {
		bottom: 10%;
	}
	.plane-wrapper {
		height: 300px;
	}
}

@media all and (max-width: 850px) {

	#participate ul {
		grid-template-columns: 1fr;
	}

	.participate .form-wrapper.grid {
		margin-left: auto;
		margin-right: auto;
	}

}

@media all and (max-width: 800px) {

	.footer ul li {
		display: inherit;
		padding: 0px;
		line-height: 2;
	}

	.pre-footer {
		background-size: 800px auto;
		background-position: right top;
		height: 80px;
	}

	.palm-wrapper img {
		width: 290px;
	}

	.howto ul {
		max-width: 400px;
		grid-template-columns: 1fr;
		row-gap: 40px;
	}

	.howto ul li .icon {
		max-width: 260px;
		margin-left: auto;
		margin-right: auto;
	}

	.intro ul {
		grid-template-columns: 1fr;
		row-gap: 40px;
		max-width: 500px;
	}

	.intro ul li .intro-content-wrapper {
		position: relative;
	}

	.intro ul li .intro-image-wrapper {
		max-width: 260px;
		margin-left: auto;
		margin-right: auto;
	}

	.visual div.visual-title {
		width: 250px;
	}

	.visual div.visual-title h2 {
		font-size: 14px;
	}

	.plane-wrapper {
		height: 270px;
	}

	.footer ul.lg {
		position: relative;
		margin-bottom: 30px;
		text-align: center;
	}

}

@media all and (max-width: 650px) {

	.visual {
		height: 960px;
	}

	.visual.no-cta {
		height: 890px;
	}

	.visual .layer-top {
		background-image: url("/assets/gfx/visual-layer-mobile.png");
		background-size: 650px auto;
		background-position: center bottom;
	}

	.visual div.visual-title {
		width: 300px;
		transform: translateX(-50%);
		top: 12%;
	}

	.visual video.desktop {
		top: 43%;
		height: 33%;
		transform: translateX(-47%);
	}

	.visual.no-cta video.desktop {
		top: 40%;
		height: 32%;
	}

	.visual .logos.mobile {
		display: inherit;
		bottom: 4%;
	}

	.visual .logos.desktop {
		display: none;
	}

	.footer div.et {
		position: relative;
		margin-bottom: 30px;
		text-align: center;
	}

	.et-background {
		display: none;
	}

}

@media all and (max-width: 550px) {

	html, body {
		font-size: 16px;
	}

	h1 {
		font-size: 24px;
	}

	.title img.logo {
		height: 34px;
	}

	.title ul li {
		padding-left: 4px;
	}

	.footer ul.bl {
		margin-bottom: 30px;
		padding-top: 0px;
	}

	.palm-wrapper {
		margin-bottom: -130px;
	}

	.palm-wrapper img {
		width: 200px;
	}

	.plane-wrapper {
		height: 240px;
	}

	.participate .form-wrapper.grid {
		grid-template-columns: 1fr;
		max-width: 300px;
	}

	.participate ul.gender {
		text-align: center;
	}

}