/*
	DUNKELBALU: #2a4278;
	HELLBLAU:   #00a7c3;
	GRAU:       #707070;
	HELLGRAU:   #c2c2c2;
*/

:root 
{
	--dunkelblau: #2a4278;
	--hellblau: #00a7c3;
	--hellgrau: #c2c2c2;
	--grau: #707070;
}

:root 
{
	--darkblue: #2a4278;
	--lightblue: #00a7c3;
	--lightgrey: #c2c2c2;
	--light: #f2f5fc;
	--grey: #707070;
}

* 
{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body 
{
	font-size: 1.05em;
	color: var(--grau);
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	overflow-x: hidden;
	line-height: 1.65;
}

::selection 
{
  background-color: var(--dunkelblau); 
  color: #fff;
}

::-moz-selection 
{
  background-color: var(--dunkelblau); 
  color: #fff;
}

.wrap
{
	max-width: 1280px;
	display: block;
	margin: auto;
	padding: 0px 40px;
	padding-left: calc(255px + 100px);
	position: relative;
}

#header .wrap
{
	padding-left: 40px;
}

h1, h2, h3
{
	font-size: 3em;
	color: var(--dunkelblau);
	line-height: 1.35;
	font-weight: 600;
}

h1
{
	text-transform: uppercase;
}

h2
{
	font-size: 1.65em;
}

h2 + h3
{
	margin-top: 1em;
}

h3, h4
{
	font-size: 1.3em;
	line-height: 1.3;
}

h4
{
	line-height: 1.4;
	font-size: 1.15em;
}

h4 + p
{
	margin-top: 0.5em;
}

h2 + p, h2 + ul
{
	margin-top: 1em;
}

h3 + p, h3 + ul
{
	margin-top: 0.5em;
}

h1 + h2
{
	margin-top: 0.5em;
}

p + p
{
	margin-top: 1em;
}

p + ul, ul + p
{
	margin-top: 0.5em;
}

strong
{
	font-weight: 600;
}

p + .audio
{
	margin-top: 1em;
}

#header
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

#navCol
{
	position: absolute;
	width: 255px;
	left: 40px;
	background-color: #fff;
}

#logo
{
	padding: 30px 60px 25px;
	width: 100%;
}

#opener
{
	width: 100%;
	height: 72vh;
	background-size: cover;
	background-position: center;
	position: relative;
	max-height: 640px;
	min-height: 450px;
}

#opener:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 5;
	background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 90%);
}

#openerTitle
{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 70px;
	z-index: 20;
	text-align: right;
}

#openerTitle span
{
	color: #fff;
	background-color: var(--dunkelblau);
	padding: 0.3em 20px;
	text-transform: uppercase;
}

#openerTitle span.big
{
	font-size: 2.1em;
	background-color: var(--hellblau);
	font-weight: 600;
	text-transform: none;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	-moz-box-decoration-break: clone;
}

#openerTitle span.small
{
	display: inline-block;
	margin-bottom: 0.17em;
	padding: 0.35em 20px;
}

#navigation ul li
{
	display: block;
	list-style: none;
	padding: 0px 40px;
	margin-bottom: 15px;
	text-transform: uppercase;
	opacity: 0.7;
	transition: all 0.2s;
}

#navigation ul li a
{
	text-decoration: none;
	color: var(--dunkelblau);
}

#navigation ul li.active
{
	opacity: 1;
	font-weight: 600;
}

#navigation ul li:hover
{
	opacity: 1;
}

#contact
{
	background-color: var(--dunkelblau);
	color: #fff;
	padding: 25px 40px 26px;
	margin-top: 30px;
}

#contact a
{
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.2s;
}

#contact a:hover
{
	border-bottom: 1px solid #fff;
}

#contact p + p
{
	margin-top: 0.5em;
}

.dividerLine
{
	width: 150px;
	height: 5px;
	background-color: var(--hellblau);
}

.text
{
	margin: 60px 0px;
}

.text ul li
{
	list-style: none;
	position: relative;
	padding-left: 1.2em;
}

.text ul li:before
{
	content: "";
	position: absolute;
	width: 0.4em;
	height: 0.4em;
	background-color: var(--dunkelblau);
	left: 0;
	top: 0.62em;
}

.colored ul li:before
{
	background-color: #fff;
}

.text p a, .text ul a, #cookieNotice a, form a
{
	color: var(--dunkelblau);
	border-bottom: 1px solid var(--dunkelblau);
	text-decoration: none;
	transition: all 0.2s;
}

.text p a:hover, .text ul a:hover, #cookieNotice a:hover, form a:hover
{
	color: var(--hellblau);
	border-bottom: 1px solid var(--hellblau);
}

.text.colored p a, .text.colored ul li a
{
	color: #fff;
	border-bottom: 1px solid #fff;
}

.text .colored p a:hover, .text.colored ul li a:hover
{
	opacity: 0.8;
}

.withButton, .withBlog
{
	margin-top: -30px;
}

.withDividerline + .withBlog
{
	margin-top: 0!important;
}

.text.withButton p a, .more
{
	display: inline-block;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	line-height: 1.4;
	padding: 0.8em 1.4em;
	transition: all 0.2s;
	background-color: var(--dunkelblau);
	border-bottom: 0px solid transparent!important;
	text-align: center;
}

.text.withButton p a:hover, .more:hover
{
	background-color: var(--hellblau);
}

.colored + .text.withButton
{
	background-color: var(--hellblau);
	padding-bottom: 60px;
	margin-top: -90px;
}

.colored + .text.withButton p a
{
	background-color: transparent;
	border: 2px solid #fff!important;
}

.colored + .text.withButton p a:hover
{
	background-color: #fff;
	color: var(--hellblau);
}

.colored
{
	background-color: var(--hellblau);
	color: #fff;
	padding: 60px 0px;
}

.colored h2, .colored h3
{
	color: #fff;
}

#blog
{
	column-count: 2;
  	column-gap: 40px;
  	-moz-column-count: 2;
  	-moz-column-gap: 40px;
  	-webkit-column-count: 2;
  	-webkit-column-gap: 40px;
  	margin-bottom: -20px;
}

.blogPost
{
	margin-bottom: 40px;
	padding: 22px 30px 30px;
	display: inline-block;
	box-shadow: 0px 10px 15px rgba(0,0,0,0.08);
	-webkit-column-break-inside: avoid;
	page-break-inside: avoid;
	break-inside: avoid;
	z-index: 10;
	width: 100%;
}

.blogTitle
{
	margin-bottom: 20px;
	font-weight: 600;
	color: var(--dunkelblau);
	font-size: 1.1em;
	line-height: 1.5;
}

.blogPost .youtube
{
	margin-bottom: 20px;
	box-shadow: 0px 0px 0px transparent;
}

.more
{
	margin-top: 20px;
	display: block;
	text-align: center;
}

.inline
{
	width: 100%;
	margin-bottom: -8px!important;
	box-shadow: 0px 10px 15px rgba(0,0,0,0.08);
}

.imgFlex
{
	display: flex;
	flex-wrap: wrap;
}

.imgFlexItem:nth-child(1)
{
	width: 190px;
}

.imgFlexItem:nth-child(2)
{
	width: calc(100% - 190px);
	padding-left: 40px;
}

.youtube
{
	width: 100%;
	display: block;
	margin: auto;
	border: none;
	box-shadow: 0px 10px 15px rgba(0,0,0,0.08);
}

.divider
{
	width: 100%;
	height: 1px;
	background-color: var(--hellgrau);
	position: relative;
}

.divider:after
{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 60px;
	height: 60px;
	background-image: url(icon.svg);
	background-color: #fff;
	background-size: 65%;
	background-position: center;
	background-repeat: no-repeat;
	z-index: 5;
}

.text-center
{
	text-align: center;
}

#form
{
	padding-top: 60px;
	margin-top: -60px;
	max-width: 650px;
	position: relative;
}

form
{
	max-width: 650px;
}

form label
{
	color: var(--dunkelblau);
	font-family: 'Lato', sans-serif;
	font-weight: 600;
	display: block;
	margin-bottom: 0.4em;
}

input[type = "text"], input[type = "email"], textarea, button, select
{
	-webkit-appearance: none;
   	-moz-appearance: none;
   	appearance: none;
   	border-radius: 0px;
   	font-size: 1em;
   	width: 100%;
   	border: none;
   	font-family: 'Lato', sans-serif;
   	line-height: 1.4;
   	color: var(--grau);
   	font-weight: 300;
}

input, textarea, select
{
	color: var(--grau);
}

input[type = "text"], input[type = "email"], textarea, select
{
	border: 1px solid var(--hellgrau);
	padding: 0.7em;
	transition: box-shadow 0.3s;
}

input, textarea, select
{
	margin-bottom: 1.2em;
	transition: border-color 0.3s;
}

input:focus, textarea:focus, select:focus
{
	border-color: var(--dunkelblau);
}

select
{
	cursor: pointer;
	background-color: #fff;
	background-image: url(down.svg);
	background-size: auto 23%;
	background-repeat: no-repeat;
	background-position: center right 1em;
}

textarea
{
	height: 12em;
	resize: none;
}

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte Ã¼berprÃ¼fen Sie Ihre Eingabe.";
	font-weight: 600;
	color: red;
	display: block;
	margin-bottom: 0.5em;
}

.alert.alert-danger ul
{
	margin: 0em 0em 2em;
	line-height: 1.6;
}

.alert.alert-danger ul li
{
	color: red;
	line-height: 1.6;
}

.text ul li
{
	line-height: 1.6;
}

.alert.alert-danger ul li:before
{
	background-color: red!important;
}

.checkbox
{
	position: relative;
	padding-left: 1.5em;
}

.checkbox label
{
	font-family: 'Lato', sans-serif;
	color: var(--grau);
	line-height: 1.6;
	font-weight: 300;
	cursor: pointer;
	text-transform: none;
}

.checkbox input
{
	position: absolute;
	left: 0px;
	top: 0.62em;
	cursor: pointer;
}

button
{
	display: inline-block;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	line-height: 1.4;
	padding: 0.8em 1.4em;
	transition: all 0.2s;
	background-color: var(--dunkelblau);
	border-bottom: 0px solid transparent!important;
	text-align: center;
	cursor: pointer;
	width: auto;
	margin-top: 1em;
}

button:hover
{
	background-color: var(--hellblau);
}

#footer
{
	background-color: var(--dunkelblau);
	padding: 30px 0px;
	color: #fff;
}

#copy
{
	font-weight: 600;
	margin-bottom: 5px;
	line-height: 1.5;
}

#footerList li
{
	display: inline-block;
	margin-right: 30px;
}

#footer a
{
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.2s;
}

#footer a:hover
{
	border-bottom: 1px solid #fff;
}

#cookieNotice
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 0.85em;
	background-color: rgba(0,0,0,0.8);
	z-index: 500000;
	display: flex;
	align-items: center;
	justify-content: center;
}

#cookieBox
{
	padding: 35px 40px;
	max-height: calc(100vh - 80px);
	background-color: #fff;
	max-width: 520px;
	overflow: auto;
	border-bottom: 5px solid var(--lightblue);
}

#acceptWrap
{
	text-align: center;
	font-size: 1.2em;
	border-top: 1px solid var(--lightgrey);
	padding-top: 32px;
	margin-top: 35px;
}

#accepted, #accepted_auswahl
{
	font-weight: 600;
	color: var(--lightblue);
	cursor: pointer;
	transition: all 0.2s;
	display: inline-block;
}

#accepted
{
	margin-top: 1px;
}

#accepted:hover, #accepted_auswahl:hover
{
	color: var(--darkblue);
}

#cookieCheckboxes
{
	margin-top: 1em;
	margin-bottom: 1em;
}

#cookieCheckboxes label
{
	position: relative;
	margin-right: 1.6em;
	padding-left: 1.45em;
	cursor: pointer;
	display: block;
	width: 100%;
	margin-top: 0.2em;
}

#cookieCheckboxes input
{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}

#cookieNotice strong
{
	font-weight: 600;
}

.youtube
{
	width: 100%;
	border: none;
	position: relative;
}

.youtube a
{
	color: var(--darkblue);
	text-decoration: none;
	border-bottom: 1px dashed var(--darkblue);
	transition: all 0.2s;
}

.youtube a:hover
{
	color: var(--lightblue);
	border-bottom: 1px solid var(--lightblue);
}

.youtube iframe
{
	border: none;
}

.youtubeVideo
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

.youtubeOverlay
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--light);
	border: 1px solid var(--darkblue);
	z-index: 10;
	padding: 25px 20px 20px;
	flex-wrap: wrap;
	font-size: 0.7em;
}

.full .youtubeOverlay
{
	border: none;
	font-size: 1em;
}

.youtubeContent
{
	text-align: center;
}

.youtubeNote
{
	display: block;
	line-height: 1.5;
	margin-top: 0.8em;
	white-space: nowrap;
}

.youtubeAccept
{
	display: inline-block;
	text-align: center;
	font-weight: 400;
	line-height: 1.45;
	color: #fff!important;
	text-decoration: none;
	border-bottom: none!important;
	padding: 0.7em 1.2em 0.73em;
	background-color: var(--darkblue);
	transition: all 0.2s;
	cursor: pointer;
}

.youtubeAccept:hover
{
	background-color: var(--lightblue);
}

#cookieNotice .wrap
{
	padding: 0px 40px!important;
}

.highlight
{
	padding: 32px 40px;
	background-color: var(--light);
	border-left: 8px solid var(--darkblue);
}

#badge
{
	position: absolute;
	top: 40px;
	right: 40px;
	width: 160px;
	z-index: 500;
}

@media all and (max-width: 450px){
	#cookieBox
	{
		padding: 20px 25px;
	}
}

@media all and (max-width: 480px){
	#opener
	{
		height: 42vh!important;
		min-height: 270px!important;
	}

	h1
	{
		font-size: 1.6em!important;
	}

	h2
	{
		font-size: 1.2em!important;
	}

	h3, h4
	{
		font-size: 1.15em!important;
	}

	#openerTitle span.small
	{
		font-size: 0.9em;
	}

	#openerTitle span.big
	{
		font-size: 1.3em!important;
	}

	.dividerLine
	{
		width: 80px!important;
	}
}

@media all and (max-width: 550px){
	#blog
	{
		column-count: 1;
	  	-moz-column-count: 1;
	  	-webkit-column-count: 1;
	}
}

@media all and (max-width: 580px){
	.imgFlex
	{
		display: block;
	}

	.imgFlexItem
	{
		width: 100%;
	}

	.imgFlex .imgFlexItem:nth-child(2)
	{
		margin-top: 25px;
		padding-left: 0;
		width: 100%!important;
	}
}

@media all and (max-width: 700px){
	#footerList
	{
		margin-top: 6px;
	}

	#footerList li
	{
		display: block;
		margin-right: 0;
		margin-top: 2px;
	}

	#badge
	{
		width: 120px!important;
		top: 20px;
	}
}

@media all and (max-width: 880px){
	#navCol
	{
		width: 100%;
		height: 80px;
		position: relative;
		left: 0;
	}

	#header
	{
		position: sticky;
		position: -webkit-sticky;
		box-shadow: 0px 10px 15px rgba(0,0,0,0.08);
	}

	#header .wrap
	{
		padding: 0px;
	}

	#navigation
	{
		display: none;
		position: absolute;
		width: 100%;
		left: 0;
		top: 80px;
		background-color: #fff;
		padding: 0px 40px;
	}

	#navigation ul li
	{
		margin: 0;
		padding: 0px;
		text-align: right;
		margin-bottom: 8px;
	}

	#navigation ul
	{
		padding-bottom: 10px;
	}

	#navOpener
	{
		position: absolute;
		top: 50%;
		transform: translateY(-50%);
		right: 40px;
		cursor: pointer;
		width: 28px;
		height: 22px;
	}

	.line
	{
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: var(--dunkelblau);
		left: 50%;
		transform: translateX(-50%);
		transition: all 0.2s;
	}

	#navOpener .line:nth-child(1)
	{
		top: 0;
	}

	#navOpener .line:nth-child(2)
	{
		top: 50%;
		transform: translate(-50%, -50%);
	}

	#navOpener .line:nth-child(3)
	{
		bottom: 0;
	}

	#navOpener.active .line:nth-child(1)
	{
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	#navOpener.active .line:nth-child(2)
	{
		width: 0;
	}

	#navOpener.active .line:nth-child(3)
	{
		bottom: auto;
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	#contact
	{
		display: none;
	}

	#logo
	{
		position: absolute;
		width: auto;
		height: 100%;
		padding: 10px 0px;
		left: 40px;
	}

	.wrap
	{
		padding-left: 40px;
	}

	#opener
	{
		height: 50vh;
		min-height: 280px;
	}

	.text
	{
		margin: 40px 0px;
	}

	.colored
	{
		padding: 40px 0px;
	}

	.withButton, .withBlog
	{
		margin-top: -20px;
	}

	.colored + .text.withButton
	{
		padding-bottom: 40px;
		margin-top: -60px;
	}

	h1
	{
		font-size: 2.1em;
	}

	h2
	{
		font-size: 1.3em;
	}

	h3, h4
	{
		font-size: 1.15em;
	}

	.dividerLine
	{
		width: 120px;
		height: 4px;
	}

	#openerTitle span.big
	{
		font-size: 1.6em;
	}

	#blog
	{
		margin-bottom: -30px;
	}

	#footer
	{
		padding: 20px 0px;
	}

	#openerTitle
	{
		bottom: 50px;
	}

	#form
	{
		padding-top: 120px;
		margin-top: -120px;
	}

	#badge
	{
		width: 130px;
	}
}

@media all and (min-width: 881px){
	#navigation
	{
		display: block!important;
	}
}

@media all and (max-width: 1000px){
	.imgFlexItem:nth-child(1)
	{
		width: 170px;
	}

	.imgFlexItem:nth-child(2)
	{
		width: calc(100% - 170px);
	}
}