:root 
{
	--dark: #000000;
	--pink: #edc4bd;
	--darkpink: #deada4;
	--green: #adb9ad;
	--lightgreen: #d0d4cb;
	--darkgreen: #93a099;
	--grey: #7f8085;
	--lightgrey: #deded9;
	--greygreen: #deded9;
}

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

body 
{
	font-size: 1.1em;
	color: var(--dark);
	font-family: 'Neue Montreal', sans-serif;
	font-weight: 300;
	line-height: 1.85;
	overflow-x: hidden;
	letter-spacing: 0.02em;
}

::selection 
{
	background-color: var(--pink);
 	color: var(--dark);
}

::-moz-selection 
{
  	background-color: var(--pink);
 	color: var(--dark);
}

h1, h2 
{
	font-family: 'virgi', sans-serif;
	font-weight: 300;
	font-size: 5.8em;
	line-height: 1;
	letter-spacing: 0;
}

h2
{
	font-size: 4.5em;
}

h3
{
	font-weight: 300;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	line-height: 1.55;
	font-size: 1.4em;
}

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

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

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

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

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

#header
{
	position: sticky;
	position: -webkit-sticky;
	top: -172px;
	left: 0;
	z-index: 1000;
	background-color: #fff;
}

#logo
{
	max-width: 410px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	padding: 25px 0px;
	margin-bottom: -9px;
}

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

#navigation ul
{
	display: flex;
	margin-left: -20px;
	justify-content: space-between;
}

#navigation ul li
{
	display: inline-block;
	margin-left: 20px;
	padding: 15px 0px;
	position: relative;
}

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

#navigation ul li ul
{
	position: absolute;
	background-color: var(--darkpink);
	display: none;
	left: 0px;
	padding: 10px 20px;
	top: calc(100% - 8px);
}

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

#navigation ul li ul li
{
	display: block;
	white-space: nowrap;
	margin-left: 0;
	padding: 0;
}

#navigation ul li ul li a
{
	text-transform: none;
}

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

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

#navigation ul li a
{
	color: var(--dark);
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
}

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

.slideshow img
{
	height: 380px;
	padding: 10px;
}

#opener
{
	background-color: var(--lightgrey);
	padding: 20px;
}

#openerImg
{
	height: 360px;
	background-size: cover;
	background-position: center;
	position: relative;
}

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

#openerTitle
{
	position: absolute;
	width: 100%;
	text-align: center;
	color: #fff;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}

.slideshow
{
	padding: 10px 0px;
	background-color: var(--lightgrey);
}

.text
{
	margin: 60px 0px;
}

.textFlex
{
	display: flex;
}

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

.textFlexItem
{
	width: 50%;
}

.textFlex .textFlexItem:nth-child(1)
{
	padding-right: 40px;
}

.textFlex.right .textFlexItem:nth-child(1)
{
	padding-right: 0px;
	padding-left: 40px;
}

.textFlex .textFlexItem:nth-child(2)
{
	padding: 20px 0px 20px 40px;
	border-left: 1px solid var(--lightgrey);
}

.textFlex.right .textFlexItem:nth-child(2)
{
	padding: 20px 40px 20px 0px;
	border-right: 1px solid var(--lightgrey);
	border-left: none;
}

.colored .textFlex .textFlexItem:nth-child(2)
{
	border-left: 1px solid var(--dark);
}

.colored .textFlex.right .textFlexItem:nth-child(2)
{
	border-right: 1px solid var(--dark);
	border-left: none;
}

.textFlex h2
{
	text-align: right;
}

.textFlex.right h2
{
	text-align: left;
}

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

.colored
{
	padding: 60px 0px;
	background-color: var(--greygreen);
}

.colored + .withButton
{
	padding-bottom: 60px;
	background-color: var(--lightgreen);
	margin-top: -90px;
}

#logoContainer
{
	position: relative;
	max-width: 450px;
	display: block;
	margin: auto;
}

.hoverItem
{
	line-height: 1.45;
	text-align: center;
	display: block;
	padding: 0.65em 1.2em;
	cursor: pointer;
	background-color: var(--pink);
	transition: all 0.2s;
	position: relative;
	z-index: 10;
}

.hoverItem:hover
{
	background-color: var(--darkpink);
}

.hoverArea
{
	position: absolute;
}

.hoverArea.first
{
	right: -40px;
	top: 50px;
}

.hoverArea.second
{
	bottom: 90px;
	right: -30px;
}

.hoverArea.third
{
	left: -80px;
	bottom: 120px;
}

.hoverArea:hover .hoverText
{
	display: block;
}

.hoverText
{
	display: none;
	position: absolute;
	width: 480px;
	background-color: #fff;
	filter: drop-shadow(0px 0px 10px rgba(0,0,0,0.08));
	z-index: 100;
	padding: 0.65em 1.2em;
	padding-right: 0;
}

.hoverTextInner
{
	max-height: 270px;
	overflow: auto;
	padding-right: 0.65em;
}

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

.hoverText:before
{
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	background-color: #fff;
	left: 24px;
	top: -5px;
	transform: rotate(-45deg);
}

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

.text.withButton p a, .text .buttonArea p a, .buttonArea p a, #popupCloseButton
{
	line-height: 1.45;
	display: inline-block;
	padding: 0.65em 1.2em;
	cursor: pointer;
	background-color: var(--pink);
	transition: all 0.2s;
	position: relative;
	z-index: 10;
	text-decoration: none;
	color: var(--dark)!important;
	border: none!important;
	text-align: center;
}

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

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

.buttonArea
{
	margin-top: 30px;
}

.hoverArea .buttonArea
{
	margin-top: 15px;
}

.text-center p, p.text-center
{
	max-width: 880px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
}

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

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

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

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

.text ul li:before
{
	content: "";
	position: absolute;
	width: 0.45em;
	height: 0.45em;
	left: 0;
	top: 0.71em;
	background-color: var(--green);
}

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

.accordeonOpener
{
	line-height: 1.45;
	display: inline-block;
	padding: 0.65em 1.2em;
	padding-left: 2.2em;
	cursor: pointer;
	background-color: var(--green);
	transition: all 0.2s;
	position: relative;
	z-index: 10;
	text-decoration: none;
	color: #fff;
}

.accordeonOpener:before
{
	content: "+";
	position: absolute;
	left: 1em;
	top: 0.62em;
	font-weight: 500;
}

.accordeonOpener.active:before
{
	content: "_";
	top: 0.19em;
}

.accordeonOpener:hover
{
	background-color: var(--darkgreen);
}

.accordeonOpener + .accordeonContent
{
	margin-top: 1em;
}

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

.accordeonContent
{
	display: none;
	padding: 0.65em 1.2em;
	border: 1px solid var(--green);
}

#footer
{
	background-color: var(--darkgreen);
	padding: 30px 0px;
	color: #fff;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

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

#footerList
{
	text-align: right;
}

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

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

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

#badge
{
	max-width: 180px;
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-bottom: -9px!important;
}

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

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

.text.colored p a, .text.colored ul a, form a
{
	color: var(--darkgreen);
	border-bottom: 1px dashed var(--darkgreen);
}

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

#cookieNotice
{
	position: sticky;
	position: -webkit-sticky;
	width: 100%;
	padding: 20px 0px;
	background-color: #fff;
	left: 0;
	bottom: 0;
	z-index: 300;
	font-size: 0.8em;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

#accepted
{
	font-weight: 500;
	cursor: pointer;
	color: var(--green);
	transition: all 0.2s;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

#accepted:hover
{
	color: var(--darkgreen);
}

#cookieCheckboxes
{
	display: flex;
	flex-wrap: wrap;
	margin-top: 0.8em;
	margin-bottom: 0.8em;
}

#cookieCheckboxes label
{
	position: relative;
	margin-right: 1.8em;
	padding-left: 1.4em;
	cursor: pointer;
}

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

#acceptedContainer
{
	text-align: right;
}

#deko
{
	display: flex;
	flex-wrap: wrap;
	margin-left: -40px;
	margin-bottom: -40px;
}

.dekoWrap
{
	width: 33.3%;
	padding-left: 40px;
	padding-bottom: 40px;
}

.deko
{
	display: block;
	width: 100%;
	color: var(--dark);
	text-decoration: none;
	position: relative;
	transition: all 0.2s;
	height: 100%;
	border: 1px solid var(--lightgrey);
	padding-bottom: 97px;
}

.dekoImg
{
	padding-bottom: 100%;
	overflow: hidden;
	position: relative;
}

.dekoContent
{
	padding: 15px 20px;
	border-top: none;
}

.dekoName
{
	text-transform: uppercase;
	font-size: 1.2em;
	letter-spacing: 0.15em;
	line-height: 1.45;
}

.dekoItem
{
	margin-top: 0.5em;
}

.dekoItem strong
{
	font-size: 0.8em;
	margin-bottom: -0.2em;
	display: block;
	color: var(--green);
}

.dekoPrice
{
	font-weight: 500;
	font-size: 1.5em;
	margin-top: 0.2em;
	color: var(--green);
	position: absolute;
	width: 100%;
	bottom: 60px;
}

.dekoButton
{
	line-height: 1.45;
	display: block;
	padding: 0.65em 1.2em;
	cursor: pointer;
	background-color: var(--pink);
	transition: all 0.2s;
	position: relative;
	z-index: 10;
	text-decoration: none;
	color: var(--dark);
	text-align: center;
	position: relative;
	width: calc(100% + 40px);
	margin-left: -20px;
	margin-top: 0.8em;
	position: absolute;
	width: 100%;
	left: 19px;
	bottom: -1px;
	width: calc(100% + 2px);
}

.dekoButton:hover
{
	background-color: var(--darkpink);
}

strong
{
	font-weight: 500;
}

.imgFlex
{
	display: flex;
}

.imgFlex img
{
	position: relative;
	z-index: 10;
}

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

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

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

.textBox
{
	position: relative;
	padding: 40px 40px 35px;
	margin-top: 60px;
}

.textBox .buttonArea
{
	padding-bottom: 5px;
}

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

.colored .textBox:before
{
	z-index: 0;
}

.right .textBox:before
{
	content: "";
	position: absolute;
	width: 130%;
	height: 100%;
	top: 0;
	right: auto;
	left: 0;
	border: 1px solid var(--green);
}

.textBox h2, .textBox h3, .textBox p, .textBox ul
{
	position: relative;
	z-index: 10;
}

.dividerImgWrap
{
	background-color: var(--lightgrey);
	padding: 20px;
}

.gallery
{
	column-count: 4;
	column-gap: 20px;
}

.galleryItem
{
	margin-bottom: 20px;
	page-break-inside: avoid;
	break-inside: avoid;
	display: inline-block;
}

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

#form
{
	position: relative;
	padding-top: 100px;
	margin-top: -100px;
}

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

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

form label
{
	font-family: 'Neue Montreal', sans-serif;
	color: var(--dark);
	font-weight: 500;
	display: block;
	margin-bottom: 0.3em;
}

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: 'Neue Montreal', sans-serif;
   	line-height: 1.5;
   	color: var(--dark);
   	font-weight: 300;
   	background-color: transparent;
}

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

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

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

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

input:focus, textarea:focus, select:focus
{
	border-color: var(--darkgreen);
}

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

.alert.alert-danger ul:before
{
	content: "Folgende Fehler sind aufgetreten. Bitte überprüfen Sie Ihre 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!important;
}

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

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

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

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

#yform-formular-accept
{
	width: calc(100% - 40px);
	margin-left: 40px;
}

button
{
	line-height: 1.45;
	display: inline-block;
	padding: 0.65em 1.2em;
	cursor: pointer;
	background-color: var(--pink);
	transition: all 0.2s;
	position: relative;
	z-index: 10;
	text-decoration: none;
	color: var(--dark)!important;
	border: none!important;
	text-align: center;
	width: auto;
	margin-top: 1.3em;
	margin-left: 40px;
}

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

#logoFlex
{
	display: flex;
	margin-left: -40px;
	flex-direction: row-reverse;
	align-items: center;
}

#roundLogo
{
	width: 100%;
}

.logoFlexItem
{
	margin-left: 40px;
}

#logoFlex .logoFlexItem:nth-child(1)
{
	width: 450px;
}

#logoFlex .logoFlexItem:nth-child(2)
{
	width: calc(100% - 450px);
}

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

.accordeonItem .buttonArea
{
	margin-top: 15px;
	margin-bottom: 10px;
}

#categoryOverview
{
	display: flex;
	margin-left: -40px;
	margin-bottom: -40px;
	flex-wrap: wrap;
	width: calc(100% + 40px);
}

.categoryLink
{
	width: calc(33.3% - 40px);
	margin-left: 40px;
	margin-bottom: 40px;
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: all 0.2s;
}

.categoryItem
{
	padding-bottom: 100%;
	position: relative;
	overflow: hidden;
}

.categoryImage, .dekoImgInner
{
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 0;
	background-size: cover;
	background-position: center;
	transition: all 0.2s;
}

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

.categoryItem span
{
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	padding: 15px;
	z-index: 10;
	text-transform: uppercase;
	font-size: 1.1em;
	letter-spacing: 0.15em;
	line-height: 1.8;
	width: 100%;
}

.categoryLink:hover .categoryImage, .deko:hover .dekoImgInner
{
	transform: scale(1.05);
}

.smallGallery
{
	column-count: 3;
	column-gap: 10px;
	margin-top: 10px;
}

.smallGalleryItem
{
	margin-bottom: 10px;
}

.price
{
	font-weight: 500;
	color: var(--green);
	font-size: 2em;
	margin-top: 0.7rem;
	margin-bottom: -14px;
}

#whiteLogo
{
	position: fixed;
	left: 25px;
	top: 11px;
	height: 40px;
	z-index: 1000;
}

#instagram
{
	display: block;
	width: 1.2em;
	height: 1.2em;
	border-bottom: none!important;
	background-image: url(instagram.svg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	top: 0.24em;
}

#yform-formular-artikel
{
	display: none;
}

#popupBg
{
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	z-index: 1200000;
	background-color: rgba(0,0,0,0.85);
	padding: 40px;
}

#popupFlex
{
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#popup .wrap
{
	padding: 0;
}

#popup .text
{
	margin: 0;
}

#popup
{
	background-color: #fff;
	padding: 40px;
	max-width: 680px;
}

#popupCloseButton
{
	position: relative;
	left: 50%;
	transform: translateX(-50%);
	margin-top: 20px;
}

@media all and (max-width: 500px){
	.gallery
	{
		column-count: 2!important;
	}
}

@media all and (max-width: 550px){
	.dekoWrap
	{
		width: 100%!important;
	}

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

	.deko
	{
		padding-bottom: 91px!important;
	}

	form div
	{
		width: 100%;
	}

	textarea
	{
		height: 9em;
	}
}

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

	.imgFlexItem
	{
		width: 100%!important;
	}

	.textBox:before
	{
		display: none;
	}

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

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

	.textFlexItem
	{
		width: 100%;
	}

	.textFlex .textFlexItem:nth-child(1), .textFlex.right .textFlexItem:nth-child(1)
	{
		padding-right: 00px;
	}

	.textFlex .textFlexItem:nth-child(2), .textFlex.right .textFlexItem:nth-child(2)
	{
		padding: 0px;
		border-left: none;
		border-right: none;
	}

	.colored .textFlex .textFlexItem:nth-child(2), .colored .textFlex.right .textFlexItem:nth-child(2)
	{
		border-left: none;
		border-right: none;
	}

	.textFlex.right .textFlexItem:nth-child(1)
	{
		padding-left: 0;
	}

	.textFlex h2
	{
		text-align: left;
	}

	.slideshow img
	{
		height: 190px!important;
		padding: 5px;
	}

	.dividerImgWrap
	{
		padding: 10px;
	}

	#opener
	{
		padding: 10px;
	}

	#openerImg
	{
		height: 180px!important;
	}

	.slideshow
	{
		padding: 5px 0px;
	}

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

	#roundLogo
	{
		max-width: 180px!important;
	}

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

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

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

	h1
	{
		line-height: 0.8;
	}

	.dekoName
	{
		font-size: 1em!important;
	}

	.dekoPrice
	{
		font-size: 1.2em!important;
	}

	.divider
	{
		width: 36px;
		height: 36px;
	}

	.gallery
	{
		column-count: 3;
		column-gap: 10px;
	}
}

@media all and (max-width: 700px){
	#roundLogo
	{
		max-width: 220px;
		display: block;
		margin: auto;
		margin-bottom: 38px;
	}

	#logoFlex
	{
		display: block;
		margin-left: 0;
	}

	#logoFlex .logoFlexItem:nth-child(1)
	{
		width: 100%!important;
		margin-left: 0;
	}

	#logoFlex .logoFlexItem:nth-child(2)
	{
		width: 100%!important;
		margin-left: 0;
	}

	#popup
	{
		padding: 20px;
		font-size: 0.85em;
	}
}

@media all and (max-width: 760px){
	.hoverArea
	{
		position: relative;
		top: auto!important;
		left: auto!important;
		right: auto!important;
		bottom: auto!important;
		width: 100%;
	}

	.hoverText
	{
		width: 100%!important;
		display: block;
		position: relative;
	}

	.hoverTextInner
	{
		max-height: none;
	}

	#logoContainer
	{
		max-width: 100%!important;
	}

	.hoverArea + .hoverArea
	{
		margin-top: 40px;
	}

	.hoverText:before
	{
		left: 50%;
		transform: translateX(-50%) rotate(-45deg);
	}
}

@media all and (max-width: 800px){
	.dekoWrap
	{
		width: 50%;
	}

	.categoryLink
	{
		width: calc(50% - 40px);
	}
}

@media all and (max-width: 990px){
	#header
	{
		top: 0;
		box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
	}

	#navigation
	{
		position: fixed;
		width: 100%;
		left: 0;
		top: 90px;
		background-color: var(--pink);
		max-height: calc(100% - 90px);
		overflow: auto;
		display: none;
	}

	#navigation ul
	{
		display: block;
		text-align: right;
		padding: 18px 0px 20px;
	}

	#navigation ul li ul
	{
		position: relative;
		display: block;
		left: 0;
		top: 0;
		margin-left: 40px;
		padding: 0;
		font-size: 0.85em;
		padding: 10px 0px;
		margin-top: 8px;
		margin-bottom: 10px;
	}

	#navigation ul li ul li
	{
		margin-top: 0;
	}

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

	#navigation ul li a
	{
		padding: 0px 40px;
	}

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

	.line
	{
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: var(--green);
		left: 50%;
		transform: translateX(-50%);
		transition: all 0.2s;
	}

	#navOpener .line:nth-child(1)
	{
		top: 0;
	}

	#navOpener .line:nth-child(2)
	{
		top: 50%;
		transform: translate(-50%, -50%);
	}

	#navOpener .line:nth-child(3)
	{
		bottom: 0;
	}

	#navOpener.active .line:nth-child(1)
	{
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	#navOpener.active .line:nth-child(2)
	{
		width: 0;
		top: 50%;
		transform: translate(-50%, -50%) rotate(45deg);
	}

	#navOpener.active .line:nth-child(3)
	{
		bottom: auto;
		top: 50%;
		transform: translate(-50%, -50%) rotate(-45deg);
	}

	#logoArea .wrap
	{
		height: 90px;
	}

	#logo
	{
		max-width: auto;
		height: 100%;
		left: -13px;
		transform: translateX(0);
		padding: 15px 0px;
	}

	h1
	{
		font-size: 4.5em;
	}

	h2
	{
		font-size: 3.5em;
	}

	h3
	{
		font-size: 1.3em;
	}

	.dekoName
	{
		font-size: 1.1em;
	}

	.dekoPrice
	{
		font-size: 1.3em;
		bottom: 62px;
	}

	.deko
	{
		padding-bottom: 95px;
	}

	.dekoButton
	{
		margin-top: 0.75em;
	}

	.text
	{
		margin: 50px 0px;
	}

	#deko
	{
		margin-bottom: -40px;
	}

	.colored + .colored
	{
		margin-top: -185px;
	}

	.colored
	{
		padding: 50px 0px;
	}

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

	.buttonArea
	{
		margin-top: 25px;
	}

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

	.dividerImg
	{
		padding: 140px 0px;
	}

	#badge
	{
		max-width: 140px;
	}

	#footer
	{
		text-align: center;
		padding: 25px 0px;
	}

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

	#footerList
	{
		text-align: center;
	}

	#instagram
	{
		left: 50%;
		transform: translateX(-50%);
		margin-top: 6px;
	}

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

	.slideshow img
	{
		height: 280px;
	}

	#openerImg
	{
		height: 260px;
	}

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

	.colored + .withButton
	{
		padding-bottom: 50px;
		margin-top: -75px;
	}

	#logoFlex .logoFlexItem:nth-child(1)
	{
		width: 300px;
	}

	#logoFlex .logoFlexItem:nth-child(2)
	{
		width: calc(100% - 300px);
	}
}

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

@media all and (max-width: 1150px){
	#logoContainer
	{
		max-width: 290px;
	}

	.hoverArea.third
	{
		left: -90px;
		bottom: 50px;
	}

	.hoverArea.second
	{
		bottom: 30px;
		right: -30px;
	}

	.hoverArea.first
	{
		right: -50px;
		top: 20px;
	}

	.hoverText
	{
		width: 360px;
	}
}

@media all and (max-width: 1120px){
	#whiteLogo
	{
		display: none;
	}
}

@media all and (min-width: 1480px){
	.slideshow img
	{
		height: 460px;
	}

	#openerImg
	{
		height: 440px;
	}
}