:root 
{
	--red: #e8199d;
	--yellow: #fba42d;
	--green: #249366;
	--blue: #18e5c5;
	--dark: #141717;
}

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

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

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

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

h1, h2, h3
{
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	line-height: 1.3;
	font-size: 3em;
}

h2
{
	font-size: 2.4em;
}

h3
{
	font-size: 2em;
}

#intro p, .text.big p, .text.big ul, .text.big + .text.withButton
{
	font-size: 1.25em;
}

h1, .divider h3
{
	display: inline;
	background-color: var(--red);
	color: #fff;
	line-height: 1.7;
	padding: 0.1em 0.3em 0.09em;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
	-moz-box-decoration-break: clone;
	border-radius: 0.2em;
}

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

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

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

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

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

#header
{
	position: fixed;
	width: 100%;
	left: 0;
	top: 0;
	z-index: 1000;
	background: linear-gradient(180deg,rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 85%);
}

#navigation ul
{
	display: flex;
	justify-content: space-between;
	font-size: 0.9em;
}

#navigation ul li
{
	display: inline-block;
	padding: 35px 0px;
}

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

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

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

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

#logo
{
	position: absolute;
	width: 180px;
	left: 50%;
	top: 150px;
	transform: translate(-50%,0);
}

#opener
{
	height: 95vH;
	max-height: 750px;
	position: relative;
	background-size: cover;
	background-position: center;
	min-height: 600px;
}

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

#openerContent
{
	z-index: 50;
	position: absolute;
	width: 100%;
	left: 0;
	top: 51%;
	transform: translateY(-50%);
	text-align: center;
	padding-top: 150px;
}

#opener:before, .divider:before, .colored:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -10;
	opacity: 0.85;
}

#opener.subpage:before
{
	background: linear-gradient(225deg,rgba(149, 74, 153, 1) 16%, rgba(253, 60, 171, 1) 30%, rgba(247, 182, 84, 1) 60%, rgba(167, 231, 186, 1) 94%);
}

.divider:before, .colored:before
{
	/*background: linear-gradient(132deg,rgba(156, 224, 164, 1) 0%, rgba(218, 219, 161, 1) 19%, rgba(224, 185, 212, 1) 44%, rgba(255, 162, 215, 1) 64%, rgba(251, 212, 203, 1) 82%, rgba(230, 227, 206, 1) 100%);*/
	background: linear-gradient(131deg,rgba(149, 74, 153, 1) 16%, rgba(253, 60, 171, 1) 30%, rgba(247, 182, 84, 1) 60%, rgba(167, 231, 186, 1) 94%);
}

.text
{
	margin: 100px 0px;
}

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

.imgFlex
{
	display: flex;
}

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

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

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

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

.textBox:before
{
	content: "";
	position: absolute;
	width: 120%;
	height: 100%;
	right: 0;
	top: 0;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.1);
	border-radius: 20px;
	z-index: -1;
	background-color: #fff;
}

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

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

.text.withButton p a, .text .buttonArea p a, .buttonArea p a, #accepted
{
	display: inline-block;
	line-height: 1.4;
	text-align: center;
	color: #fff!important;
	border-bottom: none!important;
	background-color: var(--red);
	padding: 0.6em 1.1em;
	text-decoration: none;
	font-weight: 500;
	border-radius: 100px;
	transition: all 0.2s;
}

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

.buttonArea
{
	margin-top: 30px;
}

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

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

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

.imgBox
{
	padding: 50px 60px;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.1);
	background-color: #fff;
	border-radius: 20px;
	position: relative;
	z-index: 100;
	margin-top: -100px;
}

strong
{
	font-weight: 500;
}

#footer
{
	padding: 35px 0px;
	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;
}

.divider
{
	padding: 100px 0px;
	position: relative;
	text-align: center;
}

.youtubeContainer
{
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.1);
}

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

.youtubeContainer:after
{
	content: "";
	position: absolute;
	width: 100px;
	height: 100px;
	border-radius: 1000px;
	background-color: var(--red);
	background-image: url(play.svg);
	background-size: 40%;
	background-position: center;
	background-repeat: no-repeat;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 50;
	transition: all 0.2s;
	box-shadow: 0px 0px 30px rgba(0,0,0,0.5);
}

.youtubeContainer:hover:after
{
	background-color: var(--yellow);
}

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

.colored
{
	padding: 100px 0px;
	position: relative;
}

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

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

#formBox
{
	padding: 50px 60px 60px 60px;
	border-radius: 20px;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.08);
}

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

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: 500;
	display: block;
	margin-bottom: 0em;
}

input[type = "text"], input[type = "email"], textarea, button
{
	-webkit-appearance: none;
   	-moz-appearance: none;
   	appearance: none;
   	border-radius: 0.2em;
   	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: 1px solid rgba(0,0,0,0.15);
	padding: 0.5em 1.2em;
	background-color: #fff;
}

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

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

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfe deine 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.4em;
	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.65em;
	cursor: pointer;
}

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

button
{
	display: inline-block;
	line-height: 1.4;
	text-align: center;
	color: #fff!important;
	border-bottom: none!important;
	background-color: var(--red);
	padding: 0.6em 1.1em;
	text-decoration: none;
	font-weight: 500;
	border-radius: 100px;
	transition: all 0.2s;
	width: auto;
	cursor: pointer;
	margin-left: 40px;
	margin-top: 1.3em;
}

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

#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: 31px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	max-width: 400px;
	overflow: auto;
	display: block;
	margin: auto;
	position: relative;
	background-color: #fff;
	border-radius: 20px;
}

#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: 48.5%;
	transform: translateY(-50%);
}

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

#socialMedia
{
	display: flex;
	justify-content: center;
	margin-left: -40px;
}

.socialLink
{
	width: 55px;
	height: 55px;
	border-radius: 1000px;
	background-color: var(--red);
	transition: all 0.2s;
	margin-left: 40px;
	background-size: 45%;
	background-position: center;
	background-repeat: no-repeat;
}

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

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

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

.rezension
{
	display: flex;
	align-items: center;
}

.rezensionImg
{
	width: 180px;
}

.rezensionImg img
{
	border-radius: 1000px;
}

.rezensionContent
{
	width: calc(100% - 180px);
	padding: 50px 60px;
	position: relative;
}

.rezensionContent:before
{
	content: "";
	position: absolute;
	width: calc(100% + 90px);
	height: 100%;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.1);
	right: 0;
	top: 0;
	border-radius: 20px;
	z-index: -10;
}

.rezensionen .rezension:nth-child(2n) .rezensionContent:before
{
	left: 0;
	right: auto;
}

.rezensionen .rezension:nth-child(2n)
{
	flex-direction: row-reverse;
}

.rezensionen .rezension:nth-child(2n) .rezensionContent
{
	text-align: right;
}

.rezension + .rezension
{
	margin-top: 100px;
}

.grey
{
	padding: 100px 0px;
	background-color: rgba(0,0,0,0.05);
}

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

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

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

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

	#intro p, .text.big p, .text.big ul, .text.big + .text.withButton
	{
		font-size: 1em!important;
	}

	#opener
	{
		height: 55vh!important;
	}

	.imgFlex
	{
		display: block;
	}

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

	.textBox
	{
		margin-top: 40px;
	}

	.textBox:before
	{
		width: 100%;
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}

	.socialLink
	{
		width: 40px!important;
		height: 40px!important;
	}

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

	#footerList
	{
		text-align: center;
	}

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

	.youtubeContainer:after
	{
		width: 60px!important;
		height: 60px!important;
	}

	.divider
	{
		padding: 60px 0px!important;
	}

	.textBox:before, .youtubeContainer, #formBox, #cookieBox, .rezensionContent:before
	{
		border-radius: 15px;
	}

	.rezension
	{
		display: block;
	}

	.rezensionContent
	{
		width: 100%!important;
		text-align: center!important;
		padding-top: 90px!important;
	}

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

	.rezensionImg
	{
		width: 120px!important;
		display: block;
		margin: auto;
		margin-bottom: -60px;
	}
}

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

	#navigation ul
	{
		padding: 135px 40px 15px;
		display: block;
		text-align: center;
	}

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

	#navOpener, #logo
	{
		z-index: 1500;
	}

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

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

	#logo
	{
		padding: 15px 0px;
		width: 90px;
		top: 15px;
		position: fixed;
	}

	h1
	{
		font-size: 2em;
	}

	h2
	{
		font-size: 1.7em;
	}

	h3
	{
		font-size: 1.5em;
	}

	#intro p, .text.big p, .text.big ul, .text.big + .text.withButton
	{
		font-size: 1.2em;
	}

	#openerContent
	{
		top: 50%;
		padding-top: 0;
	}

	#opener
	{
		height: 65vH;
		min-height: 350px;
	}

	.text
	{
		margin: 60px 0px;
	}

	.colored
	{
		padding: 60px 0px;
	}

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

	.textBox
	{
		padding: 30px 40px;
	}

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

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

	#opener + .withYoutube
	{
		margin-top: -80px;
	}

	#socialMedia
	{
		margin-left: -30px;
	}

	.socialLink
	{
		width: 45px;
		height: 45px;
		margin-left: 30px;
	}

	#footer
	{
		padding: 28px 0px;
	}

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

	.youtubeContainer:after
	{
		width: 80px;
		height: 80px;
	}

	.divider
	{
		padding: 60px 0px;
	}

	.rezensionImg
	{
		width: 140px;
	}

	.rezensionContent
	{
		width: calc(100% - 140px);
		padding: 30px 40px;
	}

	.rezensionContent:before
	{
		width: calc(100% + 70px);
	}

	.rezension + .rezension
	{
		margin-top: 60px;
	}

	.grey
	{
		padding: 60px 0px;
	}
}

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

@media all and (min-width: 1450px){
	#logo
	{
		top: 180px;
	}
}