

/* ############################################################
	FARBKLIMA
###############################################################
	
	1 Blau				#324082 - rgba(50,64,130,1)
	2 Gelb				#ffec00 - rgba(255,236,0,1)
	  Weiss				#ffffff - rgba(255,255,255,1)
	  Schwarz			#000000 - rgba(0,0,0,1)
	  Hellgrau			#f4f4f4 - rgba(244,244,244,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;
}


/* Variablen definieren */
:root {
	--main-color-1: #324082;
	--main-color-1-8: rgba(50,64,130,0.08);
	--main-color-1-50: rgba(50,64,130,0.5);
	--main-color-1-75: rgba(50,64,130,0.75);
	--main-color-2: #ffec00;
	--main-color-white: #ffffff;
	--main-color-black: #000000;
	--main-color-error: #eb4462;
	--main-color-successful: #4fa158;
	--gap: 10px;
	--gap-small: 5px;
}
@media (min-width: 760px) {
	:root {
		--gap: 10px;
		--gap-small: 5px;
	}
}
@media (min-width: 1020px) {
	:root {
		--gap: 40px;
		--gap-small: 10px;
	}
}


/* Allgemeines */
html, body { /* html = IE text resize correction */
	font-size: 100%;
}
html {
	height: 100vh;
	height: -webkit-fill-available;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
body {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	position: relative;
	overflow-x: hidden;
	min-height: 100vh;
	min-height: -webkit-fill-available; /* mobile viewport bug fix */
}
a, a:focus {
	outline: none;
}
header img, main img, footer img {
	max-width: 100% !important;
	height: auto !important;
	display: block;
	-ms-interpolation-mode: bicubic;
	image-rendering: optimizeQuality;
}


/* 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(255,255,255,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-1-8);
	border-top-color: var(--main-color-1);
	background-color: transparent;/*rgba(255,255,255,0.8)*/
	-webkit-animation: load-spinner .6s linear infinite;
	animation: load-spinner .6s 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-1-50 {
	color: var(--main-color-1-50);
}
.color-1-75 {
	color: var(--main-color-1-75);
}
.color-2 {
	color: var(--main-color-2);
}
.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-1-8 {
	background-color: var(--main-color-1-8);
}
.bg-color-2 {
	background-color: var(--main-color-2);
}


/* ############################################################
	SCHRIFTEN / TEXTE / ABSÄTZE / HYPERLINKS / TITEL
############################################################ */

/* Allgemeines */
body {
	font-family: "Poppins";
	font-weight: 400;
	font-style: normal;
	font-size: 0.875rem; /* 14px */
	line-height: 1.5;
	letter-spacing: 0.14px;
	color: var(--main-color-1);
}
footer, nav .nav-line-4 {
	font-size: 0.875rem; /* 14px */
	line-height: 1.8;
	letter-spacing: 0.14px;
	color: var(--main-color-1-75);
}
@media (min-width: 1020px) {
	body {
		font-size: 1.1875rem; /* 19px */
		letter-spacing: 0.19px;
	}
}


/* Schnitte */
i, em, .italic {
	font-family: "Poppins";
	font-weight: 400;
	font-style: italic;
}
b, strong, .bold {
	font-family: "Poppins";
	font-weight: 600;
	font-style: normal;
}
.semibold {
}
strong > em, em > strong,
strong > i, i > strong,
b > em, em > b,
b > i, i > b {
	font-family: "Poppins";
	font-weight: 600;
	font-style: italic;
}


/* Titel, Schriftgrössen */
h1, h2, h3, h4 {
	margin: 0;
	padding: 0;
	font-family: "Poppins";
	font-weight: 600;
	font-style: normal;
	color: inherit;
}
h1 {
	font-size: 1.5rem; /* 24px */
	line-height: 1.1;
	letter-spacing: normal;
}
h2 {
	margin-bottom: 19px;
	font-size: 1.25rem; /* 19px */
	line-height: 1.4;
	letter-spacing: 0.19px;
}
h2.modultitel {
	margin-bottom: 50px;
}
main h3 {
	margin-bottom: 17px;
	font-size: 1.0625rem; /* 17px */
	line-height: 1.5;
	letter-spacing: 0.17px;
}
main h4 {
	font-size: 0.875rem; /* 14px */
	line-height: 1.5;
	letter-spacing: 0.14px;
}
nav .nav-line-4 h3,
footer h3 {
	margin-bottom: 14px;
	font-size: 0.875rem; /* 14px */
	line-height: 1.5;
	letter-spacing: 0.14px;
	color: var(--main-color-1);
}
main .content-lead {
	font-size: 1.1875rem; /* 19px */
	line-height: 1.4;
	letter-spacing: 0.19px;
}
main .font-small {
	font-size: 0.8125rem; /* 13px */
	line-height: 1.7;
	letter-spacing: 0.13px;
}
@media (min-width: 1020px) {
	h1 {
		font-size: 4.6875rem; /* 75px */
	}
	h2 {
		margin-bottom: 30px;
		font-size: 2.1875rem; /* 30px */
		letter-spacing: 0.3px;
	}
	h2.modultitel {
		margin-bottom: 80px;
	}
	main h3 {
		margin-bottom: 22px;
		font-size: 1.375rem; /* 22px */
		letter-spacing: 0.22px;
	}
	main h4 {
		font-size: 1.1875rem; /* 19px */
		letter-spacing: 0.19px;
	}
	main .content-lead {
		font-size: 1.875rem; /* 30px */
		letter-spacing: 0.3px;
	}
	main .font-small {
		font-size: 0.875rem; /* 14px */
		letter-spacing: 0.14px;
	}
}


/* Absätze */
p + h2 {
	margin-top: 45px;
}
main p + h3,
main p + h4,
p + p,
table + h3,
table + h4,
table + p,
p + table {
	margin-top: 27px;
}
@media (min-width: 1020px) {
	p + h2 {
		margin-top: 60px;
	}
	main p + h3,
	main p + h4,
	p + p,
	table + h3,
	table + h4,
	table + p,
	p + table {
		margin-top: 37px;
	}
}



/* 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 {
	-ms-hyphens: auto;
	-moz-hyphens: auto;
	-webkit-hyphens: auto;
	hyphens: auto;
	-ms-hyphenate-limit-chars: auto 3;
	-moz-hyphenate-limit-chars: auto 3;
	-webkit-hyphenate-limit-chars: auto 3;
	hyphenate-limit-chars: auto 3;
	-ms-hyphenate-limit-lines: 3;
	-moz-hyphenate-limit-lines: 3;
	-webkit-hyphenate-limit-lines: 3;
	hyphenate-limit-lines: 3;
}


/* ############################################################
	HYPERLINKS
############################################################ */

/* Allgemeines */
nav a, main a {
	text-decoration: none;
	-o-transition: color 0.3s ease;
	-ms-transition: color 0.3s ease;
	-moz-transition: color 0.3s ease;
	-webkit-transition: color 0.3s ease;
	transition: color 0.3s ease;
}
main a {
	color: var(--main-color-1);
	text-decoration: underline;
}
main a:hover {
	color: var(--main-color-1-75);
}
nav .nav-line-4 a, footer a {
	color: var(--main-color-1-75);
	text-decoration: none;
	-o-transition: none;
	-ms-transition: none;
	-moz-transition: none;
	-webkit-transition: none;
	transition: none;
}
nav .nav-line-4 a:hover, footer a:hover {
	text-decoration: underline;
}


/* Hover Effekte */
.underline,
a:hover .underline {
	text-decoration: underline;
}
.no-hover,
.no-hover:hover,
.no-link {
	cursor: default;
	color: inherit;
}
.pointer {
	cursor: pointer;
}


/* Lange Hyperlinks */
@media (max-width: 759.98px) {
	main a {
		-ms-hyphens: auto;
		-moz-hyphens: auto;
		-webkit-hyphens: auto;
		hyphens: auto;
		-ms-hyphenate-limit-chars: auto 3;
		-moz-hyphenate-limit-chars: auto 3;
		-webkit-hyphenate-limit-chars: auto 3;
		hyphenate-limit-chars: auto 3;
		-ms-hyphenate-limit-lines: 3;
		-moz-hyphenate-limit-lines: 3;
		-webkit-hyphenate-limit-lines: 3;
		hyphenate-limit-lines: 3;
	}
}


/* Anker */
a.nav-anchor[name] {
	display: block;
	width: 0;
	height: 0;
	position: relative;
	top: -160px !important;
	visibility: hidden;
}
@media (min-width: 1020px) {
	a.nav-anchor[name] {
		top: -230px !important;
	}
}


/* ############################################################
	PANELS/BOXEN
############################################################ */

/* Allgemein */
header, nav, main, footer,
.nav-line-1, .nav-line-2, .nav-line-3, .nav-line-4,
.header-box, .nav-box, .content-box, .footer-box,
.header-inline, .nav-inline, .content-inline, .footer-inline,
.mdl-container {
	position: relative;
	width: 100%;
}
.header-box, .nav-box, .nav-inline, .content-box, .footer-box {
	padding-right: 25px;
	padding-left: 25px;
}


/* Kopfzeile */
header {
	z-index: 10;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background-color: var(--main-color-white);
}
body[class^="cms-"] header {
	z-index: 210;
	top: 51px;
}
header.is-small {
	border-bottom: 1px solid var(--main-color-1-8);
}
	.header-box {
		/* display: flex; */
		/* justify-content: space-between; */
		/* align-items: center; */
		height: 100px;
	}


/* Navigation */
nav, nav.open {
	-o-transition: top 0.6s ease;
	-ms-transition: top 0.6s ease;
	-moz-transition: top 0.6s ease;
	-webkit-transition: top 0.6s ease;
	transition: top 0.6s ease;
}
nav {
	opacity: 0;
	z-index: 11;
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	left: 0;
	top: calc((var(--nav-height, 1vh) * 100) * -1);
	width: 100vw;
	height: calc(var(--nav-height, 1vh) * 100);
	overflow: auto;
	padding-top: 0;
	padding-bottom: 0;
	background-color: var(--main-color-2);
}
nav.open {
	top: 0;
}
body[class^="cms-"] nav,
body[class^="cms-"] nav.open {
	z-index: 211;
}
body[class^="cms-"] nav.open {
	top: 51px;
}
	.nav-line-1 .nav-box {
		display: flex;
		justify-content: space-between;
		align-items: center;
		height: 100px;
	}
	.nav-line-4 {
		margin-top: auto;
		min-height: 100px;
		background-color: var(--main-color-white);
	}
		.nav-line-4 .nav-box {
			padding-top: 25px;
			padding-bottom: 25px;
		}


/* Inhalt */
main {
	padding-top: 100px;
}
body[class^="cms-"] main {
	padding-top: 151px;
}


/* Fusszeile */
footer {
	border-top: 1px solid var(--main-color-1-8);
	background-color: var(--main-color-white);
}
	.footer-box {
		padding-top: 60px;
		padding-bottom: 80px;
	}
		footer .footer-abstand {
			margin-top: 60px;
		}
@media (min-width: 760px) {
	/* Allgemein */
	.header-box, .nav-box, .nav-inline, .content-box, .footer-box {
		padding-left: 40px;
		padding-right: 40px;
	}
	
	
	/* Fusszeile */
	footer .footer-abstand {
		margin-top: 30px;
	}
}
@media (min-width: 1020px) {
	/* Allgemein */
	.header-box, .nav-box, .content-box, .footer-box {
		padding-left: 80px;
		padding-right: 80px;
	}
	.header-inline, .content-inline, .footer-inline {
		/*max-width: 1720px;*/
		margin: 0;
	}
	
	
	/* Kopfzeile */
	header, .header-box {
		height: 140px;
	}


	/* Navigation */
	.nav-line-1 .nav-box {
		height: 140px;
	}
	.nav-line-4, .nav-line-4 .nav-box {
		min-height: 205px;
	}
	.nav-line-4 .nav-box {
		padding-top: 40px;
		padding-bottom: 40px;
	}


	/* Inhalt */
	main {
		padding-top: 140px;
	}
	body[class^="cms-"] main {
		padding-top: 191px;
	}
	
	
	/* Fusszeile */
	footer .footer-abstand {
		margin-top: 0;
	}
}
@media (min-width: 1280px) {
	/* Fusszeile */
	.footer-box {
		padding-top: 90px;
		padding-bottom: 90px;
	}
}
@media (min-width: 1440px) {
	/* Allgemein */
	.nav-box, .content-box, .footer-box {
		padding-left: 160px;
		padding-right: 160px;
	}
	.nav-line-1 .nav-box {
		padding-left: 80px;
		padding-right: 80px;
	}
}


/* ############################################################
	BILDER/ICONS
############################################################ */

/* Logo */
.logo-box {
	display: inline-block;
	position: absolute;
	top: 15px;
	left: calc(50% - 54px);
	width: 108px;
	height: auto;
}
@media (min-width: 1020px) {
	.logo-box {
		top: 21px;
		left: calc(50% - 76px);
		width: 152px;
	}
}


/* Socialmedia */
.socialmedia-box {
	display: flex;
	align-items: flex-end;
}
nav .socialmedia-box {
	padding-top: 14px;
}
	a.link-socialmedia {
		position: relative;
		display: inline-block;
	}
	a.icon-facebook {
		margin-left: 24px;
	}
	main a.icon-instagram {
		margin-left: 40px;
	}
		a.link-socialmedia svg {
			display: block;
			width: auto;
			height: 20px;
			fill: var(--main-color-1);
			-o-transition: fill 0.3s ease;
			-ms-transition: fill 0.3s ease;
			-moz-transition: fill 0.3s ease;
			-webkit-transition: fill 0.3s ease;
			transition: fill 0.3s ease;
		}
		main a.link-socialmedia svg {
			fill: var(--main-color-1);
		}
		a.link-socialmedia:hover svg {
			fill: var(--main-color-1-75);
		}
		a.icon-facebook svg {
			height: 22px;
		}
@media (min-width: 1020px) {
	.socialmedia-box {
		justify-content: flex-end;
	}
	nav .socialmedia-box {
		padding-top: 0;
	}
}


/* ############################################################
	MODULE/VORLAGEN
############################################################ */

/* Sponsoren (Footer) */
.sponsoren-box {
	position: relative;
	width: 100%;
}
.sponsoren-box .sponsor-1, .sponsoren-box .sponsor-2, .sponsoren-box .sponsor-3, .sponsoren-box .sponsor-4 {
	display: block;
	position: relative;
	width: 100%;
	max-width: 280px;
	height: 0;
	margin-top: 20px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
	-o-transition: background 0.3s ease;
	-ms-transition: background 0.3s ease;
	-moz-transition: background 0.3s ease;
	-webkit-transition: background 0.3s ease;
	transition: background 0.3s ease;
}
.sponsoren-box .sponsor-1 {
	padding-bottom: 14.3%;
	background-image: url("../Images/Elemente/Sponsoren/Logo_1291.svg");
}
.sponsoren-box .sponsor-1:hover {
	background-image: url("../Images/Elemente/Sponsoren/Logo_1291_Hover.svg");
}
.sponsoren-box .sponsor-2 {
	padding-bottom: 10.3%;
	background-image: url("../Images/Elemente/Sponsoren/Logo_GarageEberle.svg");
}
.sponsoren-box .sponsor-2:hover {
	background-image: url("../Images/Elemente/Sponsoren/Logo_GarageEberle_Hover.svg");
}
.sponsoren-box .sponsor-3 {
	padding-bottom: 5.1%;
	background-image: url("../Images/Elemente/Sponsoren/Logo_ArchitekturPitbau.svg");
}
.sponsoren-box .sponsor-3:hover {
	background-image: url("../Images/Elemente/Sponsoren/Logo_ArchitekturPitbau_Hover.svg");
}
.sponsoren-box .sponsor-4 {
	padding-bottom: 17.1%;
	background-image: url("../Images/Elemente/Sponsoren/Logo_BeckElektro.svg");
}
.sponsoren-box .sponsor-4:hover {
	background-image: url("../Images/Elemente/Sponsoren/Logo_BeckElektro_Hover.svg");
}


/* Gönner-Boxen */
a.goenner {
	display: inline-flex;
	margin-right: 2px;
	margin-bottom: 5px;
	padding: 10px 17px;
	white-space: nowrap;
	background-color: var(--main-color-white);
	font-size: 0.875rem; /* 14px */
	line-height: 1.5;
	letter-spacing: 0.14px;
	color: var(--main-color-1);
	text-decoration: none;
	-o-transition: color 0.3s ease, background 0.3s ease;
	-ms-transition: color 0.3s ease, background 0.3s ease;
	-moz-transition: color 0.3s ease, background 0.3s ease;
	-webkit-transition: color 0.3s ease, background 0.3s ease;
	transition: color 0.3s ease, background 0.3s ease;
}
a.goenner:hover {
	background-color: var(--main-color-1);
	color: var(--main-color-white);
}
a.goenner.no-link:hover {
	background-color: var(--main-color-white);
	color: var(--main-color-1);
}
@media (min-width: 1020px) {
	a.goenner {
		margin-right: 4px;
		margin-bottom: 10px;
		padding: 14px 24px;
		font-size: 1.1875rem; /* 19px */
		letter-spacing: 0.19px;
	}
}


/* Personen-Box */
.personen-box {
	display: inline-flex;
	align-items: baseline;
	margin-right: 2px;
	margin-bottom: 5px;
	padding: 10px 17px;
	white-space: nowrap;
	background-color: var(--main-color-white);
	font-size: 0.875rem; /* 14px */
	line-height: 1.5;
	letter-spacing: 0.14px;
	color: var(--main-color-1);
}
	.personen-box span {
		font-size: 0.8125rem; /* 13px */
		line-height: 1.7;
		letter-spacing: 0.13px;
		color: var(--main-color-1-75);
	}
@media (min-width: 1020px) {
	.personen-box {
		margin-right: 4px;
		margin-bottom: 10px;
		padding: 14px 24px;
		font-size: 1.1875rem; /* 19px */
		letter-spacing: 0.19px;
	}
		.personen-box span {
			font-size: 0.875rem; /* 14px */
			letter-spacing: 0.14px;
		}
}


/* Tabellen
Fakten & Neutral */
table.tabelle-facts {
	table-layout: fixed;
	border-collapse: collapse;
	width: 100%;
}
	table.tabelle-facts tr {
		vertical-align: top;
	}
		table.tabelle-facts td {
			display: table-cell;
			vertical-align: top;
			text-align: left;
			width: auto;
		}
		table.tabelle-facts td:nth-child(1) {
			width: 110px;
			font-weight: 600;
		}
		table.tabelle-facts.neutral td:nth-child(1) {
			font-weight: 400;
		}
@media (min-width: 1020px) {
	table.tabelle-facts td:nth-child(1) {
		width: 160px;
	}
}


/* Scrollable */
/* Box */
.table-scrollable {
	width: 100%;
	overflow-y: auto;
	margin: 0;
	padding-bottom: 7px;
}
.table-scrollable::-webkit-scrollbar {
	-webkit-appearance: none;
	width: 5px; /* Mostly for vertical scrollbars */
	height: 5px; /* Mostly for horizontal scrollbars */
}
.table-scrollable::-webkit-scrollbar-thumb { /* Vordergrund */
	border-radius: 5px;
	background-color: var(--main-color-1-50);
}
.table-scrollable::-webkit-scrollbar-track { /* Hintergrund */
	border-radius: 5px;
	background-color: var(--main-color-1-8);
}

/* Tabelle */
table.scrollable {
	table-layout: fixed;
	border-collapse: collapse;
	width: 100%;
	min-width: 310px; /* 190px, 120px (Spalten) */
	font-size: 0.8125rem; /* 13px */
	line-height: 1.7;
	letter-spacing: 0.13px;
	color: var(--main-color-1);
}
	table.scrollable tr {
		vertical-align: top;
		border-bottom: 1px solid var(--main-color-1-50);
	}
	table.scrollable tr:first-of-type {
		font-weight: 600;
		color: var(--main-color-1);
		border-bottom: 1px solid var(--main-color-1);
	}
		table.scrollable td {
			display: table-cell;
			vertical-align: top;
			text-align: left;
			width: auto;
			padding-top: 10px;
			padding-bottom: 10px;
		}
		table.scrollable td:nth-child(1) {
			/*display: block;*/
			width: 190px;
			padding-right: 10px;
		}
@media (min-width: 760px) {
	table.scrollable td {
		width: 150px;
	}
	table.scrollable td:nth-child(1) {
		width: auto;
	}
}
@media (min-width: 1020px) {
	table.scrollable {
		font-size: 0.875rem; /* 14px */
		letter-spacing: 0.14px;
	}
		table.scrollable td {
			padding-top: 12px;
			padding-bottom: 12px;
		}
		table.scrollable td:nth-child(1) {
			padding-right: 12px;
		}
}


/* Video (Text-/HTML-Modul) */
.embed-video-box {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
	.embed-video-box iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}


/* ############################################################
	LISTEN
############################################################ */

/* Aufzählungslisten */
.mdl-container ul:not([class^="cmsmodule-nav"]),
.mdl-container ol.nummer-klammer {
	list-style: none;
	position: relative;
	padding: 0;
}

/* - (&ndash;) */
.mdl-container ul:not([class^="cmsmodule-nav"]) {
	margin-top: 27px;
}
.mdl-container ul:not([class^="cmsmodule-nav"]) + h3,
.mdl-container ul:not([class^="cmsmodule-nav"]) + h4,
.mdl-container ul:not([class^="cmsmodule-nav"]) + p {
	margin-top: 27px;
}
	.mdl-container ul:not([class^="cmsmodule-nav"]):not([class^="flex-container"]) li {
		margin-left: 22px;
		padding-left: 0;
	}
	.mdl-container ul:not([class^="cmsmodule-nav"]):not([class^="flex-container"]) li:before {
		content: "\2022";
		position: absolute;
		margin-left: -16px;
		font-size: 1rem; /* 16px */
		line-height: 1.3;
		letter-spacing: 0.16px;
	}
@media (min-width: 1020px) {
	.mdl-container ul:not([class^="cmsmodule-nav"]) {
		margin-top: 37px;
	}
	.mdl-container ul:not([class^="cmsmodule-nav"]) + h3,
	.mdl-container ul:not([class^="cmsmodule-nav"]) + h4,
	.mdl-container ul:not([class^="cmsmodule-nav"]) + p {
		margin-top: 37px;
	}
		.mdl-container ul:not([class^="cmsmodule-nav"]):not([class^="flex-container"]) li {
			margin-left: 39px;
		}
		.mdl-container ul:not([class^="cmsmodule-nav"]):not([class^="flex-container"]) li:before {
			margin-left: -28px;
			font-size: 1.375rem; /* 22px */
			letter-spacing: 0.22px;
		}
}


/* ############################################################
	NAVIGATION
############################################################ */

/* Allgemeines */
ul.nav-mainmenu, ul.nav-mainmenu ul, ul.nav-mainmenu li,
ul.nav-secondmenu, ul.nav-secondmenu ul, ul.nav-secondmenu li,
ul.nav-thirdmenu, ul.nav-thirdmenu ul, ul.nav-thirdmenu li,
ul.nav-fourthmenu, ul.nav-fourthmenu ul, ul.nav-fourthmenu li,
ul.nav-submenu, ul.nav-submenu ul, ul.nav-submenu li,
ul.nav-quicklinks, ul.nav-quicklinks ul, ul.nav-quicklinks li {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.nav-mainmenu li, ul.nav-secondmenu li, ul.nav-thirdmenu li, ul.nav-fourthmenu li, ul.nav-fourthmenu li, ul.nav-submenu li, ul.nav-quicklinks li {
	position: relative;
}


/*
1st-Menu
*/
nav ul.nav-mainmenu {
	margin-top: 40px;
	margin-bottom: 40px;
	font-weight: 500;
	font-size: 1.25rem; /* 20px */
	line-height: 1.3;
	color: var(--main-color-1);
}
	/* Level 1 */
	nav ul.nav-mainmenu li {
		display: block;
		width: 100%;
	}
	nav ul.nav-mainmenu li:not(:first-child) {
		margin-top: 7px;
	}
	/* Level 2 */
	nav ul.nav-mainmenu li ul {
		margin-top: 7px;
		margin-bottom: 0;
		font-weight: 400;
	}
	nav ul.nav-mainmenu li:not(:last-child) ul {
		margin-bottom: 40px;
	}

/* Hyperlinks */
nav ul.nav-mainmenu li a,
nav ul.nav-mainmenu li.has-submenu ul li a,
nav ul.nav-mainmenu li.has-submenu.active ul li a {
	position: relative;
	color: var(--main-color-1);
}
nav ul.nav-mainmenu > li > a:hover,
nav ul.nav-mainmenu > li.active > a,
nav ul.nav-mainmenu > li.has-submenu ul li a:hover,
nav ul.nav-mainmenu > li.has-submenu ul li.active a {
	color: var(--main-color-1);
	font-weight: 600;
}
@media (min-width: 1020px) {
	nav ul.nav-mainmenu {
		z-index: 2;
		position: relative;
		margin-top: 40px;
		margin-bottom: 40px;
		font-weight: 400;
		font-size: 1.875rem; /* 30px */
		letter-spacing: 0.3px;
	}
		/* Level 1 */
		nav ul.nav-mainmenu li:not(:first-child) {
			margin-top: 6px;
		}
		/*nav ul.nav-mainmenu li.has-submenu:after {
			opacity: 0;
			visibility: hidden;
			content: "";
			display: inline-block;
			position: absolute;
			top: calc(50% - 13px);
			right: calc((-1 * ((2 * var(--col-width-1)) + (2 * 40px))) + 10px);
			width: calc((2 * var(--col-width-1)) + (1 * 40px));
			height: 27px;
			background-position: center;
			background-size: contain;
			background-repeat: no-repeat;
			background-image: url("../Images/Elemente/Icon_Navigation_Arrow.svg");
			-o-transition: right 0.6s ease, opacity 0.6s ease, visibility 0.3s ease;
			-ms-transition: right 0.6s ease, opacity 0.6s ease, visibility 0.3s ease;
			-moz-transition: right 0.6s ease, opacity 0.6s ease, visibility 0.3s ease;
			-webkit-transition: right 0.6s ease, opacity 0.6s ease, visibility 0.3s ease;
			transition: right 0.6s ease, opacity 0.6s ease, visibility 0.3s ease;
			transition-delay: 0.25s;
		}
		nav ul.nav-mainmenu li.has-submenu:hover:after,
		nav ul.nav-mainmenu li.has-submenu.active:not(.noactive):after {
			opacity: 1;
			visibility: visible;
			right: calc(-1 * ((2 * var(--col-width-1)) + (2 * 40px)));
			transition-delay: 0.25s;
		}*/
		
		/* Level 2*/
		nav ul.nav-mainmenu li ul {
			position: absolute;
			opacity: 0;
			visibility: hidden;
			top: 0;
			left: calc((5 * var(--col-width-1)) + (5 * 40px) - 20px);
			width: calc((5 * var(--col-width-1)) + (4 * 40px));
			height: calc(7 * 45px);
			margin: 0;
			padding: 0 0 0 40px;
			border-left: 2px solid var(--main-color-1);
			-o-transition: left 0.6s ease, opacity 0.6s ease, visibility 0.3s ease;
			-ms-transition: left 0.6s ease, opacity 0.6s ease, visibility 0.3s ease;
			-moz-transition: left 0.6s ease, opacity 0.6s ease, visibility 0.3s ease;
			-webkit-transition: left 0.6s ease, opacity 0.6s ease, visibility 0.3s ease;
			transition: left 0.6s ease, opacity 0.6s ease, visibility 0.3s ease;
			transition-delay: 0.3s;
		}
		nav ul.nav-mainmenu li:nth-child(2) ul {
			top: calc(-1 * 45px);
		}
		nav ul.nav-mainmenu li:nth-child(3) ul {
			top: calc(-2 * 45px);
		}
		nav ul.nav-mainmenu li:nth-child(4) ul {
			top: calc(-3 * 45px);
		}
		nav ul.nav-mainmenu li:nth-child(5) ul {
			top: calc(-4 * 45px);
		}
		nav ul.nav-mainmenu li:nth-child(6) ul {
			top: calc(-5 * 45px);
		}
		nav ul.nav-mainmenu li:nth-child(7) ul {
			top: calc(-6 * 45px);
		}
		nav ul.nav-mainmenu li:nth-child(8) ul {
			top: calc(-7 * 45px);
		}
		nav ul.nav-mainmenu li.has-submenu.hover > ul,
		nav ul.nav-mainmenu li.has-submenu.active:not(.noactive) > ul {
			left: calc((5 * var(--col-width-1)) + (5 * 40px));
			opacity: 1;
			visibility: visible;
			transition-delay: 0.3s;
		}
			nav ul.nav-mainmenu li ul li:not(:first-child) {
				margin-top: 6px;
			}
	
	/* Hyperlink */
	nav ul.nav-mainmenu li a {
		display: block;
	}
	nav ul.nav-mainmenu li ul li a {
		display: inline-block;
	}
	nav ul.nav-mainmenu li.has-submenu:hover ul li a,
	nav ul.nav-mainmenu li.has-submenu:hover a,
	nav ul.nav-mainmenu li.has-submenu ul li a:hover {
		color: var(--main-color-1);
	}
}
@media (min-width: 1280px) {
	/* Level 2*/
	nav ul.nav-mainmenu li ul {
		padding-left: 80px;
	}
}
@media (min-width: 1440px) {
	/* Level 1 */
	/*nav ul.nav-mainmenu li.has-submenu:after {
		right: calc((-1 * ((1 * var(--col-width-1)) + (1 * 40px))) + 10px);
		width: calc((1 * var(--col-width-1)) + (0 * 40px));
		background-position: center left;
	}
	nav ul.nav-mainmenu li.has-submenu:hover:after,
	nav ul.nav-mainmenu li.has-submenu.active:not(.noactive):after {
		right: calc(-1 * ((1 * var(--col-width-1)) + (1 * 40px)));
	}*/

	/* Level 2*/
	nav ul.nav-mainmenu li ul {
		left: calc((4 * var(--col-width-1)) + (4 * 40px) - 20px);
	}
	nav ul.nav-mainmenu li.has-submenu.hover > ul,
	nav ul.nav-mainmenu li.has-submenu.active:not(.noactive) > ul {
		left: calc((4 * var(--col-width-1)) + (4 * 40px));
	}
}
@media (min-width: 1920px) {
	/* Level 2*/
	nav ul.nav-mainmenu li ul {
		width: calc((4 * var(--col-width-1)) + (3 * 40px));
	}
}
@media (min-width: 1920px) and (min-height: 1000px) {
	/* 1st-Menu */
	nav ul.nav-mainmenu {
		margin-top: 87px;
		margin-bottom: 57px;
	}
}


/*
2nd-Menu
*/
nav ul.nav-secondmenu {
	z-index: 1;
	margin-bottom: 40px;
	font-size: 0.875rem; /* 14px */
	line-height: 1.5;
	letter-spacing: 0.14px;
	color: var(--main-color-1);
}
	/* Level 1 */
	nav ul.nav-secondmenu li {
		display: block;
		width: 100%;
	}
	nav ul.nav-secondmenu li:not(:first-child) {
		margin-top: 4px;
	}

/* Hyperlinks */
nav ul.nav-secondmenu li a {
	position: relative;
	color: var(--main-color-1);
}
nav ul.nav-secondmenu li a:hover,
nav ul.nav-secondmenu li.active a {
	font-weight: 600;
	color: var(--main-color-1);
}
@media (min-width: 1020px) {
	nav ul.nav-secondmenu {
		margin-bottom: 0;
		font-size: 1.1875rem; /* 19px */
		letter-spacing: 0.19px;
	}
		/* Level 1 */
		nav ul.nav-secondmenu li:not(:first-child) {
			margin-top: 4px;
		}
}


/*
3rd-Menu
*/
nav ul.nav-thirdmenu,
footer ul.nav-thirdmenu {
	display: block;
	width: 100%;
}
	/* Hyperlink */
	nav ul.nav-thirdmenu a,
	footer ul.nav-thirdmenu a {
		display: inline-block;
		position: relative;
	}
@media (min-width: 1020px) {
	nav ul.nav-thirdmenu,
	footer ul.nav-thirdmenu {
		margin-top: 36px;
		text-align: right;
	}
}


/*
Quicklinks-Menu
*/
footer ul.nav-submenu,
footer ul.nav-quicklinks {
	display: block;
	width: 100%;
}
	/* Hyperlink */
	footer ul.nav-submenu a,
	footer ul.nav-quicklinks a {
		display: inline-block;
		position: relative;
	}

