@charset "UTF-8";
/*font-family: 'Poppins', sans-serif;
font-family: 'Lora', serif;
font-family: 'Open Sans', sans-serif;
font-family: 'Lato', sans-serif;*/
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  position: relative;
  font-family: 'Open Sans', sans-serif; }

h1, h2 {
  font-family: 'Gilda Display'; }

a {
  color: #fff;
  text-decoration: none;
  font-weight: 700; }

a:hover {
  color: #00854a; }

.box-wrapper {
  width: 100%; }

/* === FADE + SLIDE === */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform; }

.fade-up.visible {
  opacity: 1;
  transform: translateY(0); }

/* Stagger */
.fade-up:nth-child(1) {
  transition-delay: 0.1s; }

.fade-up:nth-child(2) {
  transition-delay: 0.2s; }

.fade-up:nth-child(3) {
  transition-delay: 0.3s; }

.fade-up:nth-child(4) {
  transition-delay: 0.4s; }

.fade-up:nth-child(5) {
  transition-delay: 0.5s; }

.fade-up:nth-child(6) {
  transition-delay: 0.6s; }

.fade-up:nth-child(7) {
  transition-delay: 0.7s; }

.fade-up:nth-child(8) {
  transition-delay: 0.8s; }

/* Höhe erzeugen → 2 Spalten mit je 1:1 */
.paar:before {
  content: "";
  display: block;
  padding-top: 50%; }

.paar {
  position: relative;
  width: 100%;
  margin-bottom: 00px;
  /* Standard:
     Text links / Bild rechts
  */ }
  .paar .inside {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-position: center center;
    background-size: cover; }
  .paar .text {
    left: 0;
    display: flex;
    flex-direction: column;
    /* wichtig */
    align-items: flex-start;
    /* alles links */
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    background-color: #00854a;
    color: #fff !important; }
    .paar .text h1, .paar .text p {
      width: 100%;
      margin: 0 0 15px 0; }
  .paar .bild {
    left: 50%; }

/* Basis */
/* Jedes 2. Paar drehen */
.paar.reverse .text {
  left: 50%; }

.paar.reverse .bild {
  left: 0; }

#wait {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: none;
  background-color: rgba(0, 0, 0, 0.74);
  background-image: url("../images/puff.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 4em;
  z-index: 10000; }

#top-logos img {
  width: 90%;
  margin: auto; }

.logo-inverted {
  display: none;
  margin-top: 1em;
  margin-bottom: 2em;
  background-image: url("../images/logo-inverted.svg");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  height: 3em; }

.container-wrapper {
  background-color: #f7fcee; }

#message-container {
  position: fixed;
  z-index: 100001;
  bottom: 1em;
  left: 1em;
  width: 15em;
  padding: 1em; }
  #message-container .message {
    display: inline-block;
    background-color: darkgreen;
    color: #fff;
    padding: .5em;
    font-size: .8em;
    border-radius: .5em;
    margin-bottom: .5em;
    cursor: pointer; }
  #message-container .error {
    display: block;
    background-color: darkred;
    color: #fff;
    padding: .5em;
    font-size: .8em;
    border-radius: .5em;
    margin-bottom: .5em;
    cursor: pointer; }

#contact, #contactForm {
  position: relative;
  padding: 1em 0; }
  #contact input[type=text], #contact input[type=email], #contactForm input[type=text], #contactForm input[type=email] {
    border: none;
    width: 100%;
    background-color: #fff;
    border: 1px solid #00854a;
    color: #00854a;
    padding: .5em 1em;
    margin-bottom: 1em; }
  #contact .trenner, #contactForm .trenner {
    font-size: .8em;
    color: #0c1e30; }
  #contact textarea, #contactForm textarea {
    width: 100%;
    height: 15em;
    padding: 1em;
    box-sizing: border-box;
    border: none;
    border: 1px solid #00854a;
    background-color: #fff;
    color: #00854a;
    resize: vertical;
    margin-bottom: 1em; }
  #contact input[type=submit], #contactForm input[type=submit] {
    color: #fff;
    padding: .5em 1em;
    background-color: #00854a;
    border: 1px solid #00854a;
    margin: auto;
    width: 10em; }
  #contact input[type=submit]:hover, #contactForm input[type=submit]:hover {
    color: #00854a;
    padding: .5em 1em;
    background-color: #f7fcee;
    margin: auto;
    width: 10em; }

#gm {
  position: relative;
  width: 100%;
  height: 350px;
  top: 0;
  left: 0;
  background-image: url("../images/gm.jpg");
  background-position: center center;
  background-size: cover; }
  #gm .hint {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    text-align: center; }
    #gm .hint .button {
      display: inline-block;
      background-color: #fff;
      padding: 1em;
      cursor: pointer; }

button {
  display: inline-block;
  border: none;
  background-color: #0c1e30;
  padding: .5em 1em;
  margin: 1em;
  border-radius: 0em;
  color: #fff !important;
  cursor: pointer; }

button:hover {
  background-color: #00854a; }

.link-button {
  display: inline-block;
  border: none;
  background-color: #f7fcee;
  font-weight: 300;
  padding: .5em 1em;
  margin: 1em;
  border-radius: 0em;
  color: #fff !important;
  cursor: pointer; }

.link-button:hover {
  background-color: #00854a;
  color: #f7fcee !important; }

#c-banner {
  position: fixed;
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2em 1em;
  box-sizing: border-box;
  background-color: #00854a;
  color: #fff;
  text-align: center;
  z-index: 10000;
  -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
  box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0); }
  #c-banner .button {
    display: inline-block;
    background-color: #fff;
    padding: .5em 1em;
    margin: 1em;
    border-radius: .5em;
    color: #000;
    cursor: pointer; }
  #c-banner .button:hover {
    -webkit-box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0);
    box-shadow: 0px 10px 13px -7px #000000, 5px 5px 15px 5px rgba(0, 0, 0, 0); }

#mob {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4em;
  background-color: #0c1e30;
  z-index: 35000;
  display: none; }

.mob-menu {
  background-image: url("../images/icon_menu_mobile.svg"); }

.mob-close {
  background-image: url("../images/close_x.png"); }

#header {
  font-size: .9em;
  background-color: #f7fcee;
  border-top: 1em solid #00854a;
  border-bottom: 1px dotted #00854a; }
  #header .header-image {
    text-align: left; }
  #header a {
    color: #00854a !important; }
  #header a:hover {
    color: #0c1e30 !important; }

.dark {
  background-color: #0c1e30; }

.bb-thick-orange {
  border-bottom: 1em solid #00854a; }

.icon-wrapper {
  display: inline-block;
  position: relative; }

.icon-box {
  position: absolute;
  left: 0px;
  top: 7px;
  color: #2760ca;
  font-size: 30px;
  text-align: left;
  line-height: 1em; }

.icon-box-after {
  padding-left: 45px;
  padding-right: 1em;
  margin-right: 1em;
  border-right: 1px dotted #f7fcee;
  display: inline-block;
  text-align: center; }

.wrapper {
  width: 100%;
  padding: 0; }

.wrapper-footer {
  width: 100%;
  padding: 0em 0;
  margin: 0;
  background-color: #00854a;
  overflow: hidden; }

.haiden-bottom {
  max-width: 30%;
  margin: auto;
  background-image: url("../images/haidem-bottom.png");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100%; }

.haiden-bottom:before {
  content: "";
  display: block;
  padding-top: 20%;
  /* initial ratio of 1:1*/ }

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  opacity: .3; }

.listing li {
  padding: 1em 0; }

.item-box-description {
  display: flex;
  flex-direction: column;
  /* wichtig */
  align-items: flex-start;
  /* alles links */
  justify-content: center;
  height: 100%;
  padding: 1em; }

.item-box {
  width: 100%;
  position: relative;
  border: 1px dotted #f7fcee;
  display: inline-flex;
  margin: 1em;
  cursor: pointer; }
  .item-box .image {
    position: absolute;
    top: 1em;
    left: 1em;
    bottom: 1em;
    right: 1em;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.9; }
  .item-box .titel {
    position: absolute;
    z-index: 1001;
    font-size: 1.5em;
    font-weight: 400;
    /*bottom:2em;*/
    left: 50%;
    top: 50%;
    background-color: #f7fcee;
    color: #00854a;
    padding: 1em;
    text-align: center;
    min-width: 70%;
    min-height: 3em;
    transform: translate(-50%, -50%);
    font-family: 'Gilda Display';
    display: flex;
    flex-direction: column;
    /* wichtig */
    align-items: center;
    /* alles links */
    justify-content: center; }

.item-box:before {
  content: "";
  display: block;
  padding-top: 100%;
  /* initial ratio of 1:1*/ }

.item-box:hover .image {
  opacity: 1; }
.item-box:hover .titel {
  background-color: #00854a;
  color: #f7fcee; }

.image-box {
  width: 24.5%;
  position: relative;
  border: 1px dotted #00854a;
  display: inline-block;
  cursor: pointer; }
  .image-box .image {
    position: absolute;
    top: .5em;
    left: .5em;
    bottom: .5em;
    right: .5em;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 1; }

.image-box:before {
  content: "";
  display: block;
  padding-top: 100%;
  /* initial ratio of 1:1*/ }

.image-box:hover .image {
  opacity: .8; }

#top-nav {
  z-index: 1000;
  background-color: #fff;
  color: #0c1e30; }
  #top-nav ul {
    position: relative;
    padding: 0;
    margin: 0;
    z-index: 20000;
    text-align: center; }
    #top-nav ul li {
      list-style-type: none;
      display: inline-block;
      text-decoration: none;
      margin: .5em 1em;
      padding: 1em 0;
      position: relative;
      z-index: 20001; }
      #top-nav ul li a {
        text-decoration: none;
        color: #0c1e30;
        font-family: 'Gilda Display';
        font-weight: 400 !important;
        font-size: 1.1em;
        text-transform: uppercase;
        letter-spacing: .1em; }
      #top-nav ul li a:hover {
        color: #00854a; }
      #top-nav ul li ul {
        display: none;
        top: 100%;
        left: 0;
        background-color: #f7fcee;
        position: absolute;
        z-index: 200001; }
        #top-nav ul li ul li {
          display: block;
          min-width: 14em;
          margin: 0em;
          padding: .5em 1em;
          z-index: 20001; }
        #top-nav ul li ul li:hover {
          background-color: #00854a; }
          #top-nav ul li ul li:hover a {
            color: #fff; }
          #top-nav ul li ul li:hover a:hover {
            color: #f7fcee; }
    #top-nav ul li:hover ul {
      display: block; }
  #top-nav .active {
    font-weight: 600;
    color: #00854a; }

#bottom-nav {
  border-bottom: 1px dotted #f7fcee; }
  #bottom-nav ul {
    text-align: center;
    margin: 0; }
    #bottom-nav ul li {
      list-style-type: none;
      display: inline-block;
      padding: .25em 1em; }
      #bottom-nav ul li a {
        text-decoration: none;
        color: #fff;
        font-weight: 200; }

.footer {
  color: #fff; }

.pic-2 {
  background-image: url("../images/2.jpg");
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover; }

.dashed-box {
  border: 1px dashed #f7fcee;
  background-color: #0c1e30;
  color: #fff;
  padding: 1em 1em 1em 60px;
  text-align: center; }
  .dashed-box .icon-box {
    position: absolute;
    left: 30px;
    top: 18px;
    color: #2760ca;
    font-size: 40px;
    text-align: left;
    line-height: 1em;
    font-weight: 100; }
  .dashed-box .icon-box-after {
    padding-left: 45px;
    padding-right: 1em;
    margin-right: 1em;
    border-right: 1px dotted #f7fcee;
    display: inline-block;
    text-align: center; }

.center-wrapper {
  display: flex;
  align-items: center;
  /* vertikal */
  justify-content: center;
  /* horizontal */
  width: 100%;
  height: 100%; }

/* das tatsächlich zentrierte Element */
.box {
  padding: 20px;
  margin: 3em;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); }
  .box h2 {
    color: #f7fcee;
    font-size: 60px;
    font-weight: 700; }
  .box a {
    padding: .5em 1em;
    background-color: #f7fcee;
    border-radius: .5em;
    color: #fff;
    text-decoration: none; }

.slider {
  position: relative;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  z-index: 100; }
  .slider .slider-picture {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 100; }
    .slider .slider-picture .left-transparent {
      position: absolute;
      left: 5%;
      width: 90%;
      top: 2em;
      bottom: 2em;
      background-color: rgba(255, 255, 255, 0.36); }
  .slider .slider-picture:before {
    content: "";
    display: block;
    padding-top: 50%;
    /* initial ratio of 1:1*/ }

#gallery-container {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.64);
  z-index: 10000; }
  #gallery-container .gallery-slide {
    position: relative;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
    #gallery-container .gallery-slide .gal-img-info {
      position: absolute;
      right: 0;
      bottom: 0;
      text-align: left;
      width: 100%; }
    #gallery-container .gallery-slide .gal-titel {
      background-color: #fff;
      position: absolute;
      right: 0;
      bottom: 4em;
      padding: .5em 1em; }
    #gallery-container .gallery-slide .gal-capture {
      margin-top: 1em;
      background-color: #fff;
      position: absolute;
      right: 0;
      bottom: 1em;
      padding: .5em 1em; }

.close-gallery {
  width: 2em;
  height: 2em;
  position: fixed;
  top: 1em;
  right: 1em;
  background-image: url("../images/close_x.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  z-index: auto;
  cursor: pointer;
  z-index: 1000000; }

@media screen and (min-width: 0px) and (max-width: 765px) {
  .paar:before {
    content: "";
    display: block;
    padding-top: 0%; }

  .paar .inside {
    position: relative;
    display: block;
    top: auto;
    width: 100%;
    height: 100%; }
  .paar .text {
    left: 0;
    display: flex;
    flex-direction: column;
    /* wichtig */
    align-items: flex-start;
    /* alles links */
    justify-content: center;
    padding: 40px;
    box-sizing: border-box;
    color: #fff !important; }
    .paar .text h1, .paar .text p {
      width: 100%;
      margin: 0 0 15px 0; }
  .paar .bild {
    left: 0%; }
  .paar .bild:before {
    content: "";
    display: block;
    padding-top: 100%; }

  /* Basis */
  /* Jedes 2. Paar drehen */
  .paar.reverse .text {
    left: 0%; }

  .paar.reverse .bild {
    left: 0; }

  .item-box-description {
    display: block;
    width: 90%;
    margin: auto;
    padding: 1em; }

  .item-box {
    width: 100%;
    margin: auto; }

  #message-container {
    display: none; }

  .icon-wrapper {
    display: block;
    margin-top: .5em;
    text-align: center; }

  .icon-box {
    position: absolute;
    left: 10px;
    top: 10px;
    display: block; }

  .icon-box-after {
    padding-left: 0%;
    padding-right: 0em;
    margin-right: 0em;
    border-right: 0px dotted #f7fcee; }

  #header .header-image {
    text-align: center; }

  #header .icon-box {
    position: absolute;
    left: 10px;
    top: 10px;
    display: none; }

  .item-box {
    width: 100%;
    margin: 0;
    margin-bottom: 1em; }

  .dashed-box {
    margin-bottom: 1em; }

  .box {
    padding: 0.5em !important;
    margin: 0em !important;
    width: 100% !important;
    background-color: rgba(255, 255, 255, 0.8) !important;
    text-align: center !important; }
    .box h2 {
      font-size: 2em !important;
      font-weight: 700; }
    .box p {
      font-size: 1em !important; }
    .box a {
      padding: .5em 1em;
      background-color: #f7fcee;
      border-radius: .5em;
      color: #fff;
      text-decoration: none; }

  .slick-prev, .slick-next {
    display: none !important; }

  .slider {
    position: relative;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    z-index: 100; }
    .slider .slider-picture {
      width: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      position: relative;
      z-index: 100; }
      .slider .slider-picture .left-transparent {
        position: absolute;
        left: 0em;
        width: 100%;
        top: 0;
        bottom: 0em;
        background-color: rgba(255, 255, 255, 0); }
    .slider .slider-picture:before {
      content: "";
      display: block;
      padding-top: 100%;
      /* initial ratio of 1:1*/ }

  .center-wrapper {
    display: flex;
    align-items: center;
    /* vertikal */
    justify-content: center;
    /* horizontal */
    width: 100%;
    height: 100%; }

  #top-logos {
    text-align: center; }
    #top-logos img {
      width: 40%;
      margin: auto; }

  /* das tatsächlich zentrierte Element */
  .box {
    padding: 10px;
    margin: 2em;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1); }
    .box h2 {
      color: #f7fcee;
      font-size: 60px;
      font-weight: 700; }
    .box p {
      font-size: .7em; }
    .box a {
      padding: .5em 1em;
      background-color: #f7fcee;
      border-radius: .5em;
      color: #fff;
      text-decoration: none; }

  #top-nav {
    z-index: 10000;
    background-color: #0c1e30;
    position: fixed;
    top: 0em;
    left: 0em;
    bottom: 3em;
    right: 0;
    display: none;
    overflow-y: auto; }
    #top-nav ul {
      margin-top: .5em;
      width: 100%;
      height: 100%; }
      #top-nav ul li {
        list-style-type: none;
        display: block;
        text-decoration: none;
        margin: .0em 1em;
        padding: .25em 0;
        position: relative;
        text-align: center; }
        #top-nav ul li a {
          text-decoration: none;
          color: #fff;
          display: block; }
        #top-nav ul li a:hover {
          color: #00854a; }
        #top-nav ul li ul {
          display: block;
          top: 0;
          left: 0;
          margin-top: 0;
          background-color: #0c1e30;
          position: relative; }
          #top-nav ul li ul li {
            display: block;
            width: 80%;
            min-width: 14em;
            margin: 0em  auto;
            margin-top: .5em;
            padding: .5em 1em;
            border: 1px solid #fff;
            background-color: #f7fcee; }
          #top-nav ul li ul li:hover {
            background-color: #00854a; }
            #top-nav ul li ul li:hover a {
              color: #fff; }
            #top-nav ul li ul li:hover a:hover {
              color: #f7fcee; }
      #top-nav ul li:hover ul {
        display: block; }

  html {
    padding-bottom: 3em; }

  #mob {
    display: block;
    text-align: center;
    cursor: pointer;
    border-top: 1px solid #fff; }
    #mob .symbol {
      width: 3em;
      height: 3em;
      margin: .5em auto 0 auto;
      /*  background-image: url("../images/icon_menu_mobile.svg");*/
      background-position: center center;
      background-repeat: no-repeat;
      background-size: 1.5em; }

  .image-box {
    width: 100%; }

  #bottom-nav ul {
    text-align: center;
    margin: 0;
    padding: 0; }
    #bottom-nav ul li {
      list-style-type: none;
      display: block;
      padding: .25em 1em;
      border: 1px dotted #fff;
      margin-top: .25em; }
      #bottom-nav ul li a {
        text-decoration: none;
        color: #fff;
        font-weight: 100; }

  .logo-inverted {
    display: block; } }
