:root 
{
	--theme: #fcfcae;
	--midtheme: #d2fec6;
	--darktheme: #d2fec6;
	--hover: #8ec48a;
	--light: #d8e6ef;
	--grey: #dfe2e5;
	--dark: #21272b;
}

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

body 
{
	font-size: 1.05em;
	color: var(--dark);
	font-family: 'Inter Tight';
	font-weight: 300;
	line-height: 1.85;
	overflow-x: hidden;
}

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

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

h1, h2, h3
{
	font-family: 'Noto Serif Display';
	font-weight: 500;
	line-height: 1.35;
	font-size: 3em;
	color: var(--dark);
}

h2
{
	font-size: 2.2em;
}

h3
{
	font-size: 1.5em;
}

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

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

#header
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	background-color: #fff;
	top: -135px;
}

#logoArea
{
	text-align: center;
	margin-bottom: -10px;
}

#logo
{
	height: 135px;
	padding: 38px 0px;
	display: inline-block;
}

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

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

#navigation
{
	background-color: var(--theme);
	position: relative;
}

#navigation:before
{
	content: "";
	position: absolute;
	width: 100vw;
	height: 100%;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
	background-color: var(--theme);
}

#navigation ul
{
	display: flex;
	justify-content: space-between;
}

#navigation ul li
{
	display: inline-block;
	padding: 14px 0px;
	position: relative;
}

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

#navigation ul li a:hover
{
	opacity: 1;
}

#navigation ul li.active a
{
	opacity: 1;
	font-weight: 500;
}

#navigation ul li ul
{
	position: absolute;
	display: none;
	min-width: calc(100% + 40px);
	left: -20px;
	top: 100%;
	font-size: 0.85em;
	background-color: var(--theme);
	padding: 15px 20px 8px;
	border: 1px solid var(--dark);
}

#navigation ul li ul:before
{
	content: "";
	position: absolute;
	width: 8px;
	height: 8px;
	border-left: 1px solid var(--dark);
	border-bottom: 1px solid var(--dark);
	left: 20px;
	top: -5px;
	transform: rotate(135deg);
	background-color: var(--theme);
}

#navigation ul li ul li
{
	display: block;
	white-space: nowrap;
	padding: 0;
	margin-bottom: 6px;
}

#navigation ul li.active ul li a
{
	font-weight: 300;
	opacity: 0.7;
}

#navigation ul li.active ul li a:hover
{
	opacity: 1;
}

#navigation ul li.active ul li.active a
{
	opacity: 1;
	font-weight: 500;
}

#opener
{
	height: 60vh;
	max-height: 550px;
	position: relative;
}

#opener:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	bottom: -1px;
	z-index: 100;
	background-image: url(down.svg);
	background-size: 105% auto;
	background-position: bottom center;
	background-repeat: no-repeat;
}

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

#openerContent
{
	position: absolute;
	width: 100%;
	left: 0;
	top: 47%;
	transform: translateY(-50%);
	text-align: center;
	z-index: 200;
	color: #fff;
	text-shadow: 0px 0px 20px rgba(0,0,0,0.8);
}

.dividerImg h2, .dividerImg h3
{
	text-shadow: 0px 0px 20px rgba(0,0,0,0.8);
}

#openerContent h1
{
	color: #fff;
}

.text
{
	margin: 80px 0px;
}

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

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

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

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

.divider
{
	width: 100%;
	height: 1px;
	background-color: var(--dark);
}

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

.imgFlexItem
{
	margin-left: 40px;
}

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

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

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

.text.withButton p a, .text .buttonArea p a, .buttonArea p a, #accepted
{
	display: inline-block;
	line-height: 1.4;
	text-align: center;
	padding: 0.7em 1.3em;
	background-color: var(--theme);
	color: var(--dark)!important;
	border-bottom: none!important;
	text-decoration: none;
	font-family: 'Noto Serif Display';
	transition: all 0.2s;
}

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

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

.buttonArea
{
	margin-top: 30px;
}

strong
{
	font-weight: 700;
}

.dividerImg
{
	padding: 80px 0px;
	position: relative;
}

.dividerImg .wrap
{
	z-index: 100;
	color: #fff;
}

.dividerImg h2, .dividerImg h3
{
	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.4);
}

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

#footer a, #copy
{
	opacity: 0.5;
}

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

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

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

#footerList
{
	text-align: right;
}

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

#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: 500000;
	display: none;
	align-items: center;
	justify-content: center;
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

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

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

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

#intro
{
	text-align: center;
}

strong
{
	font-weight: 500;
}

.text.small
{
	font-size: 0.7em;
}

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

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

.twoCols p, .twoCols ul
{
	column-count: 2;
	column-gap: 40px;
}

.twoCols ul li
{
	display: block;
	break-inside: avoid;
}

.imgDescription
{
	margin-top: 20px;
	font-size: 0.85em;
}

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

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

.image.smallImg
{
	width: calc(33% - 40px);
}

.slideImg
{
	width: 100%;
}

.slideshow
{
	position: relative;
}

.slick-arrow
{
	position: absolute;
	width: 40px;
	height: 40px;
	background-color: rgba(0,0,0,0.3);
	top: 50%;
	transform: translateY(-50%);
	z-index: 800;
	transition: all 0.2s;
	cursor: pointer;
	background-size: 35%;
	background-position: center;
	background-repeat: no-repeat;
}

.slick-arrow:hover
{
	background-color: rgba(0,0,0,0.6);
}

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

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

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

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

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

form label
{
	font-family: 'Inter Tight';
	color: var(--dark);
	font-weight: 500;
	display: block;
	margin-bottom: 0.05em;
}

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: 'Inter Tight';
   	line-height: 1.6;
   	color: var(--dark);
   	font-weight: 300;
   	background-color: transparent;
}

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

input[type = "text"], input[type = "email"], textarea
{
	border: 1px solid var(--grey);
	padding: 0.5em 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.05em;
}

.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: 'Inter Tight';
	color: var(--dark);
	font-weight: 300;
	cursor: pointer;
	text-transform: none;
	line-height: 1.6;
}

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

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

#yform-formular-seite
{
	display: none;
}

button
{
	display: inline-block;
	line-height: 1.4;
	text-align: center;
	padding: 0.7em 1.3em;
	background-color: var(--theme);
	color: var(--dark)!important;
	border-bottom: none!important;
	text-decoration: none;
	font-family: 'Noto Serif Display';
	transition: all 0.2s;
	width: auto;
	cursor: pointer;
	margin-left: 40px;
	margin-top: 1.2em;
}

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

#language
{
	position: absolute;
	width: 2.4em;
	height: 2.4em;
	background-color: var(--theme);
	top: 47px;
	color: var(--dark);
	text-decoration: none;
	font-weight: 500;
	line-height: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 1000px;
	transition: all 0.2s;
	right: 40px;
}

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

.table
{
	padding: 10px 10px;
	overflow-x: auto;
}

table tr:first-child td
{
	font-weight: 500;
}

table td
{
	line-height: 1.3;
	text-align: left!important;
	padding: 5px 10px;
	font-size: 9pt!important;
}

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

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

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

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

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

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

	#footerList
	{
		text-align: left;
	}

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

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

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

	.imgFlex .inline
	{
		max-width: 250px!important;
	}

	.textBox
	{
		margin-top: 30px;
	}

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

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

	.textFlexItem + .textFlexItem
	{
		margin-top: 40px;
	}

	.twoCols p, .twoCols ul
	{
		column-count: 1;;
	}

	.image
	{
		width: calc(100% - 40px)!important;
	}

	.image.smallImg img
	{
		max-width: 220px;
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}
}

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

	#navigation ul
	{
		display: block;
		padding: 20px 40px;
	}

	#navigation ul li
	{
		display: block;
		padding: 0;
		border-bottom: 1px solid var(--dark);
		padding: 10px 0px;
	}

	#navigation ul li:last-child
	{
		border-bottom: none;
	}

	#navigation ul li ul
	{
		position: relative;
		display: none;
		left: 0;
		min-width: auto;
		border: none;
		padding: 0;
		margin-top: 10px;
	}

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

	#navigation ul li ul li
	{
		border-bottom: none;
		white-space: normal;
	}

	#navigation ul li ul li a:before
	{
		content: "-";
		margin-right: 10px;
	}

	#navigation ul li .subnavOpener.active + ul
	{
		display: block;
	}

	.subnavOpener
	{
		position: absolute;
		width: 52px;
		height: 52px;
		background-color: transparent;
		top: 0;
		right: 0;
		cursor: pointer;
		background-image: url(subnav.svg);
		background-size: 18%;
		background-position: center right;
		background-repeat: no-repeat;
		opacity: 0.6;
		transition: opacity 0.2s;
	}

	.subnavOpener.active
	{
		transform: rotate(180deg);
		background-position: center left;
		opacity: 1;
	}

	#header
	{
		top: 0;
		border-bottom: 1px solid var(--dark);
	}

	#header .wrap
	{
		height: 80px;
	}

	#logo
	{
		position: absolute;
		height: 100%;
		left: 40px;
		padding: 22px 0px;
	}

	#openerContent
	{
		top: 50%;
	}

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

	.line
	{
		position: absolute;
		width: 100%;
		height: 2px;
		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;
	}

	.text
	{
		margin: 60px 0px;
	}

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

	#opener
	{
		height: 55vh;
		min-height: 280px;
	}

	h1
	{
		font-size: 2.4em;
	}

	h2
	{
		font-size: 1.7em;
	}

	h3
	{
		font-size: 1.35em;
	}

	.dividerImg
	{
		padding: 60px 0px;
	}

	#footer
	{
		padding: 25px 0px;
	}

	.imgDescription
	{
		margin-top: 16px;
	}

	.slick-arrow
	{
		width: 35px;
		height: 35px;
	}

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

	#language
	{
		top: 50%;
		transform: translateY(-50%);
		right: 90px;
		width: 2.2em;
		height: 2.2em;
		font-size: 0.9em;
	}
}

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

	#navigation ul li:hover ul
	{
		display: block;
	}
}