

/* ############################################################
	FARBKLIMA
###############################################################
	
	1 Antrazit			#3e4143 - rgba(62,65,67,1)
	2 Grün				#00a475 - rgba(0,164,117,1)
	3 Hellgrün			#eff9f6 - rgba(239,249,246,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: #3e4143;
	--main-color-2: #00a475;
	--main-color-2-51: rgba(0,164,117,0.51);
	--main-color-3: #eff9f6;
	--main-color-white: #ffffff;
	--main-color-black: #000000;
	--main-color-black-22: rgba(0,0,0,0.22);
	--main-color-error: #eb4462;
	--main-color-successful: #4fa158;
	--gap: 10px;
	--cubic-bezier: cubic-bezier(0.41,0,0.51,1) 0s;
}
@media screen and (min-width: 1200px) {
	:root {
		--gap: 16px;
	}
}


/* Allgemeines */
a, a:focus {
	outline: none;
}
/*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 {
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
	background-color: var(--main-color-3);
	font-family: "Montserrat";
	font-style: normal;
	font-weight: 400;
	color: var(--main-color-1);
}


/* 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(239,249,246,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);
	border-top-color: var(--main-color-2);
	background-color: transparent;
	-webkit-animation: load-spinner 600ms linear infinite;
	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);
}


/* ############################################################
	SCHRIFTEN / TEXTE / ABSÄTZE / TITEL
############################################################ */

/* Allgemeines */
main, footer {
	font-size: 1.125rem; /* 18px */
	line-height: 1.388;
}
@media screen and (min-width: 1200px) {
	main, footer {
		font-size: 1.5625rem; /* 25px */
		line-height: 1.6;
	}
}


/* Schnitte */
b, strong, .bold {
	font-style: normal;
	font-weight: 700;
}


/* Titel, Schriftgrössen */
h1, h2, h3 {
	position: relative;
	margin: 0;
	padding: 0;
	font-style: normal;
	font-weight: 700;
	color: inherit;
}
h1 {
	margin-top: 70px;
	font-size: 1.125rem; /* 18px */
	line-height: 1.388;
	color: var(--main-color-2);
	text-align: center;
}
h2, h2.modultitel {
	margin-bottom: 25px;
	font-size: 1.125rem; /* 18px */
	line-height: 1.388;
	color: var(--main-color-2);
}
h3 {
	font-size: 1.125rem; /* 18px */
	line-height: 1.388;
}
@media screen and (min-width: 1200px) {
	h1 {
		margin-top: 80px;
		font-size: 1.25rem; /* 20px */
		line-height: 1.2;
	}
	h2, h2.modultitel {
		margin-bottom: 40px;
		font-size: 1.5625rem; /* 25px */
		line-height: 1.6;
	}
	h3 {
		font-size: 1.5625rem; /* 25px */
		line-height: 1.6;
	}
}


/* Absätze */
p + h2, ul + h2, h3 + h2 {
	margin-top: 50px;
}
p + h3, ul + h3,
p + p, ul + p,
p + ul, h3 + ul {
	margin-top: 25px;
}
@media screen and (min-width: 1200px) {
	p + h2, ul + h2, h3 + h2 {
		margin-top: 80px;
	}
	p + h3, ul + h3,
	p + p, ul + p,
	p + ul, h3 + ul {
		margin-top: 40px;
	}
}


/* 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, a:hover, a:focus {
	position: relative;
	text-decoration: none;
	color: var(--main-color-1);
}
@media screen and (min-width: 992px) {
	a {
		-o-transition: color 300ms var(--cubic-bezier);
		-ms-transition: color 300ms var(--cubic-bezier);
		-moz-transition: color 300ms var(--cubic-bezier);
		-webkit-transition: color 300ms var(--cubic-bezier);
		transition: color 300ms var(--cubic-bezier);
	}
	a:hover, a:focus {
		color: var(--main-color-2);
	}
}


/* Logo */
a.link-logo {
	display: inline-block;
	position: relative;
	width: 281px;
	height: 50px;
	font-size: 0;
	line-height: 0;
}
	a.link-logo img {
		display: inline-block;
	}
@media screen and (min-width: 768px) {
	a.link-logo {
		width: 428px;
		height: 76px;
	}
}
@media screen and (min-width: 1200px) {
	a.link-logo {
		width: 536px;
		height: 94px;
	}
}


/* 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: -95px !important;
	visibility: hidden;
}
@media screen and (min-width: 992px) {
	a.nav-anchor {
		top: -200px !important;
	}
}


/* ############################################################
	PANELS/BOXEN
############################################################ */

/* Allgemein */
header, main, footer,
.main-content,
.header-box, .content-box, .footer-box,
.header-inline, .content-inline, .footer-inline,
.header-col-1, .footer-col-1, .footer-col-2,
.mdl-container {
	position: relative;
	width: 100%;
}
.content-box, .footer-box {
	padding-right: 35px;
	padding-left: 35px;
}
.header-box {
	padding-right: 20px;
	padding-left: 20px;
}
.header-inline, .content-inline, .footer-inline {
	/* max-width: 1640px; */
	margin: 0 auto 0 0;
}

/* Kopfzeile */
header {
	z-index: 10;
	position: absolute;
	top: 0;
	height: 260px;
}
	.header-inline {
		height: 260px;
		padding-top: 70px;
	}

/* Inhalt */
main {
	flex: 1 0 auto;
	padding-top: 260px;
}

/* Fusszeile */
footer {
	flex-shrink: 0;
	padding-top: 80px;
	padding-bottom: 80px;
}
	.footer-inline {
		display: flex;
		flex-direction: column;
	}
		.footer-col-1, .footer-col-2 {
			width: auto;
		}
			.footer-col-1 .footer-kontakt-2 {
				padding-top: 32px;
			}
		.footer-col-2 {
			padding-top: 46px;
		}
@media screen and (min-width: 768px) {
	/* Allgemein */
	.header-box, .content-box, .footer-box {
		padding-left: 70px;
		padding-right: 70px;
	}
	
	/* Kopfzeile */
	header {
		height: 350px;
	}
		.header-inline {
			height: 350px;
			padding-top: 91px;
		}

	/* Inhalt */
	main {
		padding-top: 350px;
	}
	
	/* Fusszeile */
	footer {
		padding-top: 260px;
		padding-bottom: 96px;
	}
		.footer-inline {
			flex-direction: row;
		}
			.footer-col-1 {
				display: flex;
				width: calc((6 * var(--col-width-1)) + (5 * var(--gap)));
			}
				.footer-col-1 .footer-kontakt-1 {
					width: 180px;
				}
				.footer-col-1 .footer-kontakt-2 {
					width: auto;
					margin-left: calc(1 * var(--gap));
					padding-top: 0;
				}
			.footer-col-2 {
				width: calc((5 * var(--col-width-1)) + (4 * var(--gap)));
				margin-left: calc((1 * var(--col-width-1)) + (2 * var(--gap)));
				padding-top: 0;
			}
}
@media screen and (min-width: 1200px) {
	/* Kopfzeile */
	header {
		height: 430px;
	}
		.header-inline {
			height: 430px;
			padding-top: 114px;
		}

	/* Inhalt */
	main {
		padding-top: 430px;
	}
	
	/* Fusszeile */
	footer {
		padding-top: 290px; /* 325px */
		padding-bottom: 120px;
	}
		.footer-col-1 .footer-kontakt-1 {
			width: 260px;
		}
}
@media screen and (min-width: 1600px) {
	/* Allgemein */
	.header-box, .content-box, .footer-box {
		padding-left: 140px;
		padding-right: 140px;
	}
	
	/* Fusszeile */
	.footer-col-1 {
		width: calc((5 * var(--col-width-1)) + (4 * var(--gap)));
		margin-left: calc((1 * var(--col-width-1)) + (1 * var(--gap)));
	}
	.footer-col-2 {
		width: calc((4 * var(--col-width-1)) + (3 * var(--gap)));
	}
}


/* ############################################################
	TEMPLATES/VORLAGEN
############################################################ */

/* Layout: Ansprechpartner */
.template-1 {
	display: flex;
	flex-direction: column;
	text-align: center;
}
	.template-1 .col-1 img {
		width: 225px;
		border-radius: 50%;
		box-shadow: 0px 0px 50px var(--main-color-2-51);
	}
	.template-1 .col-2 {
		margin-top: 34px;
	}
@media screen and (min-width: 768px) {
	.template-1 {
		flex-direction: row;
		text-align: left;
	}
		.template-1 .col-1 {
			width: 180px;
		}
			.template-1 .col-1 img {
				width: 155px;
				margin-top: 35px;
				box-shadow: 0px 0px 40px var(--main-color-2-51);
			}
		.template-1 .col-2 {
			margin-top: 0;
			margin-left: calc(1 * var(--gap));
		}
}
@media screen and (min-width: 1200px) {
	.template-1 .col-1 {
		width: 260px;
	}
		.template-1 .col-1 img {
			width: 225px;
			margin-top: 70px;
			box-shadow: 0px 0px 50px var(--main-color-2-51);
		}
}


/* ############################################################
	LISTEN
############################################################ */

/* Aufzählungslisten */
.mdl-container ul:not([class^="cmsmodule-nav"]):not([class^="slick-dots"]) {
	list-style: none;
	position: relative;
	padding: 0;
}


/* - (&ndash;) */
.mdl-container ul:not([class^="cmsmodule-nav"]) li {
	margin-left: 18px;
	padding-left: 0;
}
.mdl-container ul:not([class^="cmsmodule-nav"]) li:before {
	content: "\2013";
	position: absolute;
	margin-left: -18px;
}
@media screen and (min-width: 1200px) {
	.mdl-container ul:not([class^="cmsmodule-nav"]) li {
		margin-left: 25px;
	}
	.mdl-container ul:not([class^="cmsmodule-nav"]) li:before {
		margin-left: -25px;
	}
}


/* ############################################################
	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-submenu, ul.nav-submenu ul, ul.nav-submenu li,
ul.nav-metamenu, ul.nav-metamenu ul, ul.nav-metamenu li {
	list-style: none;
	margin: 0;
	padding: 0;
}
ul.nav-submenu, footer ul.nav-secondmenu, footer ul.nav-thirdmenu {
	display: flex;
	flex-direction: column;
}
ul.nav-mainmenu li, ul.nav-secondmenu li, ul.nav-thirdmenu li, ul.nav-submenu li, ul.nav-metamenu li {
	position: relative;
}


/*
1st-Menu
*/
footer ul.nav-mainmenu {
	display: flex;
	flex-direction: column;
	/*margin-top: 35px;*/
}
@media screen and (min-width: 768px) {
	footer ul.nav-mainmenu {
		/*margin-top: 20px;*/
	}
}
@media screen and (min-width: 1200px) {
	footer ul.nav-mainmenu {
		/*margin-top: 70px;*/
	}
}

