:root 
{
	--theme: #0063b5;
	--lighttheme: #00cde8;
	--dark: #031c2d;
	--light: #ebfdff;
}

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

body 
{
	font-size: 1.2em;
	color: var(--dark);
	font-family: 'Ubuntu';
	font-weight: 300;
	line-height: 1.7;
	overflow-x: hidden;
}

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

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

h1
{
	font-weight: 700;
	color: #fff;
	line-height: 1.4;
	background-color: var(--lighttheme);
	display: inline;
	font-size: 3em;
	padding: 0.2em 0.4em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	-moz-box-decoration-break: clone;
}

h2, h3
{
	line-height: 1.35;
	font-weight: 500;
	font-size: 2.2em;
	color: var(--theme);
}

h3
{
	font-size: 1.8em;
}

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

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

h2 + .textFlex
{
	margin-top: 1em;
}

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

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

#header
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	background-color: #fff;
	box-shadow: 0px 0px 40px rgba(0,0,0,0.05);
	border-top: 6px solid var(--theme);
}

#navigation ul
{
	text-align: right;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 40px;
	padding: 50px 0px;
}

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

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

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

#logo
{
	position: absolute;
	height: 100%;
	padding: 5px 0px 2px;
}

#opener
{
	padding: 160px 0px;
	background-size: cover;
	background-position: center;
	position: relative;
}

#openerContent
{
	position: relative;
	z-index: 25;
	color: #fff;
}

#openerWrap
{
	max-width: 800px;
}

#openerWrap p
{	
	line-height: 1.5;
	margin-bottom: -1em;
}

#openerWrap .buttonArea
{
	margin-top: calc(1em + 30px);
}

#opener:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: var(--dark);
	opacity: 0.25;
}

#down
{
	position: absolute;
	width: 2px;
	height: 80px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	z-index: 20;
}

#down:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 50%;
	top: 100%;
	left: 0;
	background-color: var(--theme);
}

#down:before
{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	border-left: 2px solid var(--theme);
	border-bottom: 2px solid var(--theme);
	top: calc(150% - 12px);
	left: 50%;
	transform: translateX(-50%) rotate(-45deg);
}

.text
{
	margin: 80px 0px;
}

.divider
{
	width: 100%;
	height: 50px;
	background-image: url(icon.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.inline
{
	width: 100%;
	margin-bottom: -10px!important;
}

.imgFlex
{
	display: flex;
}

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

.right .textBox:before
{
	left: 0;
	right: auto;
}

.imgFlex .imgFlexItem:nth-child(1)
{
	width: 40%;
}

.imgFlex .imgFlexItem:nth-child(2)
{
	width: 60%;
}

.imgFlex .inline
{
	margin-top: 60px;
}

.textBox
{
	padding: 50px 60px;
	position: relative;
}

.textBox .buttonArea
{
	margin-bottom: 10px;
}

.textBox:before
{
	content: "";
	position: absolute;
	width: 120%;
	height: 100%;
	right: 0;
	top: 0;
	z-index: -1;
	box-shadow: 0px 0px 80px rgba(0,0,0,0.05);
	border-bottom: 6px solid var(--lighttheme);
}

.text.withButton p a, .text .buttonArea p a, .buttonArea p a, #accepted
{
	display: inline-block;
	line-height: 1.35;
	text-align: center;
	font-weight: 500;
	color: #fff!important;
	border-bottom: none!important;
	background-color: var(--lighttheme);
	padding: 0.6em 1.2em;
	text-decoration: none;
	transition: all 0.2s;
}

.text.withButton p a:hover, .text .buttonArea p a:hover, .buttonArea p a:hover, #accepted:hover
{
	background-color: var(--theme);
}

.buttonArea
{
	margin-top: 30px;
}

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

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

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

.colored
{
	padding: 80px 0px;
	background-color: var(--light);
}

.text.colored
{
	margin: 0;
}

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

#footer
{
	padding: 45px 0px 43px;
	color: #fff;
	background-color: var(--theme);
	font-size: 0.85em;
}

#copy
{
	position: absolute;
	font-weight: 500;
}

#footerList
{
	text-align: right;
}

#footerList li
{
	display: inline-block;
	margin-left: 40px;
}

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

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

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

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

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

#cookieBox
{
	padding: 30px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	background-color: #fff;
	max-width: 440px;
	overflow: auto;
	border-bottom: 8px solid var(--theme);
	display: block;
	margin: auto;
}

#acceptWrap
{
	text-align: center;
}

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

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

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

#accepted
{
	margin-top: 0.6em;
	cursor: pointer;
}

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

form
{
	display: flex;
	flex-wrap: wrap;
	margin-left: -40px;
}

form div
{
	width: 50%;
	padding-left: 40px;
}

form label
{
	font-family: 'Ubuntu', sans-serif;
	color: var(--theme);
	font-weight: 500;
	display: block;
	margin-bottom: 0.2em;
}

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: 'Ubuntu', sans-serif;
   	line-height: 1.6;
   	color: var(--dark);
   	font-weight: 300;
   	background-color: transparent;
}

input, textarea
{
	color: var(--dark);
	margin-bottom: 1.2em;
	transition: border-color 0.2s;
}

input[type = "text"], input[type = "email"], textarea
{
	border: 1px solid var(--light);
	padding: 0.5em 1.2em;
	background-color: var(--light);
}

input:focus, textarea:focus
{
	border-color: var(--lighttheme);
	outline: 1px solid var(--lighttheme);
}

textarea
{
	height: 12em;
	resize: none;
	margin-bottom: 1em;
}

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingaben.";
	font-weight: 500;
	color: red;
	display: block;
}

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

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

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

.checkbox
{
	position: relative;
	padding-left: 1.2em;
	margin-left: 40px;
}

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

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

#yform-formular-nachricht, #yform-formular-accept, .alert
{
	width: 100%;
}

button
{
	display: inline-block;
	line-height: 1.35;
	text-align: center;
	font-weight: 500;
	color: #fff!important;
	border-bottom: none!important;
	background-color: var(--lighttheme);
	padding: 0.6em 1.2em;
	text-decoration: none;
	transition: all 0.2s;
	cursor: pointer;
	margin-top: 1.2em;
	margin-left: 40px;
	width: auto;
}

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

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

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

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

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

	.imgFlexItem
	{
		width: 100%!important;
	}

	.textBox:before
	{
		width: 100%;
	}

	.imgFlex .inline
	{
		margin-top: 0!important;
	}

	.divider
	{
		height: 35px!important;
	}

	#down
	{
		height: 40px!important;
	}

	#opener
	{
		padding: 80px 0px!important;
	}

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

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

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

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}

	.textFlex
	{
		margin-left: 0;
	}

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

@media all and (max-width: 820px){
	#copy
	{
		position: relative;
		display: block;
	}

	#footerList
	{
		text-align: left;
		margin-bottom: -1px;
	}

	#footerList li
	{
		display: block;
		margin-left: 0;
	}
}

@media all and (max-width: 1000px){
	#navigation
	{
		display: none;
		position: fixed;
		width: 100%;
		left: 0;
		top: 87px;
		border-bottom: 1px solid var(--light);
		background-color: #fff;
		max-height: calc(100vh - 87px);
		overflow: auto;
	}

	#navigation ul
	{
		padding: 0px 40px 7px;
	}

	#navigation ul li
	{
		display: block;
		margin-left: 0;
		padding: 0;
		margin-bottom: 2px;
	}

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

	.line
	{
		position: absolute;
		width: 100%;
		height: 3px;
		background-color: var(--lighttheme);
		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: 90px;
	}

	#logo
	{
		padding: 4px 0px 0px;
	}

	.text
	{
		margin: 40px 0px;
	}

	.colored
	{
		padding: 40px 0px;
	}

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

	.buttonArea
	{
		margin-top: 20px;
	}

	#openerWrap p
	{	
		margin-bottom: -0.2em;
	}

	#openerWrap .buttonArea
	{
		margin-top: calc(0.2em + 20px);
	}

	#opener
	{
		padding: 120px 0px;
	}

	#down
	{
		height: 50px;
	}

	.divider
	{
		height: 40px;
	}

	.textBox
	{
		padding: 30px 40px;
	}

	.imgFlex .inline
	{
		margin-top: 40px;
	}

	#footer
	{
		padding: 25px 0px;
	}

	h1
	{
		font-size: 2.4em;
	}

	h2
	{
		font-size: 1.8em;
	}

	h3
	{
		font-size: 1.6em;
	}

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

	button
	{
		margin-top: 1.1em;
	}
}

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

@media all and (min-width: 1450px){
	#opener
	{
		padding: 200px 0px;
	}
}