/* ----------------------------------------------------------------
	Variablen
-----------------------------------------------------------------*/
@font-face {
	font-family: Roboto;
	src: url(../fonts/Roboto-Regular.ttf);
	font-weight: 400;
	font-display: swap;
}
@font-face {
	font-family: Roboto;
	src: url(../fonts/Roboto-Bold.ttf);
	font-weight: 700;
	font-display: swap;
}

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

	--main-white: #ffffff;
	--main-black: #111111;

	--main-shade-900: #3c3c3b;
	--main-shade-600: #878787;
	--main-shade-400: #b2b2b2;
	--main-shade-200: #dadada;
	--main-shade-100: #ededed;
	--main-shade-50: #f5f5f5;
	
	--main-color: #4874B3;
	--main-color-dark: #2b466b;
	--second-color: #d77f28;
	--second-color-dark: #466b2b;
	--third-color: #d77f28;
	--third-color-dark: #74B348;

	--gradient-background: linear-gradient(45deg, var(--main-black) 40%, var(--main-shade-900) 100%);

	--border-full: 99999rem;
	--border-round: 1.75rem;
}

/* ----------------------------------------------------------------
	Basic
-----------------------------------------------------------------*/
html, body {
	padding: 0px;
	margin: 0px;
	font-size: 100%;
	font-family: var(--common-font);
	max-width: 100vw;
	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;
}

#smooth-content {
	will-change: transform;
}

ul li:before {
	content: "";
	position: absolute;
	top: 0.81rem;
	left: -1rem;
	transform: translateY(-50%);
	height: 0.25rem;
	width: 0.25rem;
	border-radius: var(--border-full);
	-webkit-border-radius: var(--border-full);
	-moz-border-radius: var(--border-full);
	border: 1px solid var(--main-black);
}
.bg-dark ul li:before {
	border-color: var(--main-white);
}
ul li {
	position: relative;
	margin: 0.5rem 0px 0.5rem 1.5rem;
	text-align: left !important;
}
ul li:first-child {
	margin-top: 0px;
}
ul li:last-child {
	margin-bottom: 0px;
}

::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: 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: 10rem;
	padding-bottom: 10rem;
}
.section-padding-small {
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
}
.section-padding-tiny {
	padding-top: 5rem;
	padding-bottom: 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-gradient {
	background: var(--gradient-background);
}

.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;
}

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.5rem;
	font-family: var(--common-font);
	font-weight: 700;
	font-size: 1rem;
	color: var(--main-white);
	background-color: var(--main-color);
	border: 2px solid var(--main-color);
	white-space: nowrap;
	cursor: pointer;
	transition: color 0.2s, background-color 0.2s, border-color 0.2s;
}
.primary.alt {
	background-color: var(--second-color);
	border-color: var(--second-color);
}
.primary:hover, .primary:focus {
	background-color: var(--main-black);
	border-color: var(--main-black);
}
.bg-dark .primary:hover, .bg-dark .primary:focus {
	color: var(--main-black);
	background-color: var(--main-white);
	border-color: var(--main-white);
}
.secondary {
	color: var(--main-black);
	background-color: transparent;
	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 .stroke {
	fill: none;
	stroke: var(--main-black);
	stroke-width: 0.5px;
	stroke-linecap: round;
}
.bg-dark svg .stroke {
	stroke: var(--main-white);
}

.radio {
	padding: 4px;
	border-right: none;
	flex-wrap: nowrap;
	border: 2px solid var(--main-black);
	justify-content: flex-start;
	overflow: initial;
	z-index: 1;
}
.bg-dark .radio {
	border: 2px solid var(--main-white);
}
.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 {
	box-sizing: border-box;
	display: block;
	padding: 1rem 1.5rem;
	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;
}
.radio label:hover span, .radio label:focus span {
	color: var(--main-black);
}
.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-color: var(--main-black);
	pointer-events: none;
	z-index: -1;
}
.bg-dark .radio .radio-indicator {
	background-color: var(--main-white);
}

.form {
	min-width: 25rem;
	gap: 1.5rem;
}
.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.5rem;
	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: 2px 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, .form .radio {
	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-600);
	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: 2rem;
}
.form input:not([type=submit]):not([type=file]):not([type=checkbox])::placeholder, .form textarea::placeholder, .form .file label {
	font-weight: 400;
	color: var(--main-shade-600);
}
.form .radio {
    justify-content: space-between;
}

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 Queries*/
@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;
	}
}
@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 .container-input {
		flex-direction: column;
	}
	.form .flexbox-h > input:not([type=submit]):not([type=file]):not([type=checkbox]), .form .flexbox-h > textarea {
		width: 100%;
	}
	.form .radio {
		width: auto;
	}
}

/* ----------------------------------------------------------------
	Blocks
-----------------------------------------------------------------*/
.overlay {
	display: none;
	position: fixed;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	background-color: rgba(238, 238, 238, 0.75);
	-webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
	opacity: 0;
	z-index: 99;
}
.overlay > svg:first-child {
	position: absolute;
	top: 1.5rem;
	right: 1.5rem;
	width: 2rem;
	height: 2rem;
	fill: var(--main-shade-900);
	cursor: pointer;
}
.overlay > svg:first-child .fill {
	fill: var(--main-shade-900);
	transition: fill 0.2s;
}
.overlay > svg:first-child:hover .fill {
	fill: var(--main-color);
}
.overlay > svg:first-child .stroke {
	stroke: var(--main-shade-900);
	transition: stroke 0.2s;
}
.overlay > svg:first-child:hover .stroke {
	stroke: var(--main-color);
}

#cookie {
	display: none;
	opacity: 0;
	position: fixed;
	align-items: center;
	justify-content: center;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 99;
}
#cookie #gid {
	display: none;
	opacity: 0;
}
#cookie .cookie-container {
	box-sizing: border-box;
	padding: 2rem 4rem;
	min-width: 40vw;
	max-height: 100%;
	justify-content: flex-start;
	background-color: var(--main-white);
	border: 1px solid var(--main-black);
	overflow: hidden;
	overflow-y: auto;
}
#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 p {
	text-align: left;
}
#cookie .container-cookie .radio {
	flex-wrap: nowrap;
}
#cookie .container-buttons {
	width: 100%;
	justify-content: flex-end;
	gap: 1.5rem;
	margin-top: 1.5rem;
}
#cookie .container-buttons .button {
	margin-top: initial;
}

.breadcrumbs {
	top: 7.5rem;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 0.5rem;
	color: var(--main-black);
	font-weight: 400;
	z-index: 97;
}
.breadcrumbs a {
	color: var(--main-black);
	font-weight: 400;
}
section.bg-dark + .breadcrumbs {
	color: var(--main-white);
}
section.bg-dark + .breadcrumbs a {
	color: var(--main-white);
}
section.bg-dark + .breadcrumbs a::before, section.bg-dark + .breadcrumbs a::after {
	background-color: var(--main-white);
}
/*Media Queries*/
@media only screen and (max-width: 992px) {
	.overlay {
		background-color: var(--main-shade-50);
	}
	#language .language-container, #search .search-container, #cookie .cookie-container {
		padding: 4rem;
		width: 100%;
		max-width: 100%;
	}
	.banner {
		bottom: 2rem;
	}
}
@media only screen and (max-width: 688px) {
	#language .language-container, #search .search-container, #cookie .cookie-container {
		padding: 2rem;
	}
	#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-shade-50);
	}
}

/* ----------------------------------------------------------------
	Typography
-----------------------------------------------------------------*/
p, span, label, ul, h1, h2, h3, h4, h5, h6, .h1-span {
	font-size: 1rem;
	line-height: 1.61em;
	font-weight: 400;
	color: var(--main-black);
}
h1, h2, h3, h4, h5, h6 {
	line-height: 1.25em;
}
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: 3.75rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 2.5rem;
}
h2, .h2 {
	font-size: 2.75rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
}
h3, .h3 {
	font-size: 1.75rem;
	font-weight: 700;
	margin-bottom: 1.25rem;
}
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: 400;
	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-shade-900);
	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-shade-900);
	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: 688px) {
	h1, .h1 {
		font-size: 2.5rem;
	}
	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 */
header nav {
	z-index: 98;
}
header nav *.bg-white {
	background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(0.5rem);
}
header span {
	display: inline;
}
nav .normal-menu {
	position: relative;
	height: 6rem;
	border-bottom: 1px solid var(--main-black);
}
nav .normal-menu > * {
	flex: 1;
}
nav .normal-menu > *:nth-child(2) {
	justify-content: center;
}
nav .normal-menu > *:last-child {
	justify-content: flex-end;
}
nav .container-logo a {
	display: inline-block;
	height: 2rem;
}
nav .container-logo svg {
	height: 2rem;
	width: auto;
}
nav .container-logo .logo-u {
	transform-origin: 120.65%;
	transition: transform 0.3s;
}
nav .container-logo a:hover .logo-u, nav .container-logo a:focus .logo-u {
	transform: rotateY(180deg);
}
nav .container-logo a:hover .logo-u path:first-child, nav .container-logo a:focus path:first-child {
	fill: var(--main-black);
	transition: fill 0.3s;
}
nav .container-logo a.main:hover .logo-u path:first-child, nav .container-logo a:focus path:first-child {
	fill: var(--main-color);
}
nav .container-logo a.second:hover .logo-u path:first-child, nav .container-logo a:focus path:first-child {
	fill: var(--second-color);
}
nav .links-normal-menu {
	gap: 2.5rem;
}
nav .links-normal-menu a {
	white-space: nowrap;
}
nav .links-normal-menu span {
	height: 1.65rem;
}
nav .container-buttons {
	justify-content: flex-end;
	align-items: center;
	gap: 0.75rem;
}
nav .container-buttons a {
	padding: 0.75rem 1.25rem;
	margin: 0px !important;
	font-size: 0.9rem;
}
nav .button-menu {
	display: none;
	margin-right: initial;
	margin-left: 1.25rem;
	padding: 0px;
	border: none;
	background: none;
	cursor: pointer;
}
nav .button-menu svg {
	height: 3rem;
	width: 3rem;
}
nav .mega-menu {
	position: absolute;
	top: 100%;
	padding-top: 2.5rem;
	padding-bottom: 5rem;
	display: none;
	opacity: 0;
	width: 100vw;
	z-index: -2;
}
nav .mega-menu > div {
	align-items: flex-start;
	gap: 7.5rem;
}
nav .mega-menu .link-inside {
	gap: 1.25rem;
}
nav .mega-menu .link-inside.main:hover span, nav .mega-menu .link-inside.main:focus span {
	color: var(--main-color);
}
nav .mega-menu .link-inside.second:hover span, nav .mega-menu .link-inside.second:focus span {
	color: var(--second-color);
}
nav .text-mega-menu {
	width: 25%;
	margin-right: 1rem;
	justify-content: flex-start;
}
nav .links-mega-menu {
	width: 75%;
	justify-content: flex-start;
}
nav .links-mega-menu a:not(:last-child) {
	width: 100%;
	margin-bottom: 1.25rem;
}
nav .links-mega-menu span {
	position: relative;
}
nav .mobile-menu {
	display: none;
	opacity: 0;
	position: absolute;
	top: 100%;
	box-sizing: border-box;
	padding-top: 2rem;
	padding-bottom: 2rem;
	width: 100vw;
	max-height: calc(100vh - 6rem);
	justify-content: flex-start;
	background-color: var(--main-shade-50);
	overflow-y: scroll;
	z-index: -1;
}
nav .mobile-menu > div:first-child {
	margin-bottom: 1rem;
}
nav .mobile-container-icons button {
	align-items: center;
	margin-right: 2rem;
	padding: 0px;
	border: none;
	background: none;
	cursor: pointer;
}
nav .mobile-container-icons button svg {
	height: 2rem;
	width: 2rem;
}
nav .mobile-container-icons button svg .fill {
	fill: var(--main-shade-900);
	transition: fill 0.2s;
}
nav .mobile-container-icons button:hover svg .fill, .mobile-container-icons button:focus svg .fill {
	fill: var(--main-color);
}
nav .mobile-container-icons button svg .stroke {
	stroke: var(--main-shade-900);
	transition: stroke 0.2s;
}
nav .mobile-container-icons button:hover svg .stroke, .mobile-container-icons button:focus svg .stroke {
	stroke: var(--main-color);
}
nav .mobile-highlight-button {
	display: none;
}
nav .mobile-container-links > * {
	margin: 0.75rem 0px;
}
nav .mobile-container-links > button {
	position: relative;
	padding: 0px;
	color: var(--main-shade-900);
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.2s;
}
nav .container-sublinks {
	display: none;
	opacity: 0;
	box-sizing: border-box;
	padding-left: 2rem;
	margin: 0px;
	height: 100%;
	overflow: hidden;
}
nav .container-sublinks > * {
	margin-top: 0.5rem;
}
@media only screen and (max-width: 992px) {
	nav .links-normal-menu, nav .normal-menu .container-icons, nav .normal-menu .container-buttons, nav .mega-menu {
		display: none;
	}
	nav .button-menu {
		display: flex;
	}
}
@media only screen and (max-width: 688px) {
	nav header::before {
		height: 7.5rem;
	}
	nav .container-logo svg {
		height: 2rem;
	}
	nav .highlight-button {
		display: none;
	}
	nav .mobile-highlight-button {
		display: flex;
	}
	header::before {
		height: 7.5rem;
	}
}

/* Header-Default */
.section-header-default {
	box-sizing: border-box;
	padding-top: 10rem;
	padding-bottom: 5rem;
	min-height: 80vh;
}
.section-header-default .container-text {
	max-width: 38.2%;
	z-index: 1;
}
.section-header-default.home {
	min-height: 90vh;
}
.section-header-default.home span {
	margin-top: 3.75rem;
	color: var(--main-shade-600);
}
.section-header-default.home a {
	margin-top: 1.25rem;
}
.section-header-default.home .container-video {
	width: 100%;
	height: 100%;
}
.section-header-default.home video {
	object-position: 65%;
}
@media only screen and (max-width: 992px) {
	.section-header-default .container-text {
		max-width: 100%;
	}
}
@media only screen and (max-width: 688px) {
	.section-header-default, .section-header-default.home {
		height: 100vh;
	}
}

/* Header-Slider */
.section-header-slider {
	align-items: stretch;
}
.section-header-slider .slider {
	box-sizing: border-box;
	width: 100%;
	min-height: 80vh;
	padding-top: 10rem;
	padding-bottom: 5rem;
	flex-shrink: 0;
	overflow: hidden;
}
.section-header-slider .container-slider-button {
	left: 50%;
	transform: translateX(-50%);
}
.section-header-slider .slider:not(:first-child) {
	margin-left: -100%;
	opacity: 0;
}
.section-header-slider .slider-button {
	width: 1.25rem;
	height: 1.25rem;
	margin: 1.25rem 0.25rem;
	border-radius: 50%;
	background: none;
	border: 2px solid var(--main-white);
	cursor: pointer;
	transition: background-color 0.2s;
	z-index: 12;
}
.section-header-slider .slider-button:hover, .section-header-slider .slider-button:focus, .section-header-slider .slider-button.active {
	background-color: var(--main-white);
}
.section-header-slider .container-text {
	max-width: 38.2%;
	z-index: 1;
}
@media only screen and (max-width: 992px) {
	.section-header-slider .container-text {
		max-width: 100%;
	}
}
@media only screen and (max-width: 688px) {
	
}


/* Text */
.section-text > * {
	max-width: 61.8%;
}
@media only screen and (max-width: 992px) {
	.section-text > * {
		max-width: 100%;
	}
}

/* Bullets */
.section-bullets {
	gap: 2.5rem;
}
.section-bullets h2 {
	max-width: 61.8%;
}
.section-bullets .container-bullets {
	position: relative;
	width: 100%;
	gap: 2.5rem;
}
.section-bullets .container-bullets span {
	position: relative;
	transform: translateX(50%);
	margin-left: 2.5rem;
	max-width: calc(50% - 1.25rem);
	font-weight: 700;
	text-align: left;
}
.section-bullets .container-bullets span:nth-child(even) {
	transform: translateX(-50%);
	margin-left: initial;
	margin-right: 2.5rem;
}
.section-bullets .container-bullets span::before {
	content: "";
	position: absolute;
	left: -1.25rem;
	top: 0.81rem;
	transform: translate(-50%, -50%);
	width: 0.5rem;
	height: 0.5rem;
	background-color: var(--main-white);
	border: 1px solid var(--main-black);
	border-radius: var(--border-full);
}
.section-bullets .container-bullets span:nth-child(even)::before {
	left: initial;
	right: -1.25rem;
	transform: translate(50%, -50%);
}
.section-bullets svg {
    position: absolute;
    top: 0.8rem;
    left: 50%;
	transform: translateX(-50%);
    height: calc(100% - 1.6rem);
    width: 2px;
}
.section-bullets svg > line {
    stroke: var(--main-black);
    stroke-width: 2px;
}
@media only screen and (max-width: 992px) {
	.section-bullets h2 {
		max-width: 100%;
	}
	.section-bullets .container-bullets {
		align-items: flex-start;
	}
	.section-bullets .container-bullets span, .section-bullets .container-bullets span:nth-child(even) {
		transform: none;
		margin-left: 1.25rem;
		max-width: 100%;
		text-align: left;
	}
	.section-bullets .container-bullets span::before, .section-bullets .container-bullets span:nth-child(even)::before {
		left: -1.25rem;
		right: initial;
		transform: translate(-50%, -50%);
	}
	.section-bullets svg {
		left: 0px;
		transform: none;
	}
}

/* Text-Image-Below */
.section-text-image-below {
	padding-bottom: 20rem;
}
.section-text-image-below .container-text {
	max-width: 61.8%;
	z-index: 1;
}
.section-text-image-below picture {
	top: initial;
	bottom: 0px;
	height: 20rem;
}
.section-text-image-below img {
	height: 200%;
}
@media only screen and (max-width: 992px) {
	.section-text-image-below {
		padding-bottom: 12.5rem;
	}
	.section-text-image-below .container-text {
		max-width: 100%;
	}
}
@media only screen and (max-width: 688px) {
	.section-text-image-below {
		padding-bottom: 10rem;
	}
}

/* Icons */
.section-icons {
	gap: 5rem;
}
.section-video + .section-icons {
	padding-top: 0px;
}
.section-icons .container-icons {
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 3.75rem 7.5rem;
}
.section-icons .container-icon {
	min-width: calc(33.333% - 7.5rem * 2 / 3);
	max-width: calc(33.333% - 7.5rem * 2 / 3);
	flex: 1;
}
.section-icons svg {
	margin-bottom: 2.5rem;
	width: 5rem;
	height: 5rem;
}
.section-icons img {
	margin-bottom: 2.5rem;
	width: 12.5rem;
	height: 12.5rem;
}
.section-icons .container-icons + .container-buttons a {
	margin-top: 0px;
}
@media only screen and (max-width: 992px) {
	.section-icons .container-icons {
		gap: 3.75rem 5rem;
	}
	.section-icons .container-icon {
		min-width: calc(50% - 5rem * 1 / 2);
		max-width: calc(50% - 5rem * 1 / 2);
	}
}
@media only screen and (max-width: 688px) {
	.section-icons {
		gap: 2.5rem;
	}
	.section-icons .container-icons {
		gap: 5rem;
	}
	.section-icons .container-icon {
		min-width: 100%;
		max-width: 100%;
	}
}

/* Video */
.section-video h2 {
	margin-bottom: 3.75rem;
}

/* Text-Image-Split */
.section-text-image-split {
	align-items: stretch;
}
.section-text-image-split > * {
	width: 50%;
}
.section-text-image-split.flexbox-h .container-text {
	box-sizing: border-box;
	padding-right: 5rem;
}
.section-text-image-split.flexbox-hr .container-text {
	box-sizing: border-box;
	padding-left: 5rem;
}
@media only screen and (max-width: 992px) {
	.section-text-image-split, .section-text-image-split.flexbox-hr {
		flex-direction: column-reverse;
	}
	.section-text-image-split > * {
		width: 100%;
	}
	.section-text-image-split.flexbox-h .container-text, .section-text-image-split.flexbox-hr .container-text {
		padding: 5rem 4rem 7.5rem;
	}
	.section-text-image-split > div:last-child {
		height: 30rem;
	}
}
@media only screen and (max-width: 688px) {
	.section-text-image-split.flexbox-h .container-text, .section-text-image-split.flexbox-hr .container-text {
		padding: 5rem 2rem 7.5rem;
	}
	.section-text-image-split > div:last-child {
		height: 20rem;
	}
}

/* Contact */
.section-contact {
	gap: 2.5rem;
}
header .section-contact {
	padding-top: 12.5rem;
	gap: 2.5rem;
}
.section-contact > * {
	width: 61.8%;
}
@media only screen and (max-width: 992px) {
	.section-contact > * {
		width: 100%;
	}
}

/* Products */
.section-products {
	gap: 12.5rem
}
.section-products .container-product {
	align-items: stretch;
	gap: 7.5rem
}
.section-products .container-product:nth-child(even) {
	flex-direction: row-reverse;
}
.section-products .container-product > * {
	flex: 1;
}
@media only screen and (max-width: 992px) {
	.section-products {
		gap: 7.5rem
	}
	.section-products .container-product {
		gap: 2.5rem
	}
}
@media only screen and (max-width: 688px) {
	.section-products .container-product, .section-products .container-product:nth-child(even) {
		flex-direction: column-reverse;
	}
}

/* FAQ */
.section-faq h2 {
	margin-bottom: 3.75rem;
}
.section-faq > * {
	width: 61.8%;
}
.section-faq .container-faq {
	padding: 1.75rem 0px;
	border-bottom: 2px solid var(--main-shade-100);
}
.section-faq .container-faq > * {
	text-align: left;
	width: 100%;
}
.section-faq .container-faq button {
	padding: 0px;
	border: none;
	background: none;
	cursor: pointer;
}
.section-faq .container-faq span {
	text-align: left;
	transition: padding 0.2s;
}
.section-faq .container-faq svg {
	width: 1.25rem;
	height: 1.25rem;
}
.section-faq .container-faq button:hover span, .section-faq .container-faq button:focus span {
	padding-left: 0.5rem;
}
@media only screen and (max-width: 992px) {
	.section-faq > * {
		width: 100%;
	}
}

/* Cards */
.section-cards {
	gap: 2.5rem;
}
main .pin-spacer + section.bg-dark, main .pin-spacer + section.bg-dark-not {
	padding-top: 0px;
	margin-top: -1px;
}
.section-cards .container-headline {
	width: 100%;
} 
.section-cards .container-headline > * {
	width: 61.8%;
}
.section-cards .container-links {
	position: relative;
	width: 100%;
	height: 100%;
	align-items: stretch;
	justify-content: flex-start;
	overflow: hidden;
}
.section-cards .container-link {
	box-sizing: border-box;
	padding-right: 5rem;
	width: 30rem;
	align-items: stretch;
	flex-shrink: 0;
}
.section-cards .container-content {
	height: 100%;
}
.section-cards picture {
	height: auto;
}
.section-cards .container-text {
	box-sizing: border-box;
	padding: 2.5rem;
	padding-top: 1.75rem;
	height: 100%;
	justify-content: space-between;
}
.section-cards .container-links .image-link{
	display: block;
}
.section-cards > .container-buttons {
	position: absolute;
	left: 50%;
	bottom: 5rem;
	transform: translateX(-50%);
	gap: 0.75rem;
}
.section-cards button {
	padding: 0px;
	width: 2.5rem;
	height: 2.5rem;
	background-color: transparent;
	border: 1px solid var(--main-black);
	cursor: pointer;
	transition: background-color 0.2s, border-color 0.25s;
}
.section-cards.bg-dark-not button {
	border-color: var(--main-white);
}
.section-cards button svg {
	width: 50%;
	height: 50%;
}
.section-cards button .fill, .section-cards button .stroke {
	transition: fill 0.2s, stroke 0.2s;
}
.section-cards button .fill, .section-cards.bg-dark-not button:hover .fill, .section-cards.bg-dark-not button:focus .fill {
	fill: var(--main-black);
}
.section-cards button .stroke, .section-cards.bg-dark-not button:hover .stroke, .section-cards.bg-dark-not button:focus .stroke {
	stroke: var(--main-black);
}
.section-cards.bg-dark-not button:hover, .section-cards.bg-dark-not button:focus {
	background-color: var(--main-white);
}
.section-cards.bg-dark-not button .fill, .section-cards button:hover .fill, .section-cards button:focus .fill {
	fill: var(--main-white);
}
.section-cards.bg-dark-not button .stroke, .section-cards button:hover .stroke, .section-cards button:focus .stroke {
	stroke: var(--main-white);
}
.section-cards button:hover, .section-cards button:focus {
	background-color: var(--main-black);
}
@media only screen and (max-width: 688px) {
	.section-cards .container-headline > * {
		width: 100%;
	}
	.section-cards .container-links {
		overflow: initial;
	}
	.section-cards .container-link {
		padding-right: 2rem;
		width: 100%;
	}
	.section-cards > .container-buttons {
		bottom: 2.5rem;
	}
}

/* Jobs */
.section-jobs h2 {
	margin-bottom: 3.75rem;
}
.section-jobs > * {
	width: 61.8%;
}
.section-jobs .container-job {
	padding: 2.5rem 0px;
	gap: 1.25rem;
	border-bottom: 2px solid var(--main-shade-100);
}
.section-jobs .container-job:last-child {
	border-bottom: none;
}
.section-jobs .container-job span {
	max-width: 61.8%;
	text-align: left;
}
.section-jobs .container-job a {
	margin: 0px;
}
@media only screen and (max-width: 992px) {
	.section-jobs > * {
		width: 100%;
	}
}
@media only screen and (max-width: 688px) {
	.section-jobs .container-job {
		flex-direction: column;
	}
	.section-jobs .container-job span {
		max-width: 100%;
		text-align: center;
	}
}

/* Application */
.section-application {
	align-items: stretch;
}
.section-application > * {
	width: 50%;
}
.section-application .container-text {
	box-sizing: border-box;
	padding-right: 5rem;
	gap: 2.5rem;
}
@media only screen and (max-width: 992px) {
	.section-application {
		flex-direction: column;
	}
	.section-application .container-text {
		padding-right: 4rem;
	}
	.section-application > *, .section-application .form {
		width: 100%;
		min-width: initial;
	}
	.section-application picture {
		height: 30rem;
	}
}
@media only screen and (max-width: 688px) {
	.section-application .container-text {
		padding-right: 2rem;
	}
	.section-application picture {
		height: 25rem;
	}
}

/* Scroll */
.section-scroll {
	width: 100%;
	height: 100vh;
}
.section-scroll .container-infos {
	display: none;
}
.section-scroll > * {
	flex: 1;
	height: 100%;
	max-width: 50%;
}
.section-scroll .container-texts {
	gap: 0.75rem;
}
.section-scroll.main h3 {
	color: var(--main-color);
}
.section-scroll.alt h3 {
	color: var(--second-color);
}
.section-scroll canvas {
	width: 100%;
	aspect-ratio: 16/9;
}
@media only screen and (max-width: 992px) and (orientation:portrait) {
	.section-scroll {
		flex-direction: column-reverse;
	}
	.section-scroll > * {
		width: 100%;
		height: 50vh;
		max-width: 100%;
	}
	.section-scroll .container-texts {
		padding-right: 4rem;
		justify-content: flex-start;
	}
	.section-scroll h3 {
		font-size: 2.25rem;
		margin-bottom: 0.75rem;
	}
}
@media only screen and (max-width: 688px) and (orientation:portrait) {
	.section-scroll .container-texts {
		padding-right: 2rem;
	}
	.section-scroll h3 {
		font-size: 1.5rem;
		margin-bottom: 0.25rem;
	}
}
@media only screen and (max-width: 992px) and (orientation:landscape) {
	.section-scroll h3 {
		font-size: 1.25rem;
		margin-bottom: 0.25rem;
	}
	.section-scroll p {
		font-size: 0.75rem;
	}
}

/* Table */
.section-table {
	gap: 5rem;
}
.section-table .container-text {
	width: 61.8%;
}
.section-table .container-table {
	width: 100%;
	overflow-x: auto;
}
.section-table table {
	width: 100%;
	text-align: center;
	border-collapse: collapse;
}
.section-table table tr {
	display: flex;
}
.section-table table th, .section-table table td {
	padding: 1.25rem;
	border: 1px solid var(--main-shade-200);
	flex: 1;
	min-width: 10rem;
}
.section-table table th, .section-table table td:first-child {
	font-weight: 700;
}
.section-table table tr:nth-child(even) th:first-child {
	background-color: var(--main-white);
}
.section-table table tr:nth-child(odd) {
	background-color: var(--main-shade-50);
}
.section-table table svg {
	margin-left: 0.25rem;
	width: 1.25rem;
	height: 1.25rem;
}
.section-table table svg .fill {
	fill: var(--main-black);
}
.section-table table svg .stroke {
	stroke: var(--main-black);
}
@media only screen and (max-width: 688px) {
	.section-table .container-text {
		width: 100%;
	}
}

/* Footer */
footer {
	border-top: 2px solid var(--main-white);
}
footer .container-content {
	align-items: stretch;
	padding-top: 5rem;
	padding-bottom: 5rem;
	border-bottom: 2px solid var(--main-shade-600);
	gap: 2.5rem 5rem;
}
footer .container-content > * {
	width: auto;
	justify-content: flex-start;
}
footer .container-content > * h3 {
	margin-bottom: 1rem;
}
footer .container-content-info {
	max-width: 17.5rem;
	gap: 1.25rem;
}
footer .container-content-info > svg {
	width: auto;
	height: 2.5rem;
}
footer .container-content-info > svg + p {
	color: var(--main-shade-400);
}
footer .container-content *:not(h3, input) {
	color: var(--main-shade-400);
}
footer .form {
	width: 25rem;
}
footer input[type="submit"] {
	margin: 0px !important;
}
footer nav {
	gap: 0.5rem;
}
footer .container-copyright {
	padding-top: 1.25rem;
	padding-bottom: 1.25rem;
}
footer .container-copyright > * {
	flex: 1;
}
footer .container-copyright, footer .container-copyright span, footer #cookie-settings {
	color: var(--main-shade-400);
}
footer #cookie-settings {
	padding: 0px;
	font-family: var(--common-font);
	background: none;
	border: none;
	cursor: pointer;
	transition: color 0.2s;
}
footer .copyright {
	text-align: left;
}
footer .container-link {
	justify-content: flex-end;
}
footer .container-link a {
	background-image: -webkit-linear-gradient(180deg, var(--main-shade-400) 50%, #b87345 50%, #ceaa6d 100%);
	background-clip: text;
	-webkit-background-clip: text;
  	-webkit-text-fill-color: transparent;
	background-size: 200% 100%;
	background-position: top left 100%;
	transition: background-position 0.35s;
}
footer .container-link a:hover, footer .container-link a:focus {
	background-position: top left !important;
}
/*Media Queries*/
@media only screen and (max-width: 992px) {
	footer .container-content {
		flex-wrap: wrap;
	}
	footer .form  {
		width: 100%;
		min-width: 100%;
	}
}
@media only screen and (max-width: 688px) {
	footer .container-content > * {
		width: 100%;
	}
}

/* ----------------------------------------------------------------
	Extra Blocks
-----------------------------------------------------------------*/

/* Article */
#page-article {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 12.5rem;
}
#page-article > * {
	max-width: 65%;
}
#page-article p, #page-article ul {
	margin-bottom: 2.5rem;
}
#page-article a {
	text-decoration: underline;
}
@media only screen and (max-width: 992px) {
	#page-article > * {
		max-width: 100%;
	}
}