:root 
{
	--theme: #50a55c;
	--lighttheme: #6bc67f;
	--light: #dff4e3;
	--dark: #185b4b;
}

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

body 
{
	font-size: 1.1em;
	color: var(--dark);
	font-family: 'Parkinsans';
	font-weight: 300;
	line-height: 1.7;
	overflow-x: hidden;
}

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

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

h1, h2, h3
{
	font-weight: 500;
	line-height: 1.35;
	font-size: 3.3em;
}

h2
{
	font-size: 2.6em;
	color: var(--theme);
}

h3
{
	font-size: 1.65em;
}

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

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

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

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

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

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

#navigation ul
{
	text-align: right;
}

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

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

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

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

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

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

#logo
{
	position: absolute;
	height: 100%;
	padding: 24px 0px;
}

#opener
{
	height: 75vh;
	position: relative;
	background-size: cover;
	background-position: center;
}

#opener:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: var(--dark);
	opacity: 0.5;
}

#opener:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 85%;
	left: 0;
	bottom: 0;
	background-image: url(baum.svg);
	background-size: contain;
	background-position: right bottom;
	background-repeat: no-repeat;
	z-index: 30;
	border-bottom: 15px solid var(--dark);
}

#openerContent
{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 100px;
	color: #fff;
	z-index: 100;
	text-shadow: 0px 0px 20px rgba(0,0,0,0.5);
}

.text
{
	margin: 100px 0px;
}

strong
{
	font-weight: 500;
}

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

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

.benefit
{
	width: calc(50% - 40px);
	margin-left: 40px;
	margin-bottom: 40px;
	border-radius: 0.25em;
	background-color: #fff;
	padding: 30px 40px;
	position: relative;
}

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

.tick
{
	width: 70px;
	height: 70px;
	background-image: url(tick.svg);
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
	position: absolute;
	top: -20px;
	left: -15px;
}

.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);
	border-radius: 100px;
}

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

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

.sticky
{
	position: sticky;
	position: -webkit-sticky;
	left: 0;
	top: 200px;
	padding: 30px 40px;
	border-radius: 0.25em;
	background-color: var(--theme);
	color: #fff;
}

.sticky:after
{
	content: "";
	position: absolute;
	width: 16px;
	height: 16px;
	background-color: var(--theme);
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	right: -8px;
}

.sticky h2, .sticky h3
{
	color: #fff;
}

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

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

.buttonArea
{
	margin-top: 30px;
}

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

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

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

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

.dividerImg:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: var(--dark);
	opacity: 0.7;
}

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

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

#footerList
{
	text-align: right;
}

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

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

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

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

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

#cookieNotice
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 0.85em;
	background-color: rgba(24,91,75,0.6);
	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: 420px;
	overflow: auto;
	display: block;
	margin: auto;
	position: relative;
	background-color: #fff;
	border-radius: 0.25em;
}

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

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

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

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

.imgFlex
{
	display: flex;
}

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

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

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

.textBox
{
	padding: 30px 40px;
	position: relative;
}

.textBox:before
{
	content: "";
	position: absolute;
	width: 125%;
	height: 100%;
	right: 0;
	top: 0;
	z-index: -1;
	background-color: var(--light);
	border-radius: 0.25em;
}

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

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

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

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

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

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

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

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

input[type = "text"], input[type = "email"], textarea
{
	border: 1px solid rgba(0,0,0,0.14);
	padding: 0.6em 1.2em;
	background-color: #fff;
}

input:focus, textarea:focus
{
	border-color: var(--theme);
	outline: 1px solid var(--theme);
}

textarea
{
	height: 12em;
	resize: none;
	margin-bottom: 1.2em;
}

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

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

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

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

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

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

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

@media all and (max-width: 700px){
	#opener
	{
		height: 50vh!important;
	}

	#opener:after
	{
		height: 70%;
		border-bottom: 8px solid var(--dark)!important;
	}

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

	h2, h3
	{
		line-height: 1.4;
	}

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

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

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

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

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

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

	.sticky
	{
		margin-bottom: 40px;
	}

	.sticky:after
	{
		display: none;
	}

	.dividerImg
	{
		padding: 50px 0px!important;
	}

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

	#footerList
	{
		text-align: left;
	}

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

	.imgFlex
	{
		display: block;
	}

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

	.imgFlex .inline
	{
		border-radius: 0.25em 0.25em 0 0;
	}

	.textBox:before
	{
		width: 100%;
		border-radius: 0 0 0.25em 0.25em;
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}
}

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

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

	#navigation ul li a:after
	{
		top: 100%;
	}

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

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

	.line
	{
		position: absolute;
		width: 100%;
		height: 2.5px;
		background-color: var(--dark);
		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: 80px;
	}

	#logo
	{
		padding: 16px 0px;
	}

	#opener
	{
		height: 60vh;
		min-height: 330px;
	}

	#opener:after
	{
		border-bottom: 12px solid var(--dark);
	}

	#openerContent
	{
		bottom: 50px;
	}

	.text
	{
		margin: 50px 0px;
	}

	.colored
	{
		padding: 50px 0px;
	}

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

	.buttonArea
	{
		margin-top: 25px;
	}

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

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

	.dividerImg
	{
		padding: 80px 0px;
	}

	h1
	{
		font-size: 2.5em;
	}

	h2
	{
		font-size: 1.85em;
	}

	h3
	{
		font-size: 1.4em;
	}

	.tick
	{
		width: 55px;
		height: 55px;
		top: -15px;
		left: -10px;
	}

	.sticky
	{
		top: 120px;
	}

	#footer
	{
		padding: 25px 0px 24px;
	}

	#form
	{
		padding-top: 115px;
		margin-top: -135px;
	}
}

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