:root 
{
	--rot: #c1282e;
	--hellrot: #ed2f3d;
	--lila: #a6529a;
	--blau: #2babe2;
	--gruen: #009245;
	--grau: #d3d3d3;
	--dark: #000000;
}

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

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

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

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

h1, h2
{
	font-family: 'Cormier', 'Quicksand';
	line-height: 1.3;
	text-transform: uppercase;
}

h1
{
	color: #fff;
	font-size: 3.4em;
	display: inline;
	background-color: var(--rot);
	padding: 0.07em 0.25em 0.04em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	-moz-box-decoration-break: clone;
}

h1
{
	line-height: 1.2;
}

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

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

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

h2
{
	font-size: 2.6em;
}

h3
{
	line-height: 1.35;
	font-size: 2.1em;
	color: var(--rot);
}

.colorBox h2, .colorBox h3, .dividerImg h2, .dividerImg h3
{
	color: #fff;
}

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

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

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

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

#logo
{
	position: absolute;
	height: 100%;
	padding: 22px 0px;
	transition: all 0.15s;
}

#logo:hover
{
	transform: scale(1.025);
}

#navigation ul
{
	text-align: right;
	font-size: 1em;
}

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

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

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

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

#opener
{
	width: 100%;
	height: 66vh;
	background-size: cover;
	background-position: center;
	position: relative;
}

#opener:after, .dividerImg:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 5;
	background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
}

.dividerImg:after
{
	background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.6) 100%);
}

#openerContent
{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 80px;
	z-index: 100;
}

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

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

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

.imgShadow
{
	box-shadow: 0px 0px 150px rgba(0,0,0,0.25);
}

.imgFlexItem
{
	margin-left: 40px;
}

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

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

.text
{
	margin: 80px 0px;
}

.textBox
{
	position: relative;
	background-color: #fff;
	z-index: 10;
	padding: 34px 0px 0px 40px;
	margin-top: 80px;
	margin-left: -80px;
	min-height: calc(100% - 40px);
	border-top: 5px solid var(--rot);
}

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

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

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

.buttonArea
{
	margin-top: 30px;
}

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

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

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

.gallery
{
	column-count: 3;
	column-gap: 40px;
	margin-bottom: 0px;
	padding: 0px 40px;
}

.gallery-item
{
	margin-bottom: 40px;
	overflow: hidden;
}

.imgContainer
{
	overflow: hidden;
}

.fancybox img
{
	transition: all 0.2s;
}

.fancybox img:hover
{
	transform: scale(1.08) rotate(-2deg);
}

.colorBox
{
	background-color: var(--rot);
	color: #fff;
	padding: 40px;
	position: relative;
	width: calc(100% - 100px);
	left: 50%;
	transform: translateX(-50%);
}

.colorBox:before, .colorBox:after
{
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.colorBox:before
{
	background-image: url(left.svg);
	top: -55px;
	left: -50px;
}

.colorBox:after
{
	background-image: url(right.svg);
	bottom: -55px;
	right: -50px;
}

.text .colorBox .buttonArea p a, .dividerImg .buttonArea p a
{
	border: 1px solid #fff!important;
}

.dividerImg .buttonArea p a
{
	background-color: transparent;
}

.text .colorBox .buttonArea p a:hover, .dividerImg .buttonArea p a:hover
{
	background-color: #fff;
	color: var(--rot)!important;
}

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

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

#copy
{
	text-transform: uppercase;
	position: absolute;
	font-family: 'Cormier', 'Quicksand';
}

#footer
{
	background-color: var(--dark);
	color: #fff;
	padding: 40px 0px 39px;
}

#footerList 
{
	text-align: right;
}

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

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

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

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

.text .colorBox p a, .dividerImg p a, #cookieNotice a
{
	color: #fff!important;
	border-color: #fff!important;
}

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

.text .colorBox p a:hover, .dividerImg p a:hover, #cookieNotice a:hover
{
	color: #fff;
}

#cookieNotice
{
	position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
	z-index: 100;
	background-color: var(--dark);
	color: #fff;
	font-size: 0.75em;
	padding: 20px 0px;
}

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

strong
{
	font-weight: 600;
}

#accepted
{
	font-family: 'Cormier', 'Quicksand';
	cursor: pointer;
	float: right;
	transition: all 0.2s;
}

#accepted:hover
{
	opacity: 0.7;
}

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

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

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

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

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

#form
{
	max-width: 750px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	padding-top: 160px;
	margin-top: -160px;
}

form label
{
	font-family: 'Karla', sans-serif;
	color: var(--rot);
	font-weight: 500;
	display: block;
	margin-bottom: 0.3em;
	font-size: 1em;
	line-height: 1.4;
}

input[type = "text"], input[type = "email"], select, textarea, button
{
	-webkit-appearance: none;
   	-moz-appearance: none;
   	appearance: none;
   	border-radius: 0px;
   	font-size: 1em;
   	width: 100%;
   	border: none;
   	font-family: 'Karla', sans-serif;
   	line-height: 1.6;
   	color: var(--dark);
   	font-weight: 300;
}

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

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

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

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

.formmediafile
{
	margin-bottom: 0.8em;
}

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

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingaben.";
	font-family: 'Karla', sans-serif;
	font-weight: 600;
	color: var(--rot);
	display: block;
	margin-bottom: 0em;
	font-size: 1em;
}

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

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

.alert.alert-danger ul li:before
{
	background-color: var(--rot)!important;
}

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

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

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

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

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

@media all and (max-width: 580px){
	h1
	{
		font-size: 1.8em!important;
		line-height: 1.1;
	}

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

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

	#opener
	{
		height: 46vh!important;
		min-height: 280px!important;
	}

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

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

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

	.textBox
	{
		margin: 0!important;
		margin-top: -3px!important;
		padding: 0!important;
		background-color: transparent;
		padding-top: 30px!important;
	}

	.colorBox
	{
		width: calc(100% - 10px)!important;
		padding: 25px;
	}

	.colorBox:before, .colorBox:after
	{
		width: 56px!important;
		height: 56px!important;
	}

	.colorBox:before
	{
		top: -30px!important;
		left: -25px!important;
	}

	.colorBox:after
	{
		bottom: -30px!important;
		right: -25px!important;
	}

	textarea
	{
		height: 10em;
	}
}

@media all and (max-width: 600px){
	.gallery
	{
		column-gap: 20px;
		margin-bottom: 0px;
		padding: 0px 40px;
	}

	.gallery-item
	{
		margin-bottom: 20px;
	}
}

@media all and (max-width: 640px){
	#footer
	{
		text-align: center;
	}

	#copy
	{
		display: block;
		position: relative;
		margin-bottom: 3px;
	}

	#footerList
	{
		text-align: center;
		margin-bottom: -2px;
	}

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

	.colorBox
	{
		width: calc(100% - 60px);
	}

	.colorBox:before, .colorBox:after
	{
		width: 75px;
		height: 75px;
	}

	.colorBox:before
	{
		top: -35px;
		left: -30px;
	}

	.colorBox:after
	{
		bottom: -35px;
		right: -30px;
	}
}

@media all and (max-width: 800px){
	.gallery
	{
		column-count: 2;
	}
}

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

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

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

	#header .wrap
	{
		height: 85px;
	}

	#logo
	{
		padding: 15px 0px;
	}

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

	.line
	{
		position: absolute;
		width: 100%;
		height: 2px;
		left: 50%;
		transform: translateX(-50%);
		transition: all 0.2s;
		background-color: var(--dark);
	}

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

	#opener
	{
		height: 62vh;
		min-height: 370px;
	}

	h1
	{
		font-size: 2.6em;
	}

	h2
	{
		font-size: 2em;
	}

	h3
	{
		font-size: 1.6em;
	}

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

	.text
	{
		margin: 50px 0px;
	}

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

	.buttonArea
	{
		margin-top: 25px;
	}

	.dividerImg
	{
		padding: 100px 0px;
	}

	#footer
	{
		padding: 30px 0px;
	}

	#openerContent
	{
		bottom: 50px;
	}

	.textBox
	{
		margin-top: 50px;
	}

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

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