:root 
{
	--theme: #baa060;
	--darktheme: #aa8229;
	--light: #efe7d5;
	--grey: #efefef;
	--dark: #191919;
}

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

body 
{
	font-size: 1.2em;
	color: var(--dark);
	font-family: 'Figtree';
	font-weight: 300;
	line-height: 1.8;
	overflow-x: hidden;
}

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

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

h1
{
	font-family: 'Bayshore';
	font-weight: 300;
	line-height: 1.2;
	font-size: 13em;
	color: var(--theme);
	position: relative;
	left: -0.05em;
}

h2, h3, h4
{
	font-family: 'Figtree';
	font-weight: 500;
	line-height: 1.4;
	font-size: 1.8em;
}

h3
{
	font-size: 1.3em;
	color: var(--theme);
}

h4
{
	font-size: 1.2em;
}

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

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

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

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

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

#header
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 0;
	transition: all 0.2s;
	z-index: 1000;
	background-color: var(--dark);
}

#navigation ul
{
	text-align: right;
	padding-right: 108px;
}

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

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

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

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

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

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

#language
{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 40px;
	color: var(--theme);
	border-bottom: none;
	text-decoration: none;
	font-weight: 500;
	padding-left: 40px;
	border-left: 1px solid var(--theme);
}

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

#opener
{
	background-color: var(--dark);
	position: relative;
}

.openerImg
{
	position: relative;
	cursor: zoom-in;
}

.openerImg img
{
	height: 70vh;
	max-height: 630px;
	padding: 0px 10px 20px;
	opacity: 0.1;
	transition: opacity 0.5s;
}

#openerImg
{
	height: 58vh;
	max-height: 580px;
	background-size: cover;
	background-position: center;
	position: relative;
}

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

.openerImg.slick-current img
{
	opacity: 0.8;
}

#opener + .withHeadline
{
	position: relative;
	z-index: 500;
	margin-top: -100px;
}

.text
{
	margin: 120px 0px;
}

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

#openerContent
{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: -125px;
	z-index: 100;
}

.dividerImg
{
	padding-bottom: 30%;
	background-size: cover;
	background-position: center;
	position: relative;
}

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

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

.colored h2, .colored h3
{
	color: var(--theme);
}

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

.withImg
{
	position: relative;
}

.colored + .withImg, .grey + .withImg
{
	margin-top: -170px;
	margin-bottom: -50px;
}

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

.grey + .withImg:before
{
	background-color: var(--grey);
}

.text.withButton p a, .text .buttonArea p a, .buttonArea a, #accepted
{
	display: inline-block;
	line-height: 1.3;
	text-align: left;
	color: var(--dark);
	text-decoration: none;
	padding: 0.7em 1.25em;
	position: relative;
	font-weight: 500;
	text-transform: uppercase;
	transition: all 0.2s;
	border: 2px solid var(--light);
}

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

.text.withButton p a:before, .text .buttonArea p a:before, .buttonArea a:before, #accepted:before
{
	content: "";
	position: absolute;
	height: 100%;
	width: 80px;
	background-color: var(--theme);
	left: 0;
	top: 0;
	z-index: -1;
	transition: all 0.2s;
}

.text.withButton p a:hover:before, .text .buttonArea p a:hover:before, .buttonArea a:hover:before, #accepted:hover:before
{
	width: 100%;
	background-color: var(--dark);
}

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

.buttonArea
{
	margin-top: 30px;
}

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

#socialMedia
{
	color: var(--theme);
}

.socialLink
{
	width: 2.2em;
	height: 2.2em;
	display: inline-block;
	border: 1px solid var(--theme);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	border-radius: 100px;
	transition: all 0.2s;
	margin-left: 25px;
}

.socialLink:hover
{
	background-color: var(--light);
}

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

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

#socialMedia
{
	display: flex;
	justify-content: center;
	align-items: center;
}

#copy
{
	padding: 30px 0px;
	background-color: var(--dark);
	border-top: 1px solid var(--theme);
	font-size: 0.85em;
	color: #fff;
	text-transform: uppercase;
}

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

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

#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);
	border-bottom: 1px solid var(--theme);
	text-decoration: none;
	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);
}

#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(7px);
	backdrop-filter: blur(7px);
}

#cookieBox
{
	padding: 32px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	max-width: 450px;
	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.6em;
	cursor: pointer;
	display: block;
	margin-top: 0.2em;
}

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

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

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

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

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

.textFlex .textFlexItem:nth-child(1)
{
	text-align: right;
}

.textFlex.right .textFlexItem:nth-child(1)
{
	text-align: left;
}


.grey
{
	padding: 120px 0px;
	background-color: var(--grey);
}

strong
{
	font-weight: 700;
}

.referenceBox
{
	width: 100%;
	max-width: 100%;
	background-color: transparent;
	padding: 0px;
	position: relative;
	margin-top: 25px;
	z-index: 100;
}

.referenceContainer
{
	padding-left: 60px;
	position: relative;
}

.referenceContainer:before
{
	content: "";
	position: absolute;
	width: calc(100% - 60px);
	height: calc(100% - 60px);
	left: 0;
	bottom: 0;
	background-color: var(--light);
	z-index: -10;
}

.logoSlide img
{
	height: 70px;
	padding: 0px 40px;
	filter: grayscale(1);
}

.grey + .grey
{
	margin-top: -120px;
	padding-top: 0;
}

.logoSlider
{
	margin-top: -190px;
	padding-bottom: 50px;
}

.dividerHeadline
{
	position: relative;
}

.dividerHeadline h2
{
	display: inline-block;
	padding: 0.55em 1.1em 0.5em 0em;
	background-color: var(--dark);
	color: var(--theme);
	position: relative;
}

.dividerHeadline:before
{
	content: "";
	position: absolute;
	width: 100vw;
	height: 100%;
	right: 100%;
	top: 0;
	background-color: var(--dark);
}

.imgFlex
{
	display: flex;
}

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

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

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

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

.textBox:before
{
	content: "";
	position: absolute;
	width: 120%;
	height: 100%;
	right: 0;
	top: 0;
	border: 2px solid var(--light);
	z-index: -10;
}

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

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

.grey + #footer
{
	margin-top: -120px;
}

#formBox
{
	padding: 50px 60px 60px 60px;
	background-color: #fff;
	border: 2px solid var(--light);
}

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

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

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

form label
{
	font-family: 'Figtree';
	color: var(--dark);
	font-weight: 700;
	display: block;
	margin-bottom: 0em;
}

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

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

input[type = "text"], input[type = "email"], textarea
{
	border: 2px solid rgba(0,0,0,0.1);
	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.1em;
}

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

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

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

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

button
{
	display: inline-block;
	line-height: 1.3;
	text-align: left;
	color: var(--dark);
	text-decoration: none;
	padding: 0.7em 1.25em;
	position: relative;
	font-weight: 500;
	text-transform: uppercase;
	transition: all 0.2s;
	border: 2px solid var(--light);
	width: auto;
	cursor: pointer;
	margin-left: 40px;
	margin-top: 1.35em;
	z-index: 100;
}

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

button:before
{
	content: "";
	position: absolute;
	height: 100%;
	width: 80px;
	background-color: var(--theme);
	left: 0;
	top: 0;
	z-index: -1;
	transition: all 0.2s;
}

button:hover:before
{
	width: 100%;
	background-color: var(--dark);
}

.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.685em;
	background-color: var(--theme);
}

.twoImgs
{
	display: flex;
	margin-left: -10px;
	align-items: center;
}

.twoImgsItem
{
	width: 50%;
	margin-left: 10px;
}

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

@media all and (max-width: 550px){
	h2, h3
	{
		hyphens: auto;
		-webkit-hyphens: auto;
	}
}

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

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

	.twoImgs .twoImgsItem:nth-child(2)
	{
		padding-top: 10px;
	}

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

	.textBox .buttonArea
	{
		margin-bottom: 5px!important;
	}
}

@media all and (max-width: 700px){
	.openerImg img
	{
		height: 38vh!important;
		min-height: 220px!important;
	}

	#openerImg
	{
		height: 33vh!important;
		min-height: 200px!important;
	}

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

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

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

	h4
	{
		font-size: 1em!important;
	}

	#openerContent
	{
		bottom: -43px!important;
	}

	.dividerImg
	{
		padding-bottom: 40%!important;
	}

	.socialLink
	{
		width: 1.9em!important;
		height: 1.9em!important;
		margin-left: 19px!important;
	}

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

	.textFlexItem
	{
		width: 100%!important;
		margin-left: 0;
		text-align: left!important;
	}

	.textFlexItem + .textFlexItem
	{
		margin-top: 0.5em;
	}

	.logoSlide img
	{
		height: 40px!important;
	}

	.imgFlex
	{
		display: block;
	}

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

	.textBox:before
	{
		width: calc(100% - 4px);
		border-top: none;
		left: 50%;
		transform: translateX(-50%);
		right: auto!important;
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}

	/*.text p 
	{
		text-align: justify;
	}*/
}

@media all and (max-width: 840px){
	#copy span
	{
		position: relative;
		display: block;
		text-align: center;
		margin-bottom: 8px;
	}

	#footerList
	{
		text-align: center;
	}

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

	#footer
	{
		padding: 30px 0px!important;
	}

	.textFlex h3
	{
		hyphens: auto;
		-webkit-hyphens: auto;
	}
}

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

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

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

	#header .wrap
	{
		height: 85px;
	}

	#language
	{
		border-left: none;
	}

	#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(--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;
	}

	#logo
	{
		padding: 20px 0px;
	}

	#language
	{
		right: 100px;
	}

	#openerImg
	{
		height: 44vh;
		min-height: 280px;
	}

	.openerImg img
	{
		height: 55vh;
		min-height: 280px;
	}

	.text
	{
		margin: 50px 0px;
	}

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

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

	.buttonArea
	{
		margin-top: 25px;
	}

	#openerContent
	{
		bottom: -76px;
	}

	h1
	{
		font-size: 8em;
		left: -0.1em!important;
	}

	h2
	{
		font-size: 1.5em;
	}

	h3
	{
		font-size: 1.2em;
	}

	h4
	{
		font-size: 1.1em;
	}

	.dividerImg
	{
		padding-bottom: 35%;
	}

	.colored + .withImg, .grey + .withImg
	{
		margin-top: -50px;
		margin-bottom: -5px;
	}

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

	#footer
	{
		padding: 40px 0px;
	}

	#copy
	{
		padding: 25px 0px;
	}

	.socialLink
	{
		width: 2em;
		height: 2em;
		margin-left: 20px;
	}

	.referenceBox
	{
		margin-top: 25px;
	}

	.referenceContainer
	{
		padding-left: 40px;
	}

	.referenceContainer:before
	{
		height: calc(100% - 40px);
		width: calc(100% - 40px);
	}

	.logoSlide img
	{
		height: 50px;
		padding: 0px 20px;
	}

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

	.logoSlider
	{
		margin-top: -70px;
		padding-bottom: 0px;
	}

	.textBox
	{
		padding: 30px 40px;
	}

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

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

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

	#form
	{
		padding-top: 125px;
		margin-top: -195px;
	}	

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

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

@media all and (min-width: 1450px){
	.dividerImg
	{
		padding-bottom: 28%;
	}
}