/*
	HELLBLAU:     #34baed;
	DUNKELBLAU:   #055597;
	GRAU: 		  #6d6d6d;
*/

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

body 
{
	font-size: 100%;
	color: #6d6d6d;
	font-family: 'Lato', sans-serif;
	font-weight: 300;
	overflow-x: hidden;
}

h1, h2, h3
{
	font-family: 'Raleway', sans-serif;
	line-height: 1.2;
}

h1
{
	font-weight: 600;
	color: #055597;
	text-transform: uppercase;
	font-size: 3em;
}

h2
{
	font-weight: 600;
	color: #34baed;
	text-transform: uppercase;
	font-size: 1.5em;
}

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

#sideCol
{
	width: 280px;
	position: fixed;
	height: 100%;
	left: 0px;
	top: 0px;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
	background-color: #fff;
	z-index: 1000;
	overflow: auto;
}

#mainCol 
{
	width: calc(100% - 280px);
	margin-left: 280px;
}

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

#navigation ul li
{
	display: block;
	list-style: none;
}

#navigation ul li a
{
	color: #055597;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 600;
	display: block;
	border-bottom: 1px solid #e0e0e0;
	padding: 10px 30px;
	transition: all 0.2s;
}

#navigation ul li ul li a
{
	padding-left: 45px;
	font-size: 0.9em;
	color: #6d6d6d;
}

#navigation ul li.active a, #navigation ul li:hover a
{
	color: #34baed;
}

#navigation ul li.active ul li a, #navigation ul li:hover ul li a
{
	color: #969696;
}

#navigation ul li.active ul li a:hover, #navigation ul li:hover ul li a:hover
{
	color: #34baed;
}

#navigation ul li.active ul li.active a, #navigation ul li:hover ul li.active a
{
	color: #34baed;
}

#navigation ul li ul li.active a
{
	color: #34baed;
}

#openerImg
{
	width: 100%;
	height: 60vh;
	background-size: cover;
	background-position: center;
	position: relative;
}

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

.text
{
	margin: 60px 0px;
}

.wrap
{
	position: relative;
	max-width: 900px;
	display: block;
	margin: auto;
	padding: 0px 30px;
}

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

.text ul li:before
{
	content: "";
	position: absolute;
	left: 0px;
	top: 0.55em;
	width: 0.5em;
	height: 0.5em;
	background-color: #34baed;
}

.text p, .text ul, #form
{
	font-size: 1.05em;
}

#pattern
{
	width: 100%;
	position: absolute;
	left: 0;
	bottom: -2px;
}

.divider
{
	position: relative;
	height: 1px;
}

.divider:after
{
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 40px;
	height: 40px;
	background-image: url(divider.svg);
	background-size: 100%;
	background-position: center;
	border: 10px solid #fff;
	border-radius: 100px;
}

.divider:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #969696;
	top: 50%;
	transform: translateY(-50%);
	left: 0px;
}

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

.button, button
{
	text-transform: uppercase;
	font-weight: 600;
	font-size: 1.05em;
	background-color: #34baed;
	color: #fff;
	padding: 0.8em 1.2em;
	text-decoration: none;
	display: inline-block;
	transition: all 0.2s;
	cursor: pointer;
}

.button:hover, button:hover
{
	background-color: #055597;
}

#footer
{
	background-color: #34baed;
	color: #fff;
	font-size: 1.05em;
	font-weight: 600;
	text-transform: uppercase;
	padding: 30px 0px;
	position: relative;
}

#footerIcon 
{
	position: absolute;
	right: 30px;
	width: 130px;
	bottom: 15px;
}

#footerPattern
{
	width: 100%;
	margin-bottom: -8px;
}

.text img
{
	width: 100%;
}

#cookieNotice
{
	position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 3000000;
	background-color: #34baed;
	padding: 15px 0px;
	font-size: 0.9em;
	color: #fff;
}

#cookieNotice a
{
	color: #fff;
	text-decoration: none;
	text-decoration: underline;
}

strong
{
	font-weight: 600;
}

#cookieSpace
{
	height: 30px;
	position: absolute;
	z-index: -100;
}

.text p a, .text ul a, #form a
{
	color: #34baed;
	transition: all 0.2s;
}

.text p a:hover, .text ul a:hover, #form a
{
	color: #055597;
}

#accepted
{
	font-weight: 800;
	display: inline-block;
	margin-top: 1em;
	cursor: pointer;
}

#mobileHeader
{
	display: none;
}

#desktopHeader
{
	display: block;
}

#form
{
	padding-top: 60px;
	margin-top: -60px;
	width: 100%;
}

label
{
	color: #34baed;
	font-family: 'Raleway', sans-serif;
	font-weight: 600;
	text-transform: uppercase;
	display: block;
	margin-bottom: 0.8em;
}

.checkbox label
{
	color: #6d6d6d;
	font-family: 'Lato';
	line-height: 1.6;
	font-weight: 300;
	cursor: pointer;
	text-transform: none;
}

.checkbox input
{
	cursor: pointer;
}

button
{
	width: auto!important;
}

input[type = "text"], input[type = "email"], textarea, button
{
	-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.6;
}

input, textarea
{
	color: #6d6d6d;
}

input[type = "text"], input[type = "email"], textarea
{
	border: 1px solid #6d6d6d;
	padding: 0.7em;
	transition: box-shadow 0.3s;
}

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

input:focus, textarea:focus
{
	border-color: #34baed;
}

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

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingabe.";
	font-weight: 800;
	text-transform: uppercase;
	font-family: "Raleway", sans-serif;
	color: red;
	display: block;
	margin-bottom: 1.2em;
	line-height: 1.2;
}

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

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

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

.alert.alert-danger ul li:before
{
	content: "";
	width: 0.5em;
	height: 0.5em;
	background-color: red!important;
	position: absolute;
	left: 0px;
	top: 0.6em;
}

button
{
	margin-top: 0.8em!important;
}

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

.checkbox input
{
	position: absolute;
	left: 0px;
	top: 0.5em;
}

@media all and (max-width: 600px){
	h1
	{
		font-size: 1.8em;
	}

	h2
	{
		font-size: 1.3em;
	}

	#openerImg
	{
		height: 55vh;
		min-height: 260px;
	}

	.text
	{
		margin: 50px 0px;
	}

	.withButton
	{
		margin-top: -25px;
	}

	.divider:after
	{
		width: 32px;
		height: 32px;
	}

	#footerIcon 
	{
		width: 100px;
		top: -25px;
		bottom: auto;
		right: 20px;
	}

	#footer
	{
		padding-right: 100px;
		padding-top: 25px;
		padding-bottom: 25px;
		line-height: 1.2;
	}

	textarea
	{
		height: 10em;
	}
}

@media all and (max-width: 850px){
	#sideCol
	{
		left: -280px;
		transition: left 0.2s;
		z-index: 2000000;
		padding-top: 90px;
		padding-bottom: 20px;
		overflow: auto;
	}

	#sideCol.visible
	{
		left: 0;
	}

	#mainCol
	{
		width: 100%;
		margin-left: 0;
	}

	#desktopHeader
	{
		display: none;
	}

	#mobileHeader
	{
		position: fixed;
		width: 100%;
		top: 0px;
		left: 0px;
		background-color: #fff;
		height: 80px;
		box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
		z-index: 10000000000;
		display: block;
	}

	#logo
	{
		height: 100%;
		width: auto;
		left: 50%;
		transform: translateX(-50%);
		padding: 10px 0px;
		position: absolute;
	}

	#openerImg
	{
		margin-top: 80px;
	}

	#burger
	{
		position: absolute;
		width: 30px;
		height: 20px;
		top: 50%;
		transform: translateY(-50%);
		right: 30px;
		cursor: pointer;
		z-index: 200000;
	}

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

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

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

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

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

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

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

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