:root 
{
	--theme: #c10c33;
	--darktheme: #840829;
	--light: #dedede;
	--dark: #1c1a1a;
}

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

body 
{
	font-size: 1.15em;
	color: var(--dark);
	font-family: 'Archivo';
	font-weight: 400;
	line-height: 1.65;
	overflow-x: hidden;
	background-color: var(--light);
}

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

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

h1, h2, h3
{
	font-weight: 700;
	line-height: 1.3;
	font-size: 3.6em;
}

h2
{
	font-size: 2.6em;
}

h3
{
	font-size: 1.6em;
}

h1
{
	line-height: 1.5;
	display: inline;
	background-color: var(--theme);
	padding: 0.1em 0.29em 0.09em;
	-webkit-box-decoration-break: clone;
	box-decoration-break: clone;
}

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

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

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

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

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

#header
{
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	border-top: 5px solid var(--theme);
	transition: all 0.2s;
}

#header:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	background: linear-gradient(180deg,rgba(0,0,0,0.8) 00%, rgba(0,0,0,0) 100%);
	transition: all 0.2s;
}

#header.scrolled:before
{
	opacity: 0;
}

#header.scrolled
{
	background-color: var(--dark);
}

#navigation ul 
{
	text-align: right;
}

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

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

#navigation ul li a:after
{
	content: "";
	position: absolute;
	width: 0%;
	opacity: 0;
	height: 3px;
	background-color: var(--theme);
	left: 0;
	top: 115%;
	transition: all 0.2s;
}

#navigation ul li a:hover:after, #navigation ul li.active a:after
{
	opacity: 1;
	width: 100%;
}

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

#navigation ul li.active a
{
	color: #fff;
	font-weight: 700;
}

#navigation ul li:before
{
	content: "|";
	margin: 0px 40px;
	transition: all 0.2s;
	color: #fff;
}

#navigation ul li:first-child:before
{
	display: none;
}

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

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

#opener:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	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;
	top: 55.5%;
	transform: translateY(-50%);
	z-index: 50;
	color: #fff;
}

.text
{
	margin: 100px 0px;
}

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

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

strong
{
	font-weight: 700;
}

.services
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-left: -20px;
	margin-bottom: -20px;
	margin-top: -60px;
}

.service
{
	width: calc(50% - 20px);
	margin-left: 20px;
	margin-bottom: 20px;
	padding: 50px 60px;
	box-shadow: 0px 0px 40px rgba(0,0,0,0.04);
	background-color: rgba(255,255,255,1);
}

.serviceIcon
{
	width: 100%;
	height: 70px;
	margin-bottom: 25px;
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
}

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

.colored + .withImg
{
	position: relative;
	margin-top: -100px;
}

.colored + .withImg:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 200px;
	background-color: var(--dark);
	left: 0;
	top: 0;
	z-index: -1;
}

.imgFlex
{
	display: flex;
}

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

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

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

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

.textBox:before
{
	content: "";
	position: absolute;
	width: 120%;
	height: 100%;
	top: 0;
	right: 0;
	z-index: -1;
	background-color: rgba(255,255,255,1);
	box-shadow: 0px 0px 40px rgba(0,0,0,0.04);
}

.colored .textBox:before
{
	background-color: transparent;
	border: 3px solid var(--theme);
	box-shadow: none;
}

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

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

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

.colored + .red, .red + .colored, .colored + #footer, .red + #footer
{
	margin-top: -100px;
}

.red
{
	padding: 100px 0px;
	background-color: var(--theme);
	color: #fff;
}

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

.red .buttonArea p a
{
	border: 1px solid rgba(255,255,255,0.5)!important;
}

.red .buttonArea p a:hover
{
	border: 1px solid var(--darktheme)!important;
}

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

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

.buttonArea
{
	margin-top: 30px;
}

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

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

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

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

#footerFlex
{
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#footerLogo
{
	width: 190px;
	margin-bottom: -10px;
}

#copy
{
	padding: 25px 0px;
	background-color: var(--dark);
	color: #fff;
	font-size: 0.85em;
	border-top: 1px solid rgba(255,255,255,0.2);
}

#copy span
{
	position: absolute;
	font-weight: 700;
}

#footerList 
{
	text-align: right;
}

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

.text p a, .text ul a, form a, #cookieNotice a
{
	color: var(--theme);
	text-decoration: none;
	border-bottom: 1px solid var(--theme);
	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);
}

.text.colored p a, .text.colored ul a
{
	color: #fff!important;
	border-bottom: 1px solid #fff!important;
}

.text.colored p a:hover, .text.colored ul a:hover
{
	opacity: 0.7;
}

#map
{
	position: relative;
	width: 100%;
	padding-bottom: 40%;
	background-color: var(--darktheme);
	z-index: 10;
}

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

.withMap
{
	position: relative;
}

.red + .withMap
{
	background-color: var(--theme);
	margin-top: -100px;
}

.red + .withMap:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100px;
	background-color: var(--dark);
	left: 0;
	bottom: 0;
}

.withMap + #footer
{
	margin-top: -100px;
}

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

#cookieBox
{
	padding: 32px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	max-width: 400px;
	overflow: auto;
	display: block;
	margin: auto;
	position: relative;
	background-color: #fff;
}

#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.8em;
	cursor: pointer;
	display: block;
	margin-top: 0.25em;
}

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

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

#socialMedia
{
	position: fixed;
	right: 0;
	top: 52%;
	transform: translateY(-50%);
	z-index: 900;
	border-top: 1px solid #fff;
}

.socialIcon
{
	display: block;
	width: 45px;
	height: 45px;
	background-color: var(--theme);
	transition: all 0.2s;
	border-left: 1px solid #fff;
	border-bottom: 1px solid #fff;
	position: relative;
	z-index: 10;
	background-size: 38%;
	background-position: center;
	background-repeat: no-repeat;
}

.socialItem:hover .socialIcon
{
	background-color: var(--darktheme);
}

.socialItem
{
	position: relative;
	color: #fff;
	text-decoration: none;
	font-size: 0.85em;
	display: block;
}

.socialDescription
{
	position: absolute;
	white-space: nowrap;
	height: calc(100% + 1px);
	display: flex;
	align-items: center;
	background-color: var(--theme);
	right: -300px;
	top: -1px;
	padding: 0px 1.2em;
	border-left: 1px solid #fff;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	transition: all 0.2s;
	z-index: 0;
}

.socialItem:hover .socialDescription
{
	background-color: var(--darktheme);
	right: 100%;
}

#phone
{
	background-image: url(phone.svg);
}

#email
{
	background-image: url(email.svg);
}

#anfahrt
{
	background-image: url(anfahrt.svg);
}

#facebook
{
	background-image: url(facebook.svg);
}

#instagram
{
	background-image: url(instagram.svg);
}

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

.bewertungen
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 20px);
	margin-left: -20px;
	margin-bottom: -20px;
}

.bewertung
{
	width: calc(33.3% - 20px);
	margin-left: 20px;
	margin-bottom: 20px;
	padding: 15px 20px;
	box-shadow: 0px 0px 40px rgba(0,0,0,0.04);
	background-color: #fff;
	color: var(--dark);
	font-size: 0.85em;
}

.bewertung strong:after
{
	content: "";
	position: relative;
	display: block;
	width: 100%;
	height: 0.9em;
	background-image: url(stars.svg);
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
	margin: 0.5em 0 -0.25em;
}

#form
{
	padding-top: 150px;
	margin-top: -305px;
}

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

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

form label
{
	font-family: 'Archivo';
	color: #fff;
	font-weight: 700;
	display: block;
	margin-bottom: 0.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: 'Archivo';
   	line-height: 1.6;
   	color: #fff;
   	font-weight: 400;
   	background-color: transparent;
}

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

input[type = "text"], input[type = "email"], textarea
{
	border: 1px solid #fff;
	padding: 0.5em 1.2em;
	background-color: transparent;
}

input:focus, textarea:focus
{
	border-color: var(--theme);
	outline: 1px 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: var(--theme);
	display: block;
}

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

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

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

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

.checkbox label
{
	font-family: 'Archivo';
	color: #fff;
	font-weight: 300;
	cursor: pointer;
	text-transform: none;
	line-height: 1.6;
}

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

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

button
{
	display: inline-block;
	line-height: 1.3;
	text-align: center;
	color: #fff!important;
	border-bottom: none!important;
	background-color: var(--theme);
	text-decoration: none;
	padding: 0.75em 1.3em;
	transition: all 0.2s;
	width: auto;
	cursor: pointer;
	margin-left: 40px;
	margin-top: 1.25em;
}

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

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

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

.persons
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 40px);
	margin-left: -40px;
	margin-bottom: -40px;
}

.person
{
	width: calc(33.3% - 40px);
	margin-left: 40px;
	margin-bottom: 40px;
}

.personContent
{
	margin-top: 20px;
}

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

@media all and (max-width: 550px){
	.person
	{
		width: calc(100% - 40px)!important;
	}
}

@media all and (max-width: 750px){
	h1 + p
	{
		font-size: 1em!important;
	}

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

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

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

	.bewertung, .service
	{
		width: calc(100% - 20px);
	}

	.imgFlex
	{
		display: block;
	}

	.imgFlexItem
	{
		width: 100%!important;
		padding-top: 0!important;
	}

	.textBox:before
	{
		width: calc(100% - 6px);
		border-top: 0;
	}

	#map
	{
		padding-bottom: 60%;
	}

	#footer
	{
		text-align: center;
	}

	#footerFlex
	{
		display: block;
	}

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

	#footerLogo
	{
		margin-bottom: -5px;
		width: 150px!important;
	}

	#copy
	{
		text-align: center;
	}

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

	#footerList
	{
		text-align: center;
	}

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

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}

	.person
	{
		width: calc(50% - 40px);
	}
}

@media all and (max-width: 1050px){
	#navigation
	{
		display: none;
		position: fixed;
		width: 100%;
		left: 0;
		top: 0;
		z-index: 1000;
		background-color: var(--dark);
		border-top: 5px solid var(--theme);
		max-height: 100%;
		overflow: auto;
	}

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

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

	#navigation ul li:before
	{
		display: none;
	}

	#logo, #navOpener
	{
		z-index: 1200;
	}

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

	.line
	{
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #fff;
		transition: all 0.2s;
	}

	#navOpener .line:nth-child(1)
	{
		top: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	#navOpener .line:nth-child(2)
	{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}

	#navOpener .line:nth-child(3)
	{
		bottom: 0;
		width: 50%;
		right: 0;
	}

	#navOpener.active .line:nth-child(1)
	{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	#navOpener.active .line:nth-child(2)
	{
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	#navOpener.active .line:nth-child(3)
	{
		width: 0;
	}

	#header .wrap
	{
		height: 90px;
	}

	#logo
	{
		padding: 20px 0px;
	}

	.socialIcon
	{
		width: 40px;
		height: 40px;
	}

	.text
	{
		margin: 50px 0px;
	}

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

	.buttonArea
	{
		margin-top: 25px;
	}

	#footer
	{
		padding: 50px 0px;
	}

	.colored, .red
	{
		padding: 50px 0px;
	}

	.colored + .red, .red + .colored, .colored + #footer, .red + #footer, .colored + .colored
	{
		margin-top: -50px;
	}

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

	.colored + .withImg:before
	{
		height: 100px;
	}

	.services
	{
		margin-top: -10px;
	}

	.service, .textBox
	{
		padding: 30px 40px;
	}

	.imgFlex .imgFlexItem:nth-child(1)
	{
		padding-top: 40px;
	}

	.red + .withMap
	{
		margin-top: -50px;
	}

	.red + .withMap:before
	{
		height: 50px;
	}

	.withMap + #footer
	{
		margin-top: -50px;
	}

	#footerLogo
	{
		width: 160px;
	}

	#copy
	{
		padding: 20px 0px;
	}

	h1 + p
	{
		font-size: 1.2em;
	}

	h1
	{
		font-size: 2.6em;
	}

	h2
	{
		font-size: 2em;
	}

	h3
	{
		font-size: 1.4em;
	}

	#openerContent
	{
		top: 53%;
	}

	#opener
	{
		min-height: 400px;
	}

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

	.serviceIcon
	{
		height: 55px;
		margin-bottom: 20px;
	}
}

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