@charset "UTF-8";
/* CSS Document */

/*============================================ CSS Reset ============================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1.2;
	font-size: 13px;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/*============================================ Ende CSS Reset ============================================*/
/*============================================ Schriften ============================================*/
h1{
	font-family: 'Roboto';
	font-size: 36px;
	color: #fff;
	font-weight: 200;
	line-height: 55px;
	display: table-cell;
	vertical-align: middle;
}
h1 span {
	font-size: 60px;
}

h2 {
	font-weight: 200;
	font-size: 36px;
	text-align: center;
	margin: 20px 0 10px;
}

h3 {
	font-size: 20px;
	font-weight: 200;
	margin: 20px 0 10px;
}

h4 {
	font-size: 16px;
	font-weight: 600;
	color: #bfd03f;
	margin-top: 20px;
}


p {
	margin-top: 10px;
	font-weight: 200;
	font-size: 13px;
}

a {
	cursor: pointer;
}

.hervorhebung {
	color: #bfd03f;
	font-weight: 700;
}

.rotertext {
	color: #e32329;
	font-weight: 700;
}

.kapiteleinleitung {
	max-width: 600px;
	margin: auto;
}

.kapiteleinleitung p, .kapiteleinleitung h2 {
	text-align: center;
	padding:  0 50px;
}

.hidden-resp {
	display: none;
}

	
/*============================================ Body & Grundlegendes =======================================*/
* {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    letter-spacing: 0.5px;
}

body{
    font-family: 'Roboto', sans-serif;
    color: #444;
}

ul {
	display: table-cell;
	vertical-align: middle;
}

li{
	list-style-type: none;
	padding-left: 10px;
	text-indent: -10px;
}

li:before{
	content: '• ';
	color: #e31e24
}

section {
	padding: 100px 0;
	position: relative;
}

section:nth-child(2n+1) {
	height: -moz-calc(100vh - 260px);
	height: -webkit-calc(100vh - 260px);
	height: calc(100vh - 260px);
}

section:nth-child(2n+1) .content {
	width: 100%;
	height: 100%;
	position: relative;
	box-sizing: border-box;
}

.button {
    font-family: "Roboto", sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2.5px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    background-color: transparent;
    background-color: #bfd03f;
    padding: 10px 20px;
    margin-top: 25px;
    float: left;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.button:hover {
    color: #bfd03f;
    background-color: #fff;
}

section:nth-child(2n) .button:hover {
    background-color: #888;
}

.bottombox {
	width: 50%;
	bottom: 100px;
	position: absolute;
	z-index: 2;
}

.bottombox h2, .bottombox p {
	color: #fff;
	text-align: left;
}

.kreis {
	width: 400px;
	height: 400px;
	position: relative;
	display: table;
	margin: 70px auto 0 auto;
	left: 0;
	right: 0;
	background-color: rgba(191,208,63,0.2);
	border-radius: 50%;
	z-index: 1;
}
.kreisinhalt {
	display: table-cell;
	vertical-align: middle;
}
.kreisinhalt h2 {
	margin-top: 0;
}

.dekoimages {
	position: absolute;
}

.dekolinks {
	left: 0;
}

.dekorechts {
	right: 0;
}


/*============================================ Ende Body & Grundlegendes =======================================*/

/*============================================ Navigation ==================================================*/
.navi{
	width: 100%;
	height: auto;
	min-height: unset;
	background: #bfd03f;
	box-shadow: 0px -20px 50px 10px rgba(0,0,0,0.2);
	position: fixed;
	padding: 0;
	z-index: 50;
}

#menu {
	background-color: #bfd03f;
	width: 100%;
	left: 0px;
	right: 0px;
	font-weight: 400;
	color: #fff;
}

#header {
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

#logo {
	cursor: pointer;
}

.logo {
	width: auto;
	height: 20px;
	margin-top: 20px;
	margin-bottom: 20px;
	float: left;
}

#menu ul{
	margin: auto;
	padding: 0px;
	height: auto;
	position: relative;
	display: block;
}

.menu-elements{
	width: -moz-calc(100% - 60px);
	width: -webkit-calc(100% - 60px);
	width: calc(100% - 60px);
	font-size: 20px;
	float: unset;
	margin: 15px 30px;
	font-weight: 200;
	color: #bfd03f;
	text-transform: uppercase;
	display: block;
}

#navigation{
	height: 0vh;
	overflow: hidden;
	transition: all 1s ease-in-out;
	width: 100%;
	display: flex;
	float: right;
}

#menu .menuBurger {
	height: -moz-calc(100vh - 60px);
	height: -webkit-calc(100vh - 60px);
	height: calc(100vh - 60px);
	background-color: #fff;
}

.menu-elements-active{
	color: #ABABAB;
	float:left;
	position: relative;
	width: auto;
	display:inline-block;
	margin: 8px;
	height: 15%;
	min-height: 5%;
	font-size: 13px;
}

#navigation ul li{
	cursor: pointer;
	padding: 0;
	text-indent: 0;
}

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

#navigation ul li:hover {
    color: #888;
}



/*============================================ Ende Navigation ==================================================*/

/*============================================ Burger-Menu====================================================*/
#hamburger {
	position: relative;
	height: 55px;
	width: 30px;
	float: right;
	margin-top: 10px;
	background-color: transparent;
	border: none;
	cursor: pointer;
}

#hamburger2 {
	position: absolute;
	height: 40px;
	width: 40px;
	margin-top: 10px;
	padding: 0;
	right: 0;
	background-color: transparent;
	border: none;
	cursor: pointer;
}

#hamburger #burger-position {
	background-color: unset;
	position: relative;
	height: 19px;
	width: 23px;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
	overflow: hidden;
}

#hamburger2 #burger-position2 {
	background-color: unset;
	position: relative;
	height: 20px;
	width: 24px;
	left: 0;
	right: 0;
	margin: auto;
	display: block;
}

#hamburger div {
	height: 2px;
	background-color: #fff;
	position: absolute;		
}

#hamburger2 div {
	height: 2px;
	width: 100%;
	background-color: #fff;
	position: absolute;		
}

/*ÄNDERUNGUNG*/

.change-top {
	margin-left: 0px !important ;
	width: 23.5px !important ;
}		
.change-middle-top {
	left: 0;
	top: 8.5px;	
	transform: rotate(0deg)  !important ;	
	opacity: 1 !important ;
}

.change-middle-bottom{
	left: 0;
	top: 8.5px;	
	transform: rotate(0deg) !important ;		
	opacity: 1 !important ;
}

.change-bottom {
	margin-left: 0px!important ;
	width: 23.5px !important ;
}

.change-top2 {
	margin-left: 12px!important  ;
	width: 0 !important ;
}		
.change-middle-top-2 {
	left: 0;
	top: 8.5px!important ;	
	transform: rotate(45deg)!important ;	
	opacity: 1 !important ;
}

.change-middle-bottom-2{
	left: 0;
	top: 8.5px;	
	transform: rotate(-45deg) !important ;
	opacity: 1 !important ;
}

.change-bottom2 {
	margin-left: 12px !important ;
	width: 0 !important ;
}

/*ÄNDERUNGUNG ENDE*/

/*STANDARD FORMATIERUNGEN*/

.open-burger-top {
	top: 0;
	left: 0;
	transform-origin: 0 100%;
	width: 0px;
	height: 2px;
	background-color: black ;
	transition: all 0.4s ease-in-out;
	margin-left: 12px;
}
.open-burger-middle-top {
	background-color: black ;
	top: 8px;
	width: 23.5px;
	transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.open-burger-middle-bottom {
	background-color: black;
	top: 8px;
	width: 23.5px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}
.open-burger-bottom {
	bottom: 0;
	left: 0;
	transform-origin: 0 0;
	width: 0px;
	height: 2px ;
	background-color: black ;
	transition: all 0.4s ease-in-out;
	margin-left: 12px;
}

.open-burger-top2 {
	top: 0;
	left: 0;
	transform-origin: 0 100%;
	width: 23.5px;
	height: 2px ;
	background-color: black ;
	transition: all 0.4s ease-in-out;
	margin-left: 0;
}
.open-burger-middle-top-2 {
	background-color: black ;
	top: 8.5px;
	width: 23.5px;
	transform: rotate(0deg);
	transition: all 0.4s ease-in-out;
}

.open-burger-middle-bottom-2 {
	background-color: black ;
	top: 8.5px;
	width: 23.5px;
	transform: rotate(0deg);
	transition: all 0.4s ease-in-out;
}
.open-burger-bottom2 {
	bottom: 0;
	left: 0;
	transform-origin: 0 0;
	width: 23.5px;
	height: 2px ;
	background-color: black;
	transition: all 0.4s ease-in-out;
	margin-left: 0;
}

/*ÄNDERUNGUNG ENDE*/

/*STANDART FORMATIERUNGEN*/

.open-burger-top {
	top: 0;
	left: 0;
	transform-origin: 0 100%;
	width: 0px;
	height: 2px !important;
	background-color: #fff !important;
	transition: all 0.4s ease-in-out;
	margin-left: 12px;
}
.open-burger-middle-top {
	background-color: #fff !important;
	top: 8.5px;
	width: 23.5px;
	transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.open-burger-middle-bottom {
	background-color: #fff !important;
	top: 8.5px;
	width: 23px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}
.open-burger-bottom {
	bottom: 0;
	left: 0;
	transform-origin: 0 0;
	width: 0px;
	height: 2px !important;
	background-color: #fff !important;
	transition: all 0.4s ease-in-out;
	margin-left: 12px;
}




.open-burger-top2 {
	top: 0;
	left: 0;
	transform-origin: 0 100%;
	width: 23.5px;
	height: 2px !important;
	background-color: #fff;
	transition: all 0.4s ease-in-out;
	margin-left: 0;
}
.open-burger-middle-top-2 {
	background-color: #fff;
	top: 8.5px;
	width: 23.5px;
	transform: rotate(0deg);
	transition: all 0.4s ease-in-out;
}

.open-burger-middle-bottom-2 {
	background-color: #fff;
	top: 8.5px;
	width: 23.5px;
	transform: rotate(0deg);
	transition: all 0.4s ease-in-out;
}
.open-burger-bottom2 {
	bottom: 0;
	left: 0;
	transform-origin: 0 0;
	width: 23.5px;
	height: 2px !important;
	background-color: #fff;
	transition: all 0.4s ease-in-out;
	margin-left: 0;
}

/*STANDART FORMATIERUNGEN ENDE*/



/* Startseite */
#home {
	overflow: hidden;
}
#home .content {
	width: -moz-calc(100% - 140px);
	width: -webkit-calc(100% - 140px);
	width: calc(100% - 140px);
	height: 100%;
	display: table;
	padding: 0 70px;
}
#home .darkfilter {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.25);
}


/* Slider */
.swiper-container {
    width: 100%;
	height: -moz-calc(100vh - 60px);
	height: -webkit-calc(100vh - 60px);
	height: calc(100vh - 60px);
	margin-top: 60px;
}  

.swiper-container-android .swiper-slide, .swiper-wrapper {
    -webkit-transform: translate3d(0px, 0, 0);
    -moz-transform: translate3d(0px, 0, 0);
    -o-transform: translate(0px, 0px);
    -ms-transform: translate3d(0px, 0, 0);
    transform: translate3d(0px, 0, 0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
}

.swiper-slide {
    transform: translateZ(0);
    overflow: hidden;
}

.swiper-pagination-bullet-active {
	color: #e31e24;
}

#body .swiper-button-next.swiper-button-white, 
#body .swiper-button-prev.swiper-button-white {
	width: 30px;
	height: 30px;
	top: 50%;
	border-radius: 50%;
	background-color: #fff;
	background-size: 50%;
}
#body .swiper-button-next.swiper-button-white:hover, 
#body .swiper-button-prev.swiper-button-white:hover {
	opacity: 0.7;
}
#body .swiper-button-next.swiper-button-white {
	background-image: url('../images/slider_next.svg');
	right: 30px;
}
#body .swiper-button-prev.swiper-button-white {
	background-image: url('../images/slider_prev.svg');
	left: 30px;
}

#slider1{
	background-image:url(../images/bilder-gekauft/aepfel.jpg);
}
#slider2{
	background-image:url(../images/Header-Slider/fruechtehaus-hieber-100-jahre.jpg);
}
#slider3{
	background-image:url(../images/Header-Slider/Fruechtehaus-Hieber.jpg);
}

.dunkler-verlauf {
	width: 100%;
	height: 400px;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
	position: absolute;
	bottom: 0;
	z-index: 1;
}


/* Bereich 1 */

.content {
	max-width: 1000px;
	margin: 0 auto;
}

#zubereitet {
	overflow: hidden;
}

#zubereitet .button {
	margin-top: 10px;
}

#bilder-bereich1 {
	width: 100%;
	margin: 0 auto;
	position: relative;
}

.vorsch-bild {
	height: auto;
	width: -moz-calc(100% / 3 - 60px);
	width: -webkit-calc(100% / 3 - 60px);
	width: calc(100% / 3 - 60px);
	float: left;
	margin-right: 20px;
	margin-top: 20px;
	padding: 20px;
}

.vorsch-bild:nth-child(3n) {
	margin-right: 0px;
}

.vorsch-bild div, .vorsch-bild img {
	width: 100%;
}

#zubereitet .vorsch-bild .dekolinks {
	width: 70px;
	margin-left: -60px;
	margin-top: 40px;
}

#zubereitet .vorsch-bild .dekorechts {
	width: 80px;
	margin-right: -40px;
	margin-top: 0px;
}

#zubereitet .vorsch-bild div, #zubereitet .vorsch-bild img {
	margin-top: 20px;
}

strong {
	font-weight: 700;
}


/* Bereich 2 */

#ObstGemuese {
	min-height: 330px;
	background-image: url('../images/Header-Slider/Fruechtehaus-Hieber_9-bearb.jpg');
}
#ObstGemuese .button {
	position: relative;
}
#ObstGemuese .button .logo360 {
	display: none;
}
#ObstGemuese .button:hover {
	padding-right: 60px;
}
#ObstGemuese .button:hover .logo360 {
	width: 33px;
	height: 33px;
	position: absolute;
	top: 0;
	right: 20px;
	display: block;
}


/*Bereich 3 */

#Tradition {
	overflow: hidden;
	padding-top: 0;
}

#bilder-bereich3 {
	width: 100%;
	margin: -40px auto 0 auto;
	overflow: hidden;
	display: flex;
	z-index: 5;
}

#Tradition .vorsch-bild {
	padding: 20px;
	border: 1px #444 solid;
	background-color: #fff;
	z-index: 5;
}


/*Bereich 4 */

#Markt {
	background-image: url(../images/Header-Slider/Fruechtehaus-Hieber_14-bearb2.jpg);
}


/*Bereich 5 */

#verschenken {
	background-image: url(../images/bilder-gekauft/korb-gemuese.jpg);
	position: relative;
}
#verschenken .vertikal-mittig-container {
	width: 100%;
	height: 680px;
	display: table;
}
#korb {
	width: 670px;
	height: auto;
	margin: auto;
	position: absolute;
	display: table;
	top: 250px;
	left: 0;
	right: 0;
	z-index: 5;
}
#verschenken .kreis {
	width: 450px;
	height: auto;
	background-color: transparent;
	margin: -30px auto 0 auto;
	display: table-cell;
	vertical-align: middle;
	padding: 0 100px;
	position: absolute;
	left: 0;
	right: 0;
}
#haende {
	height: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
#verschenken .content {
	display: table-cell;
	vertical-align: middle;
}


/* Google Maps Karte */

.h2-var {
	position: absolute;
	margin: 50px auto;
	left: 0;
	right: 0;
	z-index: 1;
}

#googlemaps {
	overflow: hidden;
	padding: 0;
	margin: 0 30px 30px 30px;
}

#googlemaps p {
	font-size: 16px;
}

#googlemaps .bottombox {
	width: -moz-calc(100% - 60px);
	width: -webkit-calc(100% - 60px);
	width: calc(100% - 60px);
	padding: 30px;
	bottom: 0;
}

#googlemaps .dunkler-verlauf {
	width: 100%;
	height: 300px;
}

.mapswrapper {
	width: -moz-calc(50% - 15px);
	width: -webkit-calc(50% - 15px);
	width: calc(50% - 15px);
	float: left;
	position: relative;
}

#laden {
	margin-right: 30px;
	background-image: url('../images/bilder/fruechtehaus-hieber-ladengeschaeft.jpg');
}

#marktstand {
	background-image: url('../images/bilder/fruechtehaus-hieber-marktstand.jpg');
}

.googlemap {
	width: 100%;
	height: -moz-calc(75vh - 260px);
	height: -webkit-calc(75vh - 260px);
	height: calc(75vh - 260px);
	min-height: 400px;
}

#googlemaps a, .footer a{
	color: #fff;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
	font-weight: 400;
}

#googlemaps a {
	text-decoration: underline;
}

#googlemaps a:hover{
	color: #bbb;
}



/* Footer */

.footer{
	background: #bfd03f;
	padding: 22px 0;	
	box-sizing: border-box;
	text-align: center;
}
#text-bereich-footer {
	color: #fff;
}
#footer-rechtliches p {
	margin-top: 0;
}
.footer a:hover{
	color: #888;
}



/* Impressum */

#impressum {
	min-height: -moz-calc(100vh - 260px);
	min-height: -webkit-calc(100vh - 260px);
	min-height: calc(100vh - 260px);
	height: 100%;
}
