/* ---------------------------- Fonts --------------------------- */
/* Open Sans Regular */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: local(''), url('../fonts/open-sans-v20-latin-regular.woff2') format('woff2'), url('../fonts/open-sans-v20-latin-regular.woff') format('woff');
}
/* Open Sans Bold */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: local(''), url('../fonts/open-sans-v20-latin-700.woff2') format('woff2'), url('../fonts/open-sans-v20-latin-700.woff') format('woff');
}
/* Open Sans italic */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: local(''), url('../fonts/open-sans-v20-latin-italic.woff2') format('woff2'), url('../fonts/open-sans-v20-latin-italic.woff') format('woff');
}
/* Roberts */
@font-face {
  font-family: 'Roberts';
  font-style: normal;
  font-weight: 700;
  src: local(''), url('../fonts/roberts-webfont.woff2') format('woff2'), url('../fonts/roberts-webfont.woff') format('woff');
}
/* ---------------------------- Generelles Styling --------------------------- */
* {
  font-size: 1em;
  color: #000;
  font-family: 'Open Sans', sans-serif;
  scroll-behavior: smooth;
  box-sizing: border-box;
}
body {
  margin: 0px;
}
h1 {
  color: #fff;
  font-size: 2.375em;
  text-shadow: 0px 0px 15px rgb(0 0 0);
  position: absolute;
  top: 46%;
  letter-spacing: 0.02em;
  font-family: Roberts;
}
h1 span {
  color: #fff;
  font-size: 2.375rem;
  letter-spacing: 0.02em;
  font-family: Roberts;
  margin-right: -0.13em;
  margin-left: 0.13em;
}
h1 .spacing_g {
  margin-right: -0.13em;
  margin-left: 0.13em;
}
h1 .spacing_f {
  margin-right: -0.1em;
  margin-left: 0.19em;
}
h1 .spacing_o {
  margin-right: 0.08em;
  margin-left: -0.08em;
}
h1 .spacing_p {
  margin-right: -0.08em;
  margin-left: 0.13em;
}
h2 {
  font-size: 1.563rem;
  font-weight: bold;
}
h3 {
  font-size: 1.375rem;
  font-weight: bold;
}
h4 {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 0px;
}
/* ---------------------------- Header --------------------------- */
header {
  background: #fff;
  z-index: 18200;
  max-width: 1200px;
  margin: auto;
  min-height: 110px;
}
header > div {
  padding: 0 100px;
}
header .logo {
  background: url(../img/logo.png) no-repeat left top / contain;
  width: 136px;
  height: 160px;
  display: block;
  margin-top: -50px;
  position: absolute;
}
.top {
  text-align: center;
  margin-top: 10px;
}
.hero img {
  width: 100%
}
/*Content*/
.content {
  padding: 0 100px;
  max-width: 1200px;
  margin: auto
}
.quote-oben {
  width: 16px;
  margin: -10px;
}
.quote-unten {
  width: 16px;
  margin: 10px;
}
/* ---------------------------- Footer --------------------------- */
footer {
  width: 100%;
  text-align: center;
  padding: 0 100px;
  max-width: 1200px;
  margin: 50px auto 30px auto;
}
.footernav {
  float: right;
}
.footernav div {
  float: left;
  padding-left: 50px;
}
.footernav div a {
  text-decoration: none;
}
.social {}
.social div {
  float: left;
}
.social div img {
  width: 50px;
  padding-right: 20px;
}
/* ---------------------------- Slider --------------------------- */
/* Slideshow container */
.slideshow-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  z-index: -99;
}
.slideshow-container h1 {
  padding: 0 100px;
  color: #fff;
  font-size: 2.375em;
  text-shadow: 0px 0px 15px rgb(0 0 0);
  position: absolute;
  top: 64%;
  letter-spacing: 0.02em;
  font-family: Roberts;
}
/* Hide the images by default */
.mySlides {
  display: none;
}
/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}
/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}
/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}
/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  transition: background-color 0.6s ease;
  display: none;
}
.active, .dot:hover {
  background-color: #717171;
}
/* Fading animation */
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}
@-webkit-keyframes fade {
  from {
    opacity: .4
  }
  to {
    opacity: 1
  }
}
@keyframes fade {
  from {
    opacity: .4
  }
  to {
    opacity: 1
  }
}
/* ---------------------------- Responsives --------------------------- */
@media (max-width:1200px) {
  h1 {
    top: 28%;
  }
  .top {
    font-size: 1rem;
  }
  header {
    min-height: 70px;
  }
  header .logo {
    height: 100px;
    margin-top: -36px;
  }
  header > div {
    padding: 0 32px;
  }
  .content {
    padding: 0 32px;
  }
  footer {
    padding: 0 32px;
  }
}
/* Tablet */
@media (max-width:768px) {
  header .logo {
    height: 100px;
    margin-top: -48px;
  }
  h1 {
    top: 22%;
  }
  h2 {
    font-size: 1.563rem;
    font-weight: bold;
    margin: -10px 0;
  }
  .social {
    margin: auto;
    width: 200px;
    min-height: 20px;
  }
  footer {
    width: 100%;
    padding: 0 32px;
    margin-top: 40px;
  }
  .footernav {
    float: none;
    margin: 0px auto 20px auto;
  }
  .footernav div {
    float: none;
    padding-left: 0px;
    margin: auto;
    width: 100%;
  }
  .footernav div a {
    text-decoration: none;
    line-height: 1.5em;
  }
}
/* Smartphone */
@media (max-width:576px) {
  h1 {
    top: 16%;
  }
  header .logo {
    height: 80px;
    margin-top: -30px;
  }
  .top {
    font-size: 0.75rem;
  }
}