:root 
{
	--theme: #cfb86a;
	--darktheme: #a07940;
	--lighttheme: #f4e89e;
	--light: #dbdbdb;
	--dark: #242424;
}

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

body 
{
	font-size: 1.1em;
	color: var(--dark);
	font-family: 'Open Sans Soft';
	font-weight: 400;
	line-height: 1.75;
	overflow-x: hidden;
}

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

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

h1, h2, h3, h4
{
	line-height: 1.15;
	font-weight: 700;
	font-size: 5.5em;
	letter-spacing: 0.02em;
}

h1
{
	color: #fff;
}

h2, h3, h4
{
	font-size: 2.8em;
	line-height: 1.18;
}

h3
{
	font-size: 1.8em;
}

h4
{
	font-size: 1.3em;
}

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

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

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

#opener h1
{
	animation-name: showHeadline;
	animation-duration: 2.5s;
	animation-fill-mode: forwards;
	opacity: 0;
	bottom: -30px;
	position: relative;
	animation-delay: 0.1s;
}

@keyframes showHeadline
{
	from
	{
		opacity: 0;
		bottom: -30px;
	}

	to
	{
		opacity: 1;
		bottom: 0;
	}
}

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

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

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

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

#navigation ul
{
	text-align: right;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 40px;
	padding: 60px 0px;
	position: relative;
	letter-spacing: 0.02em;
	transition: all 0.2s;
}

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

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

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

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

#logo
{
	position: absolute;
	height: 100%;
	padding: 48px 0px;
	transition: all 0.2s;
}

#header.scrolled #logo
{
	padding: 29px 0px;
}

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

#header.scrolled #navigation ul li ul
{
	top: 100%;
}

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

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

#navigation ul li ul li
{
	margin-left: 0;
	padding: 0!important;
	margin-bottom: 4px;
}

#navigation ul li.active ul li a
{
	font-weight: 400;
	color: #fff;
}

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

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

#opener
{
	height: 100vh;
	position: relative;
	background-size: cover;
	background-position: cover;
	background-repeat: no-repeat;
}

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

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

#down
{
	position: absolute;
	width: 2px;
	height: 100vw;
	right: 80px;
	bottom: 0;
	background: linear-gradient(180deg,rgba(0,0,0,0) 65%, rgba(207,184,106,1) 100%);
	z-index: 0;
}

#down:after
{
	content: "";
	position: absolute;
	width: 12px;
	height: 12px;
	border-left: 2px solid var(--theme);
	border-bottom: 2px solid var(--theme);
	left: 50%;
	bottom: 0;
	transform: translateX(-50%) rotate(-45deg);
}

.text
{
	margin: 100px 0px;
}

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

.colored + .colored
{
	padding-top: 0;
	margin-top: -100px;
}

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

.services:before
{
	content: "";
	position: absolute;
	width: calc(100vw + 10px);
	height: 50%;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--dark);
}

.serviceItem
{
	width: calc(33.3% - 10px);
	margin-left: 10px;
	margin-bottom: 10px;
	position: relative;
	color: #fff;
	font-size: 1.2em;
	font-weight: 500;
	letter-spacing: 0.02em;
	overflow: hidden;
}

.serviceImg
{
	padding-bottom: 75%;
	background-size: cover;
	background-position: cover;
	transition: all 0.7s;
}

.serviceItem:hover .serviceImg
{
	transform: scale(1.1);
}

.serviceContent
{
	position: absolute;
	width: 100%;
	left: 0;
	bottom: -30px;
	z-index: 10;
	padding: 30px 40px;
	transition: all 0.2s;
}

.more
{
	font-weight: 400;
	font-size: 0.8em;
	opacity: 0;
	transition: all 0.2s;
}

.serviceItem:hover .serviceContent
{
	bottom: 0;
}

.serviceItem:hover .more
{
	opacity: 1;
}

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

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

.text.withButton p a, .text .buttonArea p a, .buttonArea p a, #accepted
{
	display: inline-block;
	line-height: 1.3;
	text-align: center;
	color: #fff!important;
	padding: 0.7em 1.2em 0.75em;
	background-color: var(--theme);
	font-weight: 500;
	text-decoration: none;
	border-bottom: none!important;
	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: -70px;
}

.buttonArea
{
	margin-top: 30px;
}

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

.rezension
{
	width: calc(33.3% - 10px);
	padding: 30px 40px;
	border: 1px solid var(--theme);
	margin-left: 10px;
	margin-bottom: 10px;
	background-color: #fff;
	position: relative;
	z-index: 50;
}

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

.withRezensionen + .colored
{
	margin-top: -120px;
	position: relative;
}

.withRezensionen + .colored:before
{
	content: "";
	position: absolute;
	width: 100%;
	height: 150px;
	left: 0;
	bottom: 100%;
	z-index: -10;
	background-color: var(--dark);
}

.colored + .dividerImg
{
	margin-top: -100px;
}

.twoCols
{
	display: flex;
	margin-left: -60px;
	align-items: center;
}

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

.text p a, .text ul a, form a, #cookieNotice a, .dividerImg 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, .dividerImg a:hover
{
	color: var(--darktheme);
	border-bottom: 1px solid var(--darktheme);
}

#socialMedia
{
	position: fixed;
	top: 55%;
	transform: translateY(-50%);
	z-index: 800;
	right: 0;
}

.socialItem
{
	display: block;
	color: #fff;
	text-decoration: none;
	position: relative;
	border-top: 1px solid #fff;
}

.socialIcon
{
	position: relative;
	width: 45px;
	height: 45px;
	background-color: var(--theme);
	background-size: 40%;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.2s;
	z-index: 50;
}

#socialMedia .socialItem:first-child
{
	border-top: none!important;
}

.socialDescription
{
	position: absolute;
	white-space: nowrap;
	background-color: var(--theme);
	right: -300px;
	opacity: 0;
	top: 0;
	display: flex;
	align-items: center;
	font-size: 0.85em;
	height: 100%;
	padding: 0em 1.1em;
	transition: all 0.2s;
	border-right: 1px solid #fff;
	font-weight: 500;
	letter-spacing: 0.02em;
}

.socialItem:hover .socialIcon
{
	background-color: var(--darktheme);
}

.socialItem:hover .socialDescription
{
	background-color: var(--darktheme);
	opacity: 1;
	right: 45px;
}

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

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

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

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

.gold + .colored
{
	margin-top: 0px;
}

.gold
{
	padding: 35px 0px;
	background-color: var(--theme);
	color: #fff;
}

.benefits
{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-left: -40px;
	margin-bottom: -20px;
}

.benefit
{
	margin-left: 40px;
	margin-bottom: 20px;
	font-weight: 500;
	background-image: url(tick.svg);
	background-size: auto 1.3em;
	background-position: left center;
	background-repeat: no-repeat;
	padding-left: 2.2em;
}

#footer
{
	padding: 60px 0px;
	background-color: var(--dark);
	font-size: 0.85em;
	letter-spacing: 0.02em;
}

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

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

#footerLogo
{
	max-width: 350px;
	display: block;
	margin: auto;
	margin-bottom: 25px;
}

#footerList 
{
	text-align: center;
}

#footerList li
{
	display: inline-block;
}

#footerList li:before
{
	content: "|";
	margin: 0px 23px 0px 20px;
	color: #fff;
}

#footerList li:first-child:before
{
	display: none;
}

#copy
{
	padding: 18px 0px;
	background-color: var(--theme);
	font-weight: 500;
	letter-spacing: 0.02em;
	color: #fff;
	text-align: center;
	font-size: 0.85em;
}

.mde-dealer-rating-widget
{
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	border: 1px solid var(--theme);
}

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

#cookieBox
{
	padding: 31px 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.6em;
	cursor: pointer;
	display: block;
	margin-top: 0.2em;
}

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

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

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

.imgFlex
{
	display: flex;
}

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

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

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

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

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

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

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

.dividerImg + .colored
{
	margin: 0!important;
}

.colored + #footer
{
	border-top: 1px solid var(--theme);
}

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

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

.twoText ul
{
	column-count: 2;
	column-gap: 60px;
}

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

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

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

form label
{
	font-family: 'Open Sans Soft';
	color: var(--dark);
	font-weight: 700;
	display: block;
	margin-bottom: 0.1em;
}

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

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

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

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

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

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

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre Eingaben.";
	font-weight: 700;
	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: 'Open Sans Soft';
	color: var(--dark);
	font-weight: 400;
	cursor: pointer;
	text-transform: none;
	line-height: 1.6;
}

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

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

.form-group.formmediafile
{
	margin-bottom: 0.3em;
}

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

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

.dividerImg + .colored + .dividerImg
{
	margin-top: 0!important;
}

#autoscout
{
	width: 100%;
	height: 100vh;
	border: none;
}

#map
{
	margin-top: 60px;
	position: relative;
	width: 100%;
	padding-bottom: 45%;
}

#drdsgvo_map_1
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
}

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

.accordeonOpener
{
	cursor: pointer;
}

.accordeonContent
{
	display: none;
}

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

.accordeonOpener h4
{
	position: relative;
	padding-left: 1.3em;
	transition: all 0.2s;
	cursor: pointer;
}

.accordeonOpener h4:hover
{
	color: var(--theme);
}

.accordeonOpener h4:before
{
	content: "+";
	position: absolute;
	left: 0;
	top: 0;
}

.accordeonOpener.active h4:before
{
	content: "-";
	top: -0.1em;
}

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

.accordeonContent
{
	margin-top: 0.5em;
	padding-bottom: 15px;
}

.colored + .fancybox
{
	margin-top: -100px;
	display: block;
}

.gallery
{
	display: flex;
	flex-wrap: wrap;
}

.galleryItem
{
	width: 33.3%;
	cursor: zoom-in;
}

.galleryImg
{
	padding-bottom: 75%;
	background-size: cover;
	background-position: center;
}

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

@media all and (max-width: 500px){
	.galleryItem
	{
		width: 100%;
	}
}

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

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

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

	h4
	{
		font-size: 1.15em;
	}

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

	.serviceItem, .rezension
	{
		width: calc(100% - 10px);
	}

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

	#footerLogo
	{
		max-width: 220px!important;
		margin-bottom: 15px!important;
	}

	#footerList
	{
		text-align: center;
	}

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

	#footerList li:before
	{
		display: none;
	}

	#opener
	{
		height: 50vh!important;
	}

	.twoCols
	{
		display: block;
	}

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

	.twoCol + .twoCol
	{
		margin-top: 30px;
	}

	.imgFlex
	{
		display: block;
	}

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

	.textBox:before
	{
		width: calc(100% - 2px);
		border-top: none;
	}

	#down
	{
		background: linear-gradient(180deg,rgba(0,0,0,0) 50%, rgba(207,184,106,1) 100%);
	}

	#down:after
	{
		width: 9px;
		height: 9px;
	}

	.twoText ul
	{
		column-count: 1;
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 10em;
	}

	#map
	{
		padding-bottom: 65%;
	}
}

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

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

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

	#navigation ul
	{
		padding: 80px 40px 15px;
	}

	#navigation ul li ul
	{
		position: relative;
		display: block;
		padding: 0;
		min-width: auto;
		border: none!important;
		text-align: right;
		left: 0;
		padding: 8px 0px 2px;
		top: 0!important;
	}

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

	#navigation ul li ul li a:after
	{
		content: "-";
		padding-left: 10px;
	}

	#navigation ul li ul li
	{
		margin-bottom: 3px!important;
	}

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

	.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: 85px;
	}

	#logo
	{
		padding: 25px 0px!important;
	}

	#opener
	{
		height: 70vh;
		min-height: 350px;
	}

	.text
	{
		margin: 60px 0px;
	}

	.colored
	{
		padding: 60px 0px;
	}

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

	#openerContent
	{
		bottom: 60px;
	}

	h1
	{
		font-size: 4em;
	}

	h2
	{
		font-size: 2em;
	}

	h3
	{
		font-size: 1.5em;
	}

	h2, h3, h4
	{
		line-height: 1.35;
	}

	.gold
	{
		padding: 25px 0px;
	}

	.dividerImg
	{
		padding: 90px 0px;
	}

	.services
	{
		margin-top: -80px;
	}

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

	.colored + .colored, .colored + .dividerImg
	{
		margin-top: -60px;
	}

	.withRezensionen + .colored:before
	{
		height: 90px;
	}

	.withRezensionen + .colored
	{
		margin-top: -80px;
	}

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

	.twoCol
	{
		margin-left: 40px;
	}

	#copy
	{
		padding: 16px 0px;
	}

	#footer
	{
		padding: 40px 0px;
	}

	#footerLogo
	{
		max-width: 280px;
		margin-bottom: 20px;
	}

	.benefits
	{
		justify-content: center;
		margin-bottom: -10px;
	}

	.benefit
	{
		margin-bottom: 10px;
	}

	.serviceItem
	{
		font-size: 1.1em;
	}

	.socialIcon
	{
		width: 40px;
		height: 40px;
	}

	.socialItem:hover .socialDescription
	{
		right: 40px;
	}

	#socialMedia
	{
		top: 50%;
	}

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

	.textBox
	{
		padding: 30px 40px;
	}

	.twoText ul
	{
		column-gap: 40px;
	}

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

	#map
	{
		margin-top: 40px;
	}

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

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

	.accordeonContent
	{
		padding-bottom: 10px;
	}

	.colored + .fancybox
	{
		margin-top: -60px;
	}
}

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