

/* ############################################################
	FARBKLIMA
###############################################################
	
	1 Blau				#0072bb - rgba(0,114,187,1)		Laufschrift, Titel, Flächen
	2 Hellblau			#e9f3f9 - rgba(233,243,249,1)	Hintergrund
	3 Gelb				#ffe000 - rgba(255,224,0,1)		Flächen, Button, Titel (Footer), Hover
	  Weiss				#ffffff - rgba(255,255,255,1)
	  Schwarz			#000000 - rgba(0,0,0,1)
	  Hellgrau			#f3f3f3 - rgba(243,243,243,1)
	
###############################################################
	ALLGEMEINES
############################################################ */

/* Resets */
* {
	margin: 0;
	padding: 0;
	outline: none;
}
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
img, table, tr, td {
	border: 0;
}
fieldset {
	border: 0;
	margin: 0;
	padding: 0;
	min-inline-size: 0;
}
legend {
	margin: 0;
	padding: 0;
}
address {
    font-style: normal;
}
.reset-font {
	font-size: 0;
	line-height: 0;
	letter-spacing: normal;
}


/* Variablen definieren */
:root {
	--main-color-1: #0072bb;
	--main-color-2: #e9f3f9;
	--main-color-3: #ffe000;
	--main-color-white: #ffffff;
	--main-color-black: #000000;
	--main-color-error: #eb4462;
	--main-color-successful: #4fa158;
	--ph-color: var(--main-color-1);
	--cubic-bezier: cubic-bezier(0.41,0,0.51,1) 0s;
}


/* Allgemeines */
a, a:focus {
	outline: none;
}
a:focus-visible, button:focus-visible {
	outline: 4px solid var(--main-color-3);
    outline-offset: 2px;
}
/*header img, */main img {
	display: inline-block;
	max-width: 100%;
	height: auto;
	-ms-interpolation-mode: bicubic;
	image-rendering: optimizeQuality;
}
html, body {
	font-size: 100%;
	height: 100%;
}
html {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
body {
 	/*z-index: 0;*/
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	background-color: var(--main-color-white);
	font-family: "CodeNext";
	font-style: normal;
	font-weight: 400;
	letter-spacing: normal;
	color: var(--main-color-1);
}
body.blocked {
	overflow: hidden;
}
body.blocked {
	overflow: hidden;
}


/* Effekt: FadeIn / Lightning */
body:not(.cms-active) header,
body:not(.cms-active) main,
body:not(.cms-active) footer {
	opacity: 0;
}


/* Page-Loader */
@keyframes load-spinner {
  to {
		transform: rotate(360deg);
	}
}
#load-cover-spin {
	position: fixed;
	width: 100%;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: rgba(233,243,249,0.7);
	z-index: 9999;
	display: none;
}
#load-cover-spin::after {
	content: "";
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	margin-left: -25px;
	border-radius: 50%;
	border: 4px solid var(--main-color-3);
	border-top-color: var(--main-color-1);
	background-color: transparent;
	animation: load-spinner 600ms linear infinite;
}


/* Farben */
.color-error {
	color: var(--main-color-error);
}
.color-successful {
	color: var(--main-color-successful);
}
.color-white {
	color: var(--main-color-white);
}
.color-black {
	color: var(--main-color-black);
}
.color-1 {
	color: var(--main-color-1);
}
.color-2 {
	color: var(--main-color-2);
}
.color-3 {
	color: var(--main-color-3);
}
.bg-color-error {
	background-color: var(--main-color-error);
}
.bg-color-successful {
	background-color: var(--main-color-successful);
}
.bg-color-white {
	background-color: var(--main-color-white);
}
.bg-color-black {
	background-color: var(--main-color-black);
}
.bg-color-1 {
	background-color: var(--main-color-1);
}
.bg-color-2 {
	background-color: var(--main-color-2);
}
.bg-color-3 {
	background-color: var(--main-color-3);
}


/* ############################################################
	BARRIEREFREI
############################################################ */

.visuallyhidden {
	clip: rect(0 0 0 0) !important;
	border: 0 !important;
	height: 1px !important;
	margin: -1px !important;
	overflow: hidden !important;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
}
.skiplinks {
	position: fixed;
	display: inline-block;
	height: 0;
	z-index: 1000;
}
.skiplinks a, .skiplinks a:hover, .skiplinks a:active, .skiplinks a:focus {
	display: inline-flex;
	position: absolute;
	top: -9999px;
	justify-content: space-between;
	align-items: center;
	border: none;
	border-radius: 15px;
	padding: 8px 16px;
	background-color: var(--main-color-1);
	font-size: 0.875rem; /* 14px */
	line-height: 1.0;
	letter-spacing: 0.14px;
	color: var(--main-color-2);
}
.skiplinks a:active, .skiplinks a:focus {
	left: 20px;
	right: auto;
	top: 20px;
}
@media (min-width: 1024px) {
	.skiplinks a {
		transition: border-radius 300ms var(--cubic-bezier);
	}
	.skiplinks a:hover {
		border-radius: 0;
	}
}
@media (min-width: 1280px) {
	.skiplinks a {
		padding: 10px 20px 11px;
		border-radius: 20px;
		font-size: 1rem; /* 16px */
		letter-spacing: 0.16px;
	}
}


/* ############################################################
	SCHRIFTEN / TEXTE / ABSÄTZE / TITEL
############################################################ */

/* Allgemeines */
main {
	font-size: 1rem; /* 16px */
	line-height: 1.5;
}
footer {
	font-size: 0.9375rem; /* 15px */
	line-height: 1.533;
	color: var(--main-color-white);
}
footer .footer-box.line-2 {
	color: var(--main-color-1);
}
@media (min-width: 1280px) {
	main {
		font-size: 1.25rem; /* 20px */
	}
	footer {
		font-size: 1.25rem; /* 20px */
		line-height: 1.65;
	}
}


/* Schnitte */
.font-regular {
	font-weight: 400 !important;
}
b, strong, .extrabold {
	font-weight: 800;
}
.heavy {
	font-weight: 900;
}


/* Titel, Schriftgrössen */
h1, h2, h3, .h2-modultitel, .h2-modultitel-small {
	position: relative;
	margin: 0;
	padding: 0;
	font-family: inherit;
	font-style: inherit;
	font-weight: 800;
	color: inherit;
}
h2 {
	font-size: 1.5rem; /* 24px */
	line-height: 1.333;
}
h2:has(+ *) {
	margin-bottom: 35px;
	/*margin-bottom: 50px; /* 24px für Kontaktformular */
}
h2.modultitel, .h2-modultitel {
	font-size: 1.25rem; /* 20px */
	line-height: 1.5;
}
h2.modultitel:has(+ *), .h2-modultitel:has(+ *) {
	margin-bottom: 29px;
}
h2.modultitel-small, .h2-modultitel-small {
	font-size: 0.75rem; /* 12px */
	line-height: 1.5;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}
h2.modultitel-small:has(+ *), .h2-modultitel-small:has(+ *) {
	margin-bottom: 24px;
}
h2.footer-titel {
	margin-bottom: 12px;
	font-size: 0.75rem; /* 12px */
	line-height: 1.5;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--main-color-3);
}
h2.footer-titel:has(+ form) {
	margin-bottom: 17px;
}
h3 {
	font-size: 1rem; /* 16px */
	line-height: 1.5;
}
h3.large {
	font-size: 1.5rem; /* 24px */
	line-height: 1.375;
}
h3.large:has(+ p) {
	margin-bottom: 24px;
}
h3.large:has(+ p .link-btn) {
	margin-bottom: 30px;
}
h3.medium {
	font-size: 1.25rem; /* 20px */
	line-height: 1.5;
}
h3.medium:has(+ p) {
	margin-bottom: 20px;
}
h3.small {
	font-size: 0.75rem; /* 12px */
	line-height: 1.5;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}
.font-small {
	font-size: 0.75rem; /* 12px */
	line-height: 1.2;
}
@media (min-width: 1280px) {
	h2 {
		font-size: 2.8125rem; /* 45px */
	}
	h2.modultitel, .h2-modultitel {
		font-size: 1.5625rem; /* 25px */
	}
	h2:has(+ *) {
		margin-bottom: 60px; /* 45px für Kontaktformular */
		/*margin-bottom: 120px; /* 45px für Kontaktformular */
	}
	h2.modultitel:has(+ *), .h2-modultitel:has(+ *) {
		margin-bottom: 45px;
	}
	h2.modultitel-small, .h2-modultitel-small {
		font-size: 0.9375rem; /* 15px */
		letter-spacing: 1.5px;
	}
	h2.modultitel-small:has(+ *), .h2-modultitel-small:has(+ *) {
		margin-bottom: 60px;
	}
	h2.footer-titel {
		margin-bottom: 21px;
		font-size: 0.9375rem; /* 15px */
		letter-spacing: 1.5px;
	}
	h2.footer-titel:has(+ form) {
		margin-bottom: 28px;
	}
	h3 {
		font-size: 1.25rem; /* 20px */
	}
	h3.large {
		font-size: 2rem; /* 32px */
	}
	h3.large:has(+ p) {
		margin-bottom: 36px;
	}
	h3.large:has(+ p .link-btn) {
		margin-bottom: 40px;
	}
	h3.medium {
		font-size: 1.5625rem; /* 25px */
	}
	h3.medium:has(+ p) {
		margin-bottom: 28px;
	}
	h3.small {
		font-size: 0.9375rem; /* 15px */
		letter-spacing: 1.5px;
	}
	.font-small {
		font-size: 0.9375rem; /* 15px */
	}
}


/* Absätze */
main p + h2 {
	margin-top: 40px;
}
main p {
	margin-bottom: 24px;
}
main ul + * {
	margin-top: 24px;
}
main p:not(:has(.link-btn)):has(+ p .link-btn) {
	margin-bottom: 30px;
}
main p:has(> .link-btn):has(+ p > .link-btn) {
	margin-bottom: 12px;
}
main div > p:last-of-type, main article > p:last-of-type {
	margin-bottom: 0;
}
footer p {
	margin-bottom: 23px;
}
footer div > p:last-of-type {
	margin-bottom: 0;
}
@media (min-width: 1280px) {
	main p + h2 {
		margin-top: 60px;
	}
	main p {
		margin-bottom: 30px;
	}
	main ul + * {
		margin-top: 30px;
	}
	main p:not(:has(.link-btn)):has(+ p .link-btn) {
		margin-bottom: 40px;
	}
	main p:has(> .link-btn):has(+ p > .link-btn) {
		margin-bottom: 18px;
	}
	footer p {
		margin-bottom: 33px;
	}
}


/* Lange Sätze abschneiden */
.text-overflow-ellipsis {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}


/* Zeichen */
.text-uppercase {
	text-transform: uppercase;
}
.text-lowercase {
	text-transform: lowercase;
}


/* Silbentrennung */
.silbentrennung/*, h2, h3, h4*/ {
	hyphens: auto;
	-webkit-hyphens: auto;
	-ms-hyphens: auto;
	hyphenate-limit-chars: auto 3; /* wirkt in Chrome/Edge/Firefox, Safari ignoriert */
	/* Safari/iOS Safari Fallback (non-standard) */
	-webkit-hyphenate-limit-before: 3;
	-webkit-hyphenate-limit-after: 3;
	-webkit-hyphenate-limit-lines: 3;
}


/* ############################################################
	HYPERLINKS
############################################################ */

/* Allgemeines */
a {
	position: relative;
	text-decoration: none;
}
a, a:hover {
	color: var(--main-color-1);
}
a {
	text-decoration-line: underline;
	text-decoration-color: var(--main-color-1);
	text-decoration-thickness: 1px;
	text-underline-offset: 0.3125em; /* 5px zur Schriftgrösse */
}
header a, header a:hover, nav a, nav a:hover, footer a, footer a:hover {
	text-decoration: none;
}
nav a, nav a:hover, footer a, footer a:hover {
	color: var(--main-color-white);
}
@media (min-width: 1024px) {
	a {
		transition: text-decoration-color 300ms var(--cubic-bezier);
	}
	a:hover {
		text-decoration-color: var(--main-color-3);
	}
	header a, nav a, footer a {
		transition: color 300ms var(--cubic-bezier);
	}
	header a:hover, nav a:hover, footer a:hover {
		color: var(--main-color-3);
	}
}


/* Button: Normal & Extern */
.link-btn {
	display: inline-flex;
	justify-content: space-between;
	align-items: baseline;
	padding: 7px 11px;
	background-color: var(--main-color-white);
	font-size: 1rem; /* 16px */
	line-height: 1.25;
	color: var(--main-color-1);
	text-decoration: none;
	cursor: pointer;
}
.bg-color-2 .element-template-1 .link-btn {
	background-color: var(--main-color-2);
}
.link-btn.hellblau {
	background-color: var(--main-color-2);
}
.link-btn.extern::after {
	content: "";
	flex-shrink: 0;
	display: inline-block;
	width: 20px;
	height: 14px;
	margin-left: 11px;
	background-image: url("../Images/Elemente/Icon_Link_Mobile.svg");
	background-repeat: no-repeat;
	background-position: 0 0;
	background-size: 100% 100%;
}
.link-btn + .link-btn {
	margin-top: 12px;
}
@media (min-width: 768px) {
	.link-btn + .link-btn {
		margin-top: 0;
		margin-left: 24px;
	}
}
@media (min-width: 1024px) {
	.link-btn {
		transition: background-color 300ms var(--cubic-bezier);
	}
	.link-btn:hover, .bg-color-2 .element-template-1 .link-btn:hover {
		background-color: var(--main-color-3);
	}
}
@media (min-width: 1280px) {
	.link-btn {
		padding: 8px 15px;
		font-size: 1.25rem; /* 20px */
	}
	.link-btn.extern::after {
		width: 25px;
		height: 17px;
		margin-left: 15px;
		background-image: url("../Images/Elemente/Icon_Link_Desktop.svg");
	}
	.link-btn + .link-btn {
		margin-left: 30px;
	}
}


/* Hover-Effekte */
.no-hover,
.no-hover:hover,
.no-link,
.no-link:hover {
	cursor: default;
	color: inherit;
	text-decoration: none;
}
.pointer {
	cursor: pointer;
}


/* Lange Hyperlinks */
@media (max-width: 1023.98px) {
	main a {
		hyphens: auto;
		hyphenate-limit-chars: auto 3; /* wirkt in Chrome/Edge/Firefox, Safari ignoriert */
		/* Safari/iOS Safari Fallback (non-standard) */
		-webkit-hyphenate-limit-before: 3;
		-webkit-hyphenate-limit-after: 3;
		-webkit-hyphenate-limit-lines: 3;
	}
}


/* Anker */
.nav-anchor {
	position: relative;
	visibility: hidden;
	display: block;
	width: 0;
	height: 0;
	font-size: 0;
	line-height: 0;
	scroll-margin-top: 71px;
}
@media (min-width: 1024px) {
	.nav-anchor {
		scroll-margin-top: 100px;
	}
}


/* ############################################################
	PANELS/BOXEN
############################################################ */

/* Allgemein */
header, main, footer,
.main-header, .main-content,
.header-box, .nav-box, .content-box, .footer-box,
.header-inline, .nav-inline, .content-inline, .footer-inline,
.footer-col-1, .footer-col-2,
.mdl-container, .nav-line-1, .nav-line-2, .nav-line-3 {
	position: relative;
	width: 100%;
}
.header-box, .nav-box, .content-box, .footer-box {
	padding-right: 20px;
	padding-left: 20px;
}
.header-inline, .nav-inline, .content-inline, .footer-inline {
	/* max-width: 1344px; */
	margin: 0 auto;
}

/* Kopfzeile */
header {
	z-index: 10;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 106px;
	background-color: var(--main-color-white);
}
body[class^="cms-"] header {
	z-index: 210;
	top: 51px;
}
	.header-inline {
		height: 106px;
	}

/* Navigation */
nav.mobile-nav {
	z-index: 15;
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	inset: 0 0 0 auto;
	width: 100%;
	height: calc(var(--nav-height, 1vh) * 100);
	background-color: var(--main-color-1);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 300ms var(--cubic-bezier), visibility 0ms linear 300ms;
}
nav.mobile-nav.is-visible {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transition: opacity 300ms var(--cubic-bezier), visibility 0ms linear 0ms;
}
body[class^="cms-"] nav.mobile-nav {
	z-index: 215;
	top: 51px;
	height: calc((var(--nav-height, 1vh) * 100) - 51px);
}
	nav.mobile-nav .inner-box {
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		width: 100%;
		height: calc(var(--nav-height, 1vh) * 100);
		overflow-x: hidden;
		overflow-y: auto;
	}
		nav.mobile-nav .nav-box.line-1 {
			margin-top: 26px;
		}
		nav.mobile-nav .nav-box.line-2 {
			margin-top: 40px;
		}
		nav.mobile-nav .nav-box.line-3 {
			margin-top: 40px;
		}
		nav.mobile-nav .nav-box.line-4 {
			margin-top: 40px;
			margin-bottom: 28px;
		}

/* Inhalt */
main {
	flex: 1 0 auto;
	padding: 106px 0 100px;
}
body[class^="cms-"] main {
	padding-top: 157px;
}

/* Fusszeile */
footer {
	--footer-abstand: 40px;
	flex-shrink: 0;
}
	footer .footer-box.line-1 {
		padding-top: 48px;
		padding-bottom: 48px;
		background: var(--main-color-1);
	}
	footer .footer-box.line-2 {
		padding-top: 12px;
		padding-bottom: 17px;
	}
@media (min-width: 1024px) {
	/* Allgemein */
	.header-box, .nav-box, .content-box, .footer-box {
		padding-left: 48px;
		padding-right: 48px;
	}

	/* Kopfzeile */
	header, .header-inline {
		height: 207px;
	}
	.contact-information {
		display: inline-block;
		position: absolute;
		top: 28px;
		right: 0;
		width: auto;
		font-size: 0.875rem; /* 14px */
		line-height: 1.5;
	}

	/* Navigation */
	nav.mobile-nav .nav-box.line-1 {
		margin-top: 111px;
	}
	nav.mobile-nav .nav-box.line-2 {
		margin-top: 50px;
	}
	nav.mobile-nav .nav-box.line-3 {
		display: none;
	}
	nav.mobile-nav .nav-box.line-4 {
		margin-top: 50px;
		margin-bottom: 81px;
	}

	/* Inhalt */
	main {
		padding-top: 207px;
		padding-bottom: 200px;
	}
	body[class^="cms-"] main {
		padding-top: 258px;
	}

	/* Fusszeile */
	footer {
		--footer-abstand: 50px;
	}
		footer .footer-box.line-1 {
			padding-top: 58px;
			padding-bottom: 110px;
		}
		footer .footer-box.line-2 {
			padding-top: 59px;
			padding-bottom: 67px;
		}
}
@media (max-width: 1279.98px) {
	/* Abstand nach oben bei zusätzlicher Zeile */
	footer .footer-box.line-1 .footer-inline > .grid > :nth-child(n + 3) {
		margin-top: var(--footer-abstand);
	}
}
@media (min-width: 1280px) {
	/* Kopfzeile */
	.contact-information {
		font-size: 1.0625rem; /* 17px */
	}
	
	/* Navigation */
	nav.mobile-nav {
		width: calc((100% / 2) - var(--gap-half));
	}
}
@media (min-width: 1600px) {
	/* Allgemein */
	.header-box, .nav-box, .content-box, .footer-box {
		padding-left: 96px;
		padding-right: 96px;
	}
}


/* ############################################################
	BILDER/ICONS
############################################################ */

/* Logo */
a.link-logo {
	display: inline-block;
}
	a.link-logo img {
		display: inline-block;
		width: auto;
		height: 45px;
		object-fit: contain;
	}
header a.link-logo {
	position: absolute;
	top: 28px;
	left: 0;
}
@media (min-width: 1024px) {
	a.link-logo img {
		height: 60px;
	}
	header a.link-logo {
		top: 88px;
	}
}


/* Socialmedia */
a.link-socialmedia {
	position: relative;
	display: inline-block;
	width: 18px;
	height: 18px;
}
	a.link-socialmedia svg {
		fill: var(--main-color-white);
	}
	footer a.link-socialmedia svg {
		fill: var(--main-color-1);
	}
@media (min-width: 1024px) {
	a.link-socialmedia svg {
		transition: fill 300ms var(--cubic-bezier);
	}
	a.link-socialmedia:hover svg {
		fill: var(--main-color-3);
	}
}


/* Hamburger/Close */
.nav-open-btn, .nav-close-btn {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	top: 28px;
	right: 0;
	width: 43px;
	height: 27px;
	border: none;
	background-color: transparent;
	cursor: pointer;
}
.nav-close-btn {
	z-index: 2;
	right: 20px;
}
	.nav-open-btn svg {
		fill: var(--main-color-1);
	}
	.nav-close-btn svg {
		fill: var(--main-color-white);
	}
@media (min-width: 1024px) {
	.nav-open-btn, .nav-close-btn {
		top: 116px;
		width: 50px;
		height: 32px;
	}
	.nav-close-btn {
		right: 48px;
	}
		.nav-open-btn svg, .nav-close-btn svg {
			transition: fill 300ms var(--cubic-bezier);
		}
		.nav-open-btn:hover svg, .nav-close-btn:hover svg {
			fill: var(--main-color-3);
		}
}
@media (min-width: 1600px) {
	.nav-close-btn {
		right: 96px;
	}
}


/* ############################################################
	MODULE/TEMPLATES
############################################################ */

/* Module */
.mdl-container.inner-abstand-top.small {
	padding-top: 50px; /* innen = padding, aussen = margin */
}
.mdl-container.inner-abstand-top.medium {
	padding-top: 50px;
}
.mdl-container.inner-abstand-top.large {
	padding-top: 50px;
}
@media (max-width: 767.98px) {
	.mdl-container.abstand-0 {
		padding-top: 0 !important;
	}
}
@media (min-width: 1024px) {
	.mdl-container.inner-abstand-top.small {
		padding-top: 120px;
	}
	.mdl-container.inner-abstand-top.medium {
		padding-top: 180px;
	}
	.mdl-container.inner-abstand-top.large {
		padding-top: 220px;
	}
}


/* Layout-Templates */

/* Template 1:
   - TextModul — 2 Spalten */
.template-1 {
	--abstand-x: var(--gap);
	--abstand-y: 50px;
}
.template-1.small-abstand {
	--abstand-y: 24px;
}
	.template-1 .grid {
		grid-template-columns: repeat(1, 1fr);
		gap: var(--abstand-y) var(--abstand-x);
	}
@media (min-width: 768px) {
	.template-1 .grid {
		grid-template-columns: repeat(2, 1fr);
	}
}


/* Element-Templates */

/* Element 1
   - TextBox */
.element-template-1 {
	padding: 30px 30px 40px;
	background-color: var(--main-color-2);
}
.bg-color-2 .element-template-1 {
	background-color: var(--main-color-white);
}
.element-template-1 + .element-template-1 {
	margin-top: 50px;
}
	/*	Bild */
	.element-template-1 img:first-child:not(.logo) {
		width: calc(100% + 60px);
		max-width: calc(100% + 60px);
		margin-top: -30px;
		margin-left: -30px;
	}
@media (min-width: 768px) {
	.element-template-1 {
		margin-left: var(--col-width-1);
		margin-right: var(--col-width-1);
	}
	.element-template-1.abstand {
		margin-top: 50px;
		/* margin-top: 90px; */
	}
}
@media (min-width: 1024px) {
	.element-template-1 {
		padding: 34px 48px 55px;
	}
	.element-template-1.abstand {
		margin-top: 100px;
		/* margin-top: 180px; */
	}
	.element-template-1 + .element-template-1 {
		margin-top: 70px;
	}
	.element-template-1 img:first-child:not(.logo) {
		width: calc(100% + 96px);
		max-width: calc(100% + 96px);
		margin-top: -34px;
		margin-left: -48px;
	}
}


/* ############################################################
	FORMULAR: VOLLTEXTSUCHE
############################################################ */

.search-box {
	display: inline-flex;
	align-items: center;
	width: 100%;
	height: 42px;
}
	.search-box .search-toggle, .search-box .search-submit {
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: center;
		top: 0;
		right: 0;
		width: 42px;
		height: 42px;
		border: none;
		background-color: transparent;
		cursor: pointer;
	}
		.search-box .search-toggle svg, .search-box .search-submit svg {
			display: inline-block;
			width: 17px;
			height: 17px;
			fill: var(--main-color-white);
		}
	.search-box.is-open .search-toggle {
		display: none;
	}
	.search-box .search-form {
		position: relative;
		display: flex;
		align-items: center;
		width: 100%;
		height: 42px;
	}
	.search-box .search-form[hidden] {
		display: none;
	}
		.search-box .search-input {
			width: 100%;
			height: 42px;
			padding: 0 42px 0 10px;
			border: 1px solid var(--main-color-white);
			background-color: var(--main-color-1);
			color: var(--main-color-white);
			font-family: "CodeNext";
			font-style: normal;
			font-weight: 800;
			font-size: 1.0625rem; /* 17px */
			line-height: 42px;
			letter-spacing: normal;
		}
		.search-box .search-input::placeholder /* Standard (Chrome, Edge, Safari, Firefox modern) */ {
			font-weight: 800;
			color: var(--main-color-white);
			opacity: 1; /* wichtig für Firefox */
		}
		.search-box .search-input::-webkit-input-placeholder /* ältere WebKit/Blink-Varianten (Safari/Chrome) */ {
			font-weight: 800;
			color: var(--main-color-white);
			opacity: 1; /* wichtig für Firefox */
		}
		.search-box .search-input::-moz-placeholder /* Firefox (ältere Varianten) */ {
			font-weight: 800;
			color: var(--main-color-white);
			opacity: 1; /* wichtig für Firefox */
		}
@media (max-width: 1023.98px) {
	.search-box.for-desktop {
		display: none;
	}
}
@media (min-width: 1024px) {
	.search-box.for-mobile {
		display: none;
	}
	.search-box {
		z-index: 3;
		position: absolute;
		top: 111px;
		right: 89px;
		width: calc((100% / 2) - var(--gap-half) - 89px);
	}
		.search-box .search-toggle svg, .search-box .search-submit svg {
			width: 20px;
			height: 20px;
			fill: var(--main-color-1);
			transition: fill 300ms var(--cubic-bezier);
		}
		.search-box .search-toggle:hover svg, .search-box .search-submit:hover svg {
			fill: var(--main-color-3);
		}
		.search-box .search-input {
			border-color: var(--main-color-3);
			background-color: var(--main-color-white);
			color: var(--main-color-1);
		}
		.search-box .search-input::placeholder {
			color: var(--main-color-1);
		}
		.search-box .search-input::-webkit-input-placeholder {
			color: var(--main-color-1);
		}
		.search-box .search-input::-moz-placeholder {
			color: var(--main-color-1);
		}
}


/* ############################################################
	FORMULAR: NEWSLETTER
############################################################ */

/* Feld: Text */
.newsletter-form .grid {
	gap: 16px 0;
}
.newsletter-form .abstand-top-small {
	margin-top: 8px;
}
.newsletter-form input {
	position: relative;
	width: 100%;
	height: auto;
	padding: 6px 10px;
	border: 1px solid var(--main-color-white);
	border-radius: 0;
	background-color: transparent;
	font-family: "CodeNext";
	font-style: normal;
	font-weight: 400;
	font-size: 0.9375rem; /* 15px */
	line-height: 1.0;
	letter-spacing: 0.15px;
	color: var(--main-color-white);
	-webkit-appearance: none;
	appearance: none;
}
.newsletter-form input::placeholder /* Standard (Chrome, Edge, Safari, Firefox modern) */ {
	color: var(--main-color-white);
	opacity: 1; /* wichtig für Firefox */
}
.newsletter-form input::-webkit-input-placeholder /* ältere WebKit/Blink-Varianten (Safari/Chrome) */ {
	color: var(--main-color-white);
	opacity: 1; /* wichtig für Firefox */
}
.newsletter-form input::-moz-placeholder /* Firefox (ältere Varianten) */ {
	color: var(--main-color-white);
	opacity: 1; /* wichtig für Firefox */
}
.newsletter-form input.is-invalid {
	border-color: var(--main-color-error);
}
@media (min-width: 1024px) {
	/*.newsletter-form .abstand-top-small {
		margin-top: 16px;
	}*/
}
@media (min-width: 1280px) {
	.newsletter-form .abstand-top-small {
		margin-top: 16px;
	}
	.newsletter-form input {
		height: 36px;
		padding: 4px 10px;
		font-size: 1.125rem; /* 18px */
		letter-spacing: 0.18px;
	}
}

/* Button */
.newsletter-form .newsletter-submit {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	border: none;
	border-radius: 0;
	padding: 5px 9px;
	background-color: var(--main-color-white);
	font-family: "CodeNext";
	font-style: normal;
	font-weight: 800;
	font-size: 0.9375rem; /* 15px */
	line-height: 1.0;
	letter-spacing: 1.5px;
	color: var(--main-color-1);
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
}
.newsletter-form .newsletter-submit:hover {
	color: var(--main-color-1);
}
@media (min-width: 1024px) {
	.newsletter-form .newsletter-submit {
		transition: background-color 300ms var(--cubic-bezier);
	}
	.newsletter-form .newsletter-submit:hover {
		background-color: var(--main-color-3);
	}
}


/* ############################################################
	LISTEN
############################################################ */

/* Aufzählungslisten */
.mdl-container ul:not([class^="cmsmodule-nav"]):not([class^="slick-dots"]) {
	list-style: none;
	position: relative;
	padding: 0;
}


/* · (&middot;) */
.mdl-container ul:not([class^="cmsmodule-nav"]):not([class^="slick-dots"]):not([class^="link-list"]):not([class^="team-list"]):not([class^="geschichte-list"]):not([class^="leistungen-list"]):not([class^="stellen-list"]):not([class^="news-list"]):not([class^="statements-list"]):not([class^="quicklinks-list"]) li {
	margin-left: 12px;
	padding-left: 0;
}
.mdl-container ul:not([class^="cmsmodule-nav"]):not([class^="slick-dots"]):not([class^="link-list"]):not([class^="team-list"]):not([class^="geschichte-list"]):not([class^="leistungen-list"]):not([class^="stellen-list"]):not([class^="news-list"]):not([class^="statements-list"]):not([class^="quicklinks-list"]) li:before {
	content: "\00B7";
	position: absolute;
	margin-left: -12px;
	font-weight: 800;
}
@media (min-width: 1280px) {
	.mdl-container ul:not([class^="cmsmodule-nav"]):not([class^="slick-dots"]):not([class^="link-list"]):not([class^="team-list"]):not([class^="geschichte-list"]):not([class^="leistungen-list"]):not([class^="stellen-list"]):not([class^="news-list"]):not([class^="statements-list"]):not([class^="quicklinks-list"]) li {
		margin-left: 0;
	}
	.mdl-container ul:not([class^="cmsmodule-nav"]):not([class^="slick-dots"]):not([class^="link-list"]):not([class^="team-list"]):not([class^="geschichte-list"]):not([class^="leistungen-list"]):not([class^="stellen-list"]):not([class^="news-list"]):not([class^="statements-list"]):not([class^="quicklinks-list"]) li:before {
		margin-left: -14px;
	}
}


/* ############################################################
	NAVIGATION
############################################################ */

/* Allgemeines */
ul.nav-mainmenu, ul.nav-mainmenu ul,
ul.nav-secondmenu, ul.nav-secondmenu ul,
ul.nav-thirdmenu, ul.nav-socialmedia {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.nav-mainmenu li, ul.nav-secondmenu li, ul.nav-thirdmenu li, ul.nav-submenu li, ul.nav-metamenu li, ul.nav-socialmedia li {
	position: relative;
}


/*
1st-Menu
*/
nav.mobile-nav ul.nav-mainmenu {
	font-weight: 800;
	font-size: 1.75rem; /* 28px */
	line-height: 1.178;
	color: var(--main-color-white);
}
	nav.mobile-nav ul.nav-mainmenu > li:not(:last-child) {
		margin-bottom: 15px;
	}
	nav.mobile-nav ul.nav-mainmenu li.active a, nav.mobile-nav ul.nav-mainmenu li.active a:hover {
		color: var(--main-color-3);
	}
footer ul.nav-mainmenu {
	font-weight: 800;
}
@media (min-width: 1024px) {
	ul.nav-mainmenu a:hover {
		color: var(--main-color-3);
	}
}
@media (min-width: 1280px) {
	nav.mobile-nav ul.nav-mainmenu {
		font-size: 2.1875rem; /* 35px */
	}
}


/*
2nd-Menu
*/
nav.mobile-nav ul.nav-secondmenu {
	column-count: 2;
	column-gap: calc(2.75 * var(--gap));
	width: max-content;
	font-size: 1rem; /* 16px */
	line-height: 1.5;
	color: var(--main-color-white);
}
	nav.mobile-nav ul.nav-secondmenu li {
		break-inside: avoid;
	}
	nav.mobile-nav ul.nav-secondmenu > li:not(:last-child) {
		margin-bottom: 7px;
	}
	nav.mobile-nav ul.nav-secondmenu li.active a, nav.mobile-nav ul.nav-secondmenu li.active a:hover {
		color: var(--main-color-3);
	}
@media (min-width: 1024px) {
	nav.mobile-nav ul.nav-secondmenu {
		column-gap: var(--gap);
	}
}
@media (min-width: 1280px) {
	nav.mobile-nav ul.nav-secondmenu {
		font-size: 1.25rem; /* 20px */
	}
}


/*
3rd-Menu
*/
ul.nav-thirdmenu {
	display: flex;
	justify-content: left;
	flex-wrap: nowrap;
}
	ul.nav-thirdmenu > li:not(:last-child) {
		margin-right: 14px;
	}
		ul.nav-thirdmenu a, ul.nav-thirdmenu a:hover {
			color: var(--main-color-white);
		}
		nav.mobile-nav ul.nav-thirdmenu li.active a, nav.mobile-nav ul.nav-thirdmenu li.active a:hover {
			color: var(--main-color-3);
		}
		footer ul.nav-thirdmenu a, footer ul.nav-thirdmenu a:hover {
			color: var(--main-color-1);
		}
@media (min-width: 1024px) {
	ul.nav-thirdmenu > li:not(:last-child) {
		margin-right: 18px;
	}
		ul.nav-thirdmenu a:hover,
		footer ul.nav-thirdmenu a:hover {
			color: var(--main-color-3);
		}
}


/*
Socialmedia-Menu
*/
ul.nav-socialmedia {
	display: flex;
	justify-content: right;
	flex-wrap: nowrap;
}
	ul.nav-socialmedia > li {
		margin-right: 12px;
	}
	ul.nav-socialmedia > li:first-child {
		margin-right: 24px;
		padding-top: 2px;
		white-space: nowrap;
	}
	nav.mobile-nav ul.nav-socialmedia > li:first-child {
		display: none;
	}
	ul.nav-socialmedia > li:last-child {
		margin-right: 0;
	}
@media (max-width: 1279.98px) {
	footer ul.nav-socialmedia > li:first-child {
		display: none;
	}
}

