/*
Theme Name:         Theme Name
Theme URI:          http://www.rhowerk.de
Description:        SuperDuper Theme
Version:            1.0.0
Author:             Rhowerk <feuer@rhowerk.de>
Tags:               flat,modern,responsive,mobile-first,portfolio,corporate,multi-purpose
*/




/* @import must be at top of file, otherwise CSS will not work */

/* @import must be at top of file, otherwise CSS will not work */

/*
Font: 		Petal
Style: 		Regular
URL: 		https://www.youworkforthem.com/font/T6060/petal-brush
Foundry: 	Tom Chalky
Foundry: 	https://www.youworkforthem.com/designer/499/tom-chalky
Copyright:	Copyright (c) 2015 by Tom Chalky. All rights reserved.
Version: 	17
Created:	October 25, 2015
License: 	https://www.youworkforthem.com/font-license 
License: 	The WebFont(s) listed in this document must follow the YouWorkForThem
			WebFont license rules. All other parties are strictly restricted 
			from using the WebFonts(s) listed without a purchased license. 
			All details above must always remain unaltered and visible in your CSS.
*/

@import url("//hello.myfonts.net/count/32561c");

@font-face{
	font-family: 'Petal';
	src: url('fonts/petal.eot');
	src: url('fonts/petal.eot?#iefix') format('embedded-opentype'),
             url('fonts/petal.woff2') format('woff2'),
	     url('fonts/petal.woff') format('woff'),
	     url('fonts/petal.ttf') format('truetype'),
	     url('fonts/petal.svg#youworkforthem') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face{
	font-family: "Real Text";
	src: url("fonts/f740903d-2bf4-4079-815f-c9238c818e48.eot?#iefix");
	src: url("fonts/f740903d-2bf4-4079-815f-c9238c818e48.eot?#iefix") format("eot"),url("fonts/35ad1471-8a23-4029-aa4f-55215056d128.woff2") format("woff2"),url("fonts/b024c76f-6b31-4b8e-ba79-ad8a271823ee.woff") format("woff"),url("fonts/35d05cc3-70b3-4056-a4ad-2c5777215780.ttf") format("truetype");
	font-weight: normal;
	font-style: normal;
}
.backgroundAccent{
	background: #e5471c;
}
.backgroundBright{
	background: #ececec;
}
.backgroundWhite{
	background: #ffffff;
}
.backgroundPaper2 {
	background-image: url(../images/rhooel-paper-1.jpg);
	background-size: 100%;	
}
.backgroundOil {
	background-image: url(../images/rhooel-paper-2.jpg);
	background-size: 100%;
}
.backgroundPaper {
	background-image: url(../images/paper-bg.jpg);	
	background-size: 100%;
}
/*Main Menu – Subnav hori 2 Hierarchie Version*/
html #mainMenu{
	position: relative;
	z-index: 100;

	/*ul*/
}
html #mainMenu > ul{
	margin-bottom: 0px;
	position: relative;

	/*li*/
}
html #mainMenu > ul >li{
	display: inline-block;

	/*a*/

	/*ul subnav*/
}
html #mainMenu > ul >li a{
	display: inline-block;
}
/*SUBMENU */
html #mainMenu > ul >li >ul{
	position: absolute;
	left: 0px;
	opacity: 0;
	overflow: hidden;
	max-height: 0px;
	-webkit-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;

	/*li subnav*/
}
html #mainMenu > ul >li >ul.active{
	max-height: 100px;
	opacity: 1;
}
/*.active*/
html #mainMenu > ul >li >ul li{
	display: inline-block;

	/*a subnav*/
}
html #mainMenu > ul >li >ul li a{}
/*Main menu End*/
html .burger-bu{
	display: none;
	position: absolute;
	left: 15px;
	margin-right: 0%;
	top: 66px;
	overflow: hidden;
	padding: 0;
	width: 32px;
	height: 27px;
	font-size: 0;
	text-indent: -9999px;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;

	/* active */
}
@media only screen and (min-width: 768px) and (max-width: 1199px){

	html .burger-bu{
		right: 15px;
	}
}
@media only screen and (max-width: 479px){

	html .burger-bu{
		right: 15px;
		top: 31px;
		margin-right: 0px;
	}
}
html .burger-bu span{
	display: block;
	position: absolute;
	top: 11px;
	left: 0px;
	right: 0px;
	height: 4px;
	-webkit-transition: background 0.2s ease-in-out;
	transition: background 0.2s ease-in-out;
	background-color: #0d0d0d;
	-webkit-transition: background-color 0s 0.2s;
	transition: background-color 0s 0.2s;
}
html .burger-bu span:before,html .burger-bu span:after{
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #0d0d0d;
	content: "";
	-webkit-transition: background-color 0s 0.2s;
	transition: background-color 0s 0.2s;
	-webkit-transition-duration: 0.2s, 0.2s;
	        transition-duration: 0.2s, 0.2s;
	-webkit-transition-delay: 0.2s, 0s;
	        transition-delay: 0.2s, 0s;
}
html .burger-bu span:before{
	top: -11px;
	-webkit-transition-property: top, -webkit-transform;
	transition-property: top, -webkit-transform;
	transition-property: top, transform;
	transition-property: top, transform, -webkit-transform;
}
html .burger-bu span:after{
	bottom: -11px;
	-webkit-transition-property: bottom, -webkit-transform;
	transition-property: bottom, -webkit-transform;
	transition-property: bottom, transform;
	transition-property: bottom, transform, -webkit-transform;
}
html .burger-bu.active{
	height: 32px;
}
html .burger-bu.active span{
	background: none;
}
html .burger-bu.active span:before{
	top: 2px;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transition-delay: 0s, 0.2s;
	        transition-delay: 0s, 0.2s;
	background: #0d0d0d;
}
@media only screen and (max-width: 479px){

	html .burger-bu.active span:before{
		background: #0d0d0d;
	}
}
html .burger-bu.active span:after{
	bottom: -2px;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	-webkit-transition-delay: 0s, 0.2s;
	        transition-delay: 0s, 0.2s;
	background: #0d0d0d;
}
@media only screen and (max-width: 479px){

	html .burger-bu.active span:after{
		background: #0d0d0d;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1199px){

	html .burger-bu.active span{
		background: none;
	}

	html .burger-bu.active span:before,html .burger-bu.active span:after{
		background-color: #0d0d0d;
	}
}
/*Query – When does the Burger Button Display and the Menu Hide*/
@media only screen and (max-width: 1000px){

	html .burger-bu{
		display: inline-block;
		z-index: 300;
	}

	html .menu-holder{
		position: fixed;
		top: 0;
		bottom: 0;
		left: -100%;
		width: 100%;
		height: 100%;
		z-index: 150;

		/* Menu Wrapper */
	}

	html .menu-holder .menu-layer{
		position: fixed;
		top: 0;
		bottom: 0;
		right: 0;
		width: 100%;
		height: 100%;
		z-index: 120 !important;
		display: none;
	}

	html .menu-holder .menu-wrapper{
		position: relative;
		height: 100%;
		background: #0d0d0d;
		z-index: 200;
		width: 50%;
		opacity: 1;
		left: 0;
		text-align: left;
		padding-top: 50px;
		color: #ffffff;
		box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.2);
		overflow-y: scroll;
		-webkit-transition: left 0.3s ease-in;
		transition: left 0.3s ease-in;
	}

	@media only screen and (max-width: 479px){

		html .menu-holder .menu-wrapper{
			width: 100%;
			padding-top: 100px;
		}
	}

	@media only screen and (min-width: 768px) and (max-width: 1199px){

		html .menu-holder .menu-wrapper{
			width: 50%;
			padding-top: 130px;
		}
	}

	html .menu-holder .menu-wrapper .logo{
		margin-left: 30px;
		margin-bottom: 50px;
	}

	html .menu-holder .menu-wrapper .contactBox{
		position: absolute;
		top: 26px;
		left: 30px;

		/*.phone*/
	}

	html .menu-holder .menu-wrapper .contactBox .mail:before{
		content: "";
		display: inline-block;
		background: url(images/icons/Icon_Mail.svg);
		width: 28px;
		position: relative;
		margin-right: 10px;
		top: 7px;
		height: 28px;
	}

	/*.mail*/

	html .menu-holder .menu-wrapper .contactBox .phone:before{
		content: "";
		display: inline-block;
		background: url(images/icons/Icon_Phone.svg);
		width: 28px;
		position: relative;
		margin-right: 5px;
		top: 7px;
		height: 28px;
	}

	/*.contactBox*/

	html .menu-holder .menu-wrapper #mainMenu >ul{
		list-style-type: none;
		padding-left: 30px;

		/* li */
	}

	html .menu-holder .menu-wrapper #mainMenu >ul li{
		margin-bottom: 15px;
		margin-left: 0px;
		line-height: 0;
		display: block;

		/*.submenu*/
	}

	html .menu-holder .menu-wrapper #mainMenu >ul li a{
		color: #ffffff;
		position: relative;
		border: none;
		margin: 0px;
		padding: 0px;
		padding-bottom: 0px;
		display: block;
		vertical-align: middle;
	}

	/* a*/

	html .menu-holder .menu-wrapper #mainMenu >ul li.submenu >ul{
		background: rgba(0,0,0,0);
		left: 0px;
		width: 100%;
		display: block;
		position: relative;
		top: 0px;
		padding-left: 10px;
		margin-top: 15px;
		opacity: 1;
		overflow: hidden;
		max-height: 1000px;
		-webkit-transition: all 0.2s ease-in;
		transition: all 0.2s ease-in;
	}

	html .menu-holder .menu-wrapper #mainMenu >ul li.submenu >ul li{
		display: block;
	}

	html .menu-holder .menu-wrapper #mainMenu >ul li.submenu >ul li a{
		color: #707170;
	}
}
/* burger bu */
html.menu-active{

	/*end*/
}
html.menu-active .menu-holder .menu-layer{
	display: block;
}
html.menu-active .menu-holder .menu-wrapper{
	opacity: 1;
	left: 50%;
}
/*smartphone 100% menu*/
@media only screen and (max-width: 479px){

	html.menu-active .menu-holder .menu-wrapper{
		left: 100%;
	}
}
/*tablet nur 50% menu */
@media only screen and (min-width: 768px) and (max-width: 1199px){

	html.menu-active .menu-holder .menu-wrapper{
		left: 50%;
	}
}
html.menu-active .burger-bu span{
	background: rgba(0,0,0,0);
}
html.menu-active .burger-bu span:after, html.menu-active .burger-bu span:before{
	background: #ffffff;
}

a{
	color: #707170;
	text-decoration:none;
}

a:hover,a:active,a:focus{
	text-decoration:none;
	outline:0;
	color:#0d0d0d;
}

a:hover .pfeilpfad,a:active .pfeilpfad,a:focus .pfeilpfad{
	fill: #707170;
}

a .pfeilpfad{
	fill: #e5471c;
}
ul{
	padding-left:0px;
}

body{
    font-family: 'Real Text';
    color: #0d0d0d;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {

	body{
		font-size: 0.95rem;
	}
}



h2,h1{
font-weight: normal;
font-family: "Petal";

}
footer a{
	font-size:18px;
}
@media only screen and (max-width: 479px) {

	footer a{
		font-size: 15px;
	}
}
.backgroundSenpf{
    background: url(../images/senpf-8.jpg);
    position: relative;
    color: #fff !important;
}
.backgroundSenpf a{
    color: #fff !important;
}
.backgroundSenpfBlack{
    background-color: #000;
    color: #fff;
}
.backgroundSenpfGrey{
    background-color: #0d0d0d;
}
.backgroundPaper{
    background: url(../images/paper-bg.jpg);
    position: relative;
    color: #0d0d0d;
}
.backgroundBlack{
    background: url(../images/rhost_03.jpg);
    position: relative;
    color: #ffffff;
}
.dark a{
	color: #ffffff;	
}
.backgroundPaper a{
	color: #0d0d0d;
}
.whiteLayer{
    position:absolute;
    background: rgba(255,255,255,0.3);
    width:100%;
    height:100%;
}
.marginBottom{
    margin-bottom: 60px;
}
.pb {
	padding-bottom: 145px;
}

.paddingBottom{
    padding-bottom: 60px;
}
.paddingTop{
    padding-top: 100px;
}
.paddingTopBig{
    padding-top: 460px;
}
@media only screen and (max-width: 479px) {
	
	
	.paddingTop{
		padding-top: 70px;
	}
	.paddingTopBig{
	    padding-top: 0px;
	}
}
.seperator:before{
	content:"";
	display:block;
	position:relative;
	background: url(../images/zline_desktop.svg) no-repeat;
	width:100%;
	height:15px;
	left:0px;
	top:0px;
	margin: 80px 0px;
}
@media only screen and (max-width: 479px) {

	.seperator:before{
		background: url(../images/zline_mobile.svg) no-repeat;
		margin: 40px 0px;
	}
}
.seperator.noMargin:before{
	margin: 0px 0px;
}
.logoRhokost{
    width:200px;
    margin: 0px 40px;
}
@media only screen and (max-width: 479px) {

	.logoRhokost{
		width: 30%;
		margin: 0px 7%;
	}
}
.onivoreContact{
    margin-bottom:80px;
    font-size:1.2rem;
    letter-spacing: 0.3px;
    color: #0d0d0d;
}
@media only screen and (max-width: 479px) {

	.onivoreContact{
		font-size: 1.0rem;
		letter-spacing: 0.1px;
	}
}
.onivoreContact .col-md-6{
	padding-top: 30px;
	padding-bottom: 30px;
}
.onivoreContact .col-md-6:first-of-type:after{
	top:0px;
	right:0px;
	position:absolute;
	content:"";
	background: #0d0d0d;
	height:100%;
	width: 1px;
	display:block;
}
.social a{
	display:inline-block;
	margin:0px 10px;
}
.social a img{
	width:70px;
	height: auto;
}
@media only screen and (max-width: 479px) {

	.social a img{
		width: 50px;
		height: auto;
	}
}
#parallax2{
   
    margin-bottom:0px;
}
#parallax2.parallaxParent > div {
	background-size:cover;
	height: 150%;
	position: relative;
	top: -40%;
	background-position: center center;
	background-size:cover;
}
#parallax3.rhooel{
	height: 450px !important;
}
#parallax3{
   	
    margin-bottom:0px;
}
#parallax3.parallaxParent > div {
	background-size:cover;
	height: 140%;
	position: relative;
	top: -40%;
	background-position: center center;
	background-size:cover;
}

.parallaxParent {
    position:relative;
    margin-top:0px;
    
    height: 600px;
    overflow: hidden;
}
#parallax3.parallaxParent  {
	  position:relative;
    margin-top:0px;
    
    height: 750px;
    overflow: hidden;
}
.parallaxParent.formblock{
	margin-bottom:0px;
	margin-top:70px;
	height:400px;
}
@media only screen and (max-width: 479px) {

	.parallaxParent{
		height: 180px;
		margin-bottom: 00px;
	}

	.parallaxParent >div{
		background-size:180%;
		top:-70%;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {

	.parallaxParent{
		height: 400px;
		margin-bottom: 80px;
	}

	.parallaxParent >div{
		background-size:180%;
		top:-70%;
	}
}

.parallaxParent > div {
    height: 200%;
    position: relative;
    top: -110%;
    background-position: center center;
     background-size:cover;

}
#parallax4{
   
  height:800px;
}

#parallax4 .parallaxParent > div {
	height: 200%;
	position: relative;
	top: -110%;
	background-position: center center;
	background-size:1920px;
}

#parallax5{
   
  height:470px;
}

#parallax5.parallaxParent > div {
	height: 180%;
	position: relative;
	top: -70%;
	background-position: center center;
	background-size:2500px;
}
@media only screen and (max-width: 479px) {
	#parallax3.parallaxParent{
		height: 250px;
	}
	#parallax4{
		height: 250px;
	}
	#parallax5{
		height: 250px;
	}
}
@media only screen and (max-width: 479px) {

	#parallax4 .parallaxParent > div{
		background-position: center 120px !important;
	}
	#parallax5 .parallaxParent > div{
		background-position: center 120px !important;
	}
}
@media only screen and (min-width: 768px) and (max-width: 1199px) {

	h1{
		font-size: 2rem;
		margin-bottom: 40px;
	}
}
@media only screen and (max-width: 479px) {

	h1{
		font-size: 2rem;
	}
}
h1#zitat{
	position:relative;
	font-size: 4.0rem;
	padding: 60px 13%;
}
@media only screen and (max-width: 479px) {

	h1#zitat{
		font-size: 2.5rem;
		padding: 40px 0%;
	}
}
h1#zitat .author{
	font-family: "Real Text";
	font-size: 1.5rem;
	display:block;
	color:#0d0d0d;
	margin-top:50px;
}
@media only screen and (max-width: 479px) {

	h1#zitat .author{
		font-size: 1.2rem;
		margin-top: 30px;
	}
}
h1#zitat:before,h1#zitat:after{
	content:"";
	display:none;
	position:absolute;
	background: url(../images/zline_desktop.svg) no-repeat;
	width:100%;
	height:15px;
}
@media only screen and (max-width: 479px) {

	h1#zitat:before,h1#zitat:after{
		background: url(../images/zline_mobile.svg) no-repeat;
	}
}
h1#zitat:before{
	left:0px;
	top:0px;
}
h1#zitat:after{
	left:0px;
	bottom:0px;
}
h4{
    font-weight: 600;
    font-size: 1.0rem;
    margin-top:30px;
}
.marginTop{
    margin-top:60px;
}
.pfeil{
    width:14px;
}
/* Preferences Header and Navigation – Define Colors, Margins, Font Sizes */

.textBlock{

    display:inline-block;

}

.textBlock a{
	color: #707170;
}

.textBlock a:hover{
	color: #0d0d0d;
}

.textBlock h2{
	margin-bottom:10px;
	font-size:4rem;
	margin-bottom: 30px;
}

.textBlock h2.marginBottom{
	margin-bottom: 60px;
}

@media only screen and (max-width: 479px) {

	.textBlock h2{
		font-size: 3rem;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {

	.textBlock h2{
		font-size: 2.8rem;
	}

	.textBlock h2.marginBottom{
		margin-bottom: 30px;
	}
}

.textBlock p{
	font-size: 1.2rem;
	margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {

	.textBlock p{
		line-height: 1.3;
		margin-bottom: 20px;
	}
}

@media only screen and (max-width: 479px) {

	.textBlock p{
		margin-bottom: 20px;
	}

	.textBlock p:last-of-type{
		margin-bottom:0px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1199px) {

	.textBlock{
		width: 80%;
	}
}

@media only screen and (max-width: 479px) {

	.textBlock{
		width: 100%;
		padding: 15px;
	}
}
.spinner{
display: block;
opacity: 1;
margin: 0 auto;
position: relative;
width: 50px;
height: 59px;
top: -100px;
}


 @-webkit-keyframes pulse {
     0% {
     opacity: 0;
    
    
    }
     10% {
     opacity: 0;
    }
     50% {
     opacity: 1;
     
    
    }
     90% {
     opacity: 0;
    }
     100% {
     opacity: 0;
     -webkit-transform: translate(0px, 20px);
             transform: translate(0px, 20px);
   
    
    }
}


 @keyframes pulse {
     0% {
     opacity: 0;
    
    
    }
     10% {
     opacity: 0;
    }
     50% {
     opacity: 1;
     
    
    }
     90% {
     opacity: 0;
    }
     100% {
     opacity: 0;
     -webkit-transform: translate(0px, 20px);
             transform: translate(0px, 20px);
   
    
    }
}
.scroll-down a {
    display: block;
    opacity: 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    line-height: 0;
    font-size: 0;
    color: transparent;
    margin-left: auto;
    margin-right: auto;
  
    background-size: contain;
 
    -webkit-animation: pulse 2s 0s infinite normal ease forwards;
 
            animation: pulse 2s 0s infinite normal ease forwards;
    background-image: url(../images/Pfeil_senkrecht_weiss.svg);
    background-repeat: no-repeat;
}
.scroll-down a:before{
    content: " ";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 30px;
    background: url(../images/Pfeil_senkrecht_weiss.svg) no-repeat center center;

}
.scroll-down a:before {
    -webkit-animation: pulse 2s 0.25s infinite normal forwards;
    animation: pulse 2s 0.25s infinite normal forwards;
}

.itemList img{
	margin-bottom: 20px;
}





a.button{
	
	color: #ffffff;
	text-transform:none;
	padding:8px 30px;
	display:inline-block;
    background: #0d0d0d;
    font-size: 1.8rem;
}





a.button:hover,a.button:focus{
	background: #707170;
	color:#ffffff;
}





@media only screen and (min-width: 768px) and (max-width: 1199px) {

	a.button{
		padding: 7px 20px;
		font-size: 0.90rem;
	}
}





a.button:active{}


body.start{
	padding-top:0px;
}


body.start .sticky .bg{
	background:white;
	position: relative;
	height: auto;
	width:100%;
	top:0px;
	z-index: 50;
	opacity: 0;
	border: 1px solid #ececec;
}


@media only screen and (min-width: 768px) and (max-width: 1199px) {

	body.start .sticky .bg{
		opacity: 1;
	}
}


@media only screen and (max-width: 479px) {

	body.start .sticky .bg{
		opacity: 1;
	}
}


body.start .sticky .nav-logo{
	position: relative;
	z-index: 100;
	opacity: 0;
	margin-bottom: 20px;
	margin-top:10px;
	width:50px;
}


@media only screen and (min-width: 768px) and (max-width: 1199px) {

	body.start .sticky .nav-logo{
		width: 35px;
		opacity: 1;
	}
}


@media only screen and (max-width: 479px) {

	body.start .sticky .nav-logo{
		width: 28px;
		opacity: 1;
	}
}



img{
	max-width:100%;
}
.boxPadding{
	padding-top: 80px;
	padding-bottom: 80px;
}
@media only screen and (max-width: 479px) {

	.boxPadding{
		padding-top: 40px;
		padding-bottom: 40px;
	}
}
@media only screen and (max-width: 479px) {

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

.topBar{
	background: #ececec;
}

.topBar .contactButton, .topBar .phoneButton{
	color: #707170;
	border-left: 2px solid #ffffff;
	padding: 8px 20px;
	display:inline-block;
}

@media only screen and (max-width: 479px) {

	.topBar .contactButton, .topBar .phoneButton{
		border: none;
	}
}

.topBar .contactButton .pfeilpfad,.topBar .phoneButton .pfeilpfad{
	fill: #707170;
}


.required{
    position:relative;
    top:-55px;
    left:15px;
}


@media only screen and (max-width: 479px) {

	.required{
		top: 0px;
	}
}


.imkereiKontakt{
    font-size:22px;
}


@media only screen and (max-width: 479px) {

	.imkereiKontakt{
		font-size: 18px;
	}
}
.overlayAreaTop{
    padding-bottom:450px;
}
.overlayAreaTop2{
    padding-bottom:350px;
}
@media only screen and (max-width: 479px) {

	.overlayAreaTop{
		padding-bottom: 140px;
	}
}
.overlayAreaBottom{
    min-height: 600px;
}
@media only screen and (max-width: 479px) {

	.overlayAreaBottom{
		min-height: 300px;
		max-height: 700px;
	}
}
.overlayImage{
    position:relative;
    top: -450px;
}
@media only screen and (max-width: 479px) {

	.overlayImage{
		top: -180px;
	}
}
.absImage{
    position:absolute;
    max-width:100%;
    top:0px;
    left:0px;
    
}
@media only screen and (max-width: 479px) {

	.absImage{
		position: relative;
	}
}
.overlayImageSecond{
    top: -400px;
    padding:15px;
    margin:0px;

}
@media only screen and (max-width: 479px) {

	.overlayImageSecond{
		top: -165px;
	}
}

.imgWrapper{
    /*overflow:hidden;*/
    
}

 header{
            background:none !important;
            position: fixed !important;
            width:100%;
            top: 0px;
            z-index: 250;
            position: relative;
            
        }

 header .pagetitle{
	position: absolute !important;
	width:auto;
	color: #ffffff;
	height:auto;
	text-transform: uppercase;
	font-weight: 400;
	right:2%;
	margin:0;
	letter-spacing: 0.4px;
	margin-right:75px;
	top:62px;
	border:none;
	-webkit-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
}

 header .pagetitle.active-menu{
	color: #ffffff !important;
}

 @media only screen and (min-width: 768px) and (max-width: 1199px) {

	header .pagetitle{
		top: 18px;
	}
}

 @media only screen and (max-width: 1000px) {

	header .pagetitle{
		top: 11px;
	}
}

 @media only screen and (max-width: 479px) {

	header .pagetitle{
		top: 12px;
		margin-right: 45px;
	}
}

 header .logo{
	background: url(images/flamme_w_icon.svg);
	background-size: 42px 55px;
	width: 42px;
	height:55px;
	margin-right:2%;
	display:inline-block;
	float:right;
	margin-top: 33px;
	border:none;
}

 header .logo:hover{
	border:none;
}

 @media only screen and (max-width: 479px) {

	header .logo{
		margin-left: 15px;
	}
}

 header .burger-bu{
	display:none;
	position: absolute;
	right:15px;
	margin-right: 2%;
	top:66px;
	overflow: hidden;
	padding: 0;
	width: 32px;
	height: 27px;
	font-size: 0;
	text-indent: -9999px;
	-webkit-appearance: none;
	   -moz-appearance: none;
	        appearance: none;
	box-shadow: none;
	border-radius: none;
	border: none;
	cursor: pointer;

	/* active */
}

 header .burger-bu:focus{
	outline: none;
}

 @media only screen and (max-width: 479px) {

	header .burger-bu{
		display: block;
		right: 0px;
		margin-right: 0px;
	}
}

 header .burger-bu span{
	display: block;
	position: absolute;
	top: 11px;
	left: 0px;
	right: 0px;
	height: 5px;
	-webkit-transition: background 0.3s ease-in-out;
	transition: background 0.3s ease-in-out;
	background: #ffffff;
	-webkit-transition: background-color 0s 0.3s;
	transition: background-color 0s 0.3s;
}

 header .burger-bu span:before,header .burger-bu span:after{
	position: absolute;
	display: block;
	left: 0;
	width: 100%;
	height: 5px;
	background-color: #ffffff;
	content: "";
	-webkit-transition: color 0.3s ease-in-out;
	transition: color 0.3s ease-in-out;
	-webkit-transition-duration: 0.2s, 0.2s;
	        transition-duration: 0.2s, 0.2s;
	-webkit-transition-delay: 0.2s, 0s;
	        transition-delay: 0.2s, 0s;
}

 header .burger-bu span:before{
	top: -11px;
	-webkit-transition-property: top, -webkit-transform;
	transition-property: top, -webkit-transform;
	transition-property: top, transform;
	transition-property: top, transform, -webkit-transform;
}

 header .burger-bu span:after{
	bottom: -11px;
	-webkit-transition-property: bottom, -webkit-transform;
	transition-property: bottom, -webkit-transform;
	transition-property: bottom, transform;
	transition-property: bottom, transform, -webkit-transform;
}

 header .burger-bu.active{
	height: 32px;
}

 header .burger-bu.active span{
	background: none;
}

 header .burger-bu.active span:before{
	top: 2px;
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
	-webkit-transition-delay: 0s, 0.2s;
	        transition-delay: 0s, 0.2s;
	background: #ececec;
}

 @media only screen and (max-width: 479px) {

	header .burger-bu.active span:before{
		background: #0d0d0d;
	}
}

 header .burger-bu.active span:after{
	bottom: -2px;
	-webkit-transform: rotate(-45deg);
	        transform: rotate(-45deg);
	-webkit-transition-delay: 0s, 0.2s;
	        transition-delay: 0s, 0.2s;
	background: #ececec;
}

 @media only screen and (max-width: 479px) {

	header .burger-bu.active span:after{
		background: #0d0d0d;
	}
}

 @media only screen and (min-width: 768px) and (max-width: 1199px) {

	header .burger-bu.active span{
		background: none;
	}

	header .burger-bu.active span:before,header .burger-bu.active span:after{
		background-color: #0d0d0d;
	}
}

 /* burger bu */

 @media only screen and (max-width: 479px) {

	header{
		position: fixed;
		top: 0px;
		left: 0px;
		right: 0px;
	}

	header .pagetitle{
		color: #0d0d0d;
	}

	header .logo{
		background: url(images/flamme_s_icon.svg);
		background-size: 31px 40px;
		width: 31px;
		height:40px;
		margin-top:15px ;
		margin-bottom:15px;
	}

	header .burger-bu{
		top:25px;
	}

	header .burger-bu span{
		background: #0d0d0d;
	}

	header .burger-bu span:before, header .burger-bu span:after{
		background: #0d0d0d;
	}
}

 @media only screen and (min-width: 768px) and (max-width: 1199px) {

	header{
		position: fixed;
		top: 0px;
		left: 0px;
		right: 0px;
	}

	header .pagetitle{
		color: #0d0d0d;
	}

	header .logo{
		background: url(images/flamme_s_icon.svg);
		background-size: 31px 40px;
		width: 31px;
		height:40px;
		margin-top:15px ;
		margin-bottom:15px;
	}

	header .burger-bu{
		top:25px;
	}

	header .burger-bu span{
		background: #0d0d0d;
	}

	header .burger-bu span:before, header .burger-bu span:after{
		background: #0d0d0d;
	}
}

 @media only screen and (max-width: 1000px) {

	header{
		position: fixed;
		top: 0px;
		left: 0px;
		right: 0px;
	}

	header .pagetitle{
		color: #0d0d0d;
	}

	header .logo{
		background: url(images/flamme_s_icon.svg);
		background-size: 27px 35px;
		width: 27px;
		height:35px;
		margin-top:10px ;
		margin-bottom:10px;
	}

	header .burger-bu{
		top:18px;
	}

	header .burger-bu span{
		display: block;
		position: absolute;
		top: 9px;
		left: 0px;
		right: 0px;
		height: 4px;
		background: #0d0d0d;
		-webkit-transition: background-color 0s 0.3s;
		transition: background-color 0s 0.3s;
	}

	header .burger-bu span:before,header .burger-bu span:after{
		position: absolute;
		display: block;
		left: 0;
		width: 100%;
		height: 4px;
		background-color: #0d0d0d;
		content: "";
		-webkit-transition-duration: 0.2s, 0.2s;
		        transition-duration: 0.2s, 0.2s;
		-webkit-transition-delay: 0.2s, 0s;
		        transition-delay: 0.2s, 0s;
	}

	header .burger-bu span:before{
		top: -9px;
		-webkit-transition-property: top, -webkit-transform;
		transition-property: top, -webkit-transform;
		transition-property: top, transform;
		transition-property: top, transform, -webkit-transform;
	}

	header .burger-bu span:after{
		bottom: -9px;
		-webkit-transition-property: bottom, -webkit-transform;
		transition-property: bottom, -webkit-transform;
		transition-property: bottom, transform;
		transition-property: bottom, transform, -webkit-transform;
	}

	header .burger-bu.active span{
		background-color: none;
	}

	header .burger-bu.active span:before,header .burger-bu.active span:after{
		background-color: #0d0d0d;
	}
} /* Header end */

        .midnightHeader{
            z-index:1000;
        }

        @media only screen and (max-width: 479px) {

	.midnightHeader{
		background: #ffffff;
	}
}

        .midnightHeader .logo{
	opacity: 1 !important;
	display: block !important;
}
        @media only screen and (max-width: 479px) {

	.midnightHeader.bright{
		background: #ffffff;
	}
}
        .midnightHeader.bright{
	color: #0d0d0d;
}
        .midnightHeader.bright .logo{
	background: url(images/flamme_s_icon.svg);
	background-size: 42px 55px;
	width: 42px;
	height:55px;
}
        @media only screen and (max-width: 479px) {

	.midnightHeader.bright .logo{
		background: url(images/flamme_s_icon.svg);
		background-size: 31px 40px;
		width: 31px;
		height: 40px;
	}
}
        .midnightHeader.bright .burger-bu:not(.active) span{
	background: #0d0d0d;
}
        .midnightHeader.bright .burger-bu:not(.active) span:before,.midnightHeader.bright .burger-bu:not(.active) span:after{
	background-color: #0d0d0d;
}
        @media only screen and (max-width: 479px) {

	.midnightHeader.bright .burger-bu:not(.active) span{
		background: #0d0d0d;
	}

	.midnightHeader.bright .burger-bu:not(.active) span:before,.midnightHeader.bright .burger-bu:not(.active) span:after{
		background-color: #0d0d0d;
	}
}
        @media only screen and (min-width: 768px) and (max-width: 1199px) {

	.midnightHeader.bright .burger-bu:not(.active) span{
		background: #0d0d0d;
	}

	.midnightHeader.bright .burger-bu:not(.active) span:before,.midnightHeader.bright .burger-bu:not(.active) span:after{
		background-color: #0d0d0d;
	}
}/*Midgnight Header Bright */
        @media only screen and (max-width: 479px) {

	.midnightHeader.dark, .midnightHeader.default{
		background: #ffffff;
	}
}
        .midnightHeader.dark,.midnightHeader.default .pagetitle{
	color: #ffffff;
}
        @media only screen and (max-width: 479px) {

	.midnightHeader.dark .headerOne nav,.midnightHeader.default .headerOne nav{
		display: none;
	}
}
        .midnightHeader.dark,.midnightHeader.default .headerOne nav a{
	color: #ffffff;
}
        .midnightHeader.dark:hover:after,.midnightHeader.default .headerOne nav a:hover:after{
	background: #ffffff;
}
.midnightHeader.dark .logo,.midnightHeader.default .logo{
	background: url(images/rhokost_logo_w.svg);
	background-size: 42px 55px;
	width: 42px;
	height:55px;
}
.midnightHeader.dark nav a{
	color:#fff !important;
}
@media only screen and (max-width: 479px) {

	.midnightHeader.dark .logo,.midnightHeader.default .logo{
		background: url(images/rhokost_logo.svg);
		background-size: 31px 40px;
		width: 31px;
		height: 40px;
	}
}
        .midnightHeader.dark .burger-bu:not(.active) span,.midnightHeader.default .burger-bu:not(.active) span{
	background: #ffffff;
}
        .midnightHeader.dark .burger-bu:not(.active) span:before,.midnightHeader.dark .burger-bu:not(.active) span:after,.midnightHeader.default .burger-bu:not(.active) span:before,.midnightHeader.default .burger-bu:not(.active) span:after{
	background-color: #ffffff;
}
        @media only screen and (max-width: 479px) {

	.midnightHeader.dark .burger-bu:not(.active) span,.midnightHeader.default .burger-bu:not(.active) span{
		background: #0d0d0d;
	}

	.midnightHeader.dark .burger-bu:not(.active) span:before,.midnightHeader.dark .burger-bu:not(.active) span:after,.midnightHeader.default .burger-bu:not(.active) span:before,.midnightHeader.default .burger-bu:not(.active) span:after{
		background-color: #0d0d0d;
	}
}/*Midnight Header Dark */
.headerOne{
    float:left;
    width: 80%;
    min-height: 1px;
}
.white nav a{
    color: #fff !important;
}
.headerOne nav{
	margin-top: 35px;
	font-size: 22px;
	margin-left:2%;
}
@media only screen and (max-width: 479px) {

	.headerOne nav{
		display: none !important;
	}
}
.headerOne nav a{
	color: #0d0d0d;
	display:inline-block;
	margin-right:20px;
	position:relative;
}
.headerOne nav a:after{
	height:3px;
	content:"";
	background: transparent;
	width:100%;
	display:block;
	position:absolute;
	top: 17px;
	-webkit-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.headerOne nav a:hover:after{
	background: #0d0d0d;
}
.headerTwo{
    float:left;
    width: 20%;
}
.menu-holder{
    display:none;
}
@media only screen and (max-width: 479px) {

	.menu-holder{
		display: block ;
	}
}
.seperatorLine{
    border-top:1px solid #0d0d0d;
}

.menu-holder{
    z-index:10001 !important;
    position: relative;
}

.menu-holder #mainMenu ul{
	list-style-type: none;
	padding: 0px !important;
	text-align: left;
	margin-left:20px;
}

.menu-holder #mainMenu ul li a{
	font-size: 45px;
	line-height: 53px;
}
.rhokostMarg{
   margin-top: 177px; 
}
@media only screen and (max-width: 479px) {

	.rhokostMarg{
		margin-top: 0px;
	}
}
.honigMarg{
    margin-top: 105px;
}
@media only screen and (max-width: 479px) {

	.honigMarg{
		margin-top: 0px;
	}
}
.marmeladeMarg{
    margin-top: 177px;
    overflow: :hidden;
}
@media only screen and (max-width: 479px) {

	.marmeladeMarg{
		margin-top: 0px;
	}
}
.salzMarg1{
    margin-top: 105px;
}
@media only screen and (max-width: 479px) {

	.salzMarg1{
		margin-top: 0px;
	}
}

.salzMarg2{
    margin-top: 105px;
}
.rose_frei{
	position:absolute;
}
.rhost_frei{
	position:absolute;
}
.gregorImage {
	margin-top:112px;
	width:100%;
}
@media only screen and (max-width: 479px) {

	.salzMarg2{
		margin-top: 0px;
	}
	.rose_frei{
		position:relative;
	}
	.rhost_frei{
		position:relative;
		width: 70%;
		margin-top: 100px;
		left: 50%;
      	transform: translate(-50%, 0);
	}
	.gregorImage {
		margin-top:60px;
	}
}


.mt-5{
	margin-top:80px;
}

.first{
	display: block;
}
.sec{
	display: block;
}
.mb-80 {
	margin-bottom:  80px;
}