:root 
{
	--theme: #FF7900;
	--darktheme: #DD4814;
	--light: #f2f2f2;
	--dark: #002244;
}

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

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

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

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

h1, h2, h3
{
	line-height: 1;
	font-family: 'Barlow Condensed';
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.02em;
	font-size: 5em;
}

h2
{
	font-size: 4em;
}

h3
{
	font-size: 2.6em;
}

#opener h1, #opener
{
	color: #fff;
}

.text.big p, .text.big ul, #opener p, .service
{
	font-size: 1.25em;
}

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

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

h1 + p
{
	margin-top: 0.7em;
}

p + h3, ul + h3
{
	margin-top: 35px;
}

#header
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	z-index: 1000;
	background-color: #fff;
	background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(230, 230, 230, 1) 100%);
	top: -168px;
}

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

#navigation ul
{
	display: flex;
	justify-content: space-between;
	font-family: 'Barlow Condensed';
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

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

.subNavOpener
{
	display: inline-block;
	position: relative;
	width: 6px;
	height: 6px;
	border-left: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(-45deg);
	top: -5px;
	margin-left: 8px;
	opacity: 0.7;
	transition: all 0.2s;
}

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

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

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

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

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

#navigation ul li ul
{
	position: absolute;
	display: none;
	padding: 0px;
	left: -20px;
	top: 100%;
	background-color: var(--dark);
	text-align: left;
	border-top: 2px solid #fff;
	min-width: calc(100% + 40px);
	padding: 8px 0px;
}

#navigation ul li ul:before
{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: var(--dark);
	border-left: 2px solid #fff;
	border-top: 2px solid #fff;
	left: 20px;
	top: -7px;
	transform: rotate(45deg);
}

#navigation ul li ul li
{
	display: block;
	white-space: nowrap;
	text-transform: none;
	letter-spacing: 0;
	padding: 0;
	margin-bottom: 6px;
	padding: 3px 20px 1px;
}

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

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

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

#navigation ul li ul li ul
{
	display: none;
	top: -8px;
	left: 100%;
	border-top: none;
	border-left: 2px solid #fff;
}

#navigation ul li ul li ul:before
{
	top: 20px;
	left: -7px;
	transform: rotate(-45deg);
}

#navigation ul li ul li ul li a
{
	opacity: 0.7!important;
	font-weight: 300!important;
}

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

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

#navArea
{
	background-color: var(--dark);
}

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

#logoAreaFlex
{
	display: flex;
	justify-content: flex-end;
	padding: 60px 0px;
}

#logoAreaFlex a
{
	display: inline-block;
	line-height: 1.2;
	text-align: center;
	color: #fff!important;
	font-family: 'Barlow Condensed';
	text-transform: uppercase;
	letter-spacing: 0.02em;
	border-bottom: none!important;
	padding: 0.6em 1.2em 0.66em;
	text-decoration: none;
	font-weight: 500;
	margin-left: 40px;
	border-radius: 0.35em;
	position: relative;
	overflow: hidden;
	z-index: 10;
	box-shadow: 0px 0px 1.2em rgba(0,0,0,0);
	transition: all 0.2s;
}

#logoAreaFlex a:before, .text.withButton p a:before, .text .buttonArea p a:before, .buttonArea p a:before, #accepted:before, button:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: -1;
	background: linear-gradient(90deg,rgba(255, 121, 0, 1) 0%, rgba(221, 72, 20, 1) 100%);
	transition: all 0.2s;
}

#search
{
	padding-left: 2.8em!important;
}

#search:after
{
	content: "";
	position: absolute;
	width: 0.8em;
	height: 0.8em;
	left: 1.2em;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	background-image: url(search.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

#logoAreaFlex a:hover
{
	transform: scale(1.04);
	box-shadow: 0px 0px 1.2em rgba(0,0,0,0.2);
}

.desktopHidden
{
	display: none!important;
}

#opener
{
	min-height: 50vh;
	display: flex;
	align-items: center;
	background-size: cover;
	background-position: center;
	position: relative;
}

#bigLogo
{
	position: absolute;
	width: 300px;
	right: 40px;
	bottom: -50px;
	z-index: 15;
}

#openerContent
{
	padding: 100px 0px;
	position: relative;
	width: 100%;
	z-index: 50;
}

#opener:after, .dividerImg:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background: linear-gradient(180deg,rgba(0,34,68,0.2) 0%, rgba(0,34,68,0.9) 100%);
}

#openerInner
{
	max-width: 800px;
}

.text.withButton p a, .text .buttonArea p a, .buttonArea p a, #accepted
{
	display: inline-block;
	line-height: 1.2;
	text-align: center;
	color: #fff!important;
	font-family: 'Barlow Condensed';
	text-transform: uppercase;
	letter-spacing: 0.02em;
	border-bottom: none!important;
	padding: 0.6em 1.2em 0.63em;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s;
	border-radius: 0.3em;
	position: relative;
	z-index: 20;
	border-radius: 0.35em;
	overflow: hidden;
	box-shadow: 0px 0px 1.2em rgba(0,0,0,0);
}

.text.withButton p a:hover, .text .buttonArea p a:hover, .buttonArea p a:hover, #accepted:hover
{
	transform: scale(1.04);
	box-shadow: 0px 0px 1.2em rgba(0,0,0,0.2);
}

.text
{
	margin: 100px 0px;
}

.buttonArea
{
	margin-top: 25px;
}

#opener .buttonArea
{
	margin-top: 30px;
}

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

.grey
{
	padding: 100px 0px;
	/*background-color: var(--light);*/
	background: linear-gradient(-90deg,rgba(255, 255, 255, 1) 0%, rgba(230, 230, 230, 1) 100%);
}

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

.service
{
	width: calc(25% - 10px);
	margin-left: 10px;
	margin-bottom: 10px;
	overflow: hidden;
	position: relative;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	text-decoration: none;
	line-height: 1.2;
	font-weight: 500;
	font-family: 'Barlow Condensed';
	box-shadow: 0px 0px 1.2em rgba(0,0,0,0);
	transition: all 0.2s;
}

.service.round
{
	border-radius: 10000px;
}

.service:hover
{
	box-shadow: 0px 0px 1.2em rgba(0,0,0,0.2);
	transform: scale(1.04);
}

.service.round:after
{
	display: none;
}

.service:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 10;
	background-color: rgba(0,0,0,0.3);
	transition: all 0.2s;
}

.service.noImg:after
{
	display: none;
}

.service:hover:after
{
	background-color: var(--theme);
	opacity: 0.5;
}

.serviceImg
{
	padding-bottom: 100%;
	background-size: cover;
	background-position: center;
	background-color: var(--theme);
}

.serviceContent
{
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 50;
	padding: 35px 40px;
	width: 100%;
}

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

.grey + .withServices
{
	margin-top: -150px;
	position: relative;
}

.grey + .withServices:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100px;
	/*background-color: var(--light);*/
	background: linear-gradient(-90deg,rgba(255, 255, 255, 1) 0%, rgba(230, 230, 230, 1) 100%);
	z-index: -1;
	left: 0;
	top: 0;
}

.twoText
{
	display: flex;
	margin-left: -60px;
}

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

.twoTextItem
{
	width: 50%;
	margin-left: 60px;
}

.sticky
{
	text-align: right;
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	left: 0;
	top: 150px;
}

.right .sticky
{
	text-align: left;
}

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

.benefits
{
	display: flex;
	flex-wrap: wrap;
	width: calc(100% + 60px);
	margin-left: -60px;
	margin-bottom: -25px;
	margin-top: -60px;
}

.benefit
{
	width: calc(50% - 60px);
	margin-left: 60px;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
}

.benefitInner
{
	width: calc(100% - 50px);
	padding-left: 20px;
}

.tick
{
	width: 50px;
	height: 50px;
	border-radius: 1000px;
	background: linear-gradient(90deg,rgba(255, 121, 0, 1) 0%, rgba(221, 72, 20, 1) 100%);
	position: relative;
}

.tick:before
{
	content: "";
	position: absolute;
	width: 80%;
	height: 80%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	border-radius: 1000px;
	background-color: var(--dark);
	background-image: url(tick.svg);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
}

strong
{
	font-weight: 500;
}

.dividerImg
{
	padding: 150px 0px;
	position: relative;
	background-size: cover;
	background-position: center;
	color: #fff;
}

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

.imgFlex
{
	display: flex;
}

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

.imgFlex .imgFlexItem:nth-child(1)
{
	width: 50%;
	padding-right: 30px;
}

.imgFlex.right .imgFlexItem:nth-child(1)
{
	width: 50%;
	padding-left: 30px;
	padding-right: 0;
}

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

.textBox
{
	padding: 50px 60px;
	padding-left: 30px;
	position: relative;
	margin-top: 60px;
}

.right .textBox
{
	padding-left: 60px;
	padding-right: 30px;
}

.textBox:before
{
	content: "";
	position: absolute;
	width: 120%;
	height: 100%;
	right: 0;
	top: 0;
	z-index: -1;
	background-color: var(--light);
}

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

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

.galleryItem
{
	width: calc(25% - 10px);
	margin-left: 10px;
	margin-bottom: 10px;
	cursor: zoom-in;
	transition: all 0.2s;
	box-shadow: 0px 0px 1.2em rgba(0,0,0,0);
	justify-content: center;
}

.galleryImg
{
	padding-bottom: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
	transition: all 0.2s;
}

.galleryItem:hover
{
	transform: scale(1.04);
	box-shadow: 0px 0px 1.2em rgba(0,0,0,0.2);
}

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

#footer
{
	padding: 40px 0px;
	background-color: var(--dark);
	font-size: 0.85em;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	font-family: 'Barlow Condensed';
}

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

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

#footerList
{
	text-align: right;
}

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

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

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

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

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

#cookieNotice
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	font-size: 0.85em;
	background-color: rgba(0,0,0,0.2);
	z-index: 500000;
	display: none;
	align-items: center;
	justify-content: center;
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
}

#cookieBox
{
	padding: 33px 40px 40px 40px;
	max-height: calc(100vh - 80px);
	max-width: 420px;
	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.25em;
}

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

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

.withImg + .grey
{
	position: relative;
	margin-top: -110px;
}

.withImg + .grey:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100px;
	left: 0;
	bottom: 100%;
	/*background-color: var(--light);*/
	background: linear-gradient(-90deg,rgba(255, 255, 255, 1) 0%, rgba(230, 230, 230, 1) 100%);
	z-index: -1;
}

.contentBox
{
	padding: 50px 60px;
	background-color: #fff;
	box-shadow: 0px 0px 100px rgba(0,0,0,0.08);
}

.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.6em;
	background-color: var(--theme);
	border-radius: 100px;
}

.accordeons
{
	margin-top: -60px;
}

.accordeonIcon
{
	width: 50px;
	height: 50px;
	border-radius: 1000px;
	background: linear-gradient(90deg,rgba(255, 121, 0, 1) 0%, rgba(221, 72, 20, 1) 100%);
	position: relative;
}

.accordeonIcon:before
{
	content: "";
	position: absolute;
	width: 80%;
	height: 80%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	border-radius: 1000px;
	background-color: var(--dark);
	background-image: url(plus.svg);
	background-size: 50%;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s;
}

.accordeonOpener.active .accordeonIcon:before
{
	transform: translate(-50%, -50%) rotate(45deg);
}

.accordeonOpener
{
	display: flex;
	align-items: center;
	color: var(--dark);
	font-weight: 500;
	text-decoration: none;
	font-family: 'Barlow Condensed';
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.accordeonOpenerInner
{
	width: calc(100% - 50px);
	padding-left: 20px;
}

.accordeonContent
{
	padding: 50px 60px;
	background-color: var(--light);
	margin-top: 20px;
	display: none;
}

.accordeonOpener.active + .accordeonContent
{
	display: block;
}

.accordeon + .accordeon
{
	margin-top: 25px;
}

#intro
{
	padding: 90px 0px 100px;
	background: linear-gradient(90deg,rgba(255, 255, 255, 1) 0%, rgba(230, 230, 230, 1) 100%);
}

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

.bewertung
{
	width: calc(33.3% - 10px);
	margin-left: 10px;
	margin-bottom: 10px;
	box-shadow: 0px 0px 60px rgba(0,0,0,0.09);
	padding: 20px 25px;
	font-size: 0.85em;
}

.bewertung strong:before
{
	content: "";
	position: relative;
	display: block;
	width: 100%;
	height: 0.85em;
	background-image: url(stars.svg);
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
	margin-bottom: 0.8em;
}

.search_it-result a
{
	font-weight: 500;
}

.search_it-result + .search_it-result
{
	margin-top: 1em;
}

.search_it-result
{
	padding-left: 0!important;
}

.search_it-result:before
{
	display: none!important;
}

#searchContainer
{
	display: none;
	justify-content: center;
	align-items: center;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1200;
	background-color: rgba(0,0,0,0.6);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
}

#searchInner
{
	width: 100%;
}

#searchContainer input
{
	width: 100%;
	color: #fff;
	background-color: transparent;
	border: 2px solid #fff;
	margin-bottom: 0;
	padding: 0.6em 1.4em;
	border-radius: 0.3em;
}

#searchContainer input:focus
{
	border-color: var(--theme);
	outline: 1px solid var(--theme);
}

#searchContainer #form
{
	padding: 0;
	width: 100%;
	margin-top: 0;
	margin-left: 0;
}

#searchContainer form
{
	margin-left: 0;
}

#searchButton
{
	width: 80px;
	height: 80px;
	display: block;
	border-radius: 100px;
	background: linear-gradient(90deg,rgba(255, 121, 0, 1) 0%, rgba(221, 72, 20, 1) 100%);
	transition: all 0.2s;
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 50px;
	margin-top: 0;
	box-shadow: 0px 0px 1.2em rgba(0,0,0,0);
	overflow: hidden;
}

#searchButton:after
{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-image: url(search);
	background-size: 40%;
	background-position: center;
	background-repeat: no-repeat;
}

#searchButton:hover
{
	transform: translateY(-50%) scale(1.04);
	box-shadow: 0px 0px 1.2em rgba(0,0,0,0.2);
}

#searchClose
{
	position: absolute;
	width: 30px;
	height: 30px;
	background-image: url(close.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	top: 40px;
	right: 40px;
	cursor: pointer;
}

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

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

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

form label
{
	font-family: 'Barlow Condensed';
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 0.02em;
	display: block;
	margin-bottom: 0.25em;
}

input[type = "text"], input[type = "email"], textarea, button, select
{
	-webkit-appearance: none;
   	-moz-appearance: none;
   	appearance: none;
   	border-radius: 0px;
   	font-size: 1em;
   	width: 100%;
   	border: none;
   	font-family: 'Barlow';
   	line-height: 1.6;
   	color: var(--dark);
   	font-weight: 300;
   	background-color: transparent;
}

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

input[type = "text"], input[type = "email"], textarea, select
{
	border: 1px solid var(--light);
	padding: 0.5em 1.2em;
	background-color: #fff;
}

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

select
{
	cursor: pointer;
	background-image: url(down.svg);
	background-size: 0.5em;
	background-position: right 1.2em center;
	background-repeat: no-repeat;
}

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

.formPart
{
	margin-bottom: 1em;
	font-weight: 500;
}

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

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

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

button
{
	display: inline-block;
	line-height: 1.2;
	text-align: center;
	color: #fff!important;
	font-family: 'Barlow Condensed';
	text-transform: uppercase;
	letter-spacing: 0.02em;
	border-bottom: none!important;
	padding: 0.6em 1.2em 0.63em;
	text-decoration: none;
	font-weight: 500;
	transition: all 0.2s;
	border-radius: 0.3em;
	position: relative;
	z-index: 20;
	border-radius: 0.35em;
	overflow: hidden;
	box-shadow: 0px 0px 1.2em rgba(0,0,0,0);
	width: auto;
	cursor: pointer;
	margin-left: 40px;
	margin-top: 1.3em;
}

button:hover
{
	transform: scale(1.04);
	box-shadow: 0px 0px 1.2em rgba(0,0,0,0.2);
}

h2 strong, h3 strong
{
	font-weight: 700;
	color: var(--theme);
}

.search_it-results
{
	margin-top: 1.2em;
}

.price
{
	font-weight: 300;
	font-size: 0.8em;
	padding-top: 0.3em;
	margin-top: 0.3em;
	border-top: 1px solid #fff;
	display: block;
}

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

@media all and (max-width: 500px){
	.service
	{
		width: calc(100% - 10px)!important;
	}

	.serviceImg
	{
		padding-bottom: 75%;
	}
}

@media all and (max-width: 750px){
	h1, h2, h3
	{
		line-height: 1.15;
	}

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

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

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

	.text.big p, .text.big ul, #opener p, .service
	{
		font-size: 1em!important;
	}

	#bigLogo
	{
		display: none;
	}

	.service
	{
		width: calc(50% - 10px);
	}

	.galleryItem
	{
		width: calc(50% - 10px);
	}

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

	.twoText
	{
		display: block;
		margin-left: 0!important;
	}

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

	.sticky
	{
		text-align: left!important;
		margin-bottom: 1em;
	}

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

	.imgFlex
	{
		display: block;
	}

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

	.textBox
	{
		padding: 30px 40px!important;
		margin-top: 0!important;
	}

	.textBox:before
	{
		width: 100%;
	}

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

	#footerList
	{
		text-align: left;
	}

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

	#searchButton
	{
		width: 40px;
		height: 40px;
		right: 49px;
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}
}

@media all and (max-width: 800px){
	.bewertung
	{
		width: calc(100% - 10px);
	}
}

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

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

	.desktopHidden
	{
		display: block!important;
	}

	#navigation ul li
	{
		display: block;
		margin-left: 0;
		padding: 14px 0px 15px 0px;
		border-bottom: 1px solid #fff;
	}

	#navigation ul li:last-child
	{
		border-bottom: 0!important;
	}

	#navigation ul li a.subNavOpener
	{
		width: 58px;
		height: 58px;
		border: 0;
		transform: rotate(0);
		position: absolute;
		top: 0;
		right: 0;
	}

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

	#navigation ul li ul li ul
	{
		position: relative;
		left: 0;
		top: 0;
		border-left: 0;
		padding: 0;
		font-size: 0.85em;
	}

	.subNavOpener.active + ul
	{
		display: block!important;
	}

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

	#navigation ul li ul li
	{
		border-bottom: 1px solid rgba(255,255,255,0.3);
		padding: 1px 0px 9px;
	}

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

	#navigation ul li ul li .subNavOpener
	{
		height: 35px!important;
	}

	#navigation ul li ul li ul li
	{
		border-bottom: none!important;
	}

	#navigation ul li ul li ul li
	{
		padding: 0;
	}

	#navigation ul li ul li ul
	{
		margin-top: 6px;
	}

	#navigation ul li ul li:last-child
	{
		padding-bottom: 0;
	}

	.subNavOpener:after
	{
		content: "";
		position: absolute;
		right: 0;
		top: calc(50% - 2px);
		width: 5px;
		height: 5px;
		border-left: 2px solid #fff;
		border-bottom: 2px solid #fff;
		transform: translateY(-50%) rotate(-45deg);
	}

	.subNavOpener:before
	{
		display: none!important;
	}

	.subNavOpener.active:after
	{
		top: 50%;
		transform: translateY(-50%) rotate(135deg);
	}

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

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

	#header
	{
		top: 0;
		box-shadow: 0px 0px 40px rgba(0,0,0,0);
		transition: all 0.2s;
	}

	#header.scrolled
	{
		box-shadow: 0px 0px 40px rgba(0,0,0,0.09);
	}

	#logoAreaFlex
	{
		display: none;
	}

	#logoArea .wrap
	{
		height: 100px;
	}

	#logo
	{
		padding: 10px 0px;
	}

	#opener
	{
		min-height: 45vh;
	}

	#bigLogo
	{
		width: 200px;
		right: 40px;
		bottom: -30px;
	}

	#openerContent
	{
		padding: 60px 0px;
	}

	.text 
	{
		margin: 60px 0px;
	}

	.grey
	{
		padding: 60px 0px;
	}

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

	.dividerImg
	{
		padding: 90px 0px;
	}

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

	#footer
	{
		padding: 25px 0px;
	}

	.grey + .withServices
	{
		margin-top: -80px;
	}

	.grey + .withServices:before
	{
		height: 60px;
	}
	.serviceContent
	{
		padding: 20px;
	}

	.benefits
	{
		margin-top: -40px;
	}

	.benefits
	{
		width: calc(100% + 40px);
		margin-left: -40px;
		margin-top: -40px;
	}

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

	.benefitInner
	{
		width: calc(100% - 45px);
		padding-left: 15px;
	}

	.tick
	{
		width: 45px;
		height: 45px;
	}

	.contentBox
	{
		padding: 30px 40px;
	}

	.twoText
	{
		margin-left: -40px;
	}

	.twoTextItem
	{
		margin-left: 40px;
	}

	.withImg + .grey
	{
		margin-top: -70px;
	}

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

	.imgFlex .imgFlexItem:nth-child(1)
	{
		padding-right: 20px;
	}

	.imgFlex.right .imgFlexItem:nth-child(1)
	{
		padding-left: 20px;
	}

	.textBox
	{
		padding: 30px 40px;
		padding-left: 20px;
		margin-top: 40px;
	}

	.right .textBox
	{
		padding-left: 40px;
		padding-right: 20px;
	}

	.accordeons
	{
		margin-top: -40px;
	}

	.accordeonIcon
	{
		width: 45px;
		height: 45px;
	}

	.accordeonOpenerInner
	{
		width: calc(100% - 45px);
		padding-left: 15px;
	}

	.accordeonContent
	{
		padding: 30px 40px;
	}

	h1
	{
		font-size: 3.5em;
	}

	h2
	{
		font-size: 2.8em;
	}

	h3
	{
		font-size: 2em;
	}

	.text.big p, .text.big ul, #opener p, .service
	{
		font-size: 1.15em;
	}

	#intro
	{
		padding: 40px 0px 50px;
	}

	#mobileSearch
	{
		position: absolute;
		width: 40px;
		height: 40px;
		background: linear-gradient(90deg,rgba(255, 121, 0, 1) 0%, rgba(221, 72, 20, 1) 100%);
		border-radius: 1000px;
		top: 50%;
		transform: translateY(-50%);
		right: 95px;
		cursor: pointer;
		transition: all 0.2s;
		box-shadow: 0px 0px 1.2em rgba(0,0,0,0);
	}

	#mobileSearch:after
	{
		content: "";
		position: absolute;
		width: 100%;
		height: 100%;
		left: 0;
		top: 0;
		background-image: url(search);
		background-size: 40%;
		background-position: center;
		background-repeat: no-repeat;
	}

	#mobileSearch:hover
	{
		transform: translateY(-50%) scale(1.04);
		box-shadow: 0px 0px 1.2em rgba(0,0,0,0.2);
	}

	p + h3, ul + h3
	{
		margin-top: 30px;
	}

	#form
	{
		padding-top: 135px;
		margin-top: -225px;
	}

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

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

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

	#navigation ul li ul li .subNavOpener
	{
		position: absolute;
		right: 20px;
		top: 50%;
		transform: translateY(-50%) rotate(-135deg);
	}

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

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