:root 
{
	--rot: #750000;
	--gelb: #f49f20;
	--schwarz: #000000;
	--grau: #383838;
	--hellgrau: #a3a3a3;
}

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

body 
{
	font-size: 1em;
	color: var(--schwarz);
	font-family: 'Roboto Slab', serif;
	font-weight: 300;
	line-height: 1.6;
	overflow-x: hidden;
}

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

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

h1, h2, h3
{
	font-weight: 500;
	letter-spacing: 0.05em;
	line-height: 1.4;
	font-size: 2.4em;
}

h2
{
	font-size: 1.55em;
}

h3
{
	font-size: 1.3em;
}

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

h2 + h3
{
	margin-top: 1rem;
}

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

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

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

#navigation ul li
{
	display: inline-block;
	padding: 55px 0px;
	margin-left: 20px;
	font-weight: 400;
	position: relative;
}

#navigation ul li a
{
	color: #fff;
	text-decoration: none;
}

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

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

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

#navigation ul
{
	text-align: right;
}

#navigation ul li ul
{
	position: absolute;
	text-align: left;
	background-color: var(--gelb);
	padding: 8px 0px 10px;
	left: -15px;
	top: 75%;
	display: none;
}

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

#navigation ul li ul li
{
	padding: 0px 15px;
	margin-left: 0;
	padding-top: 8px;
	margin-top: 8px;
	border-top: 1px dashed var(--schwarz);
	white-space: nowrap;
	width: 100%;
}

#navigation ul li ul li a
{
	color: var(--schwarz)!important;
}

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

#logo
{
	position: absolute;
	height: 100%;
	padding: 25px 0px;
	filter: drop-shadow(3px 3px 3px rgba(0,0,0,0.8));
}

#opener
{
	background-color: var(--hellgrau);
	padding: 40px 0px;
}

#opener img
{
	width: 100%;
}

.text
{
	margin: 60px 0px;
}

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

strong
{
	font-weight: 500;
}

#footer
{
	background-color: var(--grau);
	padding: 40px 0px;
	color: #fff;
	border-top: 4px solid var(--rot);
}

#copy
{
	font-weight: 500;
	display: block;
	margin-bottom: 3px;
}

#footerList li
{
	display: inline-block;
	margin-right: 15px;
}

#footerList li:after
{
	content: "|";
	margin-left: 20px;
}

#footerList li:last-child:after
{
	display: none;
}

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

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

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

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

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

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

.divider
{
	width: 100%;
	height: 1px;
	border-top: 1px dashed #000;
}

#cookieNotice
{
	position: fixed;
	width: 100%;
	background-color: #fff;
	padding: 20px 0px;
	z-index: 1000;
	bottom: 0;
	left: 0;
}

#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.5em;
	padding-left: 1.4em;
	cursor: pointer;
}

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

#accepted
{
	cursor: pointer;
	font-weight: 500;
	transition: all 0.2s;
	color: var(--rot);
	float: right;
}

#accepted:hover
{
	opacity: 0.7;
}

#contact
{
	width: 55px;
	height: 55px;
	background-color: var(--gelb);
	background-image: url(contact.svg);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	position: fixed;
	bottom: 50px;
	right: 50px;
	border: 2px solid #fff;
	cursor: pointer;
	z-index: 60;
}

#contact.active
{
	background-image: url(close.svg);
	background-size: 30%;
}

#contactArea
{
	width: 340px;
	height: 100%;
	position: fixed;
	right: -340px;
	top: 0;
	background-color: #fff;
	z-index: 50;
	transition: all 0.2s;
	overflow: auto;
}

#contactArea .inner
{
	padding: 40px;
}

#contactArea.visible
{
	right: 0;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

#contactArea a.button, .text.withButton p a
{
	display: inline-block;
	border: 3px solid var(--gelb);
	color: var(--rot);
	font-weight: 400;
	padding: 1em 1.5em;
	transition: all 0.2s;
	line-height: 1.4;
	margin-top: 30px;
}

#contactArea a.button:hover, .text.withButton p a:hover
{
	color: #fff;
	background-color: var(--gelb);
}

.text.withButton p a
{
	margin-top: 0;
}

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

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

.textImg
{
	display: flex;
	margin-left: -60px;
}

.textImgItem
{
	margin-left: 60px;
}

.textImg .textImgItem:nth-child(1)
{
	width: calc(100% - 300px);
}

.textImg .textImgItem:nth-child(2)
{
	width: 300px;
}

.textImg img
{
	width: 100%;
}

#form
{
	padding-top: 180px;
	margin-top: -180px;
	max-width: 650px;
	position: relative;
}

form label
{
	color: var(--schwarz);
	font-family: 'Roboto Slab', serif;
	font-size: 1em;
	letter-spacing: 0.05em;
	font-weight: 500;
	display: block;
	margin-bottom: 0.4em;
}

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: 'Roboto Slab', serif;
   	line-height: 1.6;
   	color: var(--schwarz);
   	font-weight: 300;
}

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

input[type = "text"], input[type = "email"], textarea
{
	border: 1px solid var(--hellgrau);
	padding: 0.7em;
	transition: box-shadow 0.3s;
}

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

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

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

.alert.alert-danger ul:before
{
	font-family: 'Roboto Slab', serif;
	font-size: 1em;
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingabe.";
	font-weight: 500;
	color: red;
	display: block;
	margin-bottom: 1em;
}

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

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

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

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

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

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

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

button
{
	margin-top: 1em;
	width: auto;
	cursor: pointer;
	background-color: #fff;
}

button
{
	display: inline-block;
	border: 3px solid var(--gelb);
	color: var(--rot);
	font-weight: 400;
	padding: 1em 1.5em;
	transition: all 0.2s;
	line-height: 1.4;
}

button:hover
{
	color: #fff;
	background-color: var(--gelb);
}

#openerWrap
{
	position: relative;
}

#openerContent
{
	position: absolute;
	left: 0;
	bottom: 30px;
}

#big
{
	display: inline;
	background-color: var(--rot);
	color: var(--gelb);
	font-weight: 500;
	letter-spacing: 0.05em;
	font-size: 1.8em;
	padding: 0.2em 20px;
	text-shadow: 3px 3px 3px rgba(0,0,0,0.3);
}

#small
{
	display: inline-block;
	margin-top: 0.12em;
	background-color: var(--hellgrau);
	padding: 0.1em 20px;
}

@media all and (max-width: 500px){
	#footerList li
	{
		display: block;
	}

	#footerList li:after
	{
		display: none;
	}

	#opener
	{
		padding: 25px 0px 20px!important;
	}

	.textImg
	{
		display: block;
		margin-left: 0;
	}

	.textImgItem
	{
		width: 100%!important;
		margin-left: 0;
	}

	.textImg .textImgItem:nth-child(2)
	{
		margin-top: 30px;
	}

	.textImg img
	{
		max-width: 250px;
	}

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

	#big
	{
		font-size: 1.1em!important;
		padding-left: 10px;
		padding-right: 10px;
	}

	#small
	{
		font-size: 0.85em;
		margin-top: 0.1em;
		padding-left: 10px;
		padding-right: 10px;
	}
}

@media all and (max-width: 630px){
	#contact
	{
		width: 50px;
		height: 50px;
		right: 30px;
		bottom: 50px;
	}

	#contactArea
	{
		width: 280px;
		right: -280px;
	}

	#contactArea .inner
	{
		padding: 30px;
	}

	#big
	{
		font-size: 1.3em;
	}

	#openerContent
	{
		bottom: 0px;
	}
}

@media all and (max-width: 1100px){
	#navigation
	{
		display: none;
		background-color: var(--rot);
		position: fixed;
		left: 0;
		top: 80px;
		width: 100%;
		padding: 0px 0px;
		max-height: calc(100% - 80px);
		overflow: auto;
	}

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

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

	#navigation ul li a
	{
		padding: 0px 30px;
	}

	#navigation ul li ul
	{
		position: relative;
		display: block;
		text-align: right;
		left: 0;
		margin-top: 10px;
		border-bottom: 0px dashed var(--schwarz);
		font-size: 0.85em;
	}

	#navigation ul li ul li
	{
		padding-left: 0;
		padding-right: 0;
	}

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

	.line
	{
		width: 100%;
		position: absolute;
		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);
	}

	#header .wrap
	{
		height: 90px;
	}

	#logo
	{
		padding: 20px 0px;
	}

	h1
	{
		font-size: 1.55em;
	}

	h2
	{
		font-size: 1.3em;
	}

	h3
	{
		font-size: 1.15em;
	}

	.text
	{
		margin: 40px 0px;
	}

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

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

	#footer
	{
		padding: 30px 0px;
	}

	#opener
	{
		padding: 30px 0px;
	}

	.textImg
	{
		margin-left: -30px;
	}

	.textImgItem
	{
		margin-left: 30px;
	}

	.textImg .textImgItem:nth-child(1)
	{
		width: calc(100% - 220px);
	}

	.textImg .textImgItem:nth-child(2)
	{
		width: 220px;
	}

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

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