:root {
  --primary-color: #24a28e;
  --secondary-color: orange;
  --background-color:rgb(240, 240, 240);
}

@font-face {
  font-family: "Nunito", sans-serif;
  src: url(https://fonts.google.com/css?family=Nunito);
}
body {
  background-color: var(--background-color);
  margin: 0em;
  padding: 0em;
  display: flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: flex-start;
  font-family: "Nunito", sans-serif;
}
body header {
  margin: 1em;
}
body header img {
  width: 5cm;
  height: auto;
}
body nav {
  width: 80%;
  margin-bottom: 1em;
}
body nav .current_nav {
  color: var(--secondary-color);
  font-weight: bold;
}
body nav ul {
  margin: 0em;
  padding: 0em;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  font-size: 1em;
}
body nav ul li:last-child {
  border-right: none;
}
body nav ul li {
  margin-bottom: 0.5em;
  width: 5cm;
  border-right: 2px solid gray;
  list-style: none;
  text-align: center;
}
body nav ul li ul {
  display: none;
  flex-flow: column nowrap;
  align-items: flex-end;
}
body nav ul li ul li {
  display: flex;
  width: 3.5cm;
  list-style: none;
  text-align: left;
}
body nav ul li ul li a {
  font-size: 0.6em;
}
body nav ul li:hover {
  border: none;
}
body nav ul li:hover ul {
  display: flex;
}
body nav ul li a {
  color: var(--primary-color);
  text-decoration: none;
}
body nav ul li a:hover {
  color: var(--secondary-color);
  font-weight: bold;
}
body nav ul:hover li:last-child {
  border-right: none;
}
body nav ul:hover li {
  border-right: 2px solid rgb(240, 240, 240);
}
body main {
  width: 60vw;
  margin-bottom: 3cm;
}
body main .ueberschrift {
  display: flex;
  justify-content: center;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--primary-color);
  margin: 1em;
  margin-top: 2em;
}
body main .text {
  max-width: 70vw;
  font-size: 1.2em;
  color: black;
  float: left;
  margin-bottom: 2em;
}
body main .aktuelles {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: auto;
}
body main .aktuelles .bild_aktuelles {
  margin-right: 1em;
  width: 180;
}
body main .aktuelles .bild_aktuelles img {
  width: 100%;
  height: auto;
}
body main .aktuelles .text_aktuelles {
  margin: 0em;
  font-size: 1.2em;
  color: black;
  float: left;
}
body main .aktuelles .text_aktuelles h3 {
  margin-top: 0em;
}
body main .aktuelles .text_aktuelles p {
  margin-top: 0em;
}
body main .teaser {
  margin-top: 2em;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  height: auto;
}
body main .teaser .kategorie {
  width: 100%;
  display: flex;
  justify-content: left;
  font-size: 1.2em;
  font-weight: bold;
  color: var(--secondary-color);
  margin: 1em;
  margin-top: 1em;
  margin-bottom: 0em;
}
body main .teaser .bild_mit_text {
  margin-bottom: 0.5em;
  width: 25vw;
}
body main .teaser .bild_mit_text .bildunterschrift {
  padding-left: 0.5em;
  width: 100%;
  font-size: 1em;
}
body main .teaser .bild_ganz_mit_text {
  width: 100%;
}
body main .teaser .bild_ganz_mit_text .bild_ganz {
  display: flex;
  justify-content: center;
  align-items: center;
}
body main .teaser .bild_ganz_mit_text .bild_ganz img {
  width: 100%;
  height: auto;
}
body main .teaser .bild_ganz_mit_text .bildunterschrift {
  padding-left: 0.5em;
  font-size: 1em;
}
body main .teaser .bild_ohne_rahmen {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5em;
}
body main .teaser .bild_ohne_rahmen img {
  width: 100%;
  height: auto;
  max-width: 25vw;
}
body main .teaser .bild_ohne_rahmen:focus {
  z-index: 3;
  transform: scale(2);
}
body main .teaser .bild {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 5cm;
  height: 5cm;
  margin: 5px;
  margin-bottom: 2em;
  position: relative;
}
body main .teaser .bild:nth-child(2) {
  -moz-column-break-after: always;
       break-after: always;
}
body main .teaser .bild img {
  position: relative;
  z-index: 2;
  border: 2px solid gray;
  border-radius: 8px;
  width: 4.8cm;
  height: 4.8cm;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
body main .teaser .bild .weiterleitung {
  font-size: 1.3em;
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 2px 5px;
  border-style: solid;
  border-color: gray;
  border-width: 4px;
  color: var(--primary-color);
  background: white;
  text-decoration: none;
  text-align: center;
  transition: opacity 500ms;
}
body main .teaser .bild:hover img {
  z-index: 3;
  scale: 2;
}
body main .teaser .bild:hover .weiterleitung {
  z-index: 4;
  opacity: 0.8;
}
body footer {
  background-color: var(--background-color);
  margin: 0em;
  padding: 0em;
  position: fixed;
  z-index: 5;
  bottom: 0;
  left: 8%;
  right: 8%;
}
body footer ul {
  margin: 1em;
  padding: 0em;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
body footer ul li {
  margin: 0em;
  padding: 0em;
  list-style: none;
  text-align: center;
  width: 20%;
}
body footer ul li a {
  font-size: 1em;
  text-decoration: none;
}
body .banner_left {
  margin: 0em;
  padding: 0em;
  left: 0;
  position: fixed;
  z-index: 5;
  width: 10vw;
  height: 100vh;
}
body .banner_left img {
  width: 100% !important;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 13% center;
     object-position: 13% center;
}
body .banner_left_2 {
  margin: 0em;
  padding: 0em;
  left: 0;
  position: fixed;
  z-index: 5;
  width: 10vw;
  height: 100vh;
}
body .banner_left_2 img {
  width: 100% !important;
  height: 120vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 40% -20vh;
     object-position: 40% -20vh;
}
body .banner_right {
  margin: 0em;
  padding: 0em;
  right: 0;
  position: fixed;
  z-index: 5;
  width: 10vw;
  height: 100vh;
}
body .banner_right img {
  width: 100% !important;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 62% center;
     object-position: 62% center;
}/*# sourceMappingURL=tablet_landscape.css.map */