/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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;
}
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;
}

/*------------------------------------------------------------------------------------------ Start*/

/*------------------------------------------------------------------------------------------ Basics */

html {
	box-sizing: border-box;
}

*, *:before, *:after {
	box-sizing: inherit;
}

body{
	position: absolute;
	top: 0;
	left: 0;
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
}

h1 {
	font-family: 'lobster_1.3regular', serif;
	font-size: 1.7rem;
	line-height: 2rem;
	text-align: center;
	color: rgba(255,255,255,1);
}

p {
	font-family: 'RobotoRegular', sans-serif;
	font-size: 1.2rem;
	line-height: 1.4em;
	text-align: center;
	color: white;
}

strong {
	font-family: 'RobotoBold', sans-serif;
}

a {
	text-decoration: none;
	font-family: 'RobotoBold', sans-serif;
	color: rgba(255,255,255,1);
}

/*------------------------------------------------------------------------------------------ Navigation */

.hamburgler-icon-wrapper {
	z-index: 1002;
  position: absolute;
  top: 0;
  left: 0;
  height: 38px;
  width: 52px;
  cursor: pointer;
  background-color: white;
}

.hamburgler-icon,
.hamburgler-icon:before,
.hamburgler-icon:after {
  content: '';
  position: absolute;
  border-radius: 3em;
  height: 5px;
  width: 35px;
  background: rgba(152,203,156,1);
  transition: all 0.2s ease;
}

.hamburgler-icon {
  top: 1em;
  left: 0.5em;
}

.hamburgler-icon:before {
  top: -0.55em;
}

.hamburgler-icon:after {
  top: 0.55em;
}

.hamburgler-active .hamburgler-icon {
  background: transparent;
  transform: rotate(-135deg);
}

.hamburgler-active .hamburgler-icon:before,
.hamburgler-active .hamburgler-icon:after {
  top: 0;
}

.hamburgler-active .hamburgler-icon:before {
  transform: rotate(90deg)
}

.hamburgler-active .hamburgler-icon,
.hamburgler-active .hamburgler-icon:before,
.hamburgler-active .hamburgler-icon:after {
  background: rgba(152,203,156,1);
}

.hamburgler-menu {
	z-index: 1001;
  transition: all 0.4s ease;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0.8);
  color: white;
  text-align: center;
}

.hamburgler-active .hamburgler-menu {
  opacity: 1;
  pointer-events: initial;
}

.hamburgler-menu-list {
  display: block;
  transition: all 0.4s ease;
  padding: 0;
  list-style-type: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.2);
}

.hamburgler-active .hamburgler-menu-list {
  transform: translate(-50%, -50%) scale(1);
}

nav ul a{
	text-decoration: none;
	font-family: 'lobster_1.3regular', serif;
	font-size: 4rem;
	line-height: 4.5rem;
	text-align: center;
	color: rgba(152,203,156,1);
}

/*------------------------------------------------------------------------------------------ Layout Desktop */

.flexContainer{
	display: flex;
	flex: 1;
	flex-direction: row; 
	height: 100vh;   
}

.imageBox{
	display: flex;
	flex: 1 0 0;
	-webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
    -moz-box-align: center;
    box-align: center; 
	align-items: center;

	height: 100vh;
	background-image: url(../img/ape_03.jpg);
	background-repeat: no-repeat center center fixed;

	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;
}

.imageBoxGalerie{
	display: flex;
	flex: 1 0 0;
	-webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
    -moz-box-align: center;
    box-align: center; 
	align-items: center;

	height: 100vh;
	background-image: url(../img/ape_01.jpg);
	background-repeat: no-repeat center center fixed;

	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;
}

.imageBoxAktuelles{
	display: flex;
	flex: 1 0 0;
	-webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
    -moz-box-align: center;
    box-align: center; 
	align-items: center;

	height: 100vh;
	background-image: url(../img/ape_05.jpg);
	background-repeat: no-repeat center center fixed;

	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;
}

.imageBoxKontakt{
	display: flex;
	flex: 1 0 0;
	-webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
    -moz-box-align: center;
    box-align: center; 
	align-items: center;

	height: 100vh;
	background-image: url(../img/ape_04.jpg);
	background-repeat: no-repeat center center fixed;

	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;
}

.imageBoxImpressum{
	display: flex;
	flex: 1 0 0;
	-webkit-box-pack: center;
    -moz-box-pack: center;
    box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
    -moz-box-align: center;
    box-align: center; 
	align-items: center;

	height: 100vh;
	background-image: url(../img/ape_02.jpg);
	background-repeat: no-repeat center center fixed;

	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;
}

.logoBox{
	width: 30%;
}

.imageBox p{
	font-family: 'RobotoBold', sans-serif;
	font-size: 2rem;
	line-height: 1.2em;
	text-align: center;
	margin: 2rem;
	color: rgba(190,22,34,1);
	background-color: rgba(255,255,255,0.7);
	padding: 3rem;
}

.textBox{
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	/* justify-content und align-items darf hier nicht angewendet werden, da sonst der vertikal zentrierte Text bei overflow oben abgeschnitten wird. 
	Stattdessen den flex-items margin: auto geben */
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
	height: 100vh;
	overflow-y: scroll;
	background: rgba(152,203,156,1);
}

.introText{
	/*margin: auto;*/
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	width: 70%;
	height: auto;
	border: dotted 4px white;
	padding: 1rem;
	margin-top: 2rem;
}

.abstandOben {
	margin-top: 2rem;
}

.keinAbstandUnten {
	margin-bottom: 0 !important;
}

.copyText{
	/*margin: auto;*/
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	width: 70%;
	margin-top: 2rem;
}

.copyText p{
	margin-bottom: 2rem;
}

.copyText p:first-of-type{
	margin-top: 0;
}

.copyText p:last-of-type{
	margin-bottom: 2rem;
}

.galerieBox{
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex: 1;
	    -ms-flex: 1;
	        flex: 1;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
	/* justify-content und align-items darf hier nicht angewendet werden, da sonst der vertikal zentrierte Text bei overflow oben abgeschnitten wird. 
	Stattdessen den flex-items margin: auto geben */
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-align-items: center;
	-ms-flex-align: center;
	        align-items: center;
	height: 100vh;
	overflow-y: scroll;
	background: rgba(152,203,156,1);
}

/*------------------------------------------------------------------------------------------ Text verbergen */

#akkordeon {
	font-family: 'RobotoRegular', sans-serif;
	font-size: 1.2rem;
	line-height: 1.4em;
	text-align: center;
	color: white;
	margin-top: 0;
	margin-bottom: 2rem;
}

#akkordeon:not(:target) .inhalt,
#akkordeon:not(:target) .hide,
#akkordeon:target .show {display: none;}
#akkordeon:target .inhalt {display: block;}

#akkordeon2 {
	font-family: 'RobotoRegular', sans-serif;
	font-size: 1.2rem;
	line-height: 1.4em;
	text-align: center;
	color: white;
	margin-top: 0;
	margin-bottom: 2rem;
}

#akkordeon2:not(:target) .inhalt,
#akkordeon2:not(:target) .hide,
#akkordeon2:target .show {display: none;}
#akkordeon2:target .inhalt {display: block;}

#akkordeon3 {
	font-family: 'RobotoRegular', sans-serif;
	font-size: 1.2rem;
	line-height: 1.4em;
	text-align: center;
	color: white;
	margin-top: 0;
	margin-bottom: 2rem;
}

#akkordeon3:not(:target) .inhalt,
#akkordeon3:not(:target) .hide,
#akkordeon3:target .show {display: none;}
#akkordeon3:target .inhalt {display: block;}

#akkordeon4 {
	font-family: 'RobotoRegular', sans-serif;
	font-size: 1.2rem;
	line-height: 1.4em;
	text-align: center;
	color: white;
	margin-top: 0;
	margin-bottom: 2rem;
}

#akkordeon4:not(:target) .inhalt,
#akkordeon4:not(:target) .hide,
#akkordeon4:target .show {display: none;}
#akkordeon4:target .inhalt {display: block;}

#akkordeon5 {
	font-family: 'RobotoRegular', sans-serif;
	font-size: 1.2rem;
	line-height: 1.4em;
	text-align: center;
	color: white;
	margin-top: 0;
	margin-bottom: 2rem;
}

#akkordeon5:not(:target) .inhalt,
#akkordeon5:not(:target) .hide,
#akkordeon5:target .show {display: none;}
#akkordeon5:target .inhalt {display: block;}

#akkordeon6 {
	font-family: 'RobotoRegular', sans-serif;
	font-size: 1.2rem;
	line-height: 1.4em;
	text-align: center;
	color: white;
	margin-top: 0;
	margin-bottom: 2rem;
}

#akkordeon6:not(:target) .inhalt,
#akkordeon6:not(:target) .hide,
#akkordeon6:target .show {display: none;}
#akkordeon6:target .inhalt {display: block;}

#akkordeon7 {
	font-family: 'RobotoRegular', sans-serif;
	font-size: 1.2rem;
	line-height: 1.4em;
	text-align: center;
	color: white;
	margin-top: 0;
	margin-bottom: 2rem;
}

#akkordeon7:not(:target) .inhalt,
#akkordeon7:not(:target) .hide,
#akkordeon7:target .show {display: none;}
#akkordeon7:target .inhalt {display: block;}

#akkordeon8 {
	font-family: 'RobotoRegular', sans-serif;
	font-size: 1.2rem;
	line-height: 1.4em;
	text-align: center;
	color: white;
	margin-top: 0;
	margin-bottom: 2rem;
}

#akkordeon8:not(:target) .inhalt,
#akkordeon8:not(:target) .hide,
#akkordeon8:target .show {display: none;}
#akkordeon8:target .inhalt {display: block;}

#akkordeon9 {
	font-family: 'RobotoRegular', sans-serif;
	font-size: 1.2rem;
	line-height: 1.4em;
	text-align: center;
	color: white;
	margin-top: 0;
	margin-bottom: 2rem;
}

#akkordeon9:not(:target) .inhalt,
#akkordeon9:not(:target) .hide,
#akkordeon9:target .show {display: none;}
#akkordeon9:target .inhalt {display: block;}

/*------------------------------------------------------------------------------------------ Layout Mobile */

@media (max-width: 1100px) and (orientation: landscape) {

	.introText{
		margin-top: 1rem;
	}

	h1 {
  		font-size: 1.4rem;
  		line-height: 1.6rem;
  	}

	p {
  		font-size: 1.1rem;
  		line-height: 1.3rem;
  	}

  	.introText{
		width: 90%;
	}

	.copyText{
		width: 90%;
	}

}

@media (max-width: 900px) and (orientation: portrait) {

  	.flexContainer{
  		flex-direction: column;
  	}

  	.introText{
		margin-top: 1rem;
	}

	h1 {
  		font-size: 1.4rem;
  		line-height: 1.6rem;
  	}

	p {
  		font-size: 1.1rem;
  		line-height: 1.3rem;
  	}

  	.introText{
		width: 90%;
	}

	.copyText{
		width: 90%;
	}

}

/*------------------------------------------------------------------------------------------ Youtube Video Responsive */

.responsive-video {
	/*position: relative;*/
	padding-bottom: 56.25%; /* Default for 1600x900 videos 16:9 ratio*/
	/*padding-top: 0px;*/
	height: 420;
	width: 315;
	overflow: hidden;
}

.responsive-video iframe {
	/*position: absolute;*/
	/*top: 0;
	left: 0;*/
	width: 100%;
	height: 100%;
}

/*------------------------------------------------------------------------------------------ Galerie*/

main {
  width: 80%;
  margin: 2rem auto;
}

section {
  width: 100%;
  padding: 1rem 0;
}

figure {
  width: calc(100% /4);
  float: left;
  margin-bottom: 1rem;
  position: relative;
}

figure a {
  display: inline-block;
  height: 100%;
  margin-left: 1rem;
  width: calc(100% - 2rem);
}

figure img {
  width: 100%;
  vertical-align: middle;
  margin-bottom: 0;
  border: 3px solid white;
}

section {
  overflow-y: scroll;
}

/*figure figcaption {
  background: #f39f3f;
  color: #fff;
  text-align: center;
  padding: 0.7rem;
  margin: 0 1rem;
}*/

section::after, section::before {
  content: "";
  display: block;
}

section::after {
  clear: both;
}

/*------------------------------------------------------------------------------------------ Lightbox

Lightbox created by Lokesh Dhakar http://www.lokeshdhakar.com/projects/lightbox2/ Lightbox2 is licensed under The MIT License

-------------------------------------------------------------------------------------------- Lightbox Ende*/

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

  figure {
    width: calc(100% / 3);
  }

}

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

  figure {
    width: calc(100% / 2);
  }

}

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

  figure {
    width: 100%;
    margin-top: auto auto;
    display: block;
    float: none;
  }

  section {
  	padding: 3rem;
  }

}

/*------------------------------------------------------------------------------------------ Galerie Ende*/






















