:root 
{
	--theme: #00519f;
	--darktheme: #002c51;
	--grey: #e4ecf4;
	--dark: #1d1d1b;
}

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

body 
{
	font-size: 1.25em;
	color: var(--dark);
	font-family: 'Inter';
	font-weight: 300;
	line-height: 1.6;
	overflow-x: hidden;
}

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

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

h1, h2, h3
{
	line-height: 1.35;
	font-weight: 700;
	font-family: 'Cabin';
}

h1
{
	font-size: 3em;
	color: #fff;
	background-color: var(--theme);
	display: inline;
	line-height: 1.6;
	padding: 0.05em 0.26em 0.04em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	-moz-box-decoration-break: clone;
}

h2
{
	font-size: 2.2em;
}

h3
{
	font-size: 1.8em;
}

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

.text.big p, .text.big ul
{
	font-size: 1.3em;
}

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

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

#opener p
{
	max-width: 50%;
	padding-right: 40px;
}

#header
{
	position: absolute;
	width: 100%;
	left: 0;
	top: 0;
}

#header.subpage
{
	position: relative;
}

#header .wrap
{
	height: 120px;
}

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

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

#opener
{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	position: relative;
}

#openerImg
{
	position: absolute;
	width: 50%;
	height: 100%;
	right: 0;
	top: 0;
	z-index: -10;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#openerContent
{
	width: 100%;
	padding: 120px 0px 50px;
}

#down
{
	position: absolute;
	width: 40px;
	height: 40px;
	border-left: 6px solid var(--theme);
	border-bottom: 6px solid #fff;
	left: 50%;
	transform: translateX(-50%) rotate(-45deg);
	bottom: 100px;
}

strong
{
	font-weight: 700;
}

.colored
{
	padding: 100px 0px;
	background-color: var(--grey);
}

.text
{
	margin: 100px 0px;
}

#opener + .text.colored
{
	margin-top: 0;
}

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

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

.buttonArea
{
	margin-top: 30px;
}

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

.animatedButton
{
	animation-name: zoomButton;
	animation-duration: 1.2s;
	animation-iteration-count: infinite;
}

@keyframes zoomButton
{
	0%
	{
		transform: scale(1);
	}

	50%
	{
		transform: scale(1.08);
	}

	100%
	{
		transform: scale(1);
	}
}

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

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

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

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

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

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

.textBox
{
	margin-top: 40px;
	padding-top: 35px;
	position: relative;
}

.textBox:before
{
	content: "";
	position: absolute;
	width: 150%;
	height: 5px;
	background-color: var(--theme);
	right: 0;
	top: 0;
}

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

.colored + .dividerImg
{
	margin-top: -100px;
}

.dividerImg
{
	padding: 250px 0px;
	background-size: cover;
	background-position: top center;
	position: relative;
	color: #fff;
}

.dividerImg .wrap
{
	z-index: 100;
}

.dividerImg:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: rgba(0,0,0,0.2);
}

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

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

#footerList
{
	text-align: right;
}

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

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

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

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

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

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

#cookieBox
{
	padding: 33px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	max-width: 450px;
	overflow: auto;
	display: block;
	margin: auto;
	position: relative;
	background-color: #fff;
	border-radius: 0.3em;
}

#cookieBoxInner
{
	position: relative;
	z-index: 100;
}

#acceptWrap
{
	text-align: center;
}

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

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

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

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

.small
{
	font-size: 0.85em!important;
	margin-top: 1.5em;
}

.questions
{
	margin-top: -70px;
}

.question
{
	display: block;
	width: 100%;
	text-align: center;
	font-size: 1.3em;
	color: var(--dark);
	text-decoration: none;
	border: 3px solid var(--theme);
	border-radius: 0.3em;
	padding: 0.75em 1.4em;
	color: var(--theme);
	transition: all 0.2s;
	font-weight: 500;
}

.question:hover
{
	background-color: var(--theme);
	color: #fff;
}

.question + .question
{
	margin-top: 20px;
}

.step
{
	padding: 10px 0px;
	background-color: var(--theme);
	color: #fff;
	font-size: 0.85em;
	margin-bottom: -17px;
}

#header + .text
{
	margin-top: 60px;
}

#form
{
	padding-top: 80px;
	margin-top: -140px;
}

form label
{
	font-family: 'Cabin';
	color: var(--dark);
	font-weight: 700;
	display: block;
	margin-bottom: 0.1em;
	font-size: 1.1em;
}

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: 'Inter';
   	line-height: 1.4;
   	color: var(--dark);
   	font-weight: 300;
   	background-color: transparent;
}

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

input[type = "text"], input[type = "email"], textarea
{
	display: block;
	width: 100%;
	color: var(--dark);
	text-decoration: none;
	border: 3px solid var(--grey);
	border-radius: 0.3em;
	padding: 0.9em 1.4em;
	color: var(--theme);
	transition: all 0.2s;
}

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

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

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingaben.";
	font-weight: 700;
	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.5em;
}

.checkbox label
{
	font-family: 'Inter';
	color: var(--dark);
	font-weight: 300;
	cursor: pointer;
	text-transform: none;
	line-height: 1.6;
	font-size: 1em;
}

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

button
{
	display: block;
	width: 100%;
	text-align: center;
	color: #fff!important;
	border-bottom: none!important;
	padding: 0.9em 1.4em 0.95em;
	border-radius: 0.3em;
	background-color: var(--theme);
	transition: all 0.2s;
	text-decoration: none;
	font-weight: 500;
	width: 100%;
	cursor: pointer;
	margin-top: 1.25em;
	font-size: 1.3em;
}

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

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

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

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

	.textBox
	{
		padding-top: 0;
		margin-top: 30px;
	}

	.textBox:before
	{
		display: none;
	}

	.dividerImg
	{
		padding: 100px 0px!important;
	}

	#copy
	{
		position: relative;
		display: block;
	}

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

	#footerList
	{
		text-align: left;
	}

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

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

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

	h1 + p, .text.big p, .text.big ul, .question, button
	{
		font-size: 1em!important;
	}
}

@media all and (max-width: 900px){
	#opener
	{
		color: #fff;
		min-height: auto;
	}

	#openerImg
	{
		width: 100%;
	}

	#opener p
	{
		max-width: 100%;
		padding-right: 0;
	}

	#header
	{
		background-color: #fff;
		position: relative;
	}

	#header .wrap
	{
		height: 90px;
	}

	#logo
	{
		padding: 25px 0px;
	}

	#openerContent
	{
		padding: 100px 0px;
	}

	#openerImg:after
	{
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		z-index: 10;
		background-color: rgba(0,0,0,0.4);
	}

	#down
	{
		width: 25px;
		height: 25px;
		border-left: 4px solid #fff;
		border-bottom: 4px solid #fff;
		bottom: 40px;
	}

	h1
	{
		font-size: 2.4em;
	}

	h2
	{
		font-size: 1.8em;
	}

	h3
	{
		font-size: 1.6em;
	}

	h1 + p, .text.big p, .text.big ul, .question, button
	{
		font-size: 1.2em;
	}

	.text
	{
		margin: 50px 0px;
	}

	.colored
	{
		padding: 50px 0px;
	}

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

	.buttonArea
	{
		margin-top: 25px;
	}

	.colored + .dividerImg
	{
		margin-top: -50px;
	}

	.dividerImg
	{
		padding: 150px 0px;
	}

	#footer
	{
		padding: 30px 0px;
	}

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

	.step
	{
		margin-bottom: -12px;
	}

	#header + .text
	{
		margin-top: 20px;
	}

	#form
	{
		padding-top: 35px;
		margin-top: -55px;
	}
}

@media all and (min-width: 1450px){
	.dividerImg
	{
		padding: 380px 0px;
	}
}