@charset "UTF-8";
@font-face {
  font-family: Martel;
  src: url("../fonts/martel/Martel-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: Roboto;
  src: url("../fonts/roboto/Roboto-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: Roboto;
  src: url("../fonts/roboto/Roboto-Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: Roboto;
  src: url("../fonts/roboto/Roboto-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: Roboto;
  src: url("../fonts/roboto/Roboto-Italic.ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: Roboto;
  src: url("../fonts/roboto/Roboto-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: Roboto;
  src: url("../fonts/roboto/Roboto-BoldItalic.ttf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: OpenSans;
  src: url("../fonts/openSans/OpenSans-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: OpenSans;
  src: url("../fonts/openSans/OpenSans-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: OpenSans;
  src: url("../fonts/openSans/OpenSans-SemiBold.ttf");
  font-weight: 600;
}
:root {
  --normal-fontsize: 22px;
  --teaser-fontsize: 18px;
  --h1-font-size: 52px;
  --h2-font-size: 32px;
  --h3-font-size: 24px;
  --page-padding: 35px;
  --page-margin: 20px;
  --footer-padding: 50px;
  --space-xl: 140px;
  --space-l: 70px;
  --space-m: 35px;
  --space-s: 20px;
  --space-xs: 15px;
  --space-xxs: 10px;
}

@media (max-width: 600px) {
  :root {
    --normal-fontsize: 16px;
    --teaser-fontsize: 16px;
    --h1-font-size: 32px;
    --h2-font-size: 24px;
    --h3-font-size: 20px;
    --page-padding: 20px;
    --page-margin: 15px;
    --footer-padding: 20px;
    --space-xl: 70px;
    --space-l: 35px;
    --space-m: 20px;
    --space-s: 15px;
    --space-xs: 10px;
    --space-xxs: 5px;
  }
}
.row {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-gap: var(--page-padding);
}
.row.no-gap {
  grid-gap: 0;
}

.large-1 {
  grid-column: span 1;
}

.large-2 {
  grid-column: span 2;
}

.large-3 {
  grid-column: span 3;
}

.large-4 {
  grid-column: span 4;
}

.large-5 {
  grid-column: span 5;
}

.large-6 {
  grid-column: span 6;
}

.large-7 {
  grid-column: span 7;
}

.large-8 {
  grid-column: span 8;
}

.large-9 {
  grid-column: span 9;
}

.large-10 {
  grid-column: span 10;
}

.large-11 {
  grid-column: span 11;
}

.large-12 {
  grid-column: span 12;
}

.large-min {
  grid-column: span min-content;
}

.large-max {
  grid-column: span max-content;
}

@media only screen and (max-width: 1480px) {
  .medium-1 {
    grid-column: span 1;
  }
  .medium-2 {
    grid-column: span 2;
  }
  .medium-3 {
    grid-column: span 3;
  }
  .medium-4 {
    grid-column: span 4;
  }
  .medium-5 {
    grid-column: span 5;
  }
  .medium-6 {
    grid-column: span 6;
  }
  .medium-7 {
    grid-column: span 7;
  }
  .medium-8 {
    grid-column: span 8;
  }
  .medium-9 {
    grid-column: span 9;
  }
  .medium-10 {
    grid-column: span 10;
  }
  .medium-11 {
    grid-column: span 11;
  }
  .medium-12 {
    grid-column: span 12;
  }
  .medium-min {
    grid-column: span min-content;
  }
  .medium-max {
    grid-column: span max-content;
  }
}
@media only screen and (max-width: 600px) {
  .small-1 {
    grid-column: span 1;
  }
  .small-2 {
    grid-column: span 2;
  }
  .small-3 {
    grid-column: span 3;
  }
  .small-4 {
    grid-column: span 4;
  }
  .small-5 {
    grid-column: span 5;
  }
  .small-6 {
    grid-column: span 6;
  }
  .small-7 {
    grid-column: span 7;
  }
  .small-8 {
    grid-column: span 8;
  }
  .small-9 {
    grid-column: span 9;
  }
  .small-10 {
    grid-column: span 10;
  }
  .small-11 {
    grid-column: span 11;
  }
  .small-12 {
    grid-column: span 12;
  }
  .small-min {
    grid-column: span min-content;
  }
  .small-max {
    grid-column: span max-content;
  }
}
body {
  font-size: 16px;
  line-height: 1.6;
  color: #151e46;
  font-family: "OpenSans", sans-serif;
}
body a {
  color: #151e46;
}

.page-content, .page-footer, .page-header {
  font-size: var(--normal-fontsize);
}

.ce-textpic, .ce-image, .ce-nowrap .ce-bodytext, .ce-gallery, .ce-row, .ce-uploads li, .ce-uploads div {
  overflow: visible;
}

.ce-headline-right, .text-right {
  text-align: right;
}

.ce-headline-left, .text-left {
  text-align: left;
}

.ce-headline-center, .text-center {
  text-align: center;
}

.ce-right .ce-gallery {
  margin-left: 10px;
  float: right;
}

.ce-left .ce-gallery {
  margin-right: 10px;
  float: left;
}

.ce-below .ce-gallery {
  margin: 0;
  margin-top: 10px;
}

.ce-above .ce-gallery {
  margin: 0;
  margin-bottom: 10px;
}

.ce-center .ce-outer {
  position: relative;
  float: right;
  right: 50%;
}
.ce-center .ce-inner {
  position: relative;
  float: right;
  right: -50%;
}
.ce-center .ce-gallery:after {
  content: "";
  display: block;
  clear: both;
}

.columns .ce-gallery img {
  width: 100%;
  height: auto;
}

.ce-gallery .ce-row {
  margin-bottom: 10px;
  line-height: 0;
}
.ce-gallery .ce-row:last-child {
  margin-bottom: 0;
}
.ce-gallery .ce-column {
  display: inline-block;
  margin-right: 10px;
  line-height: 1.6;
}
.ce-gallery .ce-column:last-child {
  margin-right: 0;
}
.ce-gallery video {
  display: block;
}

.ce-border figure.image {
  border: 3px solid #fff;
}

figure {
  margin: 0;
}
figure img {
  display: block;
  max-width: 100%;
}
figure figcaption.image-caption {
  color: #151e46;
}

div {
  box-sizing: border-box;
}

.mobile {
  display: none;
}

.print-only {
  display: none;
}

.right {
  float: right;
}

.left {
  float: left;
}

h1 {
  font-size: var(--h1-font-size);
  margin: 0;
  font-family: "Martel", sans-serif;
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
  font-weight: 600;
}

a {
  text-decoration: none;
}

em {
  font-style: italic;
}

blockquote {
  font-style: italic;
  font-weight: bold;
  text-align: center;
  margin: var(--page-margin) 0;
}

hr {
  border: 0;
  height: 1px;
  background-color: #eb9024;
}

.button {
  color: #151e46 !important;
  display: inline-block;
  margin-right: var(--space-s);
  font-size: var(--teaser-fontsize);
  font-family: "OpenSans", sans-serif;
  font-weight: 700;
  text-decoration: none !important;
}
.button::after {
  content: "";
  display: inline-block;
  margin-left: var(--space-xxs);
  width: var(--space-m);
  height: calc(1.6 * var(--teaser-fontsize));
  vertical-align: bottom;
  background-image: url("../icons/Pfeil_ICON_Retina.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.button a {
  color: #151e46;
  text-decoration: none !important;
}
.button.secondary {
  color: #000;
}

.copyright {
  color: #a9a9a9;
}
.copyright::before {
  content: " ©";
}

.video-embed-item {
  max-width: 100%;
}

.quicklinknavi {
  display: inline-block;
}
.quicklinknavi li {
  display: inline-block;
  margin-right: 10px;
}
.quicklinknavi li:last-child, .quicklinknavi li:nth-last-child(2) {
  margin-right: 0;
}
.quicklinknavi .menu-seperator:last-child {
  display: none;
}

.page-header {
  position: fixed;
  top: 0;
  z-index: 1001;
  left: 0;
  right: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.page-header .header-content {
  font-size: 24px;
  width: 100%;
  max-width: calc(1480px + 2 * var(--page-padding));
  padding: 20px var(--page-padding);
  margin: 0 auto;
  box-sizing: border-box;
}
.page-header .header-top {
  background-color: #fff;
  color: #151e46;
}
.page-header .header-top a {
  color: #151e46;
}
.page-header .header-top .twitter-link {
  margin-left: 20px;
}
.page-header .header-top .ce-textpic {
  display: flex;
  align-items: flex-end;
}
.page-header .header-top-right {
  float: right;
  font-size: 16px;
}
.page-header .header-bottom {
  background-color: #151e46;
  color: #fff;
}
.page-header .header-bottom .header-content {
  padding-top: 10px;
  padding-bottom: 10px;
}
.page-header .header-bottom a {
  color: #fff;
}
.page-header .header-bottom form {
  font-size: 0;
}
.page-header .header-bottom form input {
  height: 52px;
  width: 312px;
  border: 0;
  box-sizing: border-box;
  color: #151e46;
  padding: 10px;
  font-size: 1rem;
  vertical-align: bottom;
}
.page-header .header-bottom form button {
  height: 52px;
  width: 52px;
  border: 0;
  color: #fff;
  background: none;
  font-size: 1rem;
  vertical-align: bottom;
}
.page-header img {
  max-height: 80px;
  height: 80px;
  width: auto;
}
.page-header.scrolled {
  border-bottom: 1px solid #fff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.page-header.scrolled img {
  max-height: 50px;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
.page-header.scrolled .header-top {
  padding: 10px 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.header-background-spanner {
  height: 192px;
  background-color: #151e46;
}

.page-nav {
  line-height: 72px;
  font-family: "OpenSans", sans-serif;
}
.page-nav .navi1 {
  font-size: 24px;
  margin-top: -10px;
  margin-bottom: -10px;
  margin-left: -15px;
  height: 72px;
}
.page-nav li {
  display: inline-block;
  padding: 0 15px;
  cursor: pointer;
  position: relative;
  height: 72px;
}
.page-nav li:hover {
  background-color: #fff;
}
.page-nav li:hover > a {
  color: #151e46;
  text-decoration: underline;
}
.page-nav li:hover > .navi2, .page-nav li:hover > .navi3 {
  display: block;
}
.page-nav .navi2 {
  display: none;
  position: absolute;
  z-index: 1;
  top: 72px;
  left: 0;
  padding: 10px 0;
  background-color: #151e46;
}
.page-nav .navi2 li {
  white-space: nowrap;
  margin-bottom: 10px;
  display: block;
  margin-left: 15px;
}
.page-nav .navi2 li:hover {
  background: none;
  margin-left: 0;
  border-left: 15px solid #eb9024;
}
.page-nav .navi2 li:hover > a {
  color: #fff;
}
.page-nav .navi3 {
  display: none;
  position: absolute;
  z-index: 1;
  left: 100%;
  top: -10px;
  padding: 10px 0;
  background-color: #151e46;
}

.page-keyvisual {
  position: relative;
  margin-bottom: var(--space-l);
}
.page-keyvisual .page-keyvisual-bg {
  position: relative;
}
.page-keyvisual .page-keyvisual-bg .ce-center {
  text-align: center;
}
.page-keyvisual .page-keyvisual-bg img {
  max-height: 625px;
  width: 100%;
}
.page-keyvisual .page-keyvisual-bg .row {
  grid-column-gap: 0;
}
.page-keyvisual .page-keyvisual-bg .columns {
  padding: 0;
}
.page-keyvisual .page-keyvisual-bg .ce-gallery img {
  height: auto;
}
.page-keyvisual .page-keyvisual-info {
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 100%;
  width: 1480px;
}
.page-keyvisual .page-keyvisual-info .page-keyvisual-info-content {
  position: absolute;
  right: 0;
  width: 33%;
  padding-left: 50px;
}

.flexslider .slide {
  overflow: hidden;
  align-items: center;
  display: flex !important;
  justify-content: center;
  flex-direction: column;
}
.flexslider .slide img {
  width: auto;
  max-width: inherit;
}

.slider-image-wrapper {
  overflow: hidden;
}

.flexslider {
  max-height: 625px;
  position: relative;
}
.flexslider .slides {
  line-height: 0;
}

.slide {
  position: relative;
}
.slide .slider-caption-wrapper {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  width: 1480px;
}
.slide .slider-caption {
  position: absolute;
  bottom: 70px;
  width: 66%;
  padding-right: 50px;
  color: #fff;
}
.slide .slider-caption.captionbg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  opacity: 0.8;
}
.slide .slider-caption.captionbg h1, .slide .slider-caption.captionbg h2, .slide .slider-caption.captionbg .button {
  position: relative;
  z-index: 1;
}
.slide .slider-caption .main-color {
  background: none;
  color: #151e46;
}
.slide .slider-caption .secondary-color {
  background: none;
  color: #eb9024;
}
.slide .slider-caption h1 {
  font-weight: 500;
  text-align: right;
}
.slide .slider-caption h2 {
  font-size: var(--h1-font-size);
  text-align: right;
  font-weight: 300;
}
.slide .slider-caption .button {
  margin-top: 40px;
}

.flex-control-paging {
  display: none;
}

.flex-direction-nav {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  margin-top: -35px;
}
.flex-direction-nav li {
  list-style: none;
}
.flex-direction-nav .flex-nav-prev, .flex-direction-nav .flex-nav-next {
  height: 70px;
  width: 50px;
  text-align: center;
  position: absolute;
}
.flex-direction-nav .flex-nav-prev::after, .flex-direction-nav .flex-nav-next::after {
  content: "";
  background-color: #fff;
  opacity: 0.8;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flex-direction-nav .flex-nav-prev a, .flex-direction-nav .flex-nav-next a {
  display: block;
  font-weight: 700;
  color: #fff;
  width: 100%;
  height: 100%;
  line-height: 70px;
  text-align: center;
  z-index: 1;
  position: relative;
}
.flex-direction-nav .flex-nav-prev {
  left: 0;
}
.flex-direction-nav .flex-nav-next {
  right: 0;
}

.page-content {
  width: 100%;
  max-width: calc(1480px + 2 * var(--page-padding));
  padding: 0 var(--page-padding);
  margin: 0 auto;
  box-sizing: border-box;
  background-color: #fff;
  position: relative;
}
.page-content .page-breadcrumb {
  font-size: 20px;
  margin-bottom: var(--space-l);
}
.page-content .page-breadcrumb a {
  color: #151e46;
  text-decoration: none;
}
.page-content .page-breadcrumb a:hover {
  text-decoration: underline;
}
.page-content .frame {
  margin-bottom: var(--space-m);
}
.page-content .frame:last-child {
  margin-bottom: 0;
}
.page-content .frame.frame-space-after-zero-space {
  margin-bottom: 0;
}
.page-content .frame.frame-space-after-extra-small {
  margin-bottom: var(--space-xs);
}
.page-content .frame.frame-space-after-small {
  margin-bottom: var(--space-s);
}
.page-content .frame.frame-space-after-medium {
  margin-bottom: var(--space-m);
}
.page-content .frame.frame-space-after-large {
  margin-bottom: var(--space-l);
}
.page-content .frame.frame-space-after-extra-large {
  margin-bottom: var(--space-xl);
}
.page-content .frame.frame-space-before-extra-small {
  margin-top: var(--space-xs);
}
.page-content .frame.frame-space-before-small {
  margin-top: var(--space-s);
}
.page-content .frame.frame-space-before-medium {
  margin-top: var(--space-m);
}
.page-content .frame.frame-space-before-large {
  margin-top: var(--space-l);
}
.page-content .frame.frame-space-before-extra-large {
  margin-top: var(--space-xl);
}
.page-content a {
  text-decoration: underline;
  color: #eb9024;
}
.page-content .secondary-color a, .page-content .gray-color a {
  color: #151e46;
}
.page-content ul {
  margin-left: 20px;
}
.page-content h2 {
  font-size: var(--h1-font-size);
  font-family: "Martel", sans-serif;
  text-align: center;
}
.page-content h2::before {
  content: "";
  display: block;
  margin: 0 auto;
  height: 3px;
  width: 200px;
  background-color: #eb9024;
  margin-bottom: var(--space-m);
}

.information-icon {
  color: #eb9024;
  font-size: 3rem;
}

.statistics {
  background-color: #fafafa;
  color: #151e46;
  padding: var(--page-padding) 0;
  font-family: "OpenSans", sans-serif;
}
.statistics .columns {
  justify-content: space-around;
  display: flex;
  flex: 0 1 auto;
}
.statistics .statistics-item {
  text-align: center;
  font-size: var(--h3-font-size);
  width: 120px;
}
.statistics .statistics-item i {
  font-size: 5rem;
  margin-bottom: var(--page-margin);
}
.statistics .statistics-item .count {
  font-weight: 700;
}

.social-icons > span, .social-icons > a {
  margin-right: var(--page-margin);
}
.social-icons > span:last-child, .social-icons > a:last-child {
  margin-right: 0;
}

.max-height-text .text {
  position: relative;
  overflow: hidden;
  margin-bottom: var(--page-margin);
}
.max-height-text .text:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
  z-index: 1;
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background-image: -moz-linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background-image: -o-linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  background-image: -ms-linear-gradient(rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
.max-height-text .show-less {
  display: none;
}
.max-height-text .show-less, .max-height-text .show-more {
  color: #eb9024;
  float: right;
  cursor: pointer;
}
.max-height-text.full .show-less {
  display: inline-block;
}
.max-height-text.full .show-more {
  display: none;
}
.max-height-text.full .text:after {
  content: none;
}

.page-memberships {
  border-top: 3px solid #eb9024;
}
.page-memberships .frame {
  margin-bottom: var(--space-m);
}
.page-memberships .frame:last-child {
  margin-bottom: 0;
}
.page-memberships .frame.frame-space-after-zero-space {
  margin-bottom: 0;
}
.page-memberships .frame.frame-space-after-extra-small {
  margin-bottom: var(--space-xs);
}
.page-memberships .frame.frame-space-after-small {
  margin-bottom: var(--space-s);
}
.page-memberships .frame.frame-space-after-medium {
  margin-bottom: var(--space-m);
}
.page-memberships .frame.frame-space-after-large {
  margin-bottom: var(--space-l);
}
.page-memberships .frame.frame-space-after-extra-large {
  margin-bottom: var(--space-xl);
}
.page-memberships .frame.frame-space-before-extra-small {
  margin-top: var(--space-xs);
}
.page-memberships .frame.frame-space-before-small {
  margin-top: var(--space-s);
}
.page-memberships .frame.frame-space-before-medium {
  margin-top: var(--space-m);
}
.page-memberships .frame.frame-space-before-large {
  margin-top: var(--space-l);
}
.page-memberships .frame.frame-space-before-extra-large {
  margin-top: var(--space-xl);
}

.membership-content {
  width: 100%;
  max-width: calc(1480px + 2 * var(--page-padding));
  margin: 0 auto;
  padding: var(--page-padding);
  box-sizing: border-box;
}
.membership-content h3 {
  font-weight: 400;
}

.page-footer {
  background-color: #151e46;
  color: #fff;
}
.page-footer .footer-content {
  font-size: 24px;
  width: 100%;
  max-width: calc(1480px + 2 * var(--page-padding));
  padding: var(--footer-padding) var(--page-padding);
  margin: 0 auto;
  box-sizing: border-box;
}
.page-footer > .row {
  padding: 0 var(--footer-padding);
}
.page-footer a {
  color: #fff;
}

.footer-right .frame > * {
  float: right;
}
.footer-right .frame:after {
  clear: both;
  display: block;
  content: "";
}

.news-single .article .news-detail-image-wrapper {
  margin-bottom: var(--space-xl);
}
.news-single .article .news-detail-image-wrapper .news-img-wrap {
  float: none;
  width: auto;
  margin: 0;
  background: none;
}
.news-single .article .news-detail-image-wrapper .news-img-wrap a {
  display: inherit;
  float: none;
  padding: 0;
  border: none;
  background: none;
}
.news-single .article .news-detail-image-wrapper .news-img-wrap img {
  width: 100% !important;
}
.news-single .article h1 {
  margin-bottom: var(--space-l);
}
.news-single .article h2 {
  font-size: var(--h2-font-size);
  font-family: "OpenSans", sans-serif;
  margin-bottom: var(--space-m);
}
.news-single .article h3 {
  margin-bottom: var(--space-s);
}
.news-single .article .news-text-wrap {
  margin-bottom: var(--space-xl);
}
.news-single .article .news-related-wrap {
  display: block;
  margin: 0;
  width: auto;
}
.news-single .article .news-related {
  width: auto;
  display: grid;
  border: none;
  padding: 0;
  margin-bottom: var(--space-xl);
}
.news-single .article .news-related a {
  text-decoration: none;
  color: #151e46;
}
.news-single .article .news-related-files h3, .news-single .article .news-related-links h3 {
  font-weight: 700;
  margin-bottom: var(--space-s);
  overflow: hidden;
}
.news-single .article .news-related-files .teaser-text, .news-single .article .news-related-links .teaser-text {
  margin-bottom: var(--space-m);
  font-size: var(--teaser-fontsize);
  min-height: calc(3.2 * var(--teaser-fontsize));
  overflow: hidden;
}

.news-list-date {
  color: #eb9024;
  font-weight: 700;
}

.news .news-list-view .row {
  grid-row-gap: var(--space-xl);
}
.news .news-list-view a {
  text-decoration: none;
  color: inherit;
}
.news .news-list-view .article .news-item-teaser-box:after {
  content: "";
  clear: both;
  display: block;
}
.news .news-list-view .article .news-img-wrap {
  float: none;
  margin: 0;
  width: auto;
  margin-bottom: var(--space-s);
}
.news .news-list-view .article .news-img-wrap img {
  float: none;
}
.news .news-list-view .article img {
  max-width: 100%;
}
.news .news-list-view .article .teaser-text {
  margin-bottom: var(--space-m);
  font-size: var(--teaser-fontsize);
  min-height: calc(6.4 * var(--teaser-fontsize));
  overflow: hidden;
}
.news .news-list-view .article h3 {
  font-weight: 700;
  margin-bottom: var(--space-s);
  overflow: hidden;
}
.news .news-list-view .article .button {
  float: right;
}

.content-filter {
  color: #000;
  position: absolute;
  right: var(--space-m);
  top: 0;
  background-color: #fff;
}
.content-filter .filter-content {
  padding: 25px 30px;
  padding-top: 0;
}
.content-filter .filter-options input[type=checkbox] {
  margin-right: 10px;
  height: 20px;
  width: 20px;
  vertical-align: middle;
}
.content-filter .filter-options label {
  display: block;
  margin-bottom: 10px;
}
.content-filter .button {
  border: 1px solid #000;
  padding: 10px 20px;
  margin: 0;
  color: #000 !important;
  font-weight: 400;
  background-color: #fff;
}
.content-filter .button:after {
  content: none;
}

.vdz-teaser {
  margin-top: var(--space-l);
}
.vdz-teaser .row {
  grid-row-gap: var(--space-l);
}
.vdz-teaser a {
  text-decoration: none;
  color: inherit;
}
.vdz-teaser .teaser-box:after {
  content: "";
  clear: both;
  display: block;
}
.vdz-teaser .img-wrap {
  float: none;
  margin: 0;
  width: auto;
  margin-bottom: var(--space-s);
  position: relative;
}
.vdz-teaser .img-wrap .teaser-icon {
  position: absolute;
  display: block;
  left: var(--space-s);
  top: calc(-1 * (var(--space-m) + var(--space-s)));
  height: 108px;
  width: 108px;
  padding: var(--space-s);
  border-radius: 54px;
  background-color: #fff;
  background-size: contain;
  box-sizing: border-box;
  background-repeat: no-repeat;
  background-origin: content-box;
}
.vdz-teaser .img-wrap .teaser-icon.education {
  background-image: url("../icons/news/bildung.png");
}
.vdz-teaser .img-wrap .teaser-icon.recovery {
  background-image: url("../icons/news/erholung.png");
}
.vdz-teaser .img-wrap .teaser-icon.faq {
  background-image: url("../icons/news/FAQ.png");
}
.vdz-teaser .img-wrap .teaser-icon.nature {
  background-image: url("../icons/news/Natur_Artenschutz.png");
}
.vdz-teaser .img-wrap .teaser-icon.animalhandling {
  background-image: url("../icons/news/tierhaltung_artenschutz.png");
}
.vdz-teaser .img-wrap .teaser-icon.economic-factor {
  background-image: url("../icons/news/wirtschaftsfaktor_zoo.png");
}
.vdz-teaser .img-wrap .teaser-icon.science {
  background-image: url("../icons/news/wissenschaft_forschung.png");
}
.vdz-teaser .img-wrap.no-img .teaser-icon {
  position: relative;
  top: 0;
  left: 0;
  padding: 0;
  border-radius: 0;
  height: calc(108px - (var(--space-m) + var(--space-s)));
  width: calc(108px - (var(--space-m) + var(--space-s)));
}
.vdz-teaser .img-wrap img {
  float: none;
}
.vdz-teaser img {
  max-width: 100%;
  height: auto;
}
.vdz-teaser .teaser-text {
  margin-bottom: var(--space-m);
  font-size: var(--teaser-fontsize);
  min-height: calc(6.4 * var(--teaser-fontsize));
  overflow: hidden;
}
.vdz-teaser h3 {
  font-weight: 700;
  margin-bottom: var(--space-s);
  overflow: hidden;
}
.vdz-teaser .button {
  float: right;
}

.link-and-downloads {
  color: #fff;
  margin-left: calc(-1 * var(--page-padding) / 2);
  margin-right: calc(-1 * var(--page-padding) / 2);
}
.link-and-downloads a {
  color: #fff;
  text-decoration: none;
}
.link-and-downloads .lad-head {
  background-color: #eb9024;
  padding: 10px 30px;
}
.link-and-downloads .lad-head h3 {
  margin: 0;
}
.link-and-downloads .lad-content {
  padding: 25px 30px;
  background-color: #fdb56d;
}
.link-and-downloads .lad-item {
  display: block;
  font-size: 24px;
}

#cboxOverlay {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000;
  opacity: 0.8;
  height: 100%;
  width: 100%;
  position: fixed;
  cursor: pointer;
  z-index: 1002;
}

#colorbox {
  z-index: 1003;
}

#cboxClose {
  position: absolute;
  height: 40px;
  width: 40px;
  line-height: 40px;
  font-size: 2rem;
  text-align: center;
  top: 10px;
  right: 10px;
  background-color: #000;
  opacity: 0.8;
  color: #fff;
  border: none;
}

#cboxPrevious, #cboxNext {
  position: absolute;
  top: 50%;
  margin-top: -35px;
  height: 70px;
  line-height: 70px;
  font-size: 2rem;
  width: 50px;
  text-align: center;
  background-color: #000;
  opacity: 0.8;
  color: #fff;
  border: none;
}

#cboxPrevious {
  left: 0;
}

#cboxNext {
  right: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: none;
}
fieldset input {
  height: 30px;
  border: 2px solid #151e46;
  box-sizing: border-box;
  color: #151e46;
  padding: 10px;
  width: 100%;
  max-width: 500px;
}
fieldset input[type=submit] {
  color: #fff;
  padding: 0 10px;
  background-color: #151e46;
  display: inline-block;
  width: inherit;
  font-size: var(--teaser-fontsize);
}
fieldset textarea {
  height: 100px;
  border: 2px solid #151e46;
  box-sizing: border-box;
  color: #151e46;
  padding: 10px;
  width: 100%;
  max-width: 500px;
  resize: none;
}

.tx-powermail legend {
  display: none;
}

.powermail_fieldwrap {
  margin-bottom: var(--page-margin);
}

.tx-indexedsearch-searchbox {
  margin-bottom: var(--page-margin);
}
.tx-indexedsearch-searchbox .tx-indexedsearch-searchbox-sword {
  margin-bottom: var(--page-margin);
}

.tx-indexedsearch-browsebox {
  margin-bottom: var(--page-margin);
}

.tx-indexedsearch-res {
  padding: var(--space-xxs);
  background-color: #fafafa;
  margin-bottom: var(--page-margin);
}
.tx-indexedsearch-res h3 {
  font-size: 24px;
}

.frame-type-felogin_login fieldset {
  margin-top: var(--page-margin);
}
.frame-type-felogin_login fieldset legend {
  margin-bottom: var(--page-margin);
  font-size: 24px;
}
.frame-type-felogin_login fieldset div {
  margin-bottom: var(--page-margin);
}
.frame-type-felogin_login fieldset .felogin-hidden {
  margin: 0;
}
.frame-type-felogin_login fieldset input {
  display: block;
  vertical-align: top;
}

.top-ten-wrapper {
  overflow-x: hidden;
  overflow-y: hidden;
  max-width: 900px;
  margin: 0 auto;
}

.ug-gallery-wrapper {
  overflow: visible !important;
}
.ug-gallery-wrapper .ug-slider-wrapper {
  overflow: visible !important;
}
.ug-gallery-wrapper.ug-fullscreen {
  overflow: hidden !important;
}
.ug-gallery-wrapper.ug-fullscreen .ug-slider-wrapper {
  overflow: hidden !important;
}
.ug-gallery-wrapper.ug-fullscreen .ug-textpanel {
  top: auto !important;
  bottom: 0px !important;
  position: absolute !important;
}

.ug-textpanel {
  top: 100% !important;
  bottom: auto !important;
  position: absolute !important;
}

.ug-textpanel-bg {
  opacity: 1 !important;
  background: #151e46 !important;
  color: #fff;
}

.pressemitteilungs-dce {
  margin-bottom: var(--page-margin);
  padding-bottom: var(--page-margin);
}
.pressemitteilungs-dce::after {
  content: "";
  display: block;
  clear: both;
}

.vc-youtube {
  position: relative;
}
.vc-youtube .preview {
  width: 100% !important;
  height: auto !important;
  background: #000;
}
.vc-youtube .overlay {
  position: absolute;
  cursor: pointer;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.vc-youtube .overlay .youtube-icon {
  position: absolute;
  height: 40px;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.vc-youtube .overlay .hover-hint {
  display: none;
  padding: 20px;
  background-color: #fff;
  border: 1px solid black;
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  margin: 0 auto;
  max-width: fit-content;
  transform: translateY(-50%);
  margin-top: 4rem;
}
.vc-youtube .overlay:hover .hover-hint, .vc-youtube .overlay:focus .hover-hint {
  display: inline-block;
}

.faqs .faq {
  background-color: #fafafa;
  color: #000;
  border: 1px solid #bcbcbc;
  border-top: none;
}
.faqs .faq:first-child {
  border-top: 1px solid #bcbcbc;
}
.faqs .faq:last-child {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.faqs .faq-frage {
  cursor: pointer;
  position: relative;
  line-height: var(--space-l);
  padding: 0 var(--space-m);
  padding-right: calc(20px + var(--space-m));
  font-size: var(--h3-font-size);
}
.faqs .faq-frage .faq-button {
  display: block;
  position: absolute;
  top: 0;
  right: var(--space-m);
  height: var(--space-l);
  width: 20px;
  background-image: url("../icons/Plus_ICON_retina.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition-duration: 0.5s;
  rotate: 45deg;
}
.faqs .faq-frage.closed + .faq-antwort {
  display: none;
}
.faqs .faq-frage.closed .faq-button {
  rotate: 0deg;
}
.faqs .faq-antwort {
  padding: var(--page-padding);
}

.mobile {
  display: none;
}

.slicknav_menu::after {
  content: "";
  display: block;
  clear: both;
}
.slicknav_menu .slicknav_btn {
  font-size: 2rem;
  line-height: 2rem;
}
.slicknav_menu .slicknav_nav {
  background-color: #151e46;
  color: #fff;
  font-size: 1.1875rem;
  overflow-y: scroll;
  height: calc(100vh - 80pxvar(--page-margin));
  z-index: 101;
  padding: calc(2 * var(--page-margin));
  display: block;
  position: absolute;
  width: 100%;
  left: 0px;
  top: calc(80px + var(--page-margin));
}
.slicknav_menu .slicknav_nav a {
  color: #fff;
  font-size: 1.1875rem;
}
.slicknav_menu .slicknav_nav .slicknav_arrow {
  padding: 0 var(--page-margin);
}
.slicknav_menu .slicknav_nav li {
  list-style: none;
  margin-bottom: calc(2 * var(--page-margin));
}
.slicknav_menu .slicknav_nav li ul {
  margin-top: var(--page-margin);
  margin-left: var(--page-margin);
}
.slicknav_menu .slicknav_nav li li {
  margin-bottom: var(--page-margin);
}

@media only screen and (max-width: 1480px) {
  .mobile {
    display: inherit;
  }
  .desktop-only {
    display: none;
  }
  .page-footer > .row {
    padding: 0;
  }
  .flex-direction-nav {
    display: none;
  }
  .page-header {
    /*.header-content {
      font-size: $mobile-top-header-fontsize;

      p {
        display: block;
      }
    }
    h2 {
      font-size: var(--h3-font-size);
    }*/
  }
  .page-header .header-top {
    padding: 0;
  }
  .page-header .header-top > .row > .columns {
    margin-top: 0;
    padding-left: 10px;
  }
  .page-header .header-top .header-tools {
    float: right;
    width: 50px;
    height: 80px;
  }
  .page-header .header-top .header-tools .search-icon {
    display: block;
  }
  .page-header .header-top .header-tools .search-icon i {
    float: right;
    line-height: 40px;
  }
  .page-header .header-top .header-tools .search-icon::after {
    content: "";
    display: block;
    clear: both;
  }
  .page-header .header-top .header-tools .slicknav_btn {
    float: right;
    line-height: 40px;
  }
  .page-header .header-top .header-tools::after {
    content: "";
    display: block;
    clear: both;
  }
  .page-header.scrolled {
    border-bottom: 1px solid #000;
  }
  .page-header.scrolled .header-top {
    padding: 0;
  }
  .page-header.scrolled img {
    max-height: 80px;
  }
  .page-header .header-content {
    font-size: var(--normal-fontsize);
    line-height: 1.6;
    padding: 10px 20px;
  }
  .page-header .header-content h2, .page-header .header-content h1, .page-header .header-content h3 {
    font-size: inherit;
    line-height: inherit;
    display: block;
    padding-top: var(--page-margin);
  }
  .header-background-spanner {
    height: 100px;
  }
  .page-header .header-top .ce-textpic {
    display: block;
  }
  .page-header .header-top .ce-textpic .ce-gallery {
    float: none;
  }
  .small-12 {
    margin: var(--page-margin) 0;
  }
  .page-content .content-section {
    padding: 20px 0;
  }
  .ce-headline-right, .text-right {
    text-align: left;
  }
  .page-keyvisual .page-keyvisual-bg img {
    max-height: 360px;
  }
  .flexslider {
    max-height: 360px;
  }
  .flexslider .slide {
    overflow: hidden;
    align-items: center;
    display: flex !important;
    justify-content: center;
    flex-direction: column;
  }
  .flexslider .slide img {
    width: auto;
    max-width: inherit;
  }
  .flexslider .slide .slider-caption {
    padding: var(--page-margin);
    bottom: 0;
    width: 100%;
  }
  .flexslider .slide .slider-caption h1, .flexslider .slide .slider-caption h2 {
    font-size: 32px;
  }
  .slider-image-wrapper {
    overflow: hidden;
  }
  .page-keyvisual .page-keyvisual-info {
    position: relative;
    top: inherit;
    bottom: inherit;
    left: inherit;
    right: inherit;
    margin: 0;
    width: 1480px;
    max-width: 100%;
  }
  .page-keyvisual .page-keyvisual-info .page-keyvisual-info-content {
    float: none;
    width: 100%;
    padding-left: 0;
    position: relative;
  }
  .statistics .statistics-item {
    font-size: var(--teaser-fontsize);
  }
  .statistics i {
    font-size: 3.75rem;
  }
  .page-content .content-section.noimagepadding .columns {
    /*.ce-image {
      margin-top: -($page-responsive-padding);
      margin-bottom: -($page-responsive-padding);

      margin-left: -(var(--page-margin));
      margin-right: -(var(--page-margin));
    }
    &:first-child {
      .ce-image {
        margin-top: -($page-responsive-padding + var(--page-margin));
      }
    }
    &:last-child {
      .ce-image {
        margin-bottom: -($page-responsive-padding + var(--page-margin));
      }
    }*/
  }
  .page-content .content-section.noimagepadding .columns .ce-gallery {
    margin-top: -20px;
    margin-bottom: -20px;
    margin-left: -var(--page-margin);
    margin-right: -var(--page-margin);
  }
  .page-content .content-section.noimagepadding .columns:first-child .ce-gallery {
    margin-top: calc(-1 * (20px + var(--page-margin)));
  }
  .page-content .content-section.noimagepadding .columns:last-child .ce-gallery {
    margin-bottom: calc(-1 * (20px + var(--page-margin)));
  }
  .content-filter {
    display: none;
  }
  .news-item-teaser-box {
    height: auto;
  }
  .news-item-teaser-box .teaser-text {
    max-height: none;
  }
  .news-single .article .news-img-wrap {
    margin-left: 0;
  }
  .pressemitteilungs-dce {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 600px) {
  .row {
    grid-gap: var(--space-m);
  }
  .page-footer .footer-content {
    font-size: var(--normal-fontsize);
  }
  .page-content .page-breadcrumb {
    font-size: var(--normal-fontsize);
  }
  .page-content .row.seperated > .columns.small-12 {
    border: 0;
  }
  .page-content .row.seperated > .columns.small-12::after {
    content: "";
    background-color: #eb9024;
    left: var(--page-margin);
    right: var(--page-margin);
    bottom: calc(-1 * var(--page-margin));
    height: 1px;
    display: block;
    position: absolute;
  }
  .page-content .row.seperated > .columns.small-12:last-child::after {
    content: none;
  }
  .pressemitteilungs-dce {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

/*# sourceMappingURL=all.css.map */
