:root 
{
	--theme: #e8cb91;
	--lighttheme: #f7e5c1;
	--light: #f0f2f1;
	--dark: #0b1910;
}

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

body 
{
	font-size: 1.05em;
	color: var(--dark);
	font-family: 'Libre Franklin';
	font-weight: 400;
	line-height: 1.7;
	overflow-x: hidden;
}

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

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

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

h1, h2
{
	font-family: 'Spectral';
	font-weight: 500;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-size: 3.7em;
}

#opener h1
{
	color: var(--theme);
}

h2
{
	font-size: 2.7em;
	color: var(--theme);
	line-height: 1.3;
}

h3
{
	font-weight: 500;
	line-height: 1.3;
	font-size: 1.5em;
}

h4
{
	font-weight: 400;
	line-height: 1.3;
	color: var(--dark);
	text-transform: uppercase;
	letter-spacing: 0.3em;
	position: relative;
	padding-left: 100px;
	margin-bottom: 1.5em;
	font-size: 0.85em;
}

h4:before
{
	content: "";
	position: absolute;
	width: 80px;
	height: 2px;
	background-color: var(--theme);
	left: 0;
	top: 49%;
	transform: translateY(-50%);
}

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

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

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

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

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

#header
{
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	transition: all 0.2s;
}

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

#navigation ul
{
	text-align: right;
}

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

#navigation ul li a
{
	color: var(--theme);
	text-decoration: none;
	position: relative;
}

#navigation ul li a:after
{
	content: "";
	position: absolute;
	width: 0%;
	height: 2px;
	background-color: var(--theme);
	left: 0;
	bottom: -5px;
	z-index: -1;
	transition: all 0.2s;
	opacity: 0;
}

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

#logo
{
	position: absolute;
	height: 100%;
	padding: 30px 0px;
	filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.95));
}

#opener
{
	padding: 200px 0px 250px;
	position: relative;
	color: #fff;
}

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

#openerVideo
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 0;
}

#openerVideo video
{
	object-fit: cover;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

#opener:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background: linear-gradient(180deg,rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 50%);
}

#openerContent
{
	position: relative;
	z-index: 100;
	text-shadow: 0px 0px 1.2em rgba(0,0,0,0.95);
}

#openerBox
{
	position: relative;
	padding: 50px 60px;
	font-size: 1.4em;
	background-color: var(--dark);
	width: 70%;
	margin-top: -150px;
	z-index: 150;
	color: var(--theme);
}

#openerBox .buttonArea, .imgBox .buttonArea
{
	margin-bottom: 10px;
}

strong
{
	font-weight: 500;
}

/*#openerBoxContainer
{
	background-color: var(--light);
}*/

.text
{
	margin: 100px 0px;
}

#openerBoxContainer + .colored, #openerBoxContainer + .jumper + .colored
{
	margin-top: 0!important;
}

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

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

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

.imgFlex .inline
{
	display: none;
}

.imgFlexItem
{
	margin-left: 40px;
}

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

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

.imgFlex .fancybox
{
	height: 100%;
	display: block;
	background-size: cover;
	background-position: center;
	cursor: zoom-in;
}

.textBox
{
	padding-bottom: 0px;
}

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

.textBoxItem
{
	width: calc(50% - 40px);
	padding: 50px 60px;
	margin-left: 40px;
	margin-bottom: 40px;
	border: 4px solid var(--theme);
}

.colored + .colored, .colored + .jumper + .colored
{
	padding-top: 0;
	margin-top: -150px;
}

.benefit + .benefit, .step + .step
{
	margin-top: 50px;
}

.benefit, .step
{
	position: relative;
	padding-left: 90px;
}

.tick
{
	width: 60px;
	height: 60px;
	border-radius: 1000px;
	background-color: var(--theme);
	position: absolute;
	top: -14px;
	left: 0;
	background-size: 45%;
	background-position: center;
	background-repeat: no-repeat;
}

.step .tick
{
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 500;
	font-size: 1.4em;
	padding-left: 0.18em;
	color: var(--dark);
}

.steps
{
	position: relative;
	z-index: 100;
	padding-top: 50px;
	padding-bottom: 50px;
}

.steps:before
{
	content: "";
	position: absolute;
	width: 4px;
	height: 100%;
	left: 28px;
	background-color: var(--theme);
	opacity: 0.4;
	top: 0;
}

.text.withButton p a, .text .buttonArea p a, .buttonArea p a, #accepted
{
	display: inline-block;
	line-height: 1.45;
	text-align: center;
	color: var(--theme)!important;
	text-decoration: none;
	transition: all 0.2s;
	border: 2px solid var(--theme)!important;
	padding: 0.63em 1.2em 0.6em;
	font-weight: 500;
	transition: all 0.2s;
}

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

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

.buttonArea
{
	margin-top: 25px;
}

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

.colored + .withImg:before, .colored + .jumper + .withImg:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100px;
	background-color: var(--light);
	left: 0;
	top: 0;
}

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

.imgBoxContainer
{
	display: flex;
	justify-content: flex-end;
}

.imgBox
{
	padding: 50px 60px;
	background-color: var(--dark);
	color: var(--theme);
	margin-top: -150px;
	z-index: 10;
	position: relative;
	width: 70%;
}

.imgBox h4
{
	color: var(--theme);
}

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

.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(--dark);
	border-bottom: 1px solid var(--dark);
}

.imgBox p a
{
	color: var(--theme)!important;
	border-bottom: 1px solid var(--theme)!important;
}

#formBox
{
	padding: 50px 60px 50px 60px;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.08);
	position: relative;
	z-index: 100;
	background-color: #fff;
}

#formBox button
{
	margin-bottom: 10px;
}

#form
{
	padding-top: 160px;
	/*margin-top: -210px;*/
	margin-top: -310px;
}

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

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

form label
{
	font-family: 'Libre Franklin';
	color: var(--dark);
	font-weight: 500;
	display: block;
	margin-bottom: 0.1em;
}

form input[type = "text"], form 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: 'Libre Franklin';
   	line-height: 1.6;
   	color: var(--dark);
   	font-weight: 400;
   	background-color: transparent;
}

form input, textarea
{
	color: var(--dark);
	margin-bottom: 1.4em;
	transition: border-color 0.2s;
}

form input[type = "text"], form input[type = "email"], textarea
{
	border: 1px solid var(--dark);
	padding: 0.55em 1.2em 0.5em 1.2em;
	background-color: #fff;
}

form 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: 500;
	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.8em;
	margin-left: 40px;
}

.checkbox label
{
	font-family: 'Libre Franklin';
	color: var(--dark);
	font-weight: 400;
	cursor: pointer;
	text-transform: none;
	line-height: 1.6;
}

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

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

button
{
	display: inline-block;
	line-height: 1.45;
	text-align: center;
	color: var(--theme)!important;
	text-decoration: none;
	transition: all 0.2s;
	border: 2px solid var(--theme)!important;
	padding: 0.64em 1.2em 0.6em;
	font-weight: 500;
	transition: all 0.2s;
	width: auto;
	cursor: pointer;
	margin-left: 40px;
	margin-top: 1.25em;
}

button:hover
{
	background-color: var(--theme);
	color: var(--dark)!important;
}

#footer
{
	padding: 55px 0px 50px 0px;
	background-color: var(--dark);
	color: var(--theme);
}

#footerLogo
{
	max-width: 300px;
	display: block;
	margin: auto;
	filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.95));
}

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

#footer a:hover
{
	border-bottom: 1px solid var(--theme);
}

#footerList
{
	text-align: center;
	margin-top: 40px;
}

#footerList li
{
	display: inline-block;
}

#footerList li:before
{
	content: "|";
	margin: 0px 40px;
}

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

#copy
{
	padding: 20px 0px 20px 0px;
	background-color: var(--dark);
	color: var(--theme);
	text-align: center;
	border-top: 1px solid var(--theme);
	letter-spacing: 0.1em;
	font-size: 0.85em;
}

.withForm + #footer
{
	position: relative;
	margin-top: -100px;
}

.withForm + #footer:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100px;
	background-color: var(--dark);
	z-index: -1;
	left: 0;
	bottom: 100%;
}

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

#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.3em;
}

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

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

.jumper
{
	position: relative;
	top: -105px;
}

#strategie
{
	top: -205px;
}

.dividerImg .textBoxes, .dividerImg .steps, .dividerImg .benefits
{
	margin-top: 50px;
}

.dividerImg
{
	position: relative;
	padding: 100px 0px;
	background-size: cover;
	background-position: center;
	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: var(--dark);
	opacity: 0.88;
}

.dividerImg h4
{
	color: #fff;
}

.dividerImg p a
{
	color: var(--theme)!important;
	border-bottom: 1px solid var(--theme)!important;
}

.dividerImg + .colored, .dividerImg + .jumper + .colored
{
	margin-top: 0!important;
}

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

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

.contactItem + .contactItem
{
	margin-top: 15px;
}

.contactBox
{
	padding: 50px 60px 60px 60px;
	background-color: var(--dark);
	color: var(--theme);
}

.contactItems
{
	margin-top: 43px;
}

.contactItem
{
	color: var(--theme);
	text-decoration: none;
	transition: all 0.2s;
	border: 2px solid var(--theme);
	display: block;
	padding: 0.62em 1.2em 0.61em;
	padding-left: calc(52px + 1.2em);
	position: relative;
}

.contactItem:hover
{
	background-color: var(--theme);
	color: var(--dark);
}

.contactItem:before
{
	content: "";
	position: absolute;
	width: 52px;
	height: 100%;
	background-color: var(--theme);
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-size: 40%;
	background-position: center;
	background-repeat: no-repeat;
	border-right: 2px solid var(--dark);
}

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

.contactItem#mobile:before
{
	background-image: url(mobile.svg);
}

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

.contactItem#house:before
{
	background-image: url(house.svg);
}

.sticky
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 200px;
}

.withForm
{
	position: relative;
}

.withForm:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -100;
	background-color: var(--light);
}

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

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

#intro
{
	padding: 182px 0px 100px;
	background-color: var(--dark);
	color: var(--theme);
}

#intro h1
{
	color: var(--theme);
}

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

@media all and (max-width: 550px){
	.tick
	{
		position: relative;
		top: 0!important;
		left: 0!important;
		margin-bottom: 20px!important;
	}

	.benefit, .step
	{
		padding-left: 0px!important;
	}

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

	#footerList li:before
	{
		display: none;
	}

	#footerLogo
	{
		max-width: 230px!important;
	}

	.contactBox
	{
		width: calc(100% + 80px);
		margin-left: -40px;
		margin-bottom: -60px;
	}

	h2
	{
		hyphens: auto;
		-webkit-hyphens: auto;
	}
}

@media all and (max-width: 750px){
	#openerBox, .imgBox
	{
		width: 100%;
		margin-top: -60px!important;
	}

	.imgBox
	{
		margin-top: 0!important;
	}

	#opener
	{
		padding: 130px 0px 120px!important;
	}

	.textBoxItem
	{
		width: calc(100% - 40px);
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}

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

	.textBox
	{
		margin-top: 40px;
	}

	.imgFlex .fancybox
	{
		padding-bottom: 55%;
	}

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

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

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

	h3, .step .tick
	{
		font-size: 1.25em!important;
	}

	h4
	{
		padding-left: 55px!important;
	}

	h4:before
	{
		width: 40px!important;
	}

	#openerBox
	{
		font-size: 1em!important;
	}
}

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

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

	.contactItem
	{
		white-space: nowrap;
	}

	.twoTextItem + .twoTextItem
	{
		margin-top: 35px;
	}
}

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

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

	#navigation ul li a:after
	{
		bottom: -3px;
	}

	#navigation ul
	{
		padding: 85px 40px 10px;
	}

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

	#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: var(--theme);
		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: 26px 0px;
	}

	h1
	{
		font-size: 3em;
	}

	h2
	{
		font-size: 2.2em;
	}

	h3
	{
		font-size: 1.35em;
	}

	h4
	{
		padding-left: 65px;
		font-size: 0.85em;
	}

	h4:before
	{
		width: 50px;
	}

	#openerBox, .imgBox, .textBoxItem
	{
		padding: 30px 40px;
	}

	#openerBox
	{
		font-size: 1.25em;
	}

	#openerBox, .imgBox
	{
		margin-top: -90px;
	}

	#formBox
	{
		padding: 30px 40px 30px 40px;
	}

	#opener
	{
		padding: 160px 0px 180px;
	}

	.text
	{
		margin: 60px 0px;
	}

	.colored
	{
		padding: 60px 0px;
	}

	.colored + .colored, .colored + .jumper + .colored
	{
		margin-top: -80px;
	}

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

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

	.benefit, .step
	{
		padding-left: 90px;
	}

	.tick
	{
		width: 55px;
		height: 55px;
		top: -12px;
	}

	.step .tick
	{
		font-size: 1.25em;
		padding-left: 0.2em;
	}

	.steps
	{
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.steps:before
	{
		left: 26px;
	}

	.colored + .withImg, .colored + .jumper + .withImg
	{
		margin-top: -60px;
	}

	.colored + .withImg:before, .colored + .jumper + .withImg:before
	{
		height: 60px;
	}

	#form
	{
		padding-top: 130px;
		/*margin-top: -155px;*/
		margin-top: -212px;
	}

	.withForm + #footer
	{
		margin-top: -60px;
	}

	.withForm + #footer:before
	{
		height: 60px;
	}

	#footer
	{
		padding: 45px 0px 40px 0px;
	}

	#footerLogo
	{
		max-width: 250px;
	}

	#footerList
	{
		margin-top: 30px;
	}

	#copy
	{
		padding: 15px 0px 15px 0px;
	}

	#footerList li:before
	{
		margin: 0px 25px;
	}

	.jumper
	{
		position: relative;
		top: -90px;
	}

	#strategie
	{
		top: -150px;
	}

	.dividerImg .textBoxes, .dividerImg .steps, .dividerImg .benefits
	{
		margin-top: 40px;
	}

	.dividerImg
	{
		padding: 60px 0px;
	}

	.sticky
	{
		top: 145px;
	}

	.contactBox
	{
		padding: 35px 40px 40px 40px;
	}

	.contactItems
	{
		margin-top: 32px;
	}

	#intro
	{
		padding: 125px 0px 60px;
	}
}

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