

/* ############################################################
	FARBKLIMA
###############################################################
	
	1 Orange (Flächen/Links)		#f28c00 - rgba(242,140,0,1)
	2 Grau (Laufschrift)			#888888 - rgba(136,136,136,1)
	3 Grau (Fläche, Titel, Nav)		#73797c - rgba(115,121,124,1)
	4 Grau (Fläche)					#535759 - rgba(83,87,89,1)
	5 Grau (Fläche)					#f1f1f2 - rgba(241,241,242,1)
	  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;
}


/* Variablen definieren */
:root {
	--main-color-1: #f28c00; /* Orange (Flächen/Links) */
	--main-color-2: #888888; /* Grau (Laufschrift) */
	--main-color-3: #73797c; /* Grau (Fläche, Titel) */
	--main-color-4: #535759; /* Grau (Fläche) */
	--main-color-5: #f1f1f2; /* Grau (Fläche) */
	--main-color-white: #ffffff;
	--main-color-white-45: rgba(255,255,255,0.45);
	--main-color-white-85: rgba(255,255,255,0.85);
	--main-color-black: #000000;
	--main-color-black-12: rgba(0,0,0,0.12);
	--main-color-error: #eb4462;
	--main-color-successful: #4fa158;
	--gap: 18px;
	--cubic-bezier: cubic-bezier(0.41,0,0.51,1) 0s;
}
@media screen and (min-width: 992px) {
	:root {
		--gap: 24px;
	}
}
@media screen and (min-width: 1200px) {
	:root {
		--gap: 36px;
	}
}


/* Allgemeines */
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;
}
html, body { /* html = IE text resize correction */
	font-size: 100%;
	height: 100%;
	/*min-height: 100vh;
	min-height: -webkit-fill-available;*/
}
html {
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
body {
	display: flex;
	flex-direction: column;
	overflow-x: hidden;
	background-color: var(--main-color-white);
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 300;
	color: var(--main-color-2);
}
html.open,
body.open {
	overflow: hidden;
}


/* Effekt: FadeIn / Lightning */
body:not(.cms-active) header,
body:not(.cms-active) main,
body:not(.cms-active) footer {
	opacity: 0;
}


/* Overlay */
.overlay {
	z-index: 11;
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,.6);
}
body[class^="cms-"] .overlay {
	z-index: 211;
	top: 51px;
}


/* 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-3);
	border-top-color: var(--main-color-1);
	background-color: 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-white-45 {
	color: var(--main-color-white-45);
}
.color-black {
	color: var(--main-color-black);
}
.color-black-12 {
	color: var(--main-color-black-12);
}
.color-1 {
	color: var(--main-color-1);
}
.color-2 {
	color: var(--main-color-2);
}
.color-3 {
	color: var(--main-color-3);
}
.color-4 {
	color: var(--main-color-4);
}
.color-5 {
	color: var(--main-color-5);
}
.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);
}
.bg-color-4 {
	background-color: var(--main-color-4);
}
.bg-color-5 {
	background-color: var(--main-color-5);
}


/* ############################################################
	COOKIEBOT
############################################################ */

/* Branding on the banner */
a#CybotCookiebotDialogPoweredbyCybot,
div#CybotCookiebotDialogPoweredByText {
	display: none;
}
#CybotCookiebotDialogHeader {
	display: none !important;
}


/* ############################################################
	SCHRIFTEN / TEXTE / ABSÄTZE / HYPERLINKS / TITEL
############################################################ */

/* Allgemeines */
main {
	font-size: 1.125rem; /* 18px */
	line-height: 1.4;
	letter-spacing: 0.36px;
}
footer {
	font-size: 1rem; /* 16px */
	line-height: 1.4;
	letter-spacing: 0.32px;
}
footer {
	color: var(--main-color-white);
}
@media screen and (min-width: 992px) {
	main {
		font-size: 1.25rem; /* 20px */
		letter-spacing: 0.4px;
	}
	footer {
		font-size: 1.125rem; /* 18px */
		letter-spacing: 0.36px;
	}
}


/* Schnitte */
i, em, .italic {
}
b, strong {
	font-family: "Open Sans";
	font-weight: 600;
}
strong > em, em > strong,
strong > i, i > strong,
b > em, em > b,
b > i, i > b {
}


/* Titel, Schriftgrössen */
h1, h2, h3, h4 {
	position: relative;
	margin: 0;
	padding: 0;
	font-family: "Open Sans";
	font-style: normal;
	font-weight: 300;
	letter-spacing: normal;
	color: var(--main-color-3);
}
h1, h2, h3 {
	-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;
}
h1, h2 {
	font-size: 1.875rem; /* 30px */
	line-height: 1.2;
}
h2 {
	margin-bottom: 24px;
}
h3 {
	margin-bottom: 20px;
	font-size: 1.25rem; /* 20px */
	line-height: 1.2;
}
h4 {
	font-weight: 600;
	font-size: 1.125rem; /* 18px */
	line-height: 1.4;
	letter-spacing: 0.36px;
	color: inherit;
}
@media screen and (min-width: 992px) {
	h1, h2 {
		font-size: 2.5rem; /* 40px */
	}
	h2 {
		margin-bottom: 30px;
	}
	h3 {
		margin-bottom: 24px;
		font-size: 1.5rem; /* 24px */
	}
	h4 {
		font-size: 1.25rem; /* 20px */
		letter-spacing: 0.4px;
	}
}


/* Absätze */
h3 + h2, h4 + h2, p + h2, ul + h2 {
	margin-top: 72px;
}
@media screen and (min-width: 992px) {
	h3 + h2, h4 + h2, p + h2, ul + h2 {
		margin-top: 96px;
	}
}


/* 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 */
a {
	text-decoration: none;
	color: var(--main-color-3);
	-o-transition: color 0.3s var(--cubic-bezier);
	-ms-transition: color 0.3s var(--cubic-bezier);
	-moz-transition: color 0.3s var(--cubic-bezier);
	-webkit-transition: color 0.3s var(--cubic-bezier);
	transition: color 0.3s var(--cubic-bezier);
}
a:hover {
	color: var(--main-color-1);
}
main a {
	font-weight: 500;
}
footer a {
	color: var(--main-color-white);
}
footer a:hover {
	color: var(--main-color-1);
}


/* Buttons */
a.btn {
	position: relative;
	display: inline-block;
	width: auto;
	height: 40px;
	padding-left: 20px;
	padding-right: 20px;
	border: 0;
	background-color: var(--main-color-1);
	border-radius: 2px;
	font-weight: 600;
	font-size: 0.75rem; /* 12px */
	line-height: 40px;
	letter-spacing: 0.24px;
	color: var(--main-color-white);
	text-transform: uppercase;
	text-align: center;
	-o-transition: all 0.3s var(--cubic-bezier);
	-ms-transition: all 0.3s var(--cubic-bezier);
	-moz-transition: all 0.3s var(--cubic-bezier);
	-webkit-transition: all 0.3s var(--cubic-bezier);
	transition: all 0.3s var(--cubic-bezier);
}
a.btn:not(.no-icon):after {
	content: "";
	position: relative;
	display: inline-block;
	width: 6px;
	height: 11px;
	margin-left: 20px;
	background-image: url("../Images/Elemente/elitecag_Arrow_Right_6x11_Negativ.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
a.btn:hover {
	padding-left: 30px;
	padding-right: 30px;
	background-color: var(--main-color-4);
}
@media screen and (min-width: 992px) {
	a.btn {
		font-size: 0.875rem; /* 14px */
		letter-spacing: 0.28px;
	}
}


/* Logo */
header .link-logo {
	display: block;
	position: absolute;
	top: 10px;
	left: 0;
	width: 80px;
	height: auto;
}
footer .link-logo {
	display: block;
	max-width: 140px;
}
@media screen and (min-width: 768px) {
	header .link-logo {
		top: 10px;
		width: 104px;
	}
}
@media screen and (min-width: 1200px) {
	footer .link-logo {
		max-width: 180px;
	}
}


/* 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 screen and (max-width: 767.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] {*/
a.nav-anchor {
	display: block;
	width: 0;
	height: 0;
	position: relative;
	top: 0 !important;
	/*top: -120px !important;*/
	visibility: hidden;
}
@media screen and (min-width: 1200px) {
	a.nav-anchor {
		/*top: -160px !important;*/
	}
}


/* ############################################################
	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,
.mdl-container, .nav-line-1, .nav-line-2 {
	position: relative;
	width: 100%;
}
.header-inline, .nav-inline, .content-inline, .footer-inline {
	width: auto;
	margin-right: 25px;
	margin-left: 25px;
}

/* Kopfzeile */
header {
	z-index: 10;
	position: fixed;
	top: 0;
	left: 0;
	height: 82px;
	background-color: var(--main-color-white-85);
	border-bottom: 1px solid var(--main-color-5);
}
body[class^="cms-"] header {
	z-index: 210;
	top: 51px;
}

/* Navigation: Mobile */
nav, nav.open {
	-o-transition: right 0.5s var(--cubic-bezier);
	-ms-transition: right 0.5s var(--cubic-bezier);
	-moz-transition: right 0.5s var(--cubic-bezier);
	-webkit-transition: right 0.5s var(--cubic-bezier);
	transition: right 0.5s var(--cubic-bezier);
}
	nav .slider {
		-o-transition: transform 0.5s var(--cubic-bezier);
		-ms-transition: transform 0.5s var(--cubic-bezier);
		-moz-transition: transform 0.5s var(--cubic-bezier);
		-webkit-transition: transform 0.5s var(--cubic-bezier);
		transition: transform 0.5s var(--cubic-bezier);
	}
nav {
	z-index: 12; /* Overlay = 11 */
	position: fixed;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	opacity: 0;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	height: calc(var(--nav-height, 1vh) * 100);
	overflow-x: hidden;
	overflow-y: auto;
	background-color: var(--main-color-1);
}
nav.open {
	opacity: 1;
	right: 0;
}
body[class^="cms-"] nav, body[class^="cms-"] nav.open {
	z-index: 212;
	top: 51px;
}
	.nav-line-1, .nav-line-2 {
		display: block;
	}
	.nav-line-1 {
		z-index: 2;
	}
	.nav-line-2 {
		z-index: 1;
	}
	nav .slider {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		-o-transform: translateX(0);
		-ms-transform: translateX(0);
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}

/* Inhalt */
main {
	flex: 1 0 auto;
}
body[class^="cms-"] main {
	padding-top: 51px;
}

/* Fusszeile */
footer {
	flex-shrink: 0;
	background-color: var(--main-color-3);
}
	footer .footer-box {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	footer .footer-box:nth-child(2) {
		padding-top: 30px;
		padding-bottom: 30px;
		background-color: var(--main-color-4);
	}
@media screen and (min-width: 768px) {
	/* Allgemein */
	.header-inline, .nav-inline, .content-inline, .footer-inline {
		margin-left: 50px;
		margin-right: 50px;
	}
	
	/* Kopfzeile */
	header {
		height: 100px;
	}
	
	/* Fusszeile */
	footer .footer-box {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	footer .footer-box:nth-child(2) {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}
@media screen and (min-width: 992px) {
	/* Header */
	.nav-box {
		display: flex;
		justify-content: flex-end;
		align-items: flex-end;
		width: calc(100% - 104px);
		height: 100px;
		margin-left: 104px;
	}
	
	/* Fusszeile */
	footer .footer-box:nth-child(1) .col:nth-child(3), footer .footer-box:nth-child(1) .col:nth-child(4) {
		border-left: 1px solid var(--main-color-white);
	}
	footer .footer-box:nth-child(1) .row {
		display: flex;
	}
}
@media screen and (min-width: 1200px) {
	/* Fusszeile */
	footer .footer-box {
		padding-top: 60px;
		padding-bottom: 60px;
	}
	footer .footer-box:nth-child(2) {
		padding-top: 30px;
		padding-bottom: 30px;
	}
}
@media screen and (min-width: 1540px) { /* 1440px + 50px + 50px */
	/* Allgemein */
	.header-inline, .nav-inline, .content-inline, .footer-inline {
		width: 100%;
		max-width: 1440px;
		margin: 0 auto;
	}
}


/* ############################################################
	BILDER/ICONS
############################################################ */

/* Hover-Funktion */
.image_hover {
	position: relative;
}
.image_hover img {
	-webkit-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
	-o-transform: translateZ(0px);
	-ms-transform: translateZ(0px);
	-moz-transform: translateZ(0px);
	-webkit-transform: translateZ(0px);
	transform: translateZ(0px);
	-o-transition: all 0.3s var(--cubic-bezier);
	-ms-transition: all 0.3s var(--cubic-bezier);
	-moz-transition: all 0.3s var(--cubic-bezier);
	-webkit-transition: all 0.3s var(--cubic-bezier);
	transition: all 0.3s var(--cubic-bezier);
}
.image_hover img.hover_image {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
.image_hover img.hover_image, .image_hover:hover img.active_image {
	opacity: 0;
	filter: alpha(opacity = 0);
}
.image_hover img.active_image, .image_hover:hover img.hover_image {
	opacity: 1;
	filter: alpha(opacity = 1);
}


/* ############################################################
	MODULE/TEMPLATES
############################################################ */

/* Videoplayer */
.movie-container {
	max-width: 100%;
	margin: 0 auto;
}
	.movie-container video {
		width: 100%;
		height: auto;
	}


/* Template 1: 4-spaltig */
.template-col-4 {
	position: relative;
	display: block;
	width: 100%;
}
	.template-col-4 > .flex-container {
		display: inline-flex;
		flex-wrap: wrap;
		justify-content: left;
		width: 100%;
	}
		.template-col-4 > .flex-container > .flex-item {
			position: relative;
			display: flex;
			margin: var(--gap) var(--gap) 0 0;
		}
@media screen and (max-width: 767.98px) {
	/* 1/1  - 1 columns per row */
	.template-col-4 > .flex-container > .flex-item {
		width: 100%;
		margin-right: 0;
	}
	/* remove top margin from first row */
	.template-col-4 > .flex-container > .flex-item:nth-child(-n+1) {
		margin-top: 0;
	}
}
@media screen and (min-width: 768px) and (max-width: 1199.98px) {
	/* 1/2  - 2 columns per row */
	.template-col-4 > .flex-container > .flex-item {
		width: calc(1/2*100% - (1 - 1/2)*var(--gap));
	}
	/* align last row columns to the left */
	.template-col-4 > .flex-container > .flex-item:nth-child(2n),
	.template-col-4 > .flex-container > .flex-item:last-child {
		margin-right: 0;
	}
	/* remove top margin from first row */
	.template-col-4 > .flex-container > .flex-item:nth-child(-n+2) {
		margin-top: 0;
	}
	
	/* Inview: Delay  */
	.template-col-4 > .flex-container > .flex-item.come-in.delay-different:nth-child(even) {
		-webkit-animation-delay: 200ms;
		-moz-animation-delay: 200ms;
		-ms-animation-delay: 200ms;
		-o-animation-delay: 200ms;
		animation-delay: 200ms;
	}
}
@media screen and (min-width: 1200px) {
	/* 1/4  - 4 columns per row */
	.template-col-4 > .flex-container > .flex-item {
		width: calc(1/4*100% - (1 - 1/4)*var(--gap));
	}
	/* align last row columns to the left */
	.template-col-4 > .flex-container > .flex-item:nth-child(4n),
	.template-col-4 > .flex-container > .flex-item:last-child {
		margin-right: 0;
	}
	/* remove top margin from first row */
	.template-col-4 > .flex-container > .flex-item:nth-child(-n+4) {
		margin-top: 0;
	}
	
	/* Inview: Delay  */
	.template-col-4 > .flex-container > .flex-item.come-in.delay-different:nth-child(4n+2) {
		-webkit-animation-delay: 200ms;
		-moz-animation-delay: 200ms;
		-ms-animation-delay: 200ms;
		-o-animation-delay: 200ms;
		animation-delay: 200ms;
	}
	.template-col-4 > .flex-container > .flex-item.come-in.delay-different:nth-child(4n+3) {
		-webkit-animation-delay: 400ms;
		-moz-animation-delay: 400ms;
		-ms-animation-delay: 400ms;
		-o-animation-delay: 400ms;
		animation-delay: 400ms;
	}
	.template-col-4 > .flex-container > .flex-item.come-in.delay-different:nth-child(4n+4) {
		-webkit-animation-delay: 600ms;
		-moz-animation-delay: 600ms;
		-ms-animation-delay: 600ms;
		-o-animation-delay: 600ms;
		animation-delay: 600ms;
	}
}


/* Template 2: 2-spaltig */
.template-col-2 {
	position: relative;
	display: block;
	width: 100%;
}
	.template-col-2 > .col-item {
		width: 100%;
	}
	.template-col-2 > .col-item:nth-child(2) {
		margin-top: var(--gap);
	}
@media screen and (min-width: 768px) {
	.template-col-2 {
		display: flex;
	}
		.template-col-2 > .col-item:nth-child(1) {
			width: calc((7 * var(--col-width-1)) + (6 * var(--gap)));
		}
		.template-col-2 > .col-item:nth-child(2) {
			width: calc((5 * var(--col-width-1)) + (4 * var(--gap)));
			margin-top: 0;
			margin-left: calc(1 * var(--gap));
		}
}
@media screen and (min-width: 1200px) {
	.template-col-2 > .col-item:nth-child(1) {
		width: calc((8 * var(--col-width-1)) + (7 * var(--gap)));
	}
	.template-col-2 > .col-item:nth-child(2) {
		width: calc((4 * var(--col-width-1)) + (3 * var(--gap)));
	}
}


/* Template 3: 2-spaltig (50%) */
.template-col-2-50 {
	position: relative;
	display: block;
	width: 100%;
}
	.template-col-2-50 > .col-item {
		width: 100%;
	}
	.template-col-2-50 > .col-item:nth-child(2) {
		margin-top: var(--gap);
	}
@media screen and (min-width: 768px) {
	.template-col-2-50 {
		display: flex;
	}
		.template-col-2-50 > .col-item {
			width: calc((6 * var(--col-width-1)) + (5 * var(--gap)));
		}
		.template-col-2-50 > .col-item:nth-child(2) {
			margin-top: 0;
			margin-left: calc(1 * var(--gap));
		}
}


/* Template 4: 3-spaltig (33%) */
.template-col-3 {
	position: relative;
	display: block;
	width: 100%;
}
	.template-col-3 > .col-item {
		width: 100%;
	}
	.template-col-3 > .col-item:nth-child(2), .template-col-3 > .col-item:nth-child(3) {
		margin-top: var(--gap);
	}
@media screen and (min-width: 768px) {
	.template-col-3 {
		display: flex;
	}
		.template-col-3 > .col-item {
			width: calc((4 * var(--col-width-1)) + (3 * var(--gap)));
		}
		.template-col-3 > .col-item:nth-child(2), .template-col-3 > .col-item:nth-child(3) {
			margin-top: 0;
			margin-left: calc(1 * var(--gap));
		}
}


/* Template 5: Hinweis */
.template-note {
	position: relative;
	display: block;
	width: 100%;
	padding: 25px 29px;
	background-color: var(--main-color-5);
	color: var(--main-color-3);
}
h1 + .template-note, h2 + .template-note, h3 + .template-note, h4 + .template-note, p + .template-note, ul + .template-note {
	margin-top: 75px;
}
	.template-note > .note-item {
		width: calc(((12 * var(--col-width-1)) + (11 * var(--gap))) - 50px);
	}
	.template-note > .note-item:nth-child(1) {
		font-weight: 400;
	}
	.template-note > .note-item:nth-child(2) {
		margin-top: var(--gap);
		text-align: center;
	}
@media screen and (min-width: 768px) {
	.template-note {
		display: flex;
		padding: 25px 35px;
	}
		.template-note > .note-item:nth-child(1) {
			width: calc(((8 * var(--col-width-1)) + (7 * var(--gap))) - 25px);
		}
		.template-note > .note-item:nth-child(2) {
			width: calc(((4 * var(--col-width-1)) + (3 * var(--gap))) - 25px);
			margin-top: 0;
			margin-left: calc(1 * var(--gap));
		}
}
@media screen and (min-width: 1200px) {
	.template-note {
		padding: 25px 32px;
	}
	h1 + .template-note, h2 + .template-note, h3 + .template-note, h4 + .template-note, p + .template-note, ul + .template-note {
		margin-top: 100px;
	}
		.template-note > .note-item:nth-child(1) {
			width: calc(((9 * var(--col-width-1)) + (8 * var(--gap))) - 25px);
		}
		.template-note > .note-item:nth-child(2) {
			width: calc(((3 * var(--col-width-1)) + (2 * var(--gap))) - 25px);
		}
}


/* ############################################################
	LISTEN
############################################################ */

/* Aufzählungslisten */
.mdl-container ul:not([class^="cmsmodule-nav"]),
.mdl-container ol.nummer-klammer {
	list-style: none;
	position: relative;
	padding: 0;
}

/* Allgemein */
.mdl-container ul:not([class^="cmsmodule-nav"]) {
	margin: 0;
}
	.mdl-container ul:not([class^="cmsmodule-nav"]) li {
		position: relative;
		margin-left: 29px;
		padding-left: 0;
	}
	.mdl-container ul:not([class^="cmsmodule-nav"]) li:before {
		content: "";
		position: absolute;
		left: -29px;
		background-repeat: no-repeat;
		background-size: contain;
	}

/* Icon: Pfeil rechts */
.mdl-container ul:not([class^="cmsmodule-nav"]) li:before {
	top: 7px;
	width: 18px;
	height: 13px;
	background-image: url("../Images/Elemente/elitecag_Arrow_Right_20x14.svg");
}
@media screen and (min-width: 992px) {
	.mdl-container ul:not([class^="cmsmodule-nav"]) li {
		margin-left: 32px;
	}
	.mdl-container ul:not([class^="cmsmodule-nav"]) li:before {
		left: -32px;
		width: 20px;
		height: 14px;
	}
}

/* Icon: Check */
.mdl-container ul.check:not([class^="cmsmodule-nav"]) li {
	margin-left: 30px;
	font-weight: 400;
}
.mdl-container ul.check:not([class^="cmsmodule-nav"]) li:not(:first-child) {
	margin-top: 14px;
}
.mdl-container ul.check:not([class^="cmsmodule-nav"]) li:before {
	top: 7px;
	left: -30px;
	width: 20px;
	height: 15px;
	background-image: url("../Images/Elemente/elitecag_Check.svg");
}
@media screen and (min-width: 992px) {
	.mdl-container ul.check:not([class^="cmsmodule-nav"]) li {
		margin-left: 34px;
	}
	.mdl-container ul.check:not([class^="cmsmodule-nav"]) li:before {
		left: -34px;
		width: 22px;
		height: 16px;
	}
}


/* ############################################################
	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 {
	list-style: none;
	margin: 0;
	padding: 0;
}
header ul.nav-mainmenu li, ul.nav-secondmenu li, ul.nav-thirdmenu li {
	position: relative;
}


/*
1st-Menu
*/
nav ul.nav-mainmenu {
	position: relative;
	width: 100%;
	margin-top: 82px;
	font-weight: 500;
	font-size: 1.125rem; /* 18px */
	line-height: 1.4;
	letter-spacing: 0;
	color: var(--main-color-white);
	text-transform: uppercase;
}
nav ul.nav-mainmenu {
	padding-left: 25px;
	padding-right: 25px;
}
	/* Level 1 */
	nav ul.nav-mainmenu li:not(:last-child) {
		border-bottom: 1px solid var(--main-color-white-85);
	}
		/* Level 2 */
		nav ul.nav-mainmenu li ul {
			display: none;
			position: absolute;
			top: 0;
			left: 100%;
			width: 100%;
			padding-left: 25px;
			padding-right: 25px;
			font-weight: 300;
			text-transform: none;
		}

/* Hyperlink: Allgemein */
nav ul.nav-mainmenu li a {
	position: relative;
	display: block;
	padding: 20px 0;
	text-decoration: none;
}
nav ul.nav-mainmenu li a, nav ul.nav-mainmenu li a:hover, nav ul.nav-mainmenu li.active ul li a {
	color: var(--main-color-white);
}

/* Hyperlink: Level 1 */
nav ul.nav-mainmenu > li.active a {
	font-weight: 600;
	color: var(--main-color-4);
}

	/* Hyperlink: Level 2 */
	nav ul.nav-mainmenu li.active ul li a, nav ul.nav-mainmenu li ul li.active a {
		font-weight: 300;
	}
	nav ul.nav-mainmenu li ul li.active a {
		font-weight: 500;
		color: var(--main-color-4);
	}

/* Level 1 has Submenu */
nav ul.nav-mainmenu li.has-submenu > a:after {
	content: "";
	position: absolute;
	top: calc(50% - 8px);
	right: 5px;
	width: 9px;
	height: 15px;
	background-image: url("../Images/Elemente/elitecag_Arrow_Right_9x15.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center right;
}
nav ul.nav-mainmenu li.has-submenu.active > a:after {
	background-image: url("../Images/Elemente/elitecag_Arrow_Right_9x15_Hover.svg");
}

/* Zurück-Link */
nav ul.nav-mainmenu a.back-link {
	position: relative;
	cursor: pointer;
	padding-left: 28px;
	font-weight: 500 !important;
	color: var(--main-color-white) !important;
	text-transform: uppercase;
}
nav ul.nav-mainmenu a.back-link:before {
	content: "";
	position: absolute;
	top: calc(50% - 8px);
	left: 0;
	width: 9px;
	height: 15px;
	background-image: url("../Images/Elemente/elitecag_Arrow_Right_9x15.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center left;
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
	nav ul.nav-mainmenu,
	nav ul.nav-mainmenu ul {
		padding-left: 50px;
		padding-right: 50px;
	}
	nav ul.nav-mainmenu {
		margin-top: 100px;
	}
}
@media screen and (min-width: 992px) {
	header ul.nav-mainmenu {
		position: relative;
		display: flex;
		justify-content: flex-end;
		width: 100%;
		font-weight: 500;
		font-size: 1rem; /* 16px */
		line-height: 1.4;
		letter-spacing: 0;
		color: var(--main-color-3);
		text-transform: uppercase;
	}
		/* Level 1 */
		header ul.nav-mainmenu > li {
			display: inline-block;
		}
			/* Level 2 */
			header ul.nav-mainmenu li ul {
				display: none;
				opacity: 0;
				position: absolute;
				top: 42px;
				left: 0;
				width: 260px;
				background-color: var(--main-color-1);
				border-radius: 0 0 5px 5px;
				padding-top: 10px;
				padding-bottom: 10px;
				font-weight: 400;
				font-size: 1rem; /* 16px */
				line-height: 1.2;
				color: var(--main-color-white);
				text-transform: none;
			}
	
	/* Hyperlink: Allgemein */
	header ul.nav-mainmenu li a {
		position: relative;
		display: block;
		padding: 10px 15px;
		color: var(--main-color-3);
	}
	header ul.nav-mainmenu li:hover a, header ul.nav-mainmenu li.active a, header ul.nav-mainmenu li.active ul li a {
		color: var(--main-color-white);
	}
	
	/* Hyperlink: Level 1 */
	header ul.nav-mainmenu > li a {
		background-color: transparent;
		-o-transition: all 0.3s var(--cubic-bezier);
		-ms-transition: all 0.3s var(--cubic-bezier);
		-moz-transition: all 0.3s var(--cubic-bezier);
		-webkit-transition: all 0.3s var(--cubic-bezier);
		transition: all 0.3s var(--cubic-bezier);
	}
	header ul.nav-mainmenu > li:hover a, header ul.nav-mainmenu > li.active a {
		background-color: var(--main-color-1);
	}
		/* Hyperlink: Level 2 */
		header ul.nav-mainmenu li ul li a {
			padding-top: 6px;
			padding-bottom: 6px;
		}
		header ul.nav-mainmenu li ul li:hover a, header ul.nav-mainmenu li ul li.active a {
			color: var(--main-color-4);
		}
		header ul.nav-mainmenu li ul li.active a {
			font-weight: 500;
		}
}
@media screen and (min-width: 1200px) {
	header ul.nav-mainmenu {
		font-size: 1.125rem; /* 18px */
	}
		/* Level 2 */
		header ul.nav-mainmenu li ul {
			top: 45px;
			width: 280px;
			padding-top: 10px;
			padding-bottom: 10px;
		}
	
	/* Hyperlink: Allgemein */
	header ul.nav-mainmenu li a {
		padding-left: 20px;
		padding-right: 20px;
	}
}


/*
2nd-/3rd-Menu
*/
ul.nav-secondmenu, ul.nav-thirdmenu {
	margin-top: 45px;
}
	ul.nav-secondmenu li:not(:first-child), ul.nav-thirdmenu li:not(:first-child) {
		margin-top: 8px;
	}
		ul.nav-thirdmenu li a {
			font-weight: 500;
		}
@media screen and (min-width: 992px) {
	ul.nav-secondmenu, ul.nav-thirdmenu {
		margin-top: 0;
	}
		ul.nav-secondmenu li:not(:first-child), ul.nav-thirdmenu li:not(:first-child) {
			margin-top: 16px;
		}
}
@media screen and (min-width: 1200px) {
	ul.nav-secondmenu li:not(:first-child), ul.nav-thirdmenu li:not(:first-child) {
		margin-top: 18px;
	}
}

