:root 
{
	--blau: #70c3c3;
	--midblau: #348a8a;
	--dunkelblau: #2a285e;
	--grau: #81919e;
	--dark: #192027;
}

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

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

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

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

h1, h2, h3
{
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.03em;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--blau);
	line-height: 1.45;
	font-size: 3.3em;
}

h2
{
	font-size: 2.2em;
	color: var(--dunkelblau);
}

h3
{
	font-size: 1.5em;
	color: var(--dunkelblau);
}

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

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

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

#header .wrap
{
	max-width: 1320px;
}

.wrap
{
	max-width: 1050px;
	display: block;
	margin: auto;
	padding: 0px 40px;
}

#header
{
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: #fff;
	box-shadow: 0px 0px 50px rgba(0,0,0,0.1);
}

#logo
{
	position: absolute;
	height: 125%;
	padding: 15px 0px 0px;
}

#navigation ul
{
	text-align: right;
	font-family: 'Oswald', sans-serif;
	font-weight: 300;
	text-transform: uppercase;
	font-size: 1.15em;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 25px;
	letter-spacing: 0.03em;
	padding: 40px 0px;
	position: relative;
}

#navigation ul li a
{
	color: var(--blau);
	text-decoration: none;
	transition: all 0.2s;
}

#navigation ul li.active a
{
	font-weight: 500;
	color: var(--dunkelblau);
}

#navigation ul li:hover a
{
	color: var(--dunkelblau);
}

#navigation ul li ul
{
	display: none;
	position: absolute;
	top: 79%;
	background-color: #fff;
	text-align: left;
	padding: 5px 25px 15px;
	left: -25px;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.08);
	border-bottom: 4px solid var(--blau);
	text-transform: uppercase;
	font-size: 1em;
}

#navigation ul li:hover ul
{
	display: block;
}

#navigation ul li ul li
{
	padding: 0;
	margin: 0;
	margin-top: 10px;
}

#navigation ul li ul li a
{
	display: block;
}

#navigation ul li:hover ul li a
{
	color: var(--blau);
}

#navigation ul li:hover ul li:hover a
{
	color: var(--dunkelblau);
}

#navigation ul li.active ul li a
{
	font-weight: 300;
}

#navigation ul li.active ul li.active a
{
	color: var(--dunkelblau);
}

#opener
{
	width: 100%;
	height: 68vh;
	background-size: cover;
	background-position: center;
	position: relative;
	max-height: 650px;
}

#wave
{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: -1px;
}

.text
{
	margin: 60px 0px;
}

.intro
{
	margin-top: 30px;
	margin-bottom: -30px;
}

.intro.noImg
{
	margin-top: 120px;
}

.intro + .withImg
{
	padding-top: 30px;
}

.divider
{
	width: 75px;
	height: 75px;
	background-image: url(icon.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	margin: auto;
}

.inline
{
	width: 100%;
	margin-bottom: -8px!important;
	border-radius: 0.3rem;
}

.imgContainer
{
	position: relative;
}

.wave
{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 1px;
	z-index: 1;
	display: none;
}

.textFlex
{
	display: flex;
	margin-left: -40px;
}

.textFlex.right
{
	flex-direction: row-reverse;
}

.textFlexItem
{
	width: 50%;
	margin-left: 40px;
}

.textBox
{
	padding: 35px 0px 40px 40px;
	background-color: #fff;
	margin-left: -80px;
	margin-top: 40px;
	position: relative;
	z-index: 100;
	box-shadow: -10px -10px 15px rgba(0,0,0,0.05);
	border-radius: 0.3rem;
}

.textFlex.right .textBox
{
	padding: 35px 40px 40px 0px;
	margin-left: 0;
	margin-right: -80px;
	box-shadow: 10px -10px 15px rgba(0,0,0,0.05);
}

.buttonArea
{
	margin-top: 30px;
}

.buttonArea p a, .withButton p a
{
	display: inline-block;
	background-color: var(--blau);
	line-height: 1.4;
	text-align: center;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-weight: 500;
	font-family: 'Oswald', sans-serif;
	padding: 0.8em 1.5em 0.85em;
	color: #fff!important;
	border-bottom: 0px solid transparent!important;
	text-decoration: none;
	transition: all 0.2s;
	font-size: 1.05em;
	border-radius: 0.3rem;
}

.buttonArea p a:hover, .withButton p a:hover, .accordeonOpener:hover, #topLink:hover
{
	background-color: var(--midblau);
}

.accordeonOpener
{
	display: block;
	background-color: var(--blau);
	line-height: 1.3;
	text-align: center;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-weight: 500;
	font-family: 'Oswald', sans-serif;
	padding: 0.8em 1.5em 0.85em;
	font-size: 1.05em;
	padding-right: 3em;
	color: #fff!important;
	text-decoration: none;
	transition: all 0.2s;
	cursor: pointer;
	text-align: left;
	background-image: url(down_white.svg);
	background-size: auto 28%;
	background-position: center right 1.4em;
	background-repeat: no-repeat;
}

.accordeonOpener.active
{
	background-image: url(up_white.svg);
}

.accordeonContent
{
	padding: 1.3em 1.5em 1em;
	display: none;
}

.withAccordeon + .withAccordeon
{
	margin-top: -40px;
}

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

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

.coloredTop
{
	width: 100%;
}

.colorTop
{
	display: flex;
}

.clear
{
	clear: both;
}

.coloredBottom
{
	width: 100%;
	float: left;
}

#footerWave
{
	width: 100%;
	margin-bottom: -10px;
}

#footer
{
	padding: 60px 0px;
	background-color: var(--blau);
	color: #fff;
	font-family: 'Oswald', sans-serif;
	font-size: 1.05em;
	text-transform: uppercase;
	letter-spacing: 0.03em;
}

#copy
{
	font-weight: 500;
	margin-bottom: 0.4em;
	display: block;
	line-height: 1.45;
}

#footerList li
{
	list-style: none;
	margin-top: 2px;
}

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

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

#footerFlex
{
	display: flex;
	margin-left: -40px;
	justify-content: center;
	align-items: center;
}

.footerFlexItem
{
	margin-left: 40px;
}

#footerFlex .footerFlexItem:nth-child(2)
{
	padding-left: 40px;
	border-left: 2px solid #fff;
}

#footerLogo
{
	width: 250px;
}

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

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

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

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

#socialFlex
{
	display: flex;
	color: #fff;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	font-weight: 500;
	font-size: 1.05em;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}

.instagram, .facebook
{
	display: block;
	width: 1.7em;
	height: 1.7em;
	margin-left: 40px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.instagram
{
	background-image: url(instagram.svg);
}

.facebook
{
	background-image: url(facebook.svg);
}

#cookieNotice
{
	position: fixed;
	width: 100%;
	padding: 20px 0px;
	background-color: #fff;
	left: 0;
	bottom: 0;
	z-index: 10000;
	border-top: 2px solid var(--blau);
	font-size: 0.85em;
}

#accepted
{
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.03em;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 1.05em;
	color: var(--blau);
	cursor: pointer;
	float: right;
	transition: all 0.2s;
}

#accepted:hover
{
	color: var(--dunkelblau);
}

#cookieSpace
{
	height: 40px;
	position: absolute;
	z-index: -10;
}

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

#cookieCheckboxes label
{
	position: relative;
	margin-right: 1.6em;
	padding-left: 1.4em;
	cursor: pointer;
}

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

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

.text #map ul li:before
{
	display: none;
}

.text ul li:before
{
	content: "";
	position: absolute;
	width: 0.4em;
	height: 0.4em;
	background-color: var(--blau);
	left: 0;
	top: 0.67em;
	border-radius: 100px;
}

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

.accordeonOpener.active + .accordeonContent
{
	display: block;
}

#headerSpace
{
	position: absolute;
	z-index: -10;
	height: 260px;
}

.flexArea
{
	width: calc(100% + 40px);
	display: flex;
	margin-left: -40px;
	margin-bottom: -40px;
	flex-wrap: wrap;
}

.person
{
	width: calc(25% - 40px);
	margin-left: 40px;
	margin-bottom: 40px;
}

.person img
{
	margin-bottom: 20px!important;
	display: block;
}

.download
{
	display: block;
	color: var(--blau);
	text-decoration: none;
	transition: all 0.2s;
	border-bottom: 1px dashed var(--blau);
	border-top: 1px dashed var(--blau);
	padding: 1.5em 0;
	font-family: 'Oswald', sans-serif;
	letter-spacing: 0.03em;
	font-weight: 300;
	font-size: 1.05em;
	text-transform: uppercase;
	position: relative;
	padding-left: 3.1em;
	line-height: 1.4;
}

.download:before
{
	content: "";
	position: absolute;
	width: 2.2em;
	height: 2.2em;
	background-color: var(--blau);
	border-radius: 100px;
	background-image: url(download.svg);
	background-size: 45%;
	background-position: center;
	background-repeat: no-repeat;
	left: 0;
	top: 1.07em;
	transition: all 0.2s;
}

.download:hover:before
{
	background-color: var(--midblau);
	transform: scale(1.15);
}

.download:hover
{
	color: var(--midblau);
}

.withDownload + .withDownload
{
	margin-top: -60px;
}

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

.withDownload + .withDownload .download
{
	border-top: none;
}

.youtube
{
	width: 100%;
	border: none;
	display: none;
}

.slideshow .slide:first-child
{
	padding-bottom: 60px;
}

.slide
{
	width: 100%;
}

.slide .inline
{
	margin-bottom: 0!important;
}

#form
{
	max-width: 720px;
	position: relative;
	padding-top: 210px;
	margin-top: -210px;
}

form label
{
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-weight: 500;
	font-size: 1.1em;
	font-family: 'Oswald', sans-serif;
	color: var(--blau);
	display: block;
	margin-bottom: 0.3em;
}

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;
   	color: var(--dark);
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	border-radius: 0.3rem;
}

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

input[type = "text"], input[type = "email"], textarea
{
	border: 1px solid rgba(0,0,0,0.15);
	padding: 0.7em 1.2em;
}

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

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

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

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfe deine Eingaben.";
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-weight: 500;
	font-family: 'Oswald', sans-serif;
	font-size: 1.1em;
	color: red;
	display: block;
	margin-bottom: 0.3em;
}

.alert.alert-danger
{
	margin-bottom: 2em;
}

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

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

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

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

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

form button
{
	display: inline-block;
	background-color: var(--blau);
	line-height: 1.4;
	text-align: center;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-weight: 500;
	font-family: 'Oswald', sans-serif;
	padding: 0.8em 1.5em 0.85em;
	color: #fff!important;
	border-bottom: 0px solid transparent!important;
	text-decoration: none;
	transition: all 0.2s;
	width: auto;
	cursor: pointer;
	margin-top: 1.5em;
	font-size: 1.05em;
	border-radius: 0.3rem;
}

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

.colored a
{
	color: #fff!important;
	border-bottom: 1px dashed #fff!important;
}

.colored a:hover
{
	border-bottom: 1px solid #fff!important;
}

#map
{
	width: 100%;
	height: 80vh;
	min-height: 550px;
	max-height: 650px;
	display: none;
}

#topLink
{
	text-align: center;
	display: block;
	width: 100%;
	color: #fff;
	text-decoration: none;
	transition: all 0.2s;
	padding: 0.55em 0em;
	background-color: var(--blau);
	white-space: nowrap;
	letter-spacing: 0.03em;
	text-transform: uppercase;
	font-weight: 300;
	font-family: 'Oswald', sans-serif;
}

.infoBox
{
	position: relative;
	border-radius: 0.3rem;
	padding: 18px 25px;
	border: 2px solid var(--blau);;
}

.infoBox:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	border-radius: 0.3rem;
	background-color: var(--blau);
	opacity: 0.2;
}

@media all and (max-width: 500px){
	#socialFlex span
	{
		display: block;
		width: 100%;
		text-align: center;
		margin-bottom: 16px;
	}

	.instagram, .facebook
	{
		margin-left: 15px;
		margin-right: 15px;
	}

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

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

	h3
	{
		font-size: 1.3em!important;
	}

	.person
	{
		width: calc(100% - 40px)!important;
	}

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

@media all and (max-width: 580px){
	.textFlex
	{
		display: block;
		margin-left: 0;
	}

	.textFlexItem
	{
		width: 100%;
		margin-left: 0;
	}

	.textBox
	{
		margin-left: 0!important;
		padding: 0!important;
		box-shadow: 0px 0px 0px transparent!important;
		margin-top: 25px;
	}

	.textFlex.right .textBox
	{
		margin-right: 0!important
	}

	#map
	{
		height: 75vh;
		min-height: 450px;
	}
}

@media all and (max-width: 650px){
	#opener
	{
		height: 38vh!important;
		min-height: 230px;
	}
}

@media all and (max-width: 700px){
	#footerFlex
	{
		display: block;
		margin-left: 0;
	}

	.footerFlexItem
	{
		width: 100%;
		text-align: center;
		margin-left: 0;
	}

	#footerFlex .footerFlexItem:nth-child(2)
	{
		padding-left: 0px;
		border-left: 0px solid transparent;
	}

	#footerLogo
	{
		margin-bottom: 1.5em;
	}

	#footerLogo
	{
		width: 180px!important;
	}

	#footerList li
	{
		margin-top: 1px;
	}
}

@media all and (max-width: 980px){
	.person
	{
		width: calc(50% - 40px);
	}
}

@media all and (max-width: 1160px){
	#navigation
	{
		display: none;
		position: fixed;
		top: 65px;
		left: 0;
		width: 100%;
		background-color: #fff;
		border-bottom: 4px solid var(--dunkelblau);
		max-height: calc(100% - 65px);
		overflow-y: auto;
		text-align: center;
		padding: 0px 40px;
	}

	#navigation ul li
	{
		display: block;
		padding: 0;
		margin-left: 0;
		margin-top: 10px;
		margin-bottom: 13px;
		padding-bottom: 13px;
		text-align: left;
		border-bottom: 1px solid var(--dunkelblau);
		text-align: right;
	}

	#navigation ul li:first-child
	{
		border-top: 1px solid var(--dunkelblau);
		padding-top: 13px;
		margin-top: 0;
	}

	#navigation ul li:last-child
	{
		border-bottom: none;
		padding-bottom: 0;
	}

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

	#navigation ul li ul
	{
		position: relative;
		display: block;
		top: 0;
		left: 0;
		box-shadow: 0px 0px 0px transparent;
		padding: 0;
		text-align: center;
		margin-bottom: 0px;
		font-size: 0.9em;
		margin-top: 4px;
		border-bottom: 0px solid var(--dunkelblau);
		padding-right: 0;
		display: none;
	}

	#navigation ul li:hover ul
	{
		display: none;
	}

	#navigation ul li ul li
	{
		margin-top: 0;
		margin-bottom: 3px;
		border-bottom: none;
		padding-bottom: 0;
	}

	#navigation ul li ul li:first-child
	{
		border-top: none;
		padding-top: 0;
	}

	#navigation ul li ul li:last-child
	{
		margin-bottom: 0;
	}

	.subNavOpener
	{
		position: absolute;
		width: 64px;
		height: 64px;
		right: 0;
		top: -14px;
		cursor: pointer;
		background-image: url(down.svg);
		background-size: 24%;
		background-repeat: no-repeat;
		background-position: center right;
	}

	.subNavOpener.active
	{
		background-image: url(up.svg);
	}

	#navOpener
	{
		position: absolute;
		right: 40px;
		top: calc(50% + 24px);
		transform: translateY(-50%);
		width: 26px;
		height: 20px;
		cursor: pointer;
		z-index: 2000;
	}

	.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);
	}

	#header .wrap
	{
		height: 80px;
	}

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

	#headerSpace
	{
		height: 210px;
	}

	#opener
	{
		height: 60vh;
	}

	h1
	{
		font-size: 2.5em;
	}

	h2
	{
		font-size: 1.7em;
	}

	h3
	{
		font-size: 1.45em;
	}

	.divider
	{
		width: 50px;
		height: 50px;
	}

	.text
	{
		margin: 40px 0px;
	}

	.slideshow .slide:first-child
	{
		padding-bottom: 40px;
	}

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

	.withDownload + .withDownload
	{
		margin-top: -40px;
	}

	.withAccordeon + .withAccordeon
	{
		margin-top: -25px;
	}

	.buttonArea
	{
		margin-top: 20px;
	}

	#footer
	{
		padding: 40px 0px;
	}

	#social
	{
		padding: 25px 0px;
	}

	.colored 
	{
		padding: 40px 0px;
		margin: 0px 0px;
	}

	.textBox
	{
		padding: 26px 0px 30px 30px;
		margin-left: -70px;
	}

	.textFlex.right .textBox
	{
		padding: 26px 30px 30px 0px;
		margin-right: -70px;
	}

	#footerLogo
	{
		width: 210px;
	}

	.intro
	{
		margin-top: 30px;
		margin-bottom: -20px;
	}

	.intro.noImg
	{
		margin-top: 70px;
	}

	.intro + .withImg
	{
		padding-top: 20px;
	}

	#logo
	{
		height: 125%;
		padding-top: 10px;
		left: 35px;
		z-index: 1000;
	}

	#navigation ul
	{
		padding-top: 65px;
	}
}

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

	#navigation ul li.firstLevel:last-child a
	{
		display: inline-block;
		background-color: var(--dunkelblau);
		line-height: 1.4;
		text-align: center;
		letter-spacing: 0.03em;
		text-transform: uppercase;
		font-weight: 300;
		font-family: 'Oswald', sans-serif;
		padding: 0.6em 1.2em 0.65em;
		color: #fff!important;
		font-size: 0.95em;
		border-radius: 0.3rem;
	}

	#navigation ul li.firstLevel:last-child a:hover
	{
		background-color: #191847;
	}
}

@media all and (min-width: 1151px) and (max-width: 1250px){
	#navigation ul li
	{
		margin-left: 20px;
	}
}