/* ----------------------------------------------------------------
	Variablen
-----------------------------------------------------------------*/
@font-face {
	font-family: d-din;
	src: url(../fonts/D-DIN.woff);
	font-weight: 300;
	font-display: swap;
}
@font-face {
	font-family: d-din;
	src: url(../fonts/D-DIN-Bold.woff);
	font-weight: 700;
	font-display: swap;
}
@font-face {
	font-family: barlow;
	src: url(../fonts/Barlow-Light.otf);
	font-weight: 300;
	font-display: swap;
}
@font-face {
	font-family: barlow;
	src: url(../fonts/Barlow-Bold.otf);
	font-weight: 700;
	font-display: swap;
}

:root {
	--common-font: 'barlow', sans-serif;

	--main-white: #FFFFFF;
	--main-black: #161616;


	--main-shade-900: #4A4A4A;
	--main-shade-600: #878787;
	--main-shade-400: #BDBDBD;
	--main-shade-200: #1B1B1B;
	--main-shade-100: #EBEBEB;

	--main-color: #FF9F19;
	--main-color-light: #FFCD36;
	--second-color: #009FE3;
	--second-color-light: #36C3FF;

	--border-full: 9999rem;
	--border-round: 0.5rem;

	--default-gradient: -webkit-linear-gradient(-30deg, var(--main-color), var(--main-color));
	--glass-background: -webkit-linear-gradient(150deg, rgba(255, 159, 25, 0.3), rgba(255, 215, 159, 0.3));
	--glass-border: solid 1px rgba(255, 159, 25, 0.25);
	--glass-blur: blur(0.75rem);

	--caption-background-width: 100%;
}

/* ----------------------------------------------------------------
	Basic
-----------------------------------------------------------------*/
html, body {
	padding: 0px;
	margin: 0px;
	font-size: 100%;
	font-family: var(--common-font);
	max-width: 100vw;
	background-color: var(--main-white);
	overflow-x: hidden;
}

dl, dt, dd, ol, ul, li, h1, h2, h3, h4, h5, h6, p, span {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

ul li:before {
	content: "";
	position: absolute;
	top: 0.81rem;
	left: -1rem;
	transform: translateY(-50%);
	height: 0.25rem;
	width: 0.25rem;
	background-color: var(--main-color);
}
ul li {
	position: relative;
	margin: 0px;
	margin-left: 1.5rem;
	text-align: left !important;
}

::selection {
	background: var(--main-color);
	color: #FFF;
	text-shadow: none;
}

::-moz-selection {
	background: var(--main-color); /* Firefox */
	color: #FFF;
	text-shadow: none;
}

::-webkit-selection {
	background: var(--main-color); /* Safari */
	color: #FFF;
	text-shadow: none;
}

:active,
:focus { outline: none !important; }

/*Media Queries*/
@media only screen and (max-width: 1640px) {
	html, body {
		font-size: 90%;
	}
}
@media only screen and (max-width: 1366px) {
	html, body {
		font-size: 75%;
	}
}
@media only screen and (max-width: 992px) {
	html, body {
		font-size: 95%;
	}
}
@media only screen and (max-width: 688px) {
	html, body {
		font-size: 85%;
	}
}

/* ----------------------------------------------------------------
	Helper Classes
-----------------------------------------------------------------*/
.fullwidth, .full {
	width: 100%;
}
.fullheight, .full {
	height: 100%;
}
.relative {
	position: relative;
}

.flexbox-h, .flexbox-v, .flexbox-hr, .flexbox-vr {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-content: flex-start;
	align-items: center;
}
.flexbox-v, .flexbox-vr {
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}
.flexbox-hr {
	flex-direction: row-reverse;
}
.flexbox-vr {
	flex-direction: column-reverse;
}
.flexbox-c {
	justify-content: center;
	align-content: center;
	align-items: center;
}
.flexbox-c * {
	text-align: center;
}

.content-right, .content {
	box-sizing: border-box;
	padding-right: calc((100vw - 1400px) / 2);
}
.content-left, .content {
	box-sizing: border-box;
	padding-left: calc((100vw - 1400px) / 2);
}

.flexbox-hr .content-right {
	box-sizing: border-box;
	padding-right: 0px;
	padding-left: calc((100vw - 1400px) / 2);
}
.flexbox-hr .content-left {
	box-sizing: border-box;
	padding-left: 0px;
	padding-right: calc((100vw - 1400px) / 2);
}

.section-padding {
	padding-top: 12.5rem;
	padding-bottom: 12.5rem;
}
.section-padding-small {
	padding-top: 10rem;
	padding-bottom: 10rem;
}
.section-padding-tiny {
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
}

.top-right, .top-left, .bottom-right, .bottom-left {
	position: absolute;
}
.top-right, .top-left {
	top: 0;
}
.bottom-right, .bottom-left {
	bottom: 0;
}
.top-right, .bottom-right {
	right: 0;
}
.top-left, .bottom-left {
	left: 0;
}

.center {
	align-self: center;
}

.align-left {
	align-items: flex-start;
}
.align-center {
	align-items: center;
}
.align-right {
	align-items: flex-end;
}

.text-left {
	text-align: left;
}
.text-center {
	text-align: center;
}
.text-right {
	text-align: right;
}

.bg-white, .bg-white-not {
	background-color: var(--main-white);
}
.bg-light, .bg-light-not {
	background-color: var(--main-shade-100);
}
.bg-dark, .bg-dark-not {
	background-color: var(--main-black);
}
.bg-glass {
	box-sizing: border-box;
	background: var(--glass-background);
	border: var(--glass-border);
	backdrop-filter: var(--glass-blur);
	-webkit-backdrop-filter: var(--glass-blur);
}

.border-full {
	border-radius: var(--border-full);
	-webkit-border-radius: var(--border-full);
	-moz-border-radius: var(--border-full);
	overflow: hidden;
}
.border-round {
	border-radius: var(--border-round);
	-webkit-border-radius: var(--border-round);
	-moz-border-radius: var(--border-round);
	overflow: hidden;
}

.overflow {
	overflow: hidden;
}

.canvasContainer {
	height: 100vh;
	width: 100vw;
	display: flex;
    justify-content: center;
    align-items: center;
}
.canvasContainer canvas {
	height: 100%;
	width: 100%;
}

img, video, picture {
    display: inline-block;
	width: 100%;
	height: 100%;
	vertical-align: middle;
}
.full-image, .bg-image {
	object-fit: cover;
	object-position: center;
}
.contain {
	object-fit: contain;
}
.bg-image {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 0;
}

.container-buttons {
	flex-wrap: wrap;
	align-items: flex-end;
	gap: 0px 1.75rem;
}
.container-buttons .primary:last-child:not(:first-child), .container-buttons .secondary:last-child:not(:first-child) {
	margin-top: 1.25rem;
}
.primary, .secondary {
    display: inline-block;
	margin-top: 2.5rem;
	padding: 1rem 1.666rem;
	font-family: var(--common-font);
	font-weight: 700;
	font-size: 1rem;
	color: var(--main-white);
	background-color: var(--second-color);
	border: 2px solid var(--second-color);
	box-shadow: 0 0.5rem 1rem rgba(0, 159, 227, 0.125);
	white-space: nowrap;
	cursor: pointer;
	transition: color 0.2s, background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.primary:hover, .primary:focus {
	background-color: var(--second-color-light);
	border-color: var(--second-color-light);
	box-shadow: 0 0.5rem 1rem rgba(54, 195, 255, 0.125);
}
.secondary {
	color: var(--main-black);
	background-color: var(--main-white);
	border-color: var(--main-black);
}
.bg-dark .secondary {
	color: var(--main-white);
	border-color: var(--main-white);
}
.secondary:hover, .secondary:focus {
	color: var(--main-white);
	border-color: var(--main-black);
	background-color: var(--main-black);
}
.bg-dark .secondary:hover, .bg-dark .secondary:focus {
	color: var(--main-black);
	border-color: var(--main-white);
	background-color: var(--main-white);
}

svg .fill {
	fill: var(--main-black);
	stroke: none;
}
.bg-dark svg .fill {
	fill: var(--main-white);
}
svg .stroke {
	fill: none;
	stroke: var(--main-black);
	stroke-width: 1px;
	stroke-linecap: round;
}
.bg-dark svg .stroke {
	stroke: var(--main-white);
}

.radio {
	padding: 0.5rem 0.833rem;
	flex-wrap: nowrap;
	justify-content: flex-start;
	gap: 0.833rem;
	border-right: none;
	overflow: initial;
	z-index: 1;
}
.radio > div:first-child {
	width: 100%;
	height: 100%;
	pointer-events: none;
	z-index: 1;
}
.radio label {
	position: relative;
	margin: 0rem;
}
.radio label input {
	position: absolute;
	margin: 0px !important;
	width: 0%;
	height: 0%;
	cursor: pointer;
	opacity: 0;
}
.radio label span {
	position: relative;
	box-sizing: border-box;
	padding: 0.5rem 0.833rem;
	display: block;
	font-family: var(--common-font);
	font-size: 1rem;
	font-weight: 700;
	color: var(--main-shade-600);
	background-color: transparent;
	white-space: nowrap;
	cursor: pointer;
	transition: background-color 0.25s, color 0.25s;
	z-index: 1;
}
.radio label:hover span, .radio label:focus span {
	color: var(--main-color);
}
.bg-dark .radio label:hover span, .bg-dark .radio label:focus span {
	color: var(--main-white);
}
.radio label input:checked + span {
	color: var(--main-white);
	cursor: initial;
}
.bg-dark .radio label input:checked + span {
	color: var(--main-black);
}
.radio .radio-indicator {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: var(--default-gradient);
	pointer-events: none;
	z-index: -1;
}
.bg-dark .radio .radio-indicator {
	background-color: var(--main-white);
}

.form {
	width: 100%;
	min-width: 25rem;
	gap: 1.25rem;
}
.form .container-input {
	width: 100%;
	gap: 1.25rem;
    border: none;
}
.form .flexbox-h {
	justify-content: flex-start;
	align-items: flex-start;
}
.form input:not([type=submit]):not([type=checkbox]), .form textarea, .form .file label {
	box-sizing: border-box;
    padding: 1rem 1.666rem;
	width: 100%;
	text-align: left;
	font-family: var(--common-font);
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.61em;
    color: var(--main-black);
	background-color: var(--main-white);
	border: 1px solid var(--main-white);
	resize: none;
	white-space: nowrap;
	transition: border-color 0.2s;
}
.form .flexbox-h > input:not([type=submit]):not([type=file]):not([type=checkbox]), .form .flexbox-h > textarea {
	width: calc(50% - 1.25rem * 0.5);
}
.form input:not([type=submit]):not([type=file]):not([type=checkbox]):focus, .form textarea:focus, .form .file:focus-within {
	border-color: var(--main-black);
}
.form .file {
	box-sizing: border-box;
	width: 100%;
	justify-content: flex-start;
	align-items: center;
	border: 2px solid var(--main-white);
	background-color: var(--main-white);
}
.form .file > * {
	border: none;
	color: var(--main-shade-400);
	cursor: pointer;
}
.form .file > *:first-child {
	white-space: nowrap;
}
.form .file input[type=file] {
	width: 100%;
	color: var(--main-black);
}
.form .file input[type=file]::file-selector-button {
	display: none;
}
.form input[type=checkbox] {
	margin: 0.375rem 1rem 0px 1rem;
	border-radius: 0px;
	-webkit-border-radius: 0px;
}
.form input[type=checkbox], .form input[type=checkbox] + label {
	cursor: pointer;
}
.form .primary {
    margin-top: 1.25rem;
}
.form input:not([type=submit]):not([type=file]):not([type=checkbox])::placeholder, .form textarea::placeholder, .form .file label {
	font-weight: 300;
	color: var(--main-shade-600);
}

input:-webkit-autofill{
    -webkit-text-fill-color: var(--main-black) !important;
}
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
input:-webkit-autofill:active{
    -webkit-box-shadow: 0px 0px 0px 9999rem var(--main-white) inset !important;
	box-shadow: 0px 0px 0px 9999rem var(--main-white) inset !important;
}

.form .honeypot {
    position: absolute;
    left: -9999px;
}
@media only screen and (max-width: 1640px) {
	.content-right, .content {
		padding-right: calc((100vw - 1150px) / 2);
	}
	.content-left, .content {
		padding-left: calc((100vw - 1150px) / 2);
	}
	.flexbox-hr .content-right {
		padding-left: calc((100vw - 1150px) / 2);
	}
	.flexbox-hr .content-left {
		padding-right: calc((100vw - 1150px) / 2);
	}
}
@media only screen and (max-width: 1366px) {
	.content-right, .content {
		padding-right: calc((100vw - 900px) / 2);
	}
	.content-left, .content {
		padding-left: calc((100vw - 900px) / 2);
	}
	.flexbox-hr .content-right {
		padding-left: calc((100vw - 900px) / 2);
	}
	.flexbox-hr .content-left {
		padding-right: calc((100vw - 900px) / 2);
	}
}
@media only screen and (max-width: 992px) {
	.content-right, .content {
		padding-right: 4rem;
	}
	.content-left, .content {
		padding-left: 4rem;
	}
	.flexbox-hr .content-right {
		padding-left: 4rem;
	}
	.flexbox-hr .content-left {
		padding-right: 4rem;
	}
	.section-padding {
		padding-top: 10rem;
		padding-bottom: 10rem;
	}
	.section-padding-small {
		padding-top: 7.5rem;
		padding-bottom: 7.5rem;
	}
	.section-padding-tiny {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
}
@media only screen and (max-width: 688px) {
	.content-right, .content {
		padding-right: 2rem;
	}
	.content-left, .content {
		padding-left: 2rem;
	}
	.flexbox-hr .content-right {
		padding-left: 2rem;
	}
	.flexbox-hr .content-left {
		padding-right: 2rem;
	}
	.section-padding {
		padding-top: 7.5rem;
		padding-bottom: 7.5rem;
	}
	.section-padding-small {
		padding-top: 5rem;
		padding-bottom: 5rem;
	}
	.section-padding-tiny {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}
	.form {
		min-width: initial;
	}
	.form .container-input {
		flex-direction: column;
	}
	.form .flexbox-h > input:not([type=submit]):not([type=file]):not([type=checkbox]), .form .flexbox-h > textarea {
		width: 100%;
	}
}

/* ----------------------------------------------------------------
	Blocks
-----------------------------------------------------------------*/
.loadingscreen {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	align-items: stretch;
	z-index: 100;
}
.loadingscreen > .loadingbar {
	background-color: var(--main-black);
	width: 100%;
	height: 100%;
}
.loadingscreen > .loadingbar:nth-child(even) {
	align-self: flex-end;
}
.loadingscreen > .loadingbar > div {
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
	width: 0%;
	background-color: var(--main-color);
	z-index: 101;
}
.loadingscreen > .loadingbar:nth-child(even) > div {
	right: unset;
	left: 0;
}
#loadingscreenAnim {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 61.8%;
	align-items: center;
	gap: 1.5rem;
	z-index: 102;
}
#loadingscreenAnim span {
	text-align: center;
}
#loadingscreenAnim > * {
	opacity: 0;
}
#loadingscreenAnim > span:first-child {
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--main-color);
}
#loadingscreenAnim #container-countdown {
	padding: 2rem 6rem;
	border: 1px solid var(--main-color);
	gap: 4rem;
}
#loadingscreenAnim .container-number {
	min-width: 6rem;
	align-items: center;
}
#loadingscreenAnim .container-number > * {
	color: var(--main-white);
}
#loadingscreenAnim .container-number > span:first-child {
	font-size: 6rem;
	font-weight: 700;
	line-height: 1;
}
#loadingscreenAnim img {
	margin-top: 6rem;
	height: 4rem;
}

#cookie {
	display: none;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100vw;
	height: 100vh;
	align-items: center;
	justify-content: center;
	background-color: rgba(0, 0, 0, 0.75);
	opacity: 0;
	z-index: 110;
}
#cookie #gid, #cookie #tid {
	display: none;
	opacity: 0;
}
#cookie .cookie-container {
	box-sizing: border-box;
	padding: 2rem 4rem;
	width: 100%;
}
#cookie .container-cookies {
	width: 100%;
	margin-top: 2rem;
	margin-bottom: 2rem;
	gap: 1rem;
}
#cookie .container-cookie {
	width: 100%;
	justify-content: space-between;
	gap: 4rem;
}
#cookie .container-cookie .radio {
	flex-wrap: nowrap;
}
#cookie .container-buttons {
	width: 100%;
	justify-content: space-between;
}
#cookie .container-options {
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 1.5rem;
	margin-top: 1.5rem;
}
#cookie .container-options > * {
	margin-top: initial;
}
#cookie .container-buttons {
	align-items: center;
}
#cookie .container-buttons > button.secondary {
	border: none;
	cursor: pointer;
}
#cookie .container-buttons > button.secondary::after {
	display: none;
}
@media only screen and (max-width: 688px) {
	#cookie {
		max-height: 100vh;
		overflow-y: scroll;
		align-items: center;
	}
	#cookie .h3, #cookie .h4 {
		font-size: 1rem;
	}
	#cookie .cookie-container p {
		font-size: 0.625rem;
	}
	#cookie .cookie-container .radio label span {
		padding: 0.5rem 1rem;
    	font-size: .75rem;
	}
	#cookie .container-cookies {
		margin-top: 1rem;
		margin-bottom: 1rem;
	}
	#cookie .container-cookie {
		flex-direction: column;
		gap: 0.5rem;
	}
	#cookie .button {
		padding: 1rem;
	}
	.banner {
		bottom: 0px;
		flex-direction: row;
	}
	.banner a:not(:last-child) {
		border-bottom: none;
	}
	.banner a:not(:last-child) {
		border-right: 1px solid var(--main-white);
	}
}

/* ----------------------------------------------------------------
	Typography
-----------------------------------------------------------------*/
p, span, label, ul, h1, h2, h3, h4, h5, h6, button {
	font-family: var(--common-font);
	font-size: 1rem;
	line-height: 1.61em;
	font-weight: 300;
	color: var(--main-black);
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
	line-height: 1.2em;
}
h1 + p, .h1 + p, h2 + p, .h2 + p, h3 + p, .h3 + p, h4 + p, .h4 + p, h5 + p, .h5 + p {
	font-size: 1.125rem;
}
span {
	display: block;
}
.bg-dark p, .bg-dark span, .bg-dark label, .bg-dark ul, .bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark h5, .bg-dark h6, .bg-dark .h1, .bg-dark .h2, .bg-dark .h3, .bg-dark .h4, .bg-dark .h5, .bg-dark .h6 {
	color: var(--main-white);
}

.text-small {
	font-size: 0.9rem;
}
.text-big {
	font-size: 1.25rem;
}
.text-huge {
	font-size: 1.5rem;
	font-weight: 700;
}
.text-white {
	color: var(--main-white);
}
.text-dark {
	color: var(--main-black);
}

.container-text p:not(:last-of-type) {
    margin-bottom: 1.25em;
}

h1, .h1 {
	font-size: 7.5rem;
	font-weight: 700;
	text-transform: uppercase;
}
h1 + p, .h1 + p {
	margin-top: 1.25rem;
	font-size: 1.25rem;
}
h2, .h2 {
	font-size: 3.25rem;
	font-weight: 700;
	color: var(--main-color);
}
h2 + p, .h2 + p {
	margin-top: 1.25rem;
}
h3, .h3 {
	font-size: 2.25rem;
	font-weight: 700;
}
h3 + p, .h3 + p {
	margin-top: 0.75rem;
}
h4, .h4 {
	font-size: 1.5rem;
	font-weight: 700;
}
h5, .h5 {
	font-size: 1.25rem;
	font-weight: 700;
}


a {
	position: relative;
	font-family: var(--common-font);
	font-size: 1rem;
	font-weight: 300;
	text-decoration: none;
	color: var(--main-black);
	cursor: pointer;
}
.bg-dark a {
	color: var(--main-white);
}
a.main:hover, a.main:focus {
	color: var(--main-color);
}
a.second:hover, a.second:focus {
	color: var(--second-color);
}
.link-self, .link-inside span {
	position: relative;
	transition: color 0.2s;
}
.link-inside .fill, .link-inside .stroke {
	transition: fill 0.2s, stroke 0.2s;
}
.link-self::before, .link-self::after, .link-inside span::before, .link-inside span::after {
	content: "";
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 0px;
	height: 1px;
	background-color: var(--main-black);
	transition: width 0.2s, background-color 0.2s;
}
.link-self::after, .link-inside span::after {
	left: initial;
	right: 0px;
}
.bg-dark .link-self::before, .bg-dark .link-self::after, .bg-dark .link-inside span::before, .bg-dark .link-inside span::after {
	background-color: var(--main-white);
}
.link-self.main:hover::before, .link-self.main:hover::after, .link-inside.main:hover span::before, .link-inside.main:hover span::after, .link-self.main:focus::before, .link-self.main:focus::after, .link-inside.main:focus span::before, .link-inside.main:focus span::after {
	background-color: var(--main-color);
}
.link-self.second:hover::before, .link-self.second:hover::after, .link-inside.second:hover span::before, .link-inside.second:hover span::after, .link-self.second:focus::before, .link-self.second:focus::after, .link-inside.second:focus span::before, .link-inside.second:focus span::after {
	background-color: var(--second-color);
}
.link-self:hover::before, .link-self:focus::before, .link-self:hover::after, .link-self:focus::after, .link-inside:hover span::before, .link-inside:focus span::before, .link-inside:hover span::after, .link-inside:focus span::after, .link-inside:focus span::after, [aria-current="true"]::before, [aria-current="true"]::after {
	width: calc(50% - 0.125rem) !important;
}
a.link-download svg {
	margin-right: 0.25rem;
	height: 1rem;
	width: 1rem;
}
a.link-download svg .fill {
	fill: var(--main-black);
	transition: fill 0.2s;
}
a.link-download:hover svg .fill, a.link-download:focus svg .fill {
	fill: var(--main-color);
}
a.link-download svg .stroke {
	stroke: var(--main-black);
	transition: stroke 0.2s;
}
a.link-download:hover svg .stroke, a.link-download:focus svg .stroke {
	stroke: var(--main-color);
}

.italic {
	font-style: italic;
}

strong {
	font-weight: 700;
}
@media only screen and (max-width: 992px) {
	h1, .h1 {
		font-size: 5rem;
	}
}
@media only screen and (max-width: 688px) {
	h1, .h1 {
		font-size: 3.75rem;
	}
	h2, .h2 {
		font-size: 2rem;
	}
	h3, .h3 {
		font-size: 1.5rem;
	}
	h4, .h4 {
		font-size: 1.25rem;
	}
	.text-huge {
		font-size: 1.375rem;
	}
}

/* ----------------------------------------------------------------
	Complete CSS
-----------------------------------------------------------------*/

/* Nav */
nav {
	box-sizing: border-box;
	padding-top: 0.375rem;
	-webkit-mask-image: linear-gradient(rgba(0, 0, 0, 1.0) 0%, transparent 0%);
	mask-image: linear-gradient(rgba(0, 0, 0, 1.0) 0%, transparent 0%);
	z-index: 100;
}
nav > div {
	background-color: var(--main-color);
	justify-content: space-between;
}
nav > div, nav > div > div, nav button {
	height: 3rem;
}
nav button {
	padding: 0px 1rem;
	font-size: 1rem;
	font-weight: 300;
	color: var(--main-black);
	border: none;
	background: none;
	cursor: pointer;
	transition: background-color 0.25s, color 0.25s;
}
nav button:hover, nav button:focus {
	color: var(--main-white);
}
nav button:focus {
	text-decoration: underline;
}
nav button svg {
	height: 20%;
	fill: var(--main-black);
	transition: fill 0.25s;
}
nav button:hover svg, nav button:focus svg {
	fill: var(--main-white);
}
nav .language-selection {
	position: absolute;
	top: -100vh;
	min-width: 100%;
	border-top: none	;
}
nav .language-selection a {
	box-sizing: border-box;
	padding: 0.5rem 1rem;
	width: 100%;
	font-size: 1rem;
	font-weight: 300;
	color: var(--main-white);
	transition: background-color 0.25s, color 0.25s;
}
nav .language-selection a:hover, nav .language-selection a:focus {
	color: var(--main-color);
}
nav button:hover + .language-selection, nav button + .language-selection:hover, nav button:focus + .language-selection, nav button + .language-selection:focus-within {
	top: 100%;
}
nav .container-logo, nav img {
	width: auto !important;
	height: 100% !important;
}

/* section-header */
.section-header {
	height: 100vh;
	height: 100svh;
	width: 100vw;
	justify-content: center;
}
.section-header .header-visual {
	mask-image: radial-gradient(circle at 70% center, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
	-webkit-mask-image: radial-gradient(circle at 70% center, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
	object-fit: cover;
	object-position: 75% center;
}
.section-header .container-text {
	max-width: 50%;
}
.section-header h1 {
	color: var(--main-white);
	font-size: 1.5rem;
	line-height: 1.5em;
	white-space: nowrap;
}
.section-header .h1 {
	line-height: 1em;
	color: var(--main-color);
}
.section-header h2 {
	color: var(--main-color);
}
@media only screen and (max-width: 992px) {
	.section-header .container-text {
		max-width: 61.8%;
	}
}
@media only screen and (max-width: 688px) {
	.section-header .container-text {
		max-width: 100%;
	}
}

/* Header */
.section-intro {
	margin-bottom: -1px;
}
.section-intro > * {
	max-width: 61.8%;
}

/* Industries */
.section-industries {
	width: 100%;
	height: 100vh;
	height: 100svh;
	background-color: var(--main-white);
	z-index: 1;
	will-change: transform;
}
.section-industries .container-text {
	width: 100%;
	height: 100%;
	justify-content: space-between;
}
.section-industries .container-text > * {
	width: 50%;
}
.section-industries .container-text h2 {
	color: var(--main-black);
}
.section-industries .container-text .h2 {
	top: 100%;
	color: var(--main-color);
}
.section-industries .wrapper-bullets {
	width: 50%;
	height: 50%;
	align-self: flex-end;
	align-items: flex-start;
	gap: 5rem;
}
.section-industries .container-bullets {
	width: 100%;
	flex: 1;
}
.section-industries .container-bullet {
	padding: 0px 0.75rem;
	border-top: 1px solid var(--main-shade-100);
}
.section-industries .container-bullet:last-child {
	border-bottom: 1px solid var(--main-shade-100);
}
.section-industries .container-bullet button {
	box-sizing: border-box;
	padding: 1.25rem 0px;
	width: 100%;
	gap: 0.5rem;
	background: none;
	border: none;
	cursor: pointer;
}
.section-industries .container-bullet button:hover .h5, .section-industries .container-bullet button:focus .h5 {
	color: var(--main-color);
}
.section-industries .container-bullet .h5 {
	text-align: left;
	transition: color 0.2s;
}
.section-industries .container-bullet button svg {
	width: 1.5rem;
	height: 1.5rem;
	min-width: 1.5rem;
	min-height: 1.5rem;
	transition: transform 0.2s;
}
.section-industries .container-bullet button.active svg {
	transform: rotate(180deg);
}
.section-industries .container-bullet button svg > * {
	fill: var(--main-color);
}
.section-industries .container-bullet ul, .section-industries .container-bullet p {
	display: block;
	height: 0px;
	overflow: hidden;
	transition: height 0.2s, margin 0.2s;
}
.section-industries .container-bullet button.active ~ ul, .section-industries .container-bullet button.active ~ p {
	height: auto;
}
.section-industries .container-bullet button.active ~ ul:last-child, .section-industries .container-bullet button.active ~ p:last-child {
	margin-bottom: 1.25rem;
}
.section-industries .container-bullet button.active ~ p {
	margin-top: 0.75rem;
}
.section-industries p.top-left {
	font-size: 1.25rem;
}
.section-industries .canvasContainer {
	z-index: -1;
}
@media only screen and (max-width: 992px) {
	.section-industries .container-text > * {
		width: 100%;
	}
	.section-industries .container-text .h2 {
		max-width: 61.8%;
	}
	.section-industries .wrapper-bullets {
		height: 40%;
	}
	.section-industries .canvasContainer {
		top: 37.5%;
		transform: translateY(-50%);
		height: auto;
		min-height: 20%;
		aspect-ratio: 16/9;
	}
}
@media only screen and (max-width: 688px) {
	.section-industries .container-text > * {
		width: 100%;
	}
	.section-industries .wrapper-bullets {
		height: 50%;
	}
	.section-industries .container-bullet button {
		padding: 0.75rem 0px;
	}
	.section-industries .h5 {
		font-size: 1rem;
	}
	.section-industries ul li {
		font-size: 0.9rem;
		line-height: 1.25em;
	}
	.section-industries ul li:before {
		top: 0.52rem;
	}
	.section-industries .canvasContainer {
		top: 35%;
	}
	.section-industries p.top-left {
		font-size: 1rem;
	}
}

/* Video */
.section-video {
	padding-top: 0px;
	margin-top: -1px;
	gap: 1.25rem;
	z-index: 1;
}
.section-video > div {
	width: 100%;
	gap: 3.75rem;
	align-items: flex-start;
}
.section-video video {
	width: 61.8%;
	box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.125);
}
.section-video .container-content {
	width: calc(38.2% - 3.75rem);
	align-items: flex-start;
	gap: 2.5rem;
}
.section-video .container-content > * {
	width: 100%;
}
.section-video .container-content table {
	border-collapse: collapse;
}
.section-video .container-content table td {
	padding: 1.25rem 0px;
	border: 1px solid var(--main-shade-100);
	border-left-width: 0px;
	border-right-width: 0px;
}
.section-video .container-content .h4 {
	color: var(--main-color);
	text-align: right;
}
.section-video .container-content .primary {
	margin: 0px;
	width: auto;
}
@media only screen and (max-width: 992px) {
	.section-video > div {
		flex-direction: column;
		gap: 2.5rem;
	}
	.section-video .container-content, .section-video video {
		width: 100%;
	}
	.section-video .container-content {
		gap: 1.25rem;
	}
}
@media only screen and (max-width: 688px) {
	
}

/* Scrolly */
.section-scrolly .container-scrolly {
	width: 100%;
	height: 100vh;
	height: 100svh;
	align-items: stretch;
	will-change: transform;
}
.section-scrolly .container-scrolly:not(:first-child) {
	margin-top: -25vh;
	margin-top: -25svh;
}
.section-scrolly .container-scrolly > div {
	width: 50%;
}
@media only screen and (max-width: 992px) {
	.section-scrolly .container-scrolly {
		flex-direction: column-reverse;
	}
	.section-scrolly .container-scrolly:not(:first-child) {
		margin-top: 0px;
	}
	.section-scrolly .container-scrolly > div {
		height: auto;
		width: 100%;
	}
	.section-scrolly .container-scrolly .container-text {
		box-sizing: border-box;
		padding: 0px 4rem;
		padding-top: 7.5rem;
	}
	.section-scrolly .container-scrolly .canvasContainer {
		height: 100%;
	}
}
@media only screen and (max-width: 688px) {
	.section-scrolly .container-scrolly .container-text {
		padding: 0px 2rem;
		padding-top: 5rem;
	}
}

/* WebGL */
.section-webgl {
	gap: 2.5rem;
}
.section-webgl > h2 {
	align-self: center;
}
.section-webgl .container-canvas {
	width: 100%;
	height: 55rem;
	max-height: 100vh;
	max-height: 100svh;
	background-color: var(--main-shade-400);
	box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.125);
}
.section-webgl .overlay {
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.65);
	z-index: 20;
	pointer-events: none;
}
.section-webgl .overlay svg {
	width: 12.5rem;
	height: 12.5rem;
}
.section-webgl .overlay svg .stroke{
	fill: none;
	stroke: var(--main-white);
	stroke-width: 0.5;
}
.section-webgl .overlay svg .fill{
	fill: var(--main-white);
	stroke: none;
}
.section-webgl canvas {
	width: 100%;
	height: 100%;
	cursor: grab;
}
.section-webgl canvas:active {
	cursor: grabbing;
}
.section-webgl .container-content {
	transform: translateX(100%);
	width: 38.2%;
	height: 100%;
	justify-content: flex-start;
}
.section-webgl h3 {
	color: var(--main-color);
}
.section-webgl button {
	padding: 0px;
	margin: 0px;
	border: none;
	background: none;
	cursor: pointer;
	z-index: 1;
}
.section-webgl button.close {
	box-sizing: border-box;
	padding: 0.5rem;
	top: 0.75rem;
	right: 0.75rem;
	width: 2.5rem;
	height: 2.5rem;
	background-color: var(--second-color);
	transition: background-color 0.2s;
}
.section-webgl button.close svg {
	fill: var(--main-white);
}
.section-webgl button.close:hover, .section-webgl button.close:focus {
	background-color: var(--second-color-light);
}
.section-webgl .container-buttons {
	left: 50%;
	bottom: 0.75rem;
	transform: translateX(-50%);
	gap: 0.5rem;
}
.section-webgl button.arrow {
	box-sizing: border-box;
	padding: 0.5rem;
	width: 3rem;
	height: 3rem;
}
.section-webgl button.arrow svg {
	fill: var(--second-color);
	transition: fill 0.2s;
}
.section-webgl button.arrow:hover svg, .section-webgl button.arrow:focus svg {
	fill: var(--second-color-light);
}
.section-webgl .container-images {
	width: 100%;
	height: 38.2%;
}
.section-webgl .container-texts {
	height: calc(61.8% - 4.5rem);
}
.section-webgl .container-text {
	box-sizing: border-box;
	padding: 2.5rem;
	padding-bottom: 0px;
	max-height: 100%;
	overflow-x: hidden;
	overflow-y: auto;
}
.section-webgl picture:not(:first-child), .section-webgl .container-text:not(:first-child) {
	transform: translateX(100%);
}
@media only screen and (max-width: 992px) {
	.section-webgl .container-canvas {
		height: 40rem;
	}
	.section-webgl .container-content {
		width: 50%;
	}
	.section-webgl h3 {
		font-size: 1.75rem;
	}
	.section-webgl p {
		font-size: 1rem;
	}
}
@media only screen and (max-width: 688px) {
	.section-webgl .container-canvas {
		height: 32.5rem;
	}
	.section-webgl .container-content {
		width: 100%;
	}
	.section-webgl h3 {
		font-size: 1.25rem;
	}
	.section-webgl p {
		font-size: 0.9rem;
	}
}

/* Facts */
.section-facts > * {
	width: 50%;
}
.section-facts p {
	font-size: 1.125rem;
}
.section-facts table {
	margin-top: 3.75rem;
	width: 100%;
	border-collapse: collapse;
}
.section-facts table td {
	padding: 1.25rem 0px;
	border: 1px solid var(--main-shade-100);
	border-left-width: 0px;
	border-right-width: 0px;
}
.section-facts .h4 {
	padding-left: 5rem;
	color: var(--main-color);
}
.section-facts span {
	margin-top: 1.25rem;
	font-style: italic;
}
@media only screen and (max-width: 992px) {
	.section-facts {
		flex-direction: column;
	}
	.section-facts > * {
		width: 100%;
	}
	.section-facts .container-text {
		padding: 0px 4rem;
	}
}
@media only screen and (max-width: 688px) {
	.section-facts .container-text {
		padding: 0px 2rem;
	}
}

/* Contact */
.section-contact {
	margin-top: -50vh;
	margin-top: -50svh;
}
.section-contact .container-headlines {
	height: 100vh;
	height: 100svh;
	width: 100%;
	max-width: 50%;
	will-change: transform;
}
.section-contact span {
	display: inline;
	width: 100%;
}
.section-contact .h1 {
	font-size: 5rem;
	text-transform: initial;
	mask-image: linear-gradient(135deg, transparent -10%, rgba(0, 0, 0, 1.0) -10%, rgba(0, 0, 0, 1.0) -10%, transparent 0%);
	-webkit-mask-image: linear-gradient(135deg, transparent -10%, rgba(0, 0, 0, 1.0) -10%, rgba(0, 0, 0, 1.0) -10%, transparent 0%);
}
.section-contact .h1.now {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 12.5rem;
	color: var(--main-color);
	mask-image: linear-gradient(135deg, rgba(0, 0, 0, 1.0) 0%, transparent 0%);
	-webkit-mask-image: linear-gradient(135deg, rgba(0, 0, 0, 1.0) 0%, transparent 0%);
}
.section-contact .container-content {
	margin-top: 75vh;
	margin-top: 75svh;
	position: relative;
	width: 100%;
	min-height: 100vh;
	min-height: 100svh;
}
.section-contact .container-text {
	box-sizing: border-box;
	padding: 5rem;
	width: 100%;
}
.section-contact .container-text > * {
	width: 61.8%;
}
.section-contact .container-text .form {
	width: 50%;
}
.section-contact .container-text form, .section-contact .container-text p:last-child {
	margin-top: 1.25rem;
}
@media only screen and (max-width: 992px) {
	.section-contact {
		margin-top: -25vh;
		margin-top: -25svh;
	}
	.section-contact .container-headlines {
		max-width: 75%;
	}
	.section-contact .h1 {
		font-size: 5rem;
	}
	.section-contact .container-text > *, .section-contact .container-text .form {
		width: 100%;
	}
}
@media only screen and (max-width: 688px) {
	.section-contact .h1 {
		font-size: 2.5rem;
	}
	.section-contact .h1.now {
		font-size: 7.5rem;
	}
	.section-contact .container-text {
		padding: 5rem 2rem;
	}
}

/* Footer */
footer {
	margin-top: -3rem;
	width: 100%;
	height: 3rem;
	font-family: var(--common-font);
	font-size: 1rem;
	color: var(--main-shade-400);
}
footer.thanks {
	position: absolute;
	bottom: 0px;
	left: 0px;
}
footer .content > * {
	flex: 1;
	z-index: 1;
}
footer .content .container-content {
	justify-content: center;
}
footer .content > div:last-child {
	justify-content: flex-end;
}
footer a, footer #cookie-settings {
	color: var(--main-shade-400);
	font-family: var(--common-font);
	font-size: 1rem;
	transition: color 0.2s;
}
footer #cookie-settings {
	align-self: center;
	background: none;
	border: none;
	cursor: pointer;
}
footer a:hover, footer #cookie-settings:hover {
	color: var(--main-color);
}
footer .content > div:last-child > a:last-child:hover {
	color: #ceaa6d;
}
@media only screen and (max-width: 688px) {
	footer, footer a, footer #cookie-settings {
		font-size: 0.75rem;
	}
}