:root 
{
	--green: #76b82b;
	--lightgreen: #8ddb35;
	--dark: #1d1d1b;
	--grey: #d9e8c5;
}

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

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

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

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

h1, h2
{
	font-family: 'Alisha', sans-serif;
	font-weight: 300;
	line-height: 1.05;
}

h1
{
	font-size: 6.5em;
	position: relative;
}

h2
{
	font-size: 3.5em;
}

h3
{
	font-weight: 700;
	line-height: 1.3;
	font-size: 2em;
	text-transform: uppercase;
}

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

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

h2 + table, h3 + table
{
	margin-top: 1.5em;
}

#opener h1:after
{
	content: "";
	position: absolute;
	width: 3em;
	height: 0.07em;
	background-color: var(--green);
	left: 0;
	bottom: -0.1em;
}

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

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

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

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

#header.scrolled .logo
{
	padding: 26px 0px;
}

.dark
{
	opacity: 0;
}

.white
{
	opacity: 1;
}

#header.scrolled .dark
{
	opacity: 1;
}

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

#navigation ul
{
	text-align: right;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 40px;
	padding: 50px 0px;
	text-transform: uppercase;
	transition: all 0.2s; 
}

#header.scrolled #navigation ul li
{
	padding: 36px 0px;
}

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

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

#header.scrolled #navigation ul li a
{
	color: var(--dark);
}

#opener
{
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: top right;
	background-repeat: no-repeat;
	position: relative;
}

#openerContent
{
	position: absolute;
	width: 100%;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	z-index: 100;
	color: #fff;
}

#opener:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: rgba(0,0,0,0.4);
}

.text
{
	margin: 60px 0px;
}

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

.divider
{
	width: 140px;
	height: 6px;
	background-color: var(--green);
	display: block;
}

.imgFlex
{
	display: flex;
}

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

.imgFlexItem
{
	width: 50%;
}

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

.imgFlex .inline
{
	border-right: 6px solid #fff;
	border-bottom: 6px solid #fff;
}

.imgFlex.right .inline
{
	border-right: none;
	border-left: 6px solid #fff;
	border-bottom: 6px solid #fff;
}

.textBox
{
	margin-top: 60px;
	padding: 55px 60px;
	position: relative;
}

.colorBox
{
	padding: 55px 60px;
	position: relative;
}

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

.textBox:before, .colorBox:before
{
	content: "";
	position: absolute;
	width: 170%;
	height: 100%;
	right: 0;
	top: 0;
	background-color: var(--green);
	z-index: -10;
	opacity: 0.35;
}

.colorBox:before
{
	width: 100%;
}

.textBox .buttonArea, .colorBox .buttonArea
{
	padding-bottom: 5px;
}

strong
{
	font-weight: 700;
}

.text.withButton p a, .text .buttonArea p a, .buttonArea p a
{
	display: inline-block;
	line-height: 1.4;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: 700;
	color: var(--dark);
	transition: all 0.2s;
	padding: 0.55em 1.3em;
	background-color: var(--green);
	border-bottom: none!important;
}

.text.withButton p a:hover, .text .buttonArea p a:hover, .buttonArea p a:hover
{
	color: var(--dark);
	background-color: var(--lightgreen);
}

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

.buttonArea
{
	margin-top: 25px;
}

.dividerImg
{
	padding: 180px 0px;
	position: relative;
	color: #fff;
}

.dividerImg:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: rgba(0,0,0,0.6);
}

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

#footer
{
	background-color: var(--green);
	text-transform: uppercase;
	padding: 30px 0px 29px;
}

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

#footerList
{
	text-align: right;
}

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

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

#footerList li a:hover
{
	border-bottom: 1px solid var(--dark);
}

#map
{
	position: relative;
	width: 100%;
	padding-bottom: 75%;
	background-color: var(--green);
	border-left: 6px solid #fff;
	border-bottom: 6px solid #fff;
}

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

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

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

#cookieNotice
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	bottom: 0;
	background-color: #fff;
	z-index: 100;
	padding: 15px 0px;
	border-top: 1px solid var(--grey);
	font-size: 0.85em;
}

#acceptWrap
{
	text-align: right;
}

#accepted
{
	font-weight: 700;
	cursor: pointer;
	transition: all 0.2s;
	color: var(--green);
	text-transform: uppercase;
}

#accepted:hover
{
	color: var(--lightgreen);
}

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

#cookieCheckboxes label
{
	position: relative;
	margin-right: 1.6em;
	padding-left: 1.3em;
	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;
	left: 0;
	top: 0.7em;
	background-color: var(--green);
}

.textBox img
{
	width: 100%;
	max-width: 360px;
	margin-bottom: 1em;
}

table
{
	border-collapse: collapse;
  	width: 100%;
  	position: relative;
}

td
{
	padding: 0.8em 0 0.82em;
	vertical-align: top;
}

tr:before, table:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: var(--green);
	top: 0;
	left: 0;
	opacity: 0.35;
}

table:after
{
	top: auto;
	bottom: 0;
}

tr td:nth-child(1)
{
	padding-right: 40px;
	font-weight: 300;
}

tr td:nth-child(2)
{
	text-align: right;
	min-width: 120px;
	font-weight: 700;
}

tr
{
	position: relative;
}

.slide
{
	height: 55vh;
	max-height: 480px;
	border-left: 5px solid #fff;
	border-right: 5px solid #fff;
}

.slick-dots
{
	position: relative;
	bottom: 0;
	margin-top: 15px;
}

.slick-dots li button
{
	display: none;
}

.slick-dots li
{
	width: 10px;
	height: 10px;
	border-radius: 100px;
	background-color: var(--grey);
	transition: all 0.2s;
	cursor: pointer;
	margin: 0 6px;
	padding-left: 0!important;
}

.slick-dots li.slick-active
{
	background-color: var(--green)!important;
	width: 25px;
}

.slick-arrow
{
	position: absolute;
	width: 40px;
	height: 40px;
	background-color: var(--green);
	left: 40px;
	top: calc(50% - 22px);
	transform: translateY(-50%);
	cursor: pointer;
	z-index: 50;
	background-size: 60%;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s;
}

.slick-arrow:hover
{
	background-color: var(--lightgreen);
}

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

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

.slick-arrow.next
{
	right: 40px;
	left: auto;
}

.slideshow ul li:before
{
	display: none!important;
}

.slick-dotted.slick-slider
{
	margin-bottom: 0!important;
}

@media all and (max-width: 450px){
	tr td:nth-child(1)
	{
		display: block;
	}

	tr td:nth-child(2)
	{
		display: block;
		min-width: 100%;
		text-align: left;
		margin-top: -1.7em;
	}

	.textBox, .colorBox
	{
		padding: 20px 25px!important;
	}
}

@media all and (max-width: 650px){
	h1
	{
		font-size: 3.5em!important;
	}

	#opener h1:after
	{
		bottom: -0.15em;
	}

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

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

	.imgFlex
	{
		display: block;
	}

	.imgFlexItem
	{
		width: 100%;
	}

	.textBox:before
	{
		width: 100%!important;
	}

	.textBox
	{
		margin-top: -2px!important;
	}

	.imgFlex .inline
	{
		border-right: 0px solid #fff!important;
		border-bottom: 0px solid #fff!important;
	}

	.imgFlex.right .inline
	{
		border-left: 0px solid #fff!important;
		border-bottom: 0px solid #fff!important;
	}

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

	#map
	{
		padding-bottom: 65%!important;
		border-left: 0px solid #fff!important;
		border-bottom: 0px solid #fff!important;
	}

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

	.divider
	{
		width: 100px!important;
	}

	#opener
	{
		background-position: top center;
	}

	#opener.start 
	{
		background-position: top right;
	}
}

@media all and (max-width: 720px){
	#copy
	{
		display: block;
		position: relative;
		margin-bottom: 3px;
	}

	#footerList
	{
		text-align: left;
		margin-bottom: -4px;
	}

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

	.slide
	{
		height: 180px!important;
		min-height: 180px!important;
	}

	.prev, .next
	{
		display: none!important;
	}

	.slick-dots li
	{
		margin: 0 5px;
	}

	.slick-dots
	{
		margin-top: 10px;
	}
}

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

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

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

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

	.logo, #navOpener
	{
		z-index: 10000;
	}

	#header .wrap
	{
		height: 85px;
	}

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

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

	#header.scrolled .line, #navOpener.active .line
	{
		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);
	}

	#header.mobileActive .white
	{
		opacity: 0;
	}

	#header.mobileActive .dark
	{
		opacity: 1;
	}

	.logo, #header.scrolled .logo
	{
		padding: 20px 0px;
	}

	h1
	{
		font-size: 5em;
	}

	h2
	{
		font-size: 2.5em;
	}

	h3
	{
		font-size: 1.6em;
	}

	body 
	{
		font-size: 1.2em;
	}

	.text
	{
		margin: 40px 0px;
	}

	.buttonArea
	{
		margin-top: 20px;
	}

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

	#footer
	{
		padding: 25px 0px;
	}

	.divider
	{
		width: 120px;
		height: 5px;
	}

	.textBox, .colorBox
	{
		padding: 35px 40px;
	}

	.dividerImg
	{
		padding: 120px 0px;
	}

	.imgFlex .inline
	{
		border-right: 5px solid #fff;
		border-bottom: 5px solid #fff;
	}

	.imgFlex.right .inline
	{
		border-right: none;
		border-left: 5px solid #fff;
		border-bottom: 5px solid #fff;
	}

	#opener
	{
		min-height: 300px;
	}

	#map
	{
		padding-bottom: 72%;
		border-left: 5px solid #fff;
		border-bottom: 5px solid #fff;
	}

	.textBox
	{
		margin-top: 40px;
	}

	.slide
	{
		height: 42vh;
		min-height: 220px;
	}
}

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