:root 
{
	--taupe: #dbd7d3;
	--salbei: #a8bfa3;
	--salbeiHell: #c7d2c1;
	--aprikose: #f7bea0;
	--light: #eee1d8;
	--pink: #d88382;
	--green: #344243;
	--lightgreen: #627e80;
	--red: #a95a55;
	--dark: #000000;
}

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

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

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

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

h1, h2, h3
{
	font-family: 'Source Serif';
	font-weight: 300;
	letter-spacing: 0.03em;
	font-size: 3.5em;
	line-height: 1.3;
}

h1
{
	font-weight: 400;
}

h2, .quote
{
	font-size: 2.4em;
}

h1 + h3
{
	margin-top: 0.5em;
}

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

h3
{
	font-size: 1.8em;
}

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

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

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

h1 strong, h2 strong, h3 strong
{
	font-family: 'Sharlotte';
	font-weight: 300;
	font-size: 1.35em;
	position: relative;
	top: 0.25em;
	line-height: 1;
}

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

#opener
{
	width: 100%;
	height: 100vh;
	background-size: cover;
	background-position: center;
	position: relative;
}

/*#opener:after
{
	content: "";
	position: absolute;
	width: 50%;
	height: 100%;
	right: 0;
	top: 0;
	z-index: 5;
	background-color: var(--taupe);
	opacity: 0.5;
}*/

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

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

#header:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(180deg,rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
	z-index: -10;
	transition: all 0.2s;
}

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

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

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

#navigation ul li
{
	display: inline-block;
	padding: 60px 0px;
	transition: all 0.2s;
}

#navigation ul li:after
{
	content: "|";
	margin: 0px 25px;
	color: #fff;
}

#navigation ul li:last-child:after
{
	display: none;
}

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

#navigation ul li a
{
	color: #fff;
	text-decoration: none;
}

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

#logoContainer
{
	width: 350px;
	height: 350px;
	position: absolute;
	left: 50%;
	top: 52%;
	transform: translate(-50%, -50%);
	z-index: 50;
	border-radius: 1000px;
}

#logoContainer:before
{
	display: none;
}

#logo
{
	position: absolute;
	width: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	filter: drop-shadow(0px 0px 20px rgba(0,0,0,0.8));
}

/*#logoContainer:after
{
	content: "";
	position: absolute;
	width: 90%;
	height: 90%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border-radius: 10000px;
	border: 1px dashed var(--light);
}*/

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

.text
{
	margin: 100px 0px;
}

#intro
{
	background-color: var(--salbei);
	padding: 100px 0px;
	color: #fff;
	position: relative;
	text-align: center!important;
}

/*#intro:before, .dividerImg:before
{
	content: "";
	position: absolute;
	width: 100%;
	left: 0;
	top: 15px;
	border-top: 1px dashed var(--light);
	z-index: 100;
}

#intro:after, .dividerImg:after
{
	content: "";
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 15px;
	border-top: 1px dashed var(--light);
	z-index: 100;
}*/

#intro .text:first-child
{
	margin-top: 0;
}

#intro .text:last-child
{
	margin-bottom: 0;
}

.text.big p
{
	font-size: 1.2em;
}

.text p, .text ul, h2, h3 
{
	display: block;
	margin: auto;
}

/*.divider
{
	width: 80px;
	height: 40px;
	background-image: url(icon.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	margin: auto;
}

#intro .divider
{
	margin: -20px auto;
}*/

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

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

.imgFlex
{
	display: flex;
}

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

.imgFlexItem
{
	width: 50%;
}

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

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

.right .textBox
{
	padding: 50px 60px 50px 0px;
}

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

.textBox:before
{
	content: "";
	position: absolute;
	width: 150vw;
	height: 100%;
	left: -60px;
	top: 50%;
	transform: translateY(-50%);
	background-color: var(--taupe);
	opacity: 0.6;
	z-index: -10;
}

/*.textBox:after
{
	content: "";
	position: absolute;
	width: 150vw;
	height: calc(100% + 100px);
	left: -25px;
	top: 50%;
	transform: translateY(-50%);
	border: 1px dashed var(--dark);
	opacity: 1;
	z-index: -5;
}*/

.imgFlex.right .textBox:before
{
	left: auto;
	right: -60px;
}

.imgFlex.right .textBox:after
{
	left: auto;
	right: -25px;
}

.dividerImg
{
	padding: 150px 0px;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
}

.dividerOverlay
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: var(--dark);
	opacity: 0.6;
}

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

.quote
{
	line-height: 1.4;
}

.quote + p
{
	margin-top: 1em;
}

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

.text.withButton p a, .buttonArea p a, #accepted
{
	display: inline-block;
	font-weight: 300;
	line-height: 1.3;
	text-align: center;
	color: #fff!important;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s;
	background-color: var(--salbei);
	padding: 0.75em 1.5em 0.75em;
	position: relative;
	border-bottom: 0px solid transparent!important;
}

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

/*.text.withButton p a:before, .buttonArea p a:before
{
	content: "";
	position: absolute;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	border: 1px dashed var(--light);
	z-index: 1;
}*/

.buttonArea
{
	margin-top: 30px;
}

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

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

#copy span
{
	position: relative;
	top: 0.06em;
}

#footerList
{
	text-align: right;
}

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

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

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

#blogFlex
{
	display: flex;
	flex-wrap: wrap;
	position: relative;
	padding: 0px 0px;
	justify-content: center;
}

/*#blogFlex:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-color: var(--pink);
	opacity: 0.8;
	z-index: -5;
}

#blogFlex:before
{
	content: "";
	position: absolute;
	width: 40%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	background-color: var(--pink);
	opacity: 0.4;
}*/

.blogItem
{
	width: 25%;
	padding-bottom: 25%;
	position: relative;
	overflow: hidden;
}

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

.blogInner
{
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	color: var(--light);
	z-index: 10;
	text-align: center;
	font-family: 'Fira Sans', sans-serif;
	text-transform: uppercase;
	font-weight: 300;
	letter-spacing: 0.03em;
	font-size: 1.5em;
}

.blogImg
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s;
}

.blogItem:hover .blogImg
{
	transform: scale(1.1);
}

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

#textButton
{
	width: 100%;
}

#floralLeft, #floralRight
{
	position: absolute;
	z-index: -10;
	opacity: 0.25;
	width: 56.5%;
}

#floralRight
{
	right: 0;
	bottom: -60px;
}

#pageEnd
{
	position: relative;
}

strong
{
	font-weight: 500;
}

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

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

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

.text ul li:before
{
	content: "";
	position: absolute;
	width: 1em;
	height: 1em;
	background-image: url(heart.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	left: 0;
	top: 0.41em;
}

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

form label
{
	color: var(--dark);
	font-family: 'Source Serif';
	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: 0px;
   	font-size: 1em;
   	width: 100%;
   	border: none;
   	font-family: 'Source Serif';
   	line-height: 1.6;
   	color: var(--dark);
   	font-weight: 300;
   	transition: all 0.2s;
   	background-color: #fff;
}

input, textarea
{
	color: var(--dark);
}

input[type = "text"], input[type = "email"], textarea
{
	border: 1px solid transparent;
	padding: 0.5em 0.8em 0.4em;
}

input, textarea
{
	margin-bottom: 1em;
	transition: border-color 0.2s;
}

input:focus, textarea:focus
{
	border-color: var(--salbei);
	outline: none!important;
}

textarea
{
	height: 12em;
	resize: none;
}

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingabe.";
	font-weight: 500;
	color: red;
	display: block;
	margin-bottom: 0.5em;
}

.alert.alert-danger ul
{
	margin: 0em 0em 2em;
	line-height: 1.6;
}

.alert.alert-danger ul li
{
	color: red;
}

.checkbox
{
	position: relative;
	padding-left: 1.4em;
}

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

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

button
{
	display: inline-block;
	font-weight: 300;
	line-height: 1.3;
	text-align: center;
	color: #fff!important;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.2s;
	background-color: var(--salbei);
	padding: 0.75em 1.5em 0.75em;
	position: relative;
	border-bottom: 0px solid transparent!important;
	margin-top: 1em;
	width: auto;
	cursor: pointer;
}

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

#whatsapp
{
	display: none!important;
}

#down
{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: 80px;
	color: #fff;
	text-align: center;
	z-index: 1000;
}

#down:before
{
	content: "";
	position: absolute;
	width: 1px;
	height: 65px;
	top: calc(100% + 15px);
	left: 50%;
	transform: translateX(-50%);
	z-index: 500;
	background-color: #fff;
}

#cookieNotice
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 0.85em;
	background-color: rgba(0,0,0,0.35);
	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.8em;
	cursor: pointer;
	display: block;
	margin-top: 0.3em;
}

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

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

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

.partner
{
	width: calc(50% - 40px);
	margin-left: 40px;
	margin-bottom: 40px;
	position: relative;
	padding-top: 40px;
}

.partner:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -10;
	background-color: var(--taupe);
	opacity: 0.6;
}

.partnerImg
{
	padding-bottom: 50%;
	width: calc(100% - 80px);
	display: block;
	margin: auto;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

.partnerContent
{
	text-align: center;
	padding: 30px 40px;
}

#instaButton
{
	background-image: url(instagram.svg);
	background-size: 1em;
	background-position: left 1.5em center;
	background-repeat: no-repeat;
	padding-left: 3.2em;
}

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

@media all and (max-width: 750px){
	.imgFlex
	{
		display: block;
	}

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

	.textBox
	{
		padding: 30px 40px!important;
	}

	.textBox:before
	{
		width: 100%!important;
		left: 0!important;
		top: 0!important;
		right: auto!important;
		transform: translateY(0);
	}

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

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

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

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

	#copy
	{
		position: relative;
		display: block;
		text-align: center;
	}

	#footerList 
	{
		text-align: center;
	}

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

	#logoContainer
	{
		width: 200px!important;
		height: 200px!important;
	}

	.slide
	{
		height: 200px!important;
	}

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

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

	#navigation ul
	{
		display: block;
		text-align: right;
		padding: 55px 40px 10px;
	}

	#navigation ul li, #header.scrolled #navigation ul li
	{
		display: block;
		margin-left: 0;
		padding: 0;
		margin-bottom: 2px;
	}

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

	#opener
	{
		min-height: 300px;
	}

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

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

	#logoContainer
	{
		width: 280px;
		height: 280px;
		top: 50%;
	}

	.text
	{
		margin: 50px 0px;
	}

	#intro
	{
		padding: 50px 0px;
	}

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

	#down
	{
		bottom: 50px;
	}

	#down:before
	{
		height: 40px;
		top: calc(100% + 10px);
	}

	.textBox
	{
		padding: 30px 0px 30px 40px;
	}

	.right .textBox
	{
		padding: 30px 40px 30px 0px;
	}

	.textBox:before
	{
		left: -40px;
	}

	.imgFlex.right .textBox:before
	{
		right: -40px;
	}

	h1
	{
		font-size: 2.8em;
	}

	h2, .quote
	{
		font-size: 1.8em;
	}

	h3
	{
		font-size: 1.5em;
	}

	.dividerImg
	{
		padding: 80px 0px;
	}

	.slide
	{
		height: 38vh;
		max-height: 320px;
	}

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

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

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