/*
Demonstriert eine Onepage-Website auf Basis von REDAXO 5, bootstrap und fullpage.js
Theme Minimal - Basis für Entwickler (minimale CSS / JavaScript-Definitionen)
*/

@import url('../../../css/font-awesome.min.css');

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'Open Sans';
    src: url('OpenSans-Bold-webfont.woff') format('woff');
    font-weight: bold;
    font-style: normal;

}



html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: rgb(51, 51, 51);
  font-size: 18px;
  transition: all 0.3s ease;
  line-height: 1.4;
  color: #fff;
  font-family: 'Open Sans', sans-serif;

}


.pagewrapper {
  display: block;
  opacity: 1;
}

/* Logo */

.pagelogo {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 70;
}

.pagelogo img {
  width: 250px;
  cursor: pointer;
}

.site-title {
  position: absolute;
  left: 0;
  font-size: 18px;
  border: none;
  margin: 0;
  top: 18px;
  text-transform: none; 
}



/* Main Navigation */

nav {
  position: relative;
  display: block;
  min-height: 100px;
  margin: 0px auto;
  max-width: 1150px;
  width: 100%;
  border-bottom: 1px solid #fff;
}

@media screen and (max-width: 1110px) and (min-width:871px) {
  nav{
    padding-top: 30px;
  }
}

.hamburger {
  display: none;
  position: fixed;
  top: 5px;
  right: 5px;
  z-index: 99;
}
.hamburger:focus {
  outline: none;
}

.mainnav {
  position: absolute;
  padding: 0;
  margin: 0;
  color: #fff;
  right: 0;
}

.mainnav:before {
  content: " ";
  display: block;
  background-image: url(feder.png);
  width: 100px;
  height: 45px;
  position: absolute;
  left: -80px;
  top: 28px;
  background-size: contain;
  background-repeat: no-repeat;
}

.mainnav li {
  list-style: none;
  display: inline-block;
  
  

}

.mainnav li a {
  text-decoration: none;
  color: #fff;
  line-height: 100px;
  text-transform: uppercase;
  border-right: 1px solid #fff;
  margin-right: 10px;
  padding-right: 10px;
}

.mainnav li:last-child a{
  border-right: none;
}

.mainnav li.active {
  font-weight: bold;
}

/* Blocks */
/* Backgrounds will cover all the section */

.section {
  text-align: center;
  min-height: 200px;
  position: relative;
  background-color: #d4d4d4;
  background-size: cover;
  padding: 50px 0;
}
.section-even {
  background-color: #d4d4d4;
}
.section-odd {
  background-color: #f0f0f0;
}

.slide {
  text-align: center;
  min-height: 200px;
  position: relative;
  background-size: cover;

  
}



/* Content Container */

div.container {
  padding: 0;
}

div.container a {
  color: #111;
}

div.container a.extern {
/*  padding-left: 22px;
  background: url('../img/extlink.gif') no-repeat left center;*/
}

div.row {
  margin: 0 10px;
  word-wrap: break-word;
}

.pictext {
  text-align: left;
}

div.col-sm-4,
div.col-sm-6 {
  padding: 0.75em 1em 0.75em 1em;
}

div.col-sm-4 img,
div.col-sm-6 img {
  max-width: 100%;
}

i.fa {
  padding-right: 10px;
}

/* Images */

img.full {
  max-width: 80%;
}

img.content {
  max-width: 50%;
}

.pictext img.content {
  display: block;
  width: 100%;
  max-width: 100%;
}

.pictext p a {
  color: #fff;
}

/* Headlines */

h1, h2, h3 {
  color: inherit;
  margin: 0;
  line-height: 1.3em;
  font-weight: 400;
  text-align: left;
}
h1 {
  font-size: 2.0em;
  text-transform: uppercase;
  border-bottom: 1px solid;
  padding-bottom: 14px;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.8em;
}
h3 {
  font-size: 1.6em;
}

ul {
  padding-left: 20px;
}

p {
  margin-bottom: 20px;
}

/* fullpage Navigation Dots */

#fp-nav {
  display: none;
}

#fp-nav.right {
  right: 10px;
}
#fp-nav.left {
  left: 10px;
}
.fp-slidesNav.bottom {
  bottom: 10px;
}
.fp-slidesNav.top {
  top: 10px;
}

/* Tooltip Navigation Dots */

#fp-nav ul li .fp-tooltip {
  background: #111;
  padding: 2px 6px;
}

/* Horizontal Slide arrows */

.fp-controlArrow.fp-prev {
  left: 50px;
  border-width: 28.5px 24px 28.5px 0;
  border-color: transparent #333 transparent transparent;
  opacity: .6;
}
.fp-controlArrow.fp-next {
  right: 50px;
  border-width: 32.5px 0 28.5px 24px;
  border-color: transparent transparent transparent #333;
  opacity: .6;
}
.fp-controlArrow.fp-prev:hover,
.fp-controlArrow.fp-next:hover {
  opacity: 1;
}

/* Page loading animation - https://projects.lukehaas.me/css-loaders/ */

.loader {
  position: absolute;
  top: 50%;
  left: 47%;
}

/* Scoll down indicator arrow - https://codepen.io/nxworld/pen/OyRrGy */

a.arrowdown {
	position: absolute;
	bottom: 20px;
	left: 50%;
	z-index: 60;
	display: inline-block;
  border: 0 solid transparent;
  border-left-width: 25px;
  border-right-width: 25px;
  border-top: 25px solid #333;
  margin-left: -17px;
  opacity: .6;
}
a.arrowdown:hover {
	opacity: 1;
}

/* back to top arrow */

.back-to-top {
  background: none;
  margin: 0;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  z-index: 200;
  display: none;
  text-decoration: none;
  color: #fff;
  opacity: .7;
  transition: all 0.3s ease;
}
.back-to-top:hover {
  color: #333;
  opacity: 1;
}
.back-to-top i {
  font-size: 44px;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */

.hamburger {
  padding: 5px;
  display: none;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  margin-top: 3px;
  overflow: visible; }
  .hamburger:hover {
    opacity: 0.6; }

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
  .hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 5px;
    background-color: #fff;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
  .hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
  .hamburger-inner::before {
    top: -10px; }
  .hamburger-inner::after {
    bottom: -10px; }

  /*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
  .hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
  .hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }

.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
  .hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
  .hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }

@media (max-width:870px) {
  .hamburger {
    display: block;
  }

  .hamburger:before {
    content: " ";
    display: block;
    background-image: url(feder.png);
    width: 100px;
    height: 45px;
    position: absolute;
    left: -80px;
    top: -5px;
    background-size: contain;
    background-repeat: no-repeat;
  }

  .mainnav {
    display: none;
    width: 100%;
    position: fixed;
    top: 60px;
    z-index: 99999;
    background-color: rgb(51, 51, 51);
  }

  .mainnav li {
    display: block;
    text-align: center;
    border: 1px solid #fff;
    
  }

  .mainnav li a {
    border: none;
    line-height: 60px
  }
}

/* Slider */


#galerie {
  padding: 0;
}

#galerie .slide {
  padding-bottom: 66.25%;
}

@media screen and (max-width: 930px){
  #galerie .slide {
    padding-bottom: 59%;
  }
}

@media screen and (max-width: 650px){
  #galerie .slide {
    padding-bottom: 66%;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

@media screen and (max-width: 490px){
  #galerie .slide {
    padding-bottom: 80%;
    background-size: contain;
    background-repeat: no-repeat;
  }
}

.owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 30vw; 
}

#galerie .owl-nav {
  display: none;
}

.owl-prev,
.owl-next {
  position: absolute;
  top: 50%;
  right: 25%;
  height: 140px;
  margin-top: -70px;
  min-width: 30px;
}

.slide  {
    background-position: center center;
}

.owl-next {
  background-image: url(arrow.svg);
  background-size: cover;
}

.owl-prev {
  background-image: url(arrow.svg);
  background-size: cover;
  transform: rotate(180deg);
  right: calc(25% + 50px);
}

.owl-prev.disabled,
.owl-next.disabled {
  display: none;
}

.owl-dots {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 100%;
  text-align: right;
  padding-right: 5vw;

}

#stimmen .owl-dots {
  display: none !important;
}

.owl-dot {
  display: inline-block

}

.owl-dot span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #000;
  margin-left: 10px;
}

.owl-dot.active span {
  background-color: #000;
}


.owl-dot.dark span {
  
  border: 1px solid #fff !important;
}

.owl-dot.dark.active span {
  background-color: #fff;
}


section#kontakt .container {
  position: relative;
}

.toggleImpressum {
  position: absolute;
  bottom: 0;
  right: 0;
}

section#impressum_datenschutz {
  display: none;
}

section#impressum_datenschutz.show {
  display: block;
}

section#galerie.dark {
  color: #fff !important;
}

section#galerie:after {
    content: "Galerie";
    font-size: 2.0em;
    
    display: block;
    text-transform: uppercase;
    border-bottom: 1px solid;
    padding-bottom: 14px;
    margin-bottom: 24px;
    position: absolute;
    top: 50px;
    width: 100%;
    max-width: 1150px;
    text-align: left;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 1150px) {
    section#galerie:after {
        left:38px;
        width: calc(100% - 76px);
        transform: none;
    }
}

.audio_container {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  height: 100px;

}

.audio_container button {
  width: inherit;
  height: inherit;
  border: none;
  -webkit-appearance: none;
  background: url(../../../../../../media/play.png);
  background-repeat: no-repeat;
  background-size: auto 100px ;
}

.audio_container button.isPlaying {
  background-position: 110% 50%;
}

/* Breakpoints / responsive */

.fp-responsive .hamburger {
  display: block;
}

@media (max-width: 992px){

  body {
    transition: all 0.3s ease;
    font-size: 16px;
  }
  div.container {
    padding-bottom: 4.0em;
  }

  .fp-controlArrow.fp-prev {
    left: 10px;
  }
  .fp-controlArrow.fp-next {
    right: 10px;
  }

}

@media (max-width: 768px){

  body {
    transition: all 0.3s ease;
    font-size: 16px;
  }

}

@media (max-width: 576px) {
  body {
    transition: all 0.3s ease;
    font-size: 16px;
  }
}
