:root 
{
	--rot: #e30613;
	--dunkelrot: #bc0012;
	--dark: #000000;
	--grau: #c9c9c9;
}

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

html
{
	overflow-x: hidden;
}

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

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

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

h1, h2, h3
{
	font-family: 'Nunito', sans-serif;
	font-size: 3.5em;
	letter-spacing: 0.02em;
	font-weight: 800;
	line-height: 1.25;
}

h2
{
	font-size: 1.85em;
}

h3
{
	font-size: 1.6em;
}

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

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

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

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

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

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

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

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

#navArea
{
	display: flex;
	justify-content: flex-end;
}

#ecke
{
	position: absolute;
	height: 100%;
	top: 0;
	right: calc(100% - 1px);
}

#navigation
{
	background-color: var(--rot);
	position: relative;
	font-family: 'Nunito', sans-serif;
}

#navigation:after
{
	content: "";
	position: absolute;
	width: 100vw;
	height: 100%;
	left: 100%;
	top: 0;
	background-color: var(--rot);
}

#navigation ul
{
	text-align: right;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 30px;
	padding: 20px 0px 17px;
	text-transform: uppercase;
}

#navigation ul li:first-child
{
	margin-left: 25px;
}

#navigation ul li a
{
	color: #fff;
	text-decoration: none;
	letter-spacing: 0.02em;
}

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

#logo
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	height: 250%;
	padding: 0px 0px;
	z-index: 100;
}

#openerTitle
{
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 10;
	line-height: 1.3;
}

#openerTitle span:before
{
	content: "";
	position: absolute;
	width: 100vw;
	height: 100%;
	background-color: var(--rot);
	top: 0;
	right: 100%;
}

#openerTitle span
{
	background-color: var(--rot);
	color: #fff;
	display: inline-block;
	font-family: 'Nunito', sans-serif;
	letter-spacing: 0.02em;
	font-weight: 800;
	font-size: 1.6em;
	position: relative;
	padding: 20px 12px 18px 0px;
}

#eckeWhite
{
	position: absolute;
	height: 100%;
	left: calc(100% - 1px);
	top: 0;
}

.text
{
	margin: 60px 0;
}

.text.intro
{
	margin-bottom: -40px;
}

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

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

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

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

.textBox
{
	padding: 10px 0px 10px 10px;
	margin-left: -80px;
	margin-top: 40px;
	background-color: #fff;
	z-index: 10;
}

.imgFlex.right .textBox
{
	padding: 10px 10px 10px 0px;
	margin-left: auto;
	margin-right: -80px;
}

.textBoxInner
{
	padding: 40px 0px 40px 40px;
	border-left: 3px solid var(--rot);
	border-top: 3px solid var(--rot);
}

.imgFlex.right .textBoxInner
{
	padding: 40px 40px 40px 0px;
	border-right: 3px solid var(--rot);
	border-top: 3px solid var(--rot);
	border-left: none;
}

.buttonArea
{
	margin-top: 30px;
}

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

.buttonArea p a, .text.withButton p a
{
	display: inline-block;
	color: #fff!important;
	background-color: var(--rot);
	padding: 0.5em 1.5em;
	text-decoration: none;
	font-family: 'Nunito', sans-serif;
	letter-spacing: 0.02em;
	font-weight: 800;
	transition: all 0.2s;
	border-bottom: 0px solid transparent!important;
}

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

strong
{
	font-weight: 600;
}

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

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

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

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

#footer
{
	background-color: var(--rot);
	padding: 30px 0px 28px;
	color: #fff;
	font-family: 'Nunito', sans-serif;
	letter-spacing: 0.02em;
}

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

#footerList 
{
	text-align: right;
}

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

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

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

#ostfriesland
{
	position: absolute;
	right: 0;
	width: 60%;
	max-width: 650px;
	bottom: 0;
	z-index: -10;
	opacity: 0.3;
}

#pageEnd
{
	position: relative;
}

#cookieNotice
{
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	z-index: 500;
	background-color: #fff;
	padding: 20px 0px;
	font-size: 0.85em;
	box-shadow: 0px 0px 20px rgba(0,0,0,0.08);
}

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

#accepted
{
	font-family: 'Nunito', sans-serif;
	letter-spacing: 0.02em;
	font-weight: 800;
	cursor: pointer;
	color: var(--rot);
	float: right;
	transition: all 0.2s;
	text-transform: uppercase;
}

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

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

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

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

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

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

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

form label
{
	font-family: 'Nunito', sans-serif;
	letter-spacing: 0.02em;
	font-weight: 800;
	color: var(--rot);
	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;
   	font-family: 'Open Sans', sans-serif;
   	line-height: 1.6;
   	color: var(--dark);
   	font-weight: 300;
}

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

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

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

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

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

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingaben.";
	font-family: 'Nunito', sans-serif;
	letter-spacing: 0.02em;
	font-weight: 800;
	color: var(--rot);
	display: block;
	margin-bottom: 0.2em;
	line-height: 1.35;
}

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

.alert.alert-danger ul li
{
	color: var(--rot);
}

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

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

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

button
{
	display: inline-block;
	color: #fff!important;
	background-color: var(--rot);
	padding: 0.5em 1.5em;
	text-decoration: none;
	font-family: 'Nunito', sans-serif;
	letter-spacing: 0.02em;
	font-weight: 800;
	transition: all 0.2s;
	border-bottom: 0px solid transparent!important;
	cursor: pointer;
	width: auto;
	margin-top: 1.2em;
}

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

@media all and (max-width: 600px){
	#opener
	{
		height: 54vh!important;
		min-height: 300px!important;
	}

	#openerTitle span
	{
		font-size: 1.15em!important;
		padding: 14px 0px 12px 0px!important;
	}

	#openerTitle
	{
		background-color: var(--rot);
	}

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

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

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

	#ostfriesland
	{
		width: 85%!important;
	}

	textarea
	{
		height: 10em;
	}
}

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

	#footerList
	{
		text-align: left;
		margin-top: 2px;
	}

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

	#footer
	{
		padding: 20px 0px 18px!important;
	}
}

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

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

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

	.textBoxInner
	{
		padding: 0!important;
		border: none!important;
	}
}

@media all and (max-width: 920px){
	#navigation
	{
		display: none;
		position: absolute;
		top: -20px;
		left: 0;
		background-color:var(--rot);
		width: 100%;
		z-index: 1000;
	}

	#navigation ul
	{
		padding-top: 103px;
		padding-bottom: 8px;
	}

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

	#navigation ul li a
	{
		color: #fff;
	}

	#header .wrap
	{
		height: 100px;
	}

	#header
	{
		top: 20px;
	}

	#opener
	{
		height: 63vh;
		min-height: 320px;
	}

	#logo
	{
		height: 100%;
	}

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

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

	#ecke
	{
		display: none;
	}

	h1
	{
		font-size: 2.8em;
	}

	h2
	{
		font-size: 1.55em;
	}

	h3
	{
		font-size: 1.3em;
	}

	#openerTitle span
	{
		font-size: 1.3em;
		padding: 16px 8px 14px 0px;
	}

	.text
	{
		margin: 40px 0px;
	}

	.buttonArea
	{
		margin-top: 20px;
	}

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

	#footer
	{
		padding: 20px 0px;
	}

	.text.intro
	{
		margin-bottom: -25px;
	}

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

	#ostfriesland
	{
		width: 75%;
	}

	.textBox
	{
		padding: 10px 0px 10px 10px;
	}

	.imgFlex.right .textBox
	{
		padding: 10px 10px 10px 0px;
	}

	.textBoxInner
	{
		padding: 30px 0px 30px 30px;
	}

	.imgFlex.right .textBoxInner
	{
		padding: 30px 30px 30px 0px;
	}

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

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