@charset "UTF-8";
/**
	* Breakpoint-Mixin
	*
	* Benutzung: @include breakpoint(Start-Wert, End-Wert, Start-Wert, End-Wert) {…}
	* Beispiel: @include breakpoint(1200, 800, 750, 500) {…}
	* Anmerkungen: Es ist möglich, das Mixin mit 1–4 Werten zu befüllen.
	* Bei einem Media Query mit Mindestbreite: @include breakpoint(0, Start-Wert) {…}
	*/
table + p, ul + h1, ul + h2, ul + h3, ul + h4, ul + h5, ul + h6, ul + p, ol + h1, ol + h2, ol + h3, ol + h4, ol + h5, ol + h6, ol + p, p + h1, p + h2, p + h3, p + h4, p + h5, p + h6, table + h1, table + h2, table + h3, table + h4, table + h5, table + h6, h1 + h1, h1 + h2, h1 + h3, h1 + h4, h1 + h5, h1 + h6, h2 + h1, h2 + h2, h2 + h3, h2 + h4, h2 + h5, h2 + h6, h3 + h1, h3 + h2, h3 + h3, h3 + h4, h3 + h5, h3 + h6, h4 + h1, h4 + h2, h4 + h3, h4 + h4, h4 + h5, h4 + h6, h5 + h1, h5 + h2, h5 + h3, h5 + h4, h5 + h5, h5 + h6, h6 + h1, h6 + h2, h6 + h3, h6 + h4, h6 + h5, h6 + h6, h1 + ul, h1 + ol, h1 + table, h1 + form, h2 + ul, h2 + ol, h2 + table, h2 + form, h3 + ul, h3 + ol, h3 + table, h3 + form, h4 + ul, h4 + ol, h4 + table, h4 + form, h5 + ul, h5 + ol, h5 + table, h5 + form, h6 + ul, h6 + ol, h6 + table, h6 + form, p + ul, p + ol, p + table, p + form, table + ul, table + ol, table + table, table + form {
  margin-top: 1.8rem;
}

h1 + p, h2 + p, h3 + p, h4 + p, h5 + p, h6 + p {
  margin-top: 1.2rem;
}

p + p, p + ul, p + ol, p + table, p + form, table + p, table + ul, table + ol, table + table, table + form {
  margin-top: 1rem;
}

ul + .margin, ol + .margin, h1 + .margin, h2 + .margin, h3 + .margin, h4 + .margin, h5 + .margin, h6 + .margin, p + .margin, table + .margin, .margin + h1, .margin + h2, .margin + h3, .margin + h4, .margin + h5, .margin + h6, .margin + p, .margin + ul, .margin + ol, .margin + table, .pswp + h1, .pswp + h2, .pswp + h3, .pswp + h4, .pswp + h5, .pswp + h6, .pswp + p, .pswp + ul, .pswp + ol, .pswp + table, .margin + .margin, .pswp + .margin {
  margin-top: calc(1.5vh + 1.5vw + 15px);
}

.gutter {
  padding-top: calc(2vh + 2vw + 20px);
}

.gutter {
  padding-bottom: calc(2vh + 2vw + 20px);
}

/**
	* Font Face-Mixin
	*
	* Benutzung: @include font-face(Font-Family, Dateiname, Schriftschnitt (default=300), Italic (default=normal));
	* Beispiel: @include font-face("Fira Sans", "fira-sans-bold", bold);
	* Anmerkungen: font-weight & font-style können weggelassen werden, da ein Default gesetzt ist.
	*/
/**
	* Font Attribute-Mixin
	*
	* Benutzung: @include font-attribute(Mindestgröße, Maximalgröße, Zeilenabstand, Schriftschnitt, Minus-Margin (1=aktiv));
	* Beispiel: @include font-attribute(24px, 48px, 1.4, bold, 1);
	* Anmerkungen: Mindest- und Maximalwerte ermöglichen eine Fluid Typography.
	* Der Maximalwert gilt dabei ab der definierten Wrapper-Breite, der Minimalwert ab 400px.
	* Sind Mindest- und Maximalwert identisch, wird eine normale "font-size"-Angabe gerendert.
	* Der Minus-Margin wird in den Settings definiert und kann mit der Angabe "1" aktiviert werden.
	*/
.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.columns > .col {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.columns.nogrow > .col {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
}
.columns.nogrow > .col.grow {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.columns > .col-2 {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.columns > .col-3 {
  -webkit-box-flex: 3;
      -ms-flex-positive: 3;
          flex-grow: 3;
}
.columns > .col-4 {
  -webkit-box-flex: 4;
      -ms-flex-positive: 4;
          flex-grow: 4;
}
.columns > .col-5 {
  -webkit-box-flex: 5;
      -ms-flex-positive: 5;
          flex-grow: 5;
}
.columns > .col-6 {
  -webkit-box-flex: 6;
      -ms-flex-positive: 6;
          flex-grow: 6;
}
.columns > .col-7 {
  -webkit-box-flex: 7;
      -ms-flex-positive: 7;
          flex-grow: 7;
}
.columns > .col-8 {
  -webkit-box-flex: 8;
      -ms-flex-positive: 8;
          flex-grow: 8;
}
.columns > .col-9 {
  -webkit-box-flex: 9;
      -ms-flex-positive: 9;
          flex-grow: 9;
}
.columns > .col-10 {
  -webkit-box-flex: 10;
      -ms-flex-positive: 10;
          flex-grow: 10;
}
.columns.columns-2 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.columns.columns-2 > .col {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -ms-flex-preferred-size: calc(100% / 2 * 1 - (1 - 1 / 2) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 2 * 1 - (1 - 1 / 2) * (2vh + 2vw + 20px));
  max-width: calc(100% / 2 * 1 - (1 - 1 / 2) * (2vh + 2vw + 20px));
}
.columns.columns-2 > .col-2 {
  -ms-flex-preferred-size: calc(100% / 2 * 2 - (1 - 2 / 2) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 2 * 2 - (1 - 2 / 2) * (2vh + 2vw + 20px));
  max-width: calc(100% / 2 * 2 - (1 - 2 / 2) * (2vh + 2vw + 20px));
}
.columns.columns-3 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.columns.columns-3 > .col {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -ms-flex-preferred-size: calc(100% / 3 * 1 - (1 - 1 / 3) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 3 * 1 - (1 - 1 / 3) * (2vh + 2vw + 20px));
  max-width: calc(100% / 3 * 1 - (1 - 1 / 3) * (2vh + 2vw + 20px));
}
.columns.columns-3 > .col-2 {
  -ms-flex-preferred-size: calc(100% / 3 * 2 - (1 - 2 / 3) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 3 * 2 - (1 - 2 / 3) * (2vh + 2vw + 20px));
  max-width: calc(100% / 3 * 2 - (1 - 2 / 3) * (2vh + 2vw + 20px));
}
.columns.columns-3 > .col-3 {
  -ms-flex-preferred-size: calc(100% / 3 * 3 - (1 - 3 / 3) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 3 * 3 - (1 - 3 / 3) * (2vh + 2vw + 20px));
  max-width: calc(100% / 3 * 3 - (1 - 3 / 3) * (2vh + 2vw + 20px));
}
.columns.columns-4 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.columns.columns-4 > .col {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -ms-flex-preferred-size: calc(100% / 4 * 1 - (1 - 1 / 4) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 4 * 1 - (1 - 1 / 4) * (2vh + 2vw + 20px));
  max-width: calc(100% / 4 * 1 - (1 - 1 / 4) * (2vh + 2vw + 20px));
}
.columns.columns-4 > .col-2 {
  -ms-flex-preferred-size: calc(100% / 4 * 2 - (1 - 2 / 4) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 4 * 2 - (1 - 2 / 4) * (2vh + 2vw + 20px));
  max-width: calc(100% / 4 * 2 - (1 - 2 / 4) * (2vh + 2vw + 20px));
}
.columns.columns-4 > .col-3 {
  -ms-flex-preferred-size: calc(100% / 4 * 3 - (1 - 3 / 4) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 4 * 3 - (1 - 3 / 4) * (2vh + 2vw + 20px));
  max-width: calc(100% / 4 * 3 - (1 - 3 / 4) * (2vh + 2vw + 20px));
}
.columns.columns-4 > .col-4 {
  -ms-flex-preferred-size: calc(100% / 4 * 4 - (1 - 4 / 4) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 4 * 4 - (1 - 4 / 4) * (2vh + 2vw + 20px));
  max-width: calc(100% / 4 * 4 - (1 - 4 / 4) * (2vh + 2vw + 20px));
}
.columns.columns-5 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.columns.columns-5 > .col {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -ms-flex-preferred-size: calc(100% / 5 * 1 - (1 - 1 / 5) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 5 * 1 - (1 - 1 / 5) * (2vh + 2vw + 20px));
  max-width: calc(100% / 5 * 1 - (1 - 1 / 5) * (2vh + 2vw + 20px));
}
.columns.columns-5 > .col-2 {
  -ms-flex-preferred-size: calc(100% / 5 * 2 - (1 - 2 / 5) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 5 * 2 - (1 - 2 / 5) * (2vh + 2vw + 20px));
  max-width: calc(100% / 5 * 2 - (1 - 2 / 5) * (2vh + 2vw + 20px));
}
.columns.columns-5 > .col-3 {
  -ms-flex-preferred-size: calc(100% / 5 * 3 - (1 - 3 / 5) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 5 * 3 - (1 - 3 / 5) * (2vh + 2vw + 20px));
  max-width: calc(100% / 5 * 3 - (1 - 3 / 5) * (2vh + 2vw + 20px));
}
.columns.columns-5 > .col-4 {
  -ms-flex-preferred-size: calc(100% / 5 * 4 - (1 - 4 / 5) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 5 * 4 - (1 - 4 / 5) * (2vh + 2vw + 20px));
  max-width: calc(100% / 5 * 4 - (1 - 4 / 5) * (2vh + 2vw + 20px));
}
.columns.columns-5 > .col-5 {
  -ms-flex-preferred-size: calc(100% / 5 * 5 - (1 - 5 / 5) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 5 * 5 - (1 - 5 / 5) * (2vh + 2vw + 20px));
  max-width: calc(100% / 5 * 5 - (1 - 5 / 5) * (2vh + 2vw + 20px));
}
.columns.columns-6 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.columns.columns-6 > .col {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -ms-flex-preferred-size: calc(100% / 6 * 1 - (1 - 1 / 6) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 6 * 1 - (1 - 1 / 6) * (2vh + 2vw + 20px));
  max-width: calc(100% / 6 * 1 - (1 - 1 / 6) * (2vh + 2vw + 20px));
}
.columns.columns-6 > .col-2 {
  -ms-flex-preferred-size: calc(100% / 6 * 2 - (1 - 2 / 6) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 6 * 2 - (1 - 2 / 6) * (2vh + 2vw + 20px));
  max-width: calc(100% / 6 * 2 - (1 - 2 / 6) * (2vh + 2vw + 20px));
}
.columns.columns-6 > .col-3 {
  -ms-flex-preferred-size: calc(100% / 6 * 3 - (1 - 3 / 6) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 6 * 3 - (1 - 3 / 6) * (2vh + 2vw + 20px));
  max-width: calc(100% / 6 * 3 - (1 - 3 / 6) * (2vh + 2vw + 20px));
}
.columns.columns-6 > .col-4 {
  -ms-flex-preferred-size: calc(100% / 6 * 4 - (1 - 4 / 6) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 6 * 4 - (1 - 4 / 6) * (2vh + 2vw + 20px));
  max-width: calc(100% / 6 * 4 - (1 - 4 / 6) * (2vh + 2vw + 20px));
}
.columns.columns-6 > .col-5 {
  -ms-flex-preferred-size: calc(100% / 6 * 5 - (1 - 5 / 6) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 6 * 5 - (1 - 5 / 6) * (2vh + 2vw + 20px));
  max-width: calc(100% / 6 * 5 - (1 - 5 / 6) * (2vh + 2vw + 20px));
}
.columns.columns-6 > .col-6 {
  -ms-flex-preferred-size: calc(100% / 6 * 6 - (1 - 6 / 6) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 6 * 6 - (1 - 6 / 6) * (2vh + 2vw + 20px));
  max-width: calc(100% / 6 * 6 - (1 - 6 / 6) * (2vh + 2vw + 20px));
}
.columns.columns-7 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.columns.columns-7 > .col {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -ms-flex-preferred-size: calc(100% / 7 * 1 - (1 - 1 / 7) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 7 * 1 - (1 - 1 / 7) * (2vh + 2vw + 20px));
  max-width: calc(100% / 7 * 1 - (1 - 1 / 7) * (2vh + 2vw + 20px));
}
.columns.columns-7 > .col-2 {
  -ms-flex-preferred-size: calc(100% / 7 * 2 - (1 - 2 / 7) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 7 * 2 - (1 - 2 / 7) * (2vh + 2vw + 20px));
  max-width: calc(100% / 7 * 2 - (1 - 2 / 7) * (2vh + 2vw + 20px));
}
.columns.columns-7 > .col-3 {
  -ms-flex-preferred-size: calc(100% / 7 * 3 - (1 - 3 / 7) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 7 * 3 - (1 - 3 / 7) * (2vh + 2vw + 20px));
  max-width: calc(100% / 7 * 3 - (1 - 3 / 7) * (2vh + 2vw + 20px));
}
.columns.columns-7 > .col-4 {
  -ms-flex-preferred-size: calc(100% / 7 * 4 - (1 - 4 / 7) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 7 * 4 - (1 - 4 / 7) * (2vh + 2vw + 20px));
  max-width: calc(100% / 7 * 4 - (1 - 4 / 7) * (2vh + 2vw + 20px));
}
.columns.columns-7 > .col-5 {
  -ms-flex-preferred-size: calc(100% / 7 * 5 - (1 - 5 / 7) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 7 * 5 - (1 - 5 / 7) * (2vh + 2vw + 20px));
  max-width: calc(100% / 7 * 5 - (1 - 5 / 7) * (2vh + 2vw + 20px));
}
.columns.columns-7 > .col-6 {
  -ms-flex-preferred-size: calc(100% / 7 * 6 - (1 - 6 / 7) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 7 * 6 - (1 - 6 / 7) * (2vh + 2vw + 20px));
  max-width: calc(100% / 7 * 6 - (1 - 6 / 7) * (2vh + 2vw + 20px));
}
.columns.columns-7 > .col-7 {
  -ms-flex-preferred-size: calc(100% / 7 * 7 - (1 - 7 / 7) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 7 * 7 - (1 - 7 / 7) * (2vh + 2vw + 20px));
  max-width: calc(100% / 7 * 7 - (1 - 7 / 7) * (2vh + 2vw + 20px));
}
.columns.columns-8 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.columns.columns-8 > .col {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -ms-flex-preferred-size: calc(100% / 8 * 1 - (1 - 1 / 8) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 8 * 1 - (1 - 1 / 8) * (2vh + 2vw + 20px));
  max-width: calc(100% / 8 * 1 - (1 - 1 / 8) * (2vh + 2vw + 20px));
}
.columns.columns-8 > .col-2 {
  -ms-flex-preferred-size: calc(100% / 8 * 2 - (1 - 2 / 8) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 8 * 2 - (1 - 2 / 8) * (2vh + 2vw + 20px));
  max-width: calc(100% / 8 * 2 - (1 - 2 / 8) * (2vh + 2vw + 20px));
}
.columns.columns-8 > .col-3 {
  -ms-flex-preferred-size: calc(100% / 8 * 3 - (1 - 3 / 8) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 8 * 3 - (1 - 3 / 8) * (2vh + 2vw + 20px));
  max-width: calc(100% / 8 * 3 - (1 - 3 / 8) * (2vh + 2vw + 20px));
}
.columns.columns-8 > .col-4 {
  -ms-flex-preferred-size: calc(100% / 8 * 4 - (1 - 4 / 8) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 8 * 4 - (1 - 4 / 8) * (2vh + 2vw + 20px));
  max-width: calc(100% / 8 * 4 - (1 - 4 / 8) * (2vh + 2vw + 20px));
}
.columns.columns-8 > .col-5 {
  -ms-flex-preferred-size: calc(100% / 8 * 5 - (1 - 5 / 8) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 8 * 5 - (1 - 5 / 8) * (2vh + 2vw + 20px));
  max-width: calc(100% / 8 * 5 - (1 - 5 / 8) * (2vh + 2vw + 20px));
}
.columns.columns-8 > .col-6 {
  -ms-flex-preferred-size: calc(100% / 8 * 6 - (1 - 6 / 8) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 8 * 6 - (1 - 6 / 8) * (2vh + 2vw + 20px));
  max-width: calc(100% / 8 * 6 - (1 - 6 / 8) * (2vh + 2vw + 20px));
}
.columns.columns-8 > .col-7 {
  -ms-flex-preferred-size: calc(100% / 8 * 7 - (1 - 7 / 8) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 8 * 7 - (1 - 7 / 8) * (2vh + 2vw + 20px));
  max-width: calc(100% / 8 * 7 - (1 - 7 / 8) * (2vh + 2vw + 20px));
}
.columns.columns-8 > .col-8 {
  -ms-flex-preferred-size: calc(100% / 8 * 8 - (1 - 8 / 8) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 8 * 8 - (1 - 8 / 8) * (2vh + 2vw + 20px));
  max-width: calc(100% / 8 * 8 - (1 - 8 / 8) * (2vh + 2vw + 20px));
}
.columns.columns-9 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.columns.columns-9 > .col {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -ms-flex-preferred-size: calc(100% / 9 * 1 - (1 - 1 / 9) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 9 * 1 - (1 - 1 / 9) * (2vh + 2vw + 20px));
  max-width: calc(100% / 9 * 1 - (1 - 1 / 9) * (2vh + 2vw + 20px));
}
.columns.columns-9 > .col-2 {
  -ms-flex-preferred-size: calc(100% / 9 * 2 - (1 - 2 / 9) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 9 * 2 - (1 - 2 / 9) * (2vh + 2vw + 20px));
  max-width: calc(100% / 9 * 2 - (1 - 2 / 9) * (2vh + 2vw + 20px));
}
.columns.columns-9 > .col-3 {
  -ms-flex-preferred-size: calc(100% / 9 * 3 - (1 - 3 / 9) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 9 * 3 - (1 - 3 / 9) * (2vh + 2vw + 20px));
  max-width: calc(100% / 9 * 3 - (1 - 3 / 9) * (2vh + 2vw + 20px));
}
.columns.columns-9 > .col-4 {
  -ms-flex-preferred-size: calc(100% / 9 * 4 - (1 - 4 / 9) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 9 * 4 - (1 - 4 / 9) * (2vh + 2vw + 20px));
  max-width: calc(100% / 9 * 4 - (1 - 4 / 9) * (2vh + 2vw + 20px));
}
.columns.columns-9 > .col-5 {
  -ms-flex-preferred-size: calc(100% / 9 * 5 - (1 - 5 / 9) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 9 * 5 - (1 - 5 / 9) * (2vh + 2vw + 20px));
  max-width: calc(100% / 9 * 5 - (1 - 5 / 9) * (2vh + 2vw + 20px));
}
.columns.columns-9 > .col-6 {
  -ms-flex-preferred-size: calc(100% / 9 * 6 - (1 - 6 / 9) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 9 * 6 - (1 - 6 / 9) * (2vh + 2vw + 20px));
  max-width: calc(100% / 9 * 6 - (1 - 6 / 9) * (2vh + 2vw + 20px));
}
.columns.columns-9 > .col-7 {
  -ms-flex-preferred-size: calc(100% / 9 * 7 - (1 - 7 / 9) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 9 * 7 - (1 - 7 / 9) * (2vh + 2vw + 20px));
  max-width: calc(100% / 9 * 7 - (1 - 7 / 9) * (2vh + 2vw + 20px));
}
.columns.columns-9 > .col-8 {
  -ms-flex-preferred-size: calc(100% / 9 * 8 - (1 - 8 / 9) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 9 * 8 - (1 - 8 / 9) * (2vh + 2vw + 20px));
  max-width: calc(100% / 9 * 8 - (1 - 8 / 9) * (2vh + 2vw + 20px));
}
.columns.columns-9 > .col-9 {
  -ms-flex-preferred-size: calc(100% / 9 * 9 - (1 - 9 / 9) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 9 * 9 - (1 - 9 / 9) * (2vh + 2vw + 20px));
  max-width: calc(100% / 9 * 9 - (1 - 9 / 9) * (2vh + 2vw + 20px));
}
.columns.columns-10 {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.columns.columns-10 > .col {
  -webkit-box-flex: unset;
      -ms-flex: unset;
          flex: unset;
  -ms-flex-preferred-size: calc(100% / 10 * 1 - (1 - 1 / 10) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 10 * 1 - (1 - 1 / 10) * (2vh + 2vw + 20px));
  max-width: calc(100% / 10 * 1 - (1 - 1 / 10) * (2vh + 2vw + 20px));
}
.columns.columns-10 > .col-2 {
  -ms-flex-preferred-size: calc(100% / 10 * 2 - (1 - 2 / 10) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 10 * 2 - (1 - 2 / 10) * (2vh + 2vw + 20px));
  max-width: calc(100% / 10 * 2 - (1 - 2 / 10) * (2vh + 2vw + 20px));
}
.columns.columns-10 > .col-3 {
  -ms-flex-preferred-size: calc(100% / 10 * 3 - (1 - 3 / 10) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 10 * 3 - (1 - 3 / 10) * (2vh + 2vw + 20px));
  max-width: calc(100% / 10 * 3 - (1 - 3 / 10) * (2vh + 2vw + 20px));
}
.columns.columns-10 > .col-4 {
  -ms-flex-preferred-size: calc(100% / 10 * 4 - (1 - 4 / 10) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 10 * 4 - (1 - 4 / 10) * (2vh + 2vw + 20px));
  max-width: calc(100% / 10 * 4 - (1 - 4 / 10) * (2vh + 2vw + 20px));
}
.columns.columns-10 > .col-5 {
  -ms-flex-preferred-size: calc(100% / 10 * 5 - (1 - 5 / 10) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 10 * 5 - (1 - 5 / 10) * (2vh + 2vw + 20px));
  max-width: calc(100% / 10 * 5 - (1 - 5 / 10) * (2vh + 2vw + 20px));
}
.columns.columns-10 > .col-6 {
  -ms-flex-preferred-size: calc(100% / 10 * 6 - (1 - 6 / 10) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 10 * 6 - (1 - 6 / 10) * (2vh + 2vw + 20px));
  max-width: calc(100% / 10 * 6 - (1 - 6 / 10) * (2vh + 2vw + 20px));
}
.columns.columns-10 > .col-7 {
  -ms-flex-preferred-size: calc(100% / 10 * 7 - (1 - 7 / 10) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 10 * 7 - (1 - 7 / 10) * (2vh + 2vw + 20px));
  max-width: calc(100% / 10 * 7 - (1 - 7 / 10) * (2vh + 2vw + 20px));
}
.columns.columns-10 > .col-8 {
  -ms-flex-preferred-size: calc(100% / 10 * 8 - (1 - 8 / 10) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 10 * 8 - (1 - 8 / 10) * (2vh + 2vw + 20px));
  max-width: calc(100% / 10 * 8 - (1 - 8 / 10) * (2vh + 2vw + 20px));
}
.columns.columns-10 > .col-9 {
  -ms-flex-preferred-size: calc(100% / 10 * 9 - (1 - 9 / 10) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 10 * 9 - (1 - 9 / 10) * (2vh + 2vw + 20px));
  max-width: calc(100% / 10 * 9 - (1 - 9 / 10) * (2vh + 2vw + 20px));
}
.columns.columns-10 > .col-10 {
  -ms-flex-preferred-size: calc(100% / 10 * 10 - (1 - 10 / 10) * (2vh + 2vw + 20px));
      flex-basis: calc(100% / 10 * 10 - (1 - 10 / 10) * (2vh + 2vw + 20px));
  max-width: calc(100% / 10 * 10 - (1 - 10 / 10) * (2vh + 2vw + 20px));
}
@media (max-width: 900px) {
  .columns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@font-face {
  font-family: "light";
  src: url("../fonts/muli-light-webfont.woff2") format("woff2"), url("../fonts/muli-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "regular";
  src: url("../fonts/muli-webfont.woff2") format("woff2"), url("../fonts/muli-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "bold";
  src: url("../fonts/muli-semibold-webfont.woff2") format("woff2"), url("../fonts/muli-semibold-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-family: "bold";
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

* {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
*:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow-y: scroll;
  font-family: "regular", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
  font-weight: 300;
}

body {
  height: 100%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #111;
}

header, main, footer {
  width: 100%;
  position: relative;
  display: block; /* IE */
}

img {
  max-width: 100%;
  height: auto;
}

iframe {
  border: none;
}

iframe, img {
  vertical-align: middle;
}

nobr {
  white-space: nowrap;
}

li {
  list-style: none;
  position: relative;
}

strong {
  font-family: "bold";
}

a {
  display: inline-block;
  text-decoration: none;
}

p:last-of-type, ul:last-of-type, ol:last-of-type, li:last-of-type {
  margin-bottom: 0;
}

i {
  font-style: normal;
}

.wrapper {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  width: calc(1150px + 6vw);
  padding-left: 3vw;
  padding-right: 3vw;
}
@media (max-width: 600px) {
  .wrapper {
    width: calc(1150px + 10vw);
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.clear::after, .clear::before {
  content: " ";
  display: table;
}

.clear::after {
  clear: both;
}

.protected-address {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: default;
}

*[hidden] {
  display: none;
}

.relative {
  position: relative;
}

.icon {
  line-height: 0;
}

.gutter + .gutter {
  padding-top: 0;
}

h1, h2, h3, h4, h5, h6, p, table {
  margin: 0;
}
p a, table a {
  display: inline;
}

ul, ol {
  padding: 0 0 0 1px;
  margin: 0;
}
a[href^="mail-to:"] {
  display: none;
}

/**
  festes Seitenverhaeltnis bei responsiven Containern => globale Einstellung
  ---------------------------------------------------------------------------
  individuelle Einstellung in den jeweiligen scss-dateien:

     .parent {
      padding-bottom:calc(1 / (16 / 12) * 50%);
    }
  ---------------------------------------------------------------------------
 */
.child {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.parent {
  margin: 0 auto;
  width: 100%;
  height: 0;
  position: relative;
}

.screen-reader-only, .sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list *:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./slick/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./slick/fonts/slick.eot");
  src: url("./slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("./slick/fonts/slick.woff") format("woff"), url("./slick/fonts/slick.ttf") format("truetype"), url("./slick/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: #fff;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: #111;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: #111;
  opacity: 0.75;
}

/* PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*
	Styles for basic PhotoSwipe functionality (sliding area, open/close transitions)
*/
/* pswp = photoswipe */
.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 1500;
  -webkit-text-size-adjust: 100%;
  /* create separate layer, to avoid paint on window.onscroll in webkit/blink */
  -webkit-backface-visibility: hidden;
  outline: none;
}

.pswp * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

/* style is added when JS option showHideOpacity is set to true */
.pswp--animate_opacity {
  /* 0.001, because opacity:0 doesn't trigger Paint action, which causes lag at start of transition */
  opacity: 0.001;
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--open {
  display: block;
}

.pswp--zoom-allowed .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--zoomed-in .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--dragging .pswp__img {
  /* autoprefixer: off */
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/*
	Background is added as a separate element.
	As animating opacity is much faster than animating rgba() background-color.
*/
.pswp__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  opacity: 0;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__scroll-wrap {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.pswp__container,
.pswp__zoom-wrap {
  -ms-touch-action: none;
  touch-action: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.pswp__zoom-wrap {
  position: absolute;
  width: 100%;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  /* for open/close transition */
  -webkit-transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: transform 333ms cubic-bezier(0.4, 0, 0.22, 1), -webkit-transform 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp__bg {
  will-change: opacity;
  /* for open/close transition */
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

.pswp--animated-in .pswp__bg,
.pswp--animated-in .pswp__zoom-wrap {
  -webkit-transition: none;
  transition: none;
}

.pswp__container,
.pswp__zoom-wrap {
  -webkit-backface-visibility: hidden;
}

.pswp__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow: hidden;
}

.pswp__img {
  position: absolute;
  width: auto;
  height: auto;
  top: 0;
  left: 0;
}

/*
	stretched thumbnail or div placeholder element (see below)
	style is added to avoid flickering in webkit/blink when layers overlap
*/
.pswp__img--placeholder {
  -webkit-backface-visibility: hidden;
}

/*
	div element that matches size of large image
	large image loads on top of it
*/
.pswp__img--placeholder--blank {
  background: #222;
}

.pswp--ie .pswp__img {
  width: 100% !important;
  height: auto !important;
  left: 0;
  top: 0;
}

/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  margin-top: -8px;
  color: #CCC;
}

.pswp__error-msg a {
  color: #CCC;
  text-decoration: underline;
}

/* PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license */
/*

	Contents:

	1. Buttons
	2. Share modal and links
	3. Index indicator ("1 of X" counter)
	4. Caption
	5. Loading indicator
	6. Additional styles (root element, top bar, idle state, hidden state, etc.)

*/
/*

	1. Buttons

 */
/* <button> css reset */
.pswp__button {
  width: 44px;
  height: 44px;
  position: relative;
  background: none;
  cursor: pointer;
  overflow: visible;
  -webkit-appearance: none;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
  float: right;
  opacity: 0.75;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.pswp__button:focus,
.pswp__button:hover {
  opacity: 1;
}

.pswp__button:active {
  outline: none;
  opacity: 0.9;
}

.pswp__button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* pswp__ui--over-close class it added when mouse is over element that should close gallery */
.pswp__ui--over-close .pswp__button--close {
  opacity: 1;
}

.pswp__button,
.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  background: url(../img/photoswipe/default-skin-black.svg) 0 0 no-repeat;
  background-size: 264px 88px;
  width: 44px;
  height: 44px;
}

@media (-webkit-min-device-pixel-ratio: 1.1), (-webkit-min-device-pixel-ratio: 1.09375), (min-resolution: 105dpi), (min-resolution: 1.1dppx) {
  /* Serve SVG sprite if browser supports SVG and resolution is more than 105dpi */
  .pswp--svg .pswp__button--arrow--left,
  .pswp--svg .pswp__button--arrow--right {
    background: none;
  }
}
.pswp__button--close {
  background-position: 0 -44px;
}

.pswp__button--share {
  background-position: -44px -44px;
}

.pswp__button--fs {
  display: none;
}

.pswp--supports-fs .pswp__button--fs {
  display: block;
}

.pswp--fs .pswp__button--fs {
  background-position: -44px 0;
}

.pswp__button--zoom {
  display: none;
  background-position: -88px 0;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

.pswp--zoomed-in .pswp__button--zoom {
  background-position: -132px 0;
}

/* no arrows on touch screens */
.pswp--touch .pswp__button--arrow--left,
.pswp--touch .pswp__button--arrow--right {
  visibility: hidden;
}

/*
	Arrow buttons hit area
	(icon is added to :before pseudo-element)
*/
.pswp__button--arrow--left,
.pswp__button--arrow--right {
  background: none;
  top: 50%;
  margin-top: -50px;
  width: 70px;
  height: 100px;
  position: absolute;
}

.pswp__button--arrow--left {
  left: 0;
}

.pswp__button--arrow--right {
  right: 0;
}

.pswp__button--arrow--left:before,
.pswp__button--arrow--right:before {
  content: "";
  top: 35px;
  background-color: #fff;
  height: 30px;
  width: 32px;
  position: absolute;
}

.pswp__button--arrow--left:before {
  left: 6px;
  background-position: -138px -44px;
}

.pswp__button--arrow--right:before {
  right: 6px;
  background-position: -94px -44px;
}

/*

	2. Share modal/popup and links

 */
.pswp__counter,
.pswp__share-modal {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__share-modal {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 1600;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  -webkit-backface-visibility: hidden;
  will-change: opacity;
}

.pswp__share-modal--hidden {
  display: none;
}

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(6px);
  -ms-transform: translateY(6px);
  transform: translateY(6px);
  -webkit-transition: -webkit-transform 0.25s;
  transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  transition: transform 0.25s, -webkit-transform 0.25s;
  -webkit-backface-visibility: hidden;
  will-change: transform;
}

.pswp__share-tooltip a {
  display: block;
  padding: 8px 12px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  line-height: 18px;
}

.pswp__share-tooltip a:hover {
  text-decoration: none;
  color: #000;
}

.pswp__share-tooltip a:first-child {
  /* round corners on the first/last list item */
  border-radius: 2px 2px 0 0;
}

.pswp__share-tooltip a:last-child {
  border-radius: 0 0 2px 2px;
}

.pswp__share-modal--fade-in {
  opacity: 1;
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* increase size of share links on touch devices */
.pswp--touch .pswp__share-tooltip a {
  padding: 16px 12px;
}

a.pswp__share--facebook:before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  top: -12px;
  right: 15px;
  border: 6px solid transparent;
  border-bottom-color: #FFF;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  pointer-events: none;
}

a.pswp__share--facebook:hover {
  background: #3E5C9A;
  color: #FFF;
}

a.pswp__share--facebook:hover:before {
  border-bottom-color: #3E5C9A;
}

a.pswp__share--twitter:hover {
  background: #55ACEE;
  color: #FFF;
}

a.pswp__share--pinterest:hover {
  background: #CCC;
  color: #CE272D;
}

a.pswp__share--download:hover {
  background: #DDD;
}

/*

	3. Index indicator ("1 of X" counter)

 */
.pswp__counter {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  font-size: 13px;
  line-height: 44px;
  color: #111;
  opacity: 0.75;
  padding: 0 10px;
}

/*

	4. Caption

 */
.pswp__caption {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
}

.pswp__caption small {
  font-size: 11px;
  color: #BBB;
}

.pswp__caption__center {
  text-align: left;
  max-width: 420px;
  margin: 0 auto;
  font-size: 13px;
  padding: 10px;
  line-height: 20px;
  color: #CCC;
}

.pswp__caption--empty {
  display: none;
}

/* Fake caption element, used to calculate height of next/prev image */
.pswp__caption--fake {
  visibility: hidden;
}

/*

	5. Loading indicator (preloader)

	You can play with it here - http://codepen.io/dimsemenov/pen/yyBWoR

 */
.pswp__preloader {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -22px;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-out;
  transition: opacity 0.25s ease-out;
  will-change: opacity;
  direction: ltr;
}

.pswp__preloader__icn {
  width: 20px;
  height: 20px;
  margin: 12px;
}

.pswp__preloader--active {
  opacity: 1;
}

.pswp__preloader--active .pswp__preloader__icn {
  /* We use .gif in browsers that don't support CSS animation */
  background: url(../img/photoswipe/preloader.gif) 0 0 no-repeat;
}

.pswp--css_animation .pswp__preloader--active {
  opacity: 1;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  -webkit-animation: clockwise 500ms linear infinite;
  animation: clockwise 500ms linear infinite;
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  -webkit-animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
  animation: donut-rotate 1000ms cubic-bezier(0.4, 0, 0.22, 1) infinite;
}

.pswp--css_animation .pswp__preloader__icn {
  background: none;
  opacity: 0.75;
  width: 14px;
  height: 14px;
  position: absolute;
  left: 15px;
  top: 15px;
  margin: 0;
}

.pswp--css_animation .pswp__preloader__cut {
  /*
  	The idea of animating inner circle is based on Polymer ("material") loading indicator
  	 by Keanu Lee https://blog.keanulee.com/2014/10/20/the-tale-of-three-spinners.html
  */
  position: relative;
  width: 7px;
  height: 14px;
  overflow: hidden;
}

.pswp--css_animation .pswp__preloader__donut {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 14px;
  height: 14px;
  border: 2px solid #FFF;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  background: none;
  margin: 0;
}

@media screen and (max-width: 1024px) {
  .pswp__preloader {
    position: relative;
    left: auto;
    top: auto;
    margin: 0;
    float: right;
  }
}
@-webkit-keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
@keyframes donut-rotate {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  50% {
    -webkit-transform: rotate(-140deg);
    transform: rotate(-140deg);
  }
  100% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}
/*

	6. Additional styles

 */
/* root element of UI */
.pswp__ui {
  -webkit-font-smoothing: auto;
  visibility: visible;
  opacity: 1;
  z-index: 1550;
}

/* top black bar with buttons and "1 of X" indicator */
.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  height: 44px;
  width: 100%;
}

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  -webkit-transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
  transition: opacity 333ms cubic-bezier(0.4, 0, 0.22, 1);
}

/* pswp--has_mouse class is added only when two subsequent mousemove events occur */
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  visibility: visible;
}

.pswp__top-bar,
.pswp__caption {
  background-color: rgba(0, 0, 0, 0.5);
}

/* pswp__ui--fit class is added when main image "fits" between top bar and bottom bar (caption) */
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: #fff;
}

/* pswp__ui--idle class is added when mouse isn't moving for several seconds (JS option timeToIdle) */
.pswp__ui--idle .pswp__top-bar {
  opacity: 0;
}

.pswp__ui--idle .pswp__button--arrow--left,
.pswp__ui--idle .pswp__button--arrow--right {
  opacity: 0;
}

/*
	pswp__ui--hidden class is added when controls are hidden
	e.g. when user taps to toggle visibility of controls
*/
.pswp__ui--hidden .pswp__top-bar,
.pswp__ui--hidden .pswp__caption,
.pswp__ui--hidden .pswp__button--arrow--left,
.pswp__ui--hidden .pswp__button--arrow--right {
  /* Force paint & create composition layer for controls. */
  opacity: 0.001;
}

/* pswp__ui--one-slide class is added when there is just one item in gallery */
.pswp__ui--one-slide .pswp__button--arrow--left,
.pswp__ui--one-slide .pswp__button--arrow--right,
.pswp__ui--one-slide .pswp__counter {
  display: none;
}

.pswp__element--disabled {
  display: none !important;
}

.pswp--minimal--dark .pswp__top-bar {
  background: none;
}

body {
  line-height: 1.45;
  font-weight: 300;
  margin-top: -3.2px;
  margin-bottom: -3.2px;
  font-family: "regular";
  margin: 0;
}
body {
  font-size: 14px;
}
@media (min-width: 400px) {
  body {
    font-size: calc(14px + 2 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  body {
    font-size: 16px;
  }
}

h1 {
  line-height: 1.3;
  font-weight: 300;
  margin-top: -12px;
  margin-bottom: -12px;
  font-family: "light";
}
h1 {
  font-size: 20px;
}
@media (min-width: 400px) {
  h1 {
    font-size: calc(20px + 40 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  h1 {
    font-size: 60px;
  }
}

.headline h1 {
  color: #fff;
}

h1.h1_project {
  line-height: 1.3;
  font-weight: 300;
  margin-top: -8px;
  margin-bottom: -8px;
}
h1.h1_project {
  font-size: 20px;
}
@media (min-width: 400px) {
  h1.h1_project {
    font-size: calc(20px + 20 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  h1.h1_project {
    font-size: 40px;
  }
}

h2 {
  line-height: 1.3;
  font-weight: 300;
  margin-top: -9.2px;
  margin-bottom: -9.2px;
  font-family: "light";
}
h2 {
  font-size: 18px;
}
@media (min-width: 400px) {
  h2 {
    font-size: calc(18px + 28 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  h2 {
    font-size: 46px;
  }
}

h2.h2_project {
  line-height: 1.3;
  font-weight: 300;
  margin-top: -7.2px;
  margin-bottom: -7.2px;
}
h2.h2_project {
  font-size: 18px;
}
@media (min-width: 400px) {
  h2.h2_project {
    font-size: calc(18px + 18 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  h2.h2_project {
    font-size: 36px;
  }
}

.privacyh h1, .privacyh h2 {
  color: #111;
}

h3 {
  line-height: 1.2;
  font-weight: 300;
  margin-top: -6.4px;
  margin-bottom: -6.4px;
  font-family: "light";
}
h3 {
  font-size: 16px;
}
@media (min-width: 400px) {
  h3 {
    font-size: calc(16px + 16 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  h3 {
    font-size: 32px;
  }
}

.fact-counters .fact-counter .fact-counter-count {
  line-height: 1.3;
  font-weight: 300;
  margin-top: -18px;
  margin-bottom: -18px;
  font-family: "bold";
}
.fact-counters .fact-counter .fact-counter-count {
  font-size: 30px;
}
@media (min-width: 400px) {
  .fact-counters .fact-counter .fact-counter-count {
    font-size: calc(30px + 60 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  .fact-counters .fact-counter .fact-counter-count {
    font-size: 90px;
  }
}
@media (max-width: 1400px) {
  .fact-counters .fact-counter .fact-counter-count {
    line-height: 1.3;
    font-weight: 300;
    margin-top: -16px;
    margin-bottom: -16px;
    font-family: "bold";
  }
  .fact-counters .fact-counter .fact-counter-count {
    font-size: 30px;
  }
}
@media (max-width: 1400px) and (min-width: 400px) {
  .fact-counters .fact-counter .fact-counter-count {
    font-size: calc(30px + 50 * (100vw - 400px) / 750);
  }
}
@media (max-width: 1400px) and (min-width: 1150px) {
  .fact-counters .fact-counter .fact-counter-count {
    font-size: 80px;
  }
}

.teasers-big h3, .blue-box h3, .head-text-columns h3, .accordion h3 {
  line-height: 1.2;
  font-weight: 300;
  margin-top: -4.6px;
  margin-bottom: -4.6px;
  font-family: "light";
  margin-bottom: 0;
  text-transform: uppercase;
}
.teasers-big h3, .blue-box h3, .head-text-columns h3, .accordion h3 {
  font-size: 16px;
}
@media (min-width: 400px) {
  .teasers-big h3, .blue-box h3, .head-text-columns h3, .accordion h3 {
    font-size: calc(16px + 7 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  .teasers-big h3, .blue-box h3, .head-text-columns h3, .accordion h3 {
    font-size: 23px;
  }
}

nav {
  line-height: 1.45;
  font-weight: 300;
  margin-top: -3px;
  margin-bottom: -3px;
  font-family: "bold";
  margin: 0;
}
nav {
  font-size: 14px;
}
@media (min-width: 400px) {
  nav {
    font-size: calc(14px + 1 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  nav {
    font-size: 15px;
  }
}
nav .level2 {
  font-family: "regular";
}

.blue {
  color: #527E92;
}

.grey {
  color: #707070;
}

.white {
  color: #fff;
}

.icon-studies, .icon-search, .icon-language {
  line-height: 1.45;
  font-weight: 300;
  margin-top: -3px;
  margin-bottom: -3px;
  text-transform: uppercase;
}
.icon-studies, .icon-search, .icon-language {
  font-size: 14px;
}
@media (min-width: 400px) {
  .icon-studies, .icon-search, .icon-language {
    font-size: calc(14px + 1 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  .icon-studies, .icon-search, .icon-language {
    font-size: 15px;
  }
}

.department-teasers {
  line-height: 1.2;
  font-weight: 300;
  margin-top: -2.8px;
  margin-bottom: -2.8px;
  font-family: "bold";
  color: #fff;
}
.department-teasers {
  font-size: 12px;
}
@media (min-width: 400px) {
  .department-teasers {
    font-size: calc(12px + 2 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  .department-teasers {
    font-size: 14px;
  }
}

.blue-box {
  line-height: 1.45;
  font-weight: 300;
  margin-top: -2.8px;
  margin-bottom: -2.8px;
  font-family: "regular";
  color: #fff;
}
.blue-box {
  font-size: 12px;
}
@media (min-width: 400px) {
  .blue-box {
    font-size: calc(12px + 2 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  .blue-box {
    font-size: 14px;
  }
}

.white-box {
  line-height: 1.45;
  font-weight: 300;
  margin-top: -2.8px;
  margin-bottom: -2.8px;
  font-family: "regular";
  color: #707070;
}
.white-box {
  font-size: 12px;
}
@media (min-width: 400px) {
  .white-box {
    font-size: calc(12px + 2 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  .white-box {
    font-size: 14px;
  }
}
.white-box a {
  font-family: "bold";
  color: #527E92;
}
.white-box a:hover {
  text-decoration: underline;
}

.teasers-big {
  line-height: 1.45;
  font-weight: 300;
  margin-top: -3px;
  margin-bottom: -3px;
  font-family: "regular";
  color: #fff;
}
.teasers-big {
  font-size: 14px;
}
@media (min-width: 400px) {
  .teasers-big {
    font-size: calc(14px + 1 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  .teasers-big {
    font-size: 15px;
  }
}

.head-text-columns {
  line-height: 1.45;
  font-weight: 300;
  margin-top: -2.8px;
  margin-bottom: -2.8px;
  font-family: "bold";
  color: #707070;
}
.head-text-columns {
  font-size: 12px;
}
@media (min-width: 400px) {
  .head-text-columns {
    font-size: calc(12px + 2 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  .head-text-columns {
    font-size: 14px;
  }
}

.textonline {
  line-height: 1.45;
  font-weight: 300;
  margin-top: -3px;
  margin-bottom: -3px;
  font-family: "regular";
  text-transform: uppercase;
  color: #707070;
}
.textonline {
  font-size: 14px;
}
@media (min-width: 400px) {
  .textonline {
    font-size: calc(14px + 1 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  .textonline {
    font-size: 15px;
  }
}

.upper {
  text-transform: uppercase;
}

footer {
  line-height: 1.45;
  font-weight: 300;
  margin-top: -2.8px;
  margin-bottom: -2.8px;
  font-family: "regular";
  margin: 0;
}
footer {
  font-size: 12px;
}
@media (min-width: 400px) {
  footer {
    font-size: calc(12px + 2 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  footer {
    font-size: 14px;
  }
}
footer a {
  color: #fff;
  text-decoration: none;
}
footer a:hover {
  text-decoration: underline;
}

main p a, main li a, main span a {
  text-decoration: none;
  font-family: "bold";
  color: #527E92;
}
main p a:hover, main li a:hover, main span a:hover {
  text-decoration: underline;
}

p li {
  padding-left: 34px;
  position: relative;
}
p li + li {
  margin-top: 0.6rem;
}
p li::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  background-image: url(../img/icon-expertise.svg);
  background-repeat: no-repeat;
  background-size: 26px;
  width: 26px;
  height: 26px;
}

ol {
  counter-reset: my-awesome-counter;
  list-style: none;
}

ol li {
  padding-left: 34px;
  counter-increment: my-awesome-counter;
  position: relative;
}
ol li + li {
  margin-top: 0.6rem;
}

ol li::before {
  content: counter(my-awesome-counter) ".";
  color: #fff;
  position: absolute;
  width: 26px;
  height: 24px;
  left: 0;
  line-height: 24px;
  top: 0;
  background: #527E92;
  text-align: center;
  -webkit-mask: url(../img/mask-select.svg);
          mask: url(../img/mask-select.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

main em {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
}

.wrapper.clear {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.wrapper.clear::after, .wrapper.clear::before {
  display: none;
}

.columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.headlineleft {
  margin-top: 80px;
  margin-right: calc(35% + 20px);
}
@media (max-width: 600px) {
  .headlineleft {
    margin-right: 20%;
    margin-top: 40px;
  }
}
@media (max-width: 400px) {
  .headlineleft {
    margin-right: 0;
  }
}

.lineleft {
  margin-right: calc(100% - 190px);
  padding-top: 10px;
  border: none;
  border-bottom: 6px solid #527E92;
}
@media (max-width: 850px) {
  .lineleft {
    border-bottom: 4px solid #527E92;
  }
}

.linefull {
  margin-left: -2vw;
  margin-right: -2vw;
  padding-top: 60px;
  border: none;
  border-bottom: 6px solid #A0B972;
}
@media (max-width: 850px) {
  .linefull {
    border-bottom: 4px solid #A0B972;
  }
}

.lineandtext {
  position: relative;
}

.textonline {
  padding: 0 14px;
  background-color: #fff;
  white-space: nowrap;
  position: absolute;
  bottom: -5px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}

.columnsright {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}
.columnsright .columns-col1 {
  margin-left: 30%;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.columnsright .columns-col {
  margin-left: 40px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (max-width: 1000px) {
  .columnsright {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 20px;
  }
  .columnsright .columns-col1, .columnsright .columns-col {
    margin-left: 0;
    padding-left: 20%;
  }
  .columnsright .columns-col {
    padding-top: 20px;
  }
}

.columnsright-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.columnsright-news .columns-col1 {
  margin-left: 0;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.columnsright-news .columns-col {
  margin-left: 40px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (max-width: 1000px) {
  .columnsright-news {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 20px;
  }
  .columnsright-news .columns-col1, .columnsright-news .columns-col {
    margin-left: 0;
    padding-left: 20%;
  }
  .columnsright-news .columns-col {
    padding-top: 20px;
  }
}

.columnsleft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 60px;
}
.columnsleft .columns-col1 {
  -ms-flex-preferred-size: 30%;
      flex-basis: 30%;
}
.columnsleft .columns-col {
  margin-left: 40px;
  -ms-flex-preferred-size: 70%;
      flex-basis: 70%;
}
.columnsleft .columns-col ul li {
  padding: 0 0 10px 30px;
  background-image: url(../img/icon-expertise.svg);
  background-repeat: no-repeat;
  background-size: 26px;
}
@media (max-width: 520px) {
  .columnsleft {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 20px;
    padding-left: 20px;
  }
  .columnsleft .columns-col1, .columnsleft .columns-col {
    margin-left: 0;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding-right: 20%;
  }
  .columnsleft .columns-col {
    padding-top: 20px;
  }
}

.bggreen {
  background-color: #A0B972;
}

.vspace {
  padding-top: 50px;
}
@media (max-width: 1000px) {
  .vspace {
    padding-top: 20px;
  }
}

.date-text {
  color: #527E92;
}

.news-entry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 100%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.news-entry .news-image {
  margin-top: 20px;
  width: 30%;
  min-width: 30%;
  margin-right: 40px;
  position: relative;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.news-entry .news-image img {
  width: 100%;
  max-height: 100%;
}
.news-entry .news-image .news-image-overlay {
  opacity: 0%;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 40px 10px 10px 10px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(50%, rgba(160, 185, 114, 0.85)), to(rgba(160, 185, 114, 0.85)));
  background-image: linear-gradient(to bottom, transparent 0%, rgba(160, 185, 114, 0.85) 50%, rgba(160, 185, 114, 0.85) 100%);
  color: #fff;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.news-entry .news-image:hover .news-image-overlay {
  opacity: 100%;
}
.news-entry .news-no-image {
  margin-top: 0;
}
.news-entry .news-text {
  padding-top: 20px;
}
@media (max-width: 1000px) {
  .news-entry {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .news-entry .news-image {
    width: 300px;
    max-width: 100%;
    margin-right: 0;
  }
}

body.downloads .such-feld {
  margin-top: 40px;
  margin-bottom: 2px;
  position: relative;
  background-color: #68894d;
  display: inline-block;
  padding: 12px 12px 12px 50px;
  border-top-left-radius: 10px;
}
body.downloads .such-feld::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 13px;
  width: 24px;
  height: 24px;
  background-image: url("../img/icon-search.svg");
  background-size: contain;
}
body.downloads .such-feld input#download_suchbegriff {
  padding: 2px;
  line-height: 1.5;
}

#download-table.grid-table {
  grid-template-columns: 32px 5fr auto 1fr 3fr auto 38px;
}
@media (max-width: 950px) {
  #download-table.grid-table {
    grid-template-columns: 32px 5fr 3fr auto 38px;
  }
  #download-table.grid-table .col-year, #download-table.grid-table .col-type {
    display: none;
  }
}
@media (max-width: 760px) {
  #download-table.grid-table {
    grid-template-columns: 32px 5fr auto 38px;
  }
  #download-table.grid-table .col-journal {
    display: none;
  }
}
@media (max-width: 600px) {
  #download-table.grid-table .header.country {
    padding-left: 18px;
    background-size: 20px 20px;
  }
}

#download-table2.grid-table {
  grid-template-columns: 5fr auto 1fr 3fr auto auto;
}
#download-table2.grid-table .row div {
  border-bottom: 2px solid #fff;
}
@media (max-width: 950px) {
  #download-table2.grid-table {
    grid-template-columns: 5fr 3fr auto auto;
  }
  #download-table2.grid-table .col-year, #download-table2.grid-table .col-type {
    display: none;
  }
}
@media (max-width: 760px) {
  #download-table2.grid-table {
    grid-template-columns: 5fr auto auto;
  }
  #download-table2.grid-table .col-journal {
    display: none;
  }
}
@media (max-width: 600px) {
  #download-table2.grid-table .header.country {
    padding-left: 18px;
    background-size: 20px 20px;
  }
}

.grid-table {
  display: grid;
}
.grid-table .header {
  background-color: #527E92;
  color: #fff;
  padding: 17px 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.grid-table .header.country {
  background-image: url("../img/icon-languages.svg");
  padding-left: 32px;
  background-repeat: no-repeat;
  background-size: 30px 32px;
  background-position: left center;
}
.grid-table .header .sort {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-left: 6px;
  font-size: 10px;
  line-height: 8px;
}
.grid-table .header .sort span {
  opacity: 1;
}
.grid-table .header .sort span.active {
  opacity: 0.5;
}
.grid-table .row {
  display: contents;
}
.grid-table .row div {
  scroll-margin-top: 10px;
  padding: 8px;
  background-color: #F3F3F3;
}
.grid-table .row .toggle {
  cursor: pointer;
  position: relative;
}
.grid-table .row .toggle::before {
  position: absolute;
  top: 12px;
  left: 10px;
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/arrow-right-grey.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
  background-position: center center;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.grid-table .row .toggle:hover::before {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.grid-table .row .details {
  grid-column: 1/-1;
  background-color: #fff;
  -webkit-box-shadow: inset -5px -1px 0px 0px #F3F3F3, inset 5px 0px 0px 0px #F3F3F3;
          box-shadow: inset -5px -1px 0px 0px #F3F3F3, inset 5px 0px 0px 0px #F3F3F3;
  padding: 0 40px;
  overflow: hidden;
  height: 0;
  -webkit-transform: scaleY(0);
      -ms-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
      -ms-transform-origin: top;
          transform-origin: top;
  -webkit-transition: padding-top 0.3s ease, padding-bottom 0.3s ease, -webkit-transform 0.3s ease;
  transition: padding-top 0.3s ease, padding-bottom 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease;
  transition: transform 0.3s ease, padding-top 0.3s ease, padding-bottom 0.3s ease, -webkit-transform 0.3s ease;
  border-bottom: 2px solid #fff;
}
.grid-table .row .cart-btn {
  padding: 8px 8px 8px 0;
  cursor: pointer;
  position: relative;
}
.grid-table .row .cart-btn::before {
  position: absolute;
  top: 6px;
  left: 0;
  content: "";
  width: 30px;
  height: 30px;
  background-image: url("../img/icon-download-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform-origin: top center;
      -ms-transform-origin: top center;
          transform-origin: top center;
  background-position: center center;
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}
.grid-table .row .cart-btn:hover::before {
  -webkit-transform: scale(1.2);
      -ms-transform: scale(1.2);
          transform: scale(1.2);
}
.grid-table .row .cart-btn.added::before {
  left: 5px;
  width: 20px;
  background-image: url("../img/icon-close.svg");
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.grid-table .row.open .details {
  padding-top: 10px;
  padding-bottom: 10px;
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
  height: auto;
}
.grid-table .row.open .highlight {
  background-color: yellow;
}
.grid-table .row.open .toggle::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.grid-table .row.open .toggle:hover::before {
  -webkit-transform: rotate(90deg) scale(1.2);
      -ms-transform: rotate(90deg) scale(1.2);
          transform: rotate(90deg) scale(1.2);
}

.download-all {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 1000;
  padding: 12px 18px;
  font-size: 16px;
  background: #A0B972;
  color: #fff;
  border: none;
  cursor: pointer;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.download-all::after {
  position: absolute;
  content: "";
  right: 100%;
  top: -1px;
  height: calc(100% + 2px);
  width: 50px;
  background-color: #527E92;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-image: url("../img/icon-download.svg");
  background-position: center center;
  background-size: 30px 100%;
  background-repeat: no-repeat;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
}
.download-all.hidden {
  display: none;
}

body {
  /**
    festes Seitenverhaeltnis bei responsiven Containern => individuelle Einstellung
    --------------------------------------------------------------------------------
    globale Einstellung in preset
    --------------------------------------------------------------------------------
   */
}
body .headimage {
  position: relative;
  padding: 100px 6vw 0 6vw;
  background-size: cover;
  margin-bottom: 150px;
}
@media (max-width: 1000px) {
  body .headimage {
    margin-bottom: 0;
  }
}
@media (max-width: 500px) {
  body .headimage {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
body .headbox {
  position: relative;
  top: 40px;
  background-color: rgba(160, 185, 114, 0.85);
  padding: 140px 0 0 0;
}
@media (max-width: 700px) {
  body .headbox {
    padding-top: 100px;
  }
}

/* ******************************************************* */
header {
  margin-bottom: 100px;
}
header .icon-linkedin {
  position: fixed;
  top: 344px;
  left: 0;
  width: 60px;
  height: 60px;
  background-image: url(../img/icon-linkedin.svg);
  z-index: 90;
  -webkit-box-shadow: 2px 2px 2px #666;
          box-shadow: 2px 2px 2px #666;
}
header .icon-linkedin:hover {
  opacity: 0.8;
}
@media (max-width: 700px) {
  header .icon-linkedin {
    width: 50px;
    height: 50px;
    background-size: cover;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
header .icons {
  position: absolute;
  top: 0;
  right: 6vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 440px) {
  header .icons {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media (max-width: 500px) {
  header .icons {
    right: 3vw;
  }
}
header .icon-studies, header .icon-search, header .icon-language, header .search {
  width: 100px;
  height: 60px;
  text-align: center;
  color: #fff;
  padding: 5px 0 5px 0;
  margin: 0 0 10px 20px;
}
header .icon-studies img, header .icon-search img, header .icon-language img, header .search img {
  height: 30px;
}
header .icon-studies a, header .icon-search a, header .icon-language a, header .search a {
  color: #fff;
}
header .icon-studies a:hover, header .icon-search a:hover, header .icon-language a:hover, header .search a:hover {
  opacity: 0.7;
}
header .icon-studies a.active, header .icon-search a.active, header .icon-language a.active, header .search a.active {
  opacity: 0.4;
}
header .icon-studies {
  background-color: #A0B972;
}
header .icon-studies:hover {
  opacity: 0.7;
}
header .icon-search {
  cursor: pointer;
}
header .icon-search:hover {
  opacity: 0.7;
}
header .icon-search, header .search {
  background-color: #68894d;
}
header .search {
  display: none;
  width: auto;
  padding: 14px;
}
header #search-btn {
  margin-right: 8px;
  width: 28px;
}
header #search-btn:hover {
  opacity: 0.7;
}
header .icon-language {
  background-color: #527E92;
}
header .logo {
  position: absolute;
  z-index: 95;
  top: -90px;
  left: 5vw;
}
header .logo:hover {
  -webkit-animation: orbit 1s;
          animation: orbit 1s;
}
header .logo img {
  width: 232px;
  height: auto;
}
@media (max-width: 700px) {
  header .logo img {
    width: 160px;
  }
}
@media (max-width: 700px) {
  header .logo {
    top: -70px;
  }
}
header .head-columns {
  display: grid;
  grid-template-columns: 1fr 320px;
  grid-template-areas: "title title" "left  right";
}
@media (max-width: 1050px) {
  header .head-columns {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "left" "right";
  }
}
header .column1 {
  grid-area: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .column1 .fact-counters {
  padding: 2rem;
  background-color: #527E92;
  color: #fff;
  display: grid;
  grid-template-columns: auto auto auto;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin-right: 35px;
  gap: 2rem;
}
header .column1 .fact-counters .fact-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
header .column1 .fact-counters .fact-counter .fact-counter-count {
  width: 220px;
  padding-bottom: 3rem;
  position: relative;
}
header .column1 .fact-counters .fact-counter .fact-counter-count::after {
  content: "";
  position: absolute;
  bottom: 2.4rem;
  left: 0;
  width: 100%;
  height: max(0.06em, 5px);
  background-color: #88C2C6;
}
header .column1 .fact-counters .fact-counter .fact-counter-title {
  width: 180px;
}
@media (max-width: 1400px) {
  header .column1 .fact-counters .fact-counter .fact-counter-count {
    width: 180px;
  }
}
@media (max-width: 1270px) {
  header .column1 .fact-counters {
    margin-right: 0;
  }
  header .column1 .department-teasers {
    margin-right: -10px;
  }
}
@media (max-width: 840px) {
  header .column1 .fact-counters .fact-counter .fact-counter-count, header .column1 .fact-counters .fact-counter .fact-counter-title {
    width: 130px;
  }
}
@media (max-width: 680px) {
  header .column1 .fact-counters .fact-counter .fact-counter-count, header .column1 .fact-counters .fact-counter .fact-counter-title {
    width: 100px;
  }
}
@media (max-width: 570px) {
  header .column1 .fact-counters {
    padding: 2rem 1.2rem 1.2rem;
  }
  header .column1 .fact-counters .fact-counter .fact-counter-count, header .column1 .fact-counters .fact-counter .fact-counter-title {
    width: 90px;
  }
}
@media (max-width: 450px) {
  header .column1 .fact-counters {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3rem;
  }
  header .column1 .fact-counters .fact-counter .fact-counter-count {
    padding-bottom: 2.5rem;
  }
  header .column1 .fact-counters .fact-counter .fact-counter-count::after {
    bottom: 1.9rem;
  }
  header .column1 .fact-counters .fact-counter .fact-counter-title {
    width: 150px;
    max-width: 100%;
  }
}
header .head-fullwidth {
  grid-area: title;
  width: 100%;
  max-width: 800px;
}
header .headline {
  margin-right: 80px;
  margin-bottom: 50px;
}
@media (max-width: 1300px) {
  header .headline {
    margin-right: 10px;
  }
}
@media (max-width: 1050px) {
  header .headline {
    margin-bottom: 20px;
  }
}
@media (max-width: 850px) {
  header .headline {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
header .department-teasers {
  padding: 40px 0 60px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 25px;
}
@media (max-width: 1300px) {
  header .department-teasers {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 0;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
@media (max-width: 850px) {
  header .department-teasers {
    padding-bottom: 20px;
  }
}
header .department-teaser {
  color: #fff;
  position: relative;
  width: 114px;
  height: 104px;
  margin-right: 10px;
  background-repeat: no-repeat;
  background-size: 114px 104px;
}
@media (max-width: 1300px) {
  header .department-teaser {
    margin-top: 20px;
  }
}
@media (max-width: 500px) {
  header .department-teaser {
    margin-right: 4px;
  }
}
header .department-teaser p {
  position: relative;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 6px 6px;
}
header .department-teaser:hover {
  opacity: 0.7;
}
header .dep1 {
  background-image: url(../img/dep1.svg);
}
header .dep2 {
  background-image: url(../img/dep2.svg);
}
header .dep3 {
  background-image: url(../img/dep3.svg);
}
header .dep4 {
  background-image: url(../img/dep4.svg);
}
header .dep5 {
  background-image: url(../img/dep5.svg);
}
header .dep6 {
  background-image: url(../img/dep6.svg);
}
header .head-text-columns {
  padding: 10px 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1400px) {
  header .head-text-columns {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
header .head-text-col1, header .head-text-col2 {
  width: 350px;
  margin-right: 50px;
  padding: 40px 40px 20px 40px;
  background-color: #fff;
}
header .head-text-col1 li, header .head-text-col2 li {
  padding: 0 0 10px 30px;
  background-image: url(../img/icon-expertise.svg);
  background-repeat: no-repeat;
  background-size: 26px;
}
header .head-text-col-project {
  width: 450px;
}
@media (max-width: 1400px) {
  header .head-text-col1, header .head-text-col2, header .head-text-col-project {
    margin-top: 26px;
  }
  header .head-text-col1:nth-child(2), header .head-text-col2:nth-child(2), header .head-text-col-project:nth-child(2) {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (max-width: 850px) {
  header .head-text-col1, header .head-text-col2, header .head-text-col-project {
    margin-right: 0;
  }
}
@media (max-width: 500px) {
  header .head-text-col1, header .head-text-col2, header .head-text-col-project {
    width: 100%;
  }
}
@media (max-width: 600px) {
  header .head-text-col-project {
    width: 100%;
  }
}
header .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
      -ms-flex-align: top;
          align-items: top;
}
header .department-dot {
  width: 14px;
  min-width: 14px;
  height: 13px;
  margin-top: 2px;
  margin-right: 4px;
  -webkit-mask: url(../img/mask-select.svg);
          mask: url(../img/mask-select.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
header .white-box {
  margin-right: 50px;
  padding: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
@media (max-width: 850px) {
  header .white-box {
    margin-right: 0;
  }
}
@media (max-width: 600px) {
  header .white-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
header .search-prj {
  background-color: #F3F3F3;
}
header .search-prj:hover {
  border: 1px solid #707070;
}
header .search-align-right {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
header .white-box-col1 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
header .form-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}
header .white-box-col {
  margin-left: 40px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media (max-width: 600px) {
  header .white-box-col {
    margin-left: 20px;
  }
}
header .services li {
  background-image: url(../img/icon-services.svg);
}
header .blue-box {
  grid-area: right;
  justify-self: end;
  position: relative;
  color: #fff;
  width: 320px;
  min-width: 320px;
  background-color: #527E92;
  margin-bottom: 180px;
}
header .blue-box a {
  color: #fff;
}
header .blue-box a:hover {
  opacity: 0.6;
}
@media (max-width: 850px) {
  header .blue-box {
    width: 100%;
    min-width: 100%;
    margin-top: 26px;
  }
}
header .boxheadline {
  padding: 14px 35px 7px;
  width: 100%;
}
header .news {
  border-bottom: 2px solid rgba(160, 185, 114, 0.85);
  background-image: url(../img/arrow-right-white.svg);
  background-repeat: no-repeat;
  background-position: top 14px left 14px;
  padding-bottom: 14px;
}
@media (max-width: 900px) {
  header .news {
    background-position: top 10px left 14px;
  }
}
header .studies {
  background-image: url(../img/arrow-down-white.svg);
  background-repeat: no-repeat;
  background-position: top 18px left 10px;
}
@media (max-width: 900px) {
  header .studies {
    background-position: top 14px left 10px;
  }
}
header .boxtext {
  padding: 14px 35px;
  width: 100%;
}
header .boxbeige {
  background-color: #CABA9B;
}
header .list {
  padding: 0 15px;
  width: 100%;
}
header .listelem, header .listelem-nolink {
  padding: 6px 20px;
  border-bottom: 1px solid #dfdfdf;
  width: 100%;
}
header .listelem {
  background-image: url(../img/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: bottom 6px right;
  background-size: 20px;
}
header .listelem.as-a-link {
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  cursor: pointer;
}
header .listelem.as-a-link:hover {
  opacity: 0.6;
}
header .listelem-last, header .listelem-nolink-last {
  border-bottom: 0;
}
header .viewall {
  padding: 6px 20px;
  width: 100%;
}
header .bluespace {
  padding: 10px 0;
  width: 100%;
}
header .imagebox {
  position: relative;
}
header .image {
  position: absolute;
  bottom: -165px;
  left: 35px;
  width: 300px;
  height: 180px;
}
@media (max-width: 380px) {
  header .image {
    left: auto;
    right: 8px;
  }
}
header .jump {
  position: absolute;
  bottom: -52px;
  left: calc(50% - 15px);
}
@media (max-width: 1000px) {
  header .jump {
    display: none;
  }
}

body.start header .head-columns .column1 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1270px) {
  body.start header .head-columns {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "left" "right";
  }
}

.invis {
  visibility: hidden;
}

@-webkit-keyframes orbit {
  from {
    -webkit-transform: translateX(-3px) rotate(0deg) translateX(3px) rotate(0deg);
            transform: translateX(-3px) rotate(0deg) translateX(3px) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(-3px) rotate(360deg) translateX(3px) rotate(-360deg);
            transform: translateX(-3px) rotate(360deg) translateX(3px) rotate(-360deg);
  }
}

@keyframes orbit {
  from {
    -webkit-transform: translateX(-3px) rotate(0deg) translateX(3px) rotate(0deg);
            transform: translateX(-3px) rotate(0deg) translateX(3px) rotate(0deg);
  }
  to {
    -webkit-transform: translateX(-3px) rotate(360deg) translateX(3px) rotate(-360deg);
            transform: translateX(-3px) rotate(360deg) translateX(3px) rotate(-360deg);
  }
}
nav {
  position: absolute;
  z-index: 93;
  top: 0;
  right: 20px;
  padding: 120px 0 10px 0;
  background-color: #fff;
  display: none;
  -webkit-box-shadow: 0 2px 3px 1px #666;
          box-shadow: 0 2px 3px 1px #666;
  width: 350px;
  max-width: 350px;
}
@media (max-width: 650px) {
  nav {
    width: 290px;
  }
}
@media (max-width: 570px) {
  nav {
    width: 250px;
  }
}
nav ul#menu {
  padding: 0 50px;
}
@media (max-width: 650px) {
  nav ul#menu {
    padding: 0 20px;
  }
}
nav a {
  padding: 7px 30px;
  display: block;
  color: #111;
}
@media (max-width: 570px) {
  nav a {
    padding: 7px 10px;
  }
}
nav a:hover, nav a.active {
  background-color: #A0B972;
  color: #fff;
}
nav a.level2 {
  padding-left: 50px;
}
nav li.level1 {
  border-bottom: 1px solid #bbb;
}
nav li.level1:last-of-type {
  border-bottom: none;
}

.nav-toggle {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.menu {
  position: absolute;
  top: 16px;
  right: 34px;
  width: 74px;
}

.menuclose {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 74px;
}

img.align_right {
  float: right;
  margin: 0 0 20px 20px;
}
@media (max-width: 1400px) and (min-width: 201px) {
  img.align_right {
    max-width: 60%;
    height: auto;
  }
}
@media (max-width: 900px) {
  img.align_right {
    max-width: 50%;
  }
}
img.align_left {
  float: left;
  margin: 0 20px 20px 0;
}
@media (max-width: 1400px) {
  img.align_left {
    max-width: 60%;
    height: auto;
  }
}
@media (max-width: 900px) {
  img.align_left {
    max-width: 50%;
  }
}
img.align_center {
  width: 100%;
  height: auto;
}

figure {
  margin: 0;
  display: table;
}
figure.align_right {
  float: right;
  margin: 0 0 20px 20px;
}
figure.align_right:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 900px) {
  figure.align_right {
    max-width: 50%;
  }
}
@media (max-width: 400px) {
  figure.align_right {
    max-width: 40%;
  }
}
figure.align_left {
  float: left;
  margin: 0 20px 20px 0;
}
figure.align_left:not(:first-child) {
  margin-top: 20px;
}
@media (max-width: 900px) {
  figure.align_left {
    max-width: 50%;
  }
}
@media (max-width: 400px) {
  figure.align_left {
    max-width: 40%;
  }
}
figure.align_center {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
}
figure.align_center:not(:first-child) {
  margin-top: 20px;
}
figure img {
  display: block;
  width: 100%;
}

figure + p {
  margin-top: 1rem;
}

figcaption {
  display: table-caption;
  caption-side: bottom;
  color: #bbb;
  margin-top: 8px;
  line-height: 1.4;
  font-weight: 300;
}
figcaption {
  font-size: 12px;
}

.button, button[type=submit] {
  line-height: 1.35;
  font-weight: 300;
  position: relative;
  margin: 0;
  display: inline-block;
  border: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  text-align: left;
  background-color: #bbb;
  color: #fff;
  padding: 7px 11px;
}
.button, button[type=submit] {
  font-size: 16px;
}
@media (min-width: 400px) {
  .button, button[type=submit] {
    font-size: calc(16px + 4 * (100vw - 400px) / 750);
  }
}
@media (min-width: 1150px) {
  .button, button[type=submit] {
    font-size: 20px;
  }
}

.sortupw {
  padding: 13px 18px;
  width: 26px;
  background-image: url(../img/sort-upwards.svg);
  background-color: #A0B972;
}

.sortup {
  background-color: #A0B972;
}

.sorticons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 18px;
}

.sorticon {
  cursor: pointer;
  background-repeat: no-repeat;
  width: 18px;
  height: 26px;
}

.sorticon-up {
  background-image: url(../img/sort-upwards.svg);
}
.sorticon-up:hover {
  opacity: 0.5;
}

.sorticon-down {
  background-image: url(../img/sort-downwards.svg);
}
.sorticon-down:hover {
  opacity: 0.5;
}

.downloadicon, .countryicon {
  background-repeat: no-repeat;
  width: 30px;
  height: 32px;
  background-size: contain;
}

.downloadicon {
  background-image: url(../img/icon-download.svg);
}

.countryicon {
  background-image: url(../img/icon-languages.svg);
}

.showintro {
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  position: relative;
  top: 4px;
  background-image: url(../img/arrow-right-grey.svg);
  cursor: pointer;
  background-size: contain;
}

.hideIntro {
  background-repeat: no-repeat;
  background-image: url(../img/icon-close.svg);
  background-size: contain;
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 10px;
  right: 24px;
}

.downloadfile {
  display: block;
  color: #fff;
  background-color: #527E92;
  background-repeat: no-repeat;
  background-image: url(../img/icon-download.svg);
  background-size: 26px;
  background-position: top 4px left 6px;
  padding: 4px 10px 4px 40px;
}
.downloadfile.belowtext {
  display: inline-block;
  margin-top: 20px;
}
.downloadfile:hover {
  opacity: 0.8;
}

.gallery-container {
  margin-bottom: -20px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .gallery-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .gallery-container::after, .gallery-container::before {
    display: none;
  }
}
@supports (display: flex) {
  .gallery-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .gallery-container::after, .gallery-container::before {
    display: none;
  }
}
.gallery-container .thumbnail {
  width: calc(100% / 5 - (5 - 1) * 20px / 5);
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.gallery-container .thumbnail:nth-child(5n+5) {
  margin-right: 0;
}
@media (max-width: 850px) {
  .gallery-container .thumbnail {
    width: calc(100% / 2 - (2 - 1) * 20px / 2);
  }
  .gallery-container .thumbnail:nth-child(2n+2) {
    margin-right: 0;
  }
  .gallery-container .thumbnail:nth-child(5n+5) {
    margin-right: 20px;
  }
}
.gallery-container .thumbnail a {
  display: block;
  position: relative;
  background-color: #fff;
  border: 1px solid #bbb;
}
.gallery-container .thumbnail a:hover {
  border-color: #bbb;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .gallery-container .thumbnail a {
    padding-top: 100%;
  }
}
.gallery-container .thumbnail img {
  width: 100%;
  height: 100%;
}
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .gallery-container .thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

main .teasers-big {
  width: calc(100% + 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transform: translateX(-20px);
      -ms-transform: translateX(-20px);
          transform: translateX(-20px);
}
@media (max-width: 1000px) {
  main .teasers-big {
    width: 100%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
main .teaser-big-link, main .teaser-big-nolink {
  width: 33.33%;
  color: #fff;
  text-decoration: none;
}
@media (max-width: 1000px) {
  main .teaser-big-link, main .teaser-big-nolink {
    width: 45%;
  }
}
@media (max-width: 700px) {
  main .teaser-big-link, main .teaser-big-nolink {
    width: 100%;
  }
}
main .teaser-big-link {
  cursor: pointer;
}
main .teaser-big-link:hover {
  opacity: 0.8;
  text-decoration: none;
}
main .teaser-big-nolink a {
  color: #fff;
  text-decoration: none;
}
main .teaser-big-nolink a:hover {
  text-decoration: underline;
}
main .teaser-big {
  position: relative;
  padding: 160px 30px 20px 30px;
  margin-top: 160px;
  mix-blend-mode: multiply;
}
@media (max-width: 700px) {
  main .teaser-big {
    margin-top: 120px;
  }
}
main .nopicture {
  padding-top: 40px;
  margin-top: 70px;
}
@media (max-width: 700px) {
  main .nopicture {
    margin-top: 30px;
  }
}
main .mask1 img.mask, main .mask3 img.mask, main .mask4 img.mask, main .mask6 img.mask {
  position: absolute;
  top: -100px;
  left: calc(50% - 120px);
  width: 240px;
  height: 220px;
  -webkit-mask: url(../img/mask1.svg);
          mask: url(../img/mask1.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
main .mask2 img.mask, main .mask5 img.mask {
  position: absolute;
  top: -100px;
  left: calc(50% - 114px);
  width: 228px;
  height: 220px;
  -webkit-mask: url(../img/mask2.svg);
          mask: url(../img/mask2.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}
main .big1 {
  -webkit-transform: translateX(-6px) translateY(-30px);
      -ms-transform: translateX(-6px) translateY(-30px);
          transform: translateX(-6px) translateY(-30px);
}
main .big2 {
  -webkit-transform: translateX(-26px);
      -ms-transform: translateX(-26px);
          transform: translateX(-26px);
}
main .big3 {
  -webkit-transform: translateY(-46px);
      -ms-transform: translateY(-46px);
          transform: translateY(-46px);
}
main .big4 {
  -webkit-transform: translateX(26px) translateY(-20px);
      -ms-transform: translateX(26px) translateY(-20px);
          transform: translateX(26px) translateY(-20px);
}
main .big5 {
  -webkit-transform: translateX(40px);
      -ms-transform: translateX(40px);
          transform: translateX(40px);
}
main .big6 {
  -webkit-transform: translateX(20px) translateY(-60px);
      -ms-transform: translateX(20px) translateY(-60px);
          transform: translateX(20px) translateY(-60px);
}
main .dep.big1 {
  -webkit-animation: pendel 5s infinite alternate linear;
          animation: pendel 5s infinite alternate linear;
}
main .dep.big2 {
  -webkit-animation: pendel2 7s infinite alternate linear;
          animation: pendel2 7s infinite alternate linear;
}
main .dep.big3 {
  -webkit-animation: pendel3 4s infinite alternate linear;
          animation: pendel3 4s infinite alternate linear;
}
main .dep.big4 {
  -webkit-animation: pendel4 8s infinite alternate linear;
          animation: pendel4 8s infinite alternate linear;
}
main .dep.big5 {
  -webkit-animation: pendel5 6s infinite alternate linear;
          animation: pendel5 6s infinite alternate linear;
}
main .dep.big6 {
  -webkit-animation: pendel6 9s infinite alternate linear;
          animation: pendel6 9s infinite alternate linear;
}
@media (max-width: 700px) {
  main .big1, main .big2, main .big3, main .big4, main .big5, main .big6 {
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
@media (max-width: 700px) {
  main .dep.big1, main .dep.big2, main .dep.big3, main .dep.big4, main .dep.big5, main .dep.big6 {
    -webkit-animation: none;
            animation: none;
  }
}

@-webkit-keyframes pendel {
  from {
    -webkit-transform: translateX(-6px) translateY(-30px);
            transform: translateX(-6px) translateY(-30px);
  }
  to {
    -webkit-transform: translateX(10px) translateY(-14px);
            transform: translateX(10px) translateY(-14px);
  }
}

@keyframes pendel {
  from {
    -webkit-transform: translateX(-6px) translateY(-30px);
            transform: translateX(-6px) translateY(-30px);
  }
  to {
    -webkit-transform: translateX(10px) translateY(-14px);
            transform: translateX(10px) translateY(-14px);
  }
}
@-webkit-keyframes pendel2 {
  from {
    -webkit-transform: translateX(-26px);
            transform: translateX(-26px);
  }
  to {
    -webkit-transform: translateX(20px) translateY(-16px);
            transform: translateX(20px) translateY(-16px);
  }
}
@keyframes pendel2 {
  from {
    -webkit-transform: translateX(-26px);
            transform: translateX(-26px);
  }
  to {
    -webkit-transform: translateX(20px) translateY(-16px);
            transform: translateX(20px) translateY(-16px);
  }
}
@-webkit-keyframes pendel3 {
  from {
    -webkit-transform: translateY(-46px) translateX(-20px);
            transform: translateY(-46px) translateX(-20px);
  }
  to {
    -webkit-transform: translateX(20px) translateY(-36px);
            transform: translateX(20px) translateY(-36px);
  }
}
@keyframes pendel3 {
  from {
    -webkit-transform: translateY(-46px) translateX(-20px);
            transform: translateY(-46px) translateX(-20px);
  }
  to {
    -webkit-transform: translateX(20px) translateY(-36px);
            transform: translateX(20px) translateY(-36px);
  }
}
@-webkit-keyframes pendel4 {
  from {
    -webkit-transform: translateX(36px) translateY(-20px);
            transform: translateX(36px) translateY(-20px);
  }
  to {
    -webkit-transform: translateX(6px) translateY(-4px);
            transform: translateX(6px) translateY(-4px);
  }
}
@keyframes pendel4 {
  from {
    -webkit-transform: translateX(36px) translateY(-20px);
            transform: translateX(36px) translateY(-20px);
  }
  to {
    -webkit-transform: translateX(6px) translateY(-4px);
            transform: translateX(6px) translateY(-4px);
  }
}
@-webkit-keyframes pendel5 {
  from {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  to {
    -webkit-transform: translateX(10px) translateY(-14px);
            transform: translateX(10px) translateY(-14px);
  }
}
@keyframes pendel5 {
  from {
    -webkit-transform: translateX(40px);
            transform: translateX(40px);
  }
  to {
    -webkit-transform: translateX(10px) translateY(-14px);
            transform: translateX(10px) translateY(-14px);
  }
}
@-webkit-keyframes pendel6 {
  from {
    -webkit-transform: translateX(20px) translateY(-60px);
            transform: translateX(20px) translateY(-60px);
  }
  to {
    -webkit-transform: translateX(10px) translateY(-20px);
            transform: translateX(10px) translateY(-20px);
  }
}
@keyframes pendel6 {
  from {
    -webkit-transform: translateX(20px) translateY(-60px);
            transform: translateX(20px) translateY(-60px);
  }
  to {
    -webkit-transform: translateX(10px) translateY(-20px);
            transform: translateX(10px) translateY(-20px);
  }
}
.invis {
  visibility: hidden;
}

body {
  /**
  	festes Seitenverhaeltnis bei responsiven Containern : individuelle Einstellung
  	globale Einstellung in settings
      */
}
body.startseite .map-container .parent {
  padding-bottom: 21.875%;
}
@media (max-width: 900px) {
  body.startseite .map-container .parent {
    padding-bottom: 0;
    height: 200px;
  }
}
@media (max-width: 900px) {
  body.startseite .map-container .child {
    height: 200px;
  }
}
body.contentseite .map-container .parent {
  padding-bottom: 50%;
}
@media (max-width: 500px) {
  body.contentseite .map-container .parent {
    padding-bottom: 0;
    height: 200px;
  }
}
@media (max-width: 500px) {
  body.contentseite .map-container .child {
    height: 200px;
  }
}

.accordion {
  border-bottom: 2px solid #fff;
  -webkit-transition: none;
  transition: none;
}
.accordion label {
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  position: relative;
  background-color: #527E92;
  color: #fff;
  padding: 10px 10px 10px 30px;
  background-image: url(../img/arrow-right-white.svg);
  background-repeat: no-repeat;
  background-position: top 10px left 10px;
  opacity: 0.6;
}
@media (max-width: 850px) {
  .accordion label {
    background-position: top 6px left 10px;
  }
}
.accordion label:hover {
  opacity: 1;
}
.accordion .content {
  display: none;
}
.accordion input:checked ~ label {
  opacity: 1;
  background-image: url(../img/arrow-down-white.svg);
  background-position: top 13px left 8px;
}
@media (max-width: 850px) {
  .accordion input:checked ~ label {
    background-position: top 9px left 8px;
  }
}
.accordion input:checked ~ .content {
  display: block;
  padding: 10px 0 20px 10px;
  -webkit-box-shadow: inset 1px 0 0 0 #527E92;
          box-shadow: inset 1px 0 0 0 #527E92;
  margin-bottom: 3px;
}

.blendout .message {
  top: 280px;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: #A0B972;
  z-index: 200;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 60px 0;
  opacity: 1;
  position: fixed;
}
@media (max-width: 1000px) {
  .blendout .message {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    top: 0;
    width: 100vw;
    position: fixed;
  }
  .blendout .message ol {
    padding-top: 20px;
  }
}
.blendout .dark {
  z-index: 100;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fff;
  opacity: 0.94;
}
.blendout p, .blendout ul, .blendout ol {
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  color: #fff;
  padding: 0 40px;
  margin-top: 0;
}
.blendout ol li::before {
  color: #A0B972;
  background: #fff;
}
.blendout label {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-left: 40px;
  margin-right: 40px;
  z-index: 101;
  padding: 20px 60px 20px 80px;
  background-color: #fff;
  color: #527E92;
  cursor: pointer;
  background-image: url(../img/icon-haken-blue.svg);
  background-repeat: no-repeat;
  background-position: top 22px left 50px;
  background-size: 20px;
}
@media (max-width: 1000px) {
  .blendout label {
    padding-right: 20px;
    padding-left: 40px;
    background-position: top 22px left 10px;
  }
}
@media (max-width: 600px) {
  .blendout label {
    margin-top: 40px;
  }
}
.blendout label:hover {
  opacity: 0.8;
}
.blendout input:checked ~ .message {
  display: none;
}
.blendout input:checked ~ .dark {
  display: none;
}

button, input, optgroup, select, textarea {
  font-family: "regular", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
}

input:focus {
  outline: none;
}

select, option, input#projsearch {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  padding: 9px 35px 7px 10px;
  margin-bottom: 16px;
  margin-left: 20px;
  position: relative;
  background-color: #F3F3F3;
  color: #111;
  background-repeat: no-repeat;
  line-height: 1.4;
}

select {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  background-size: 30px;
  background-position: center right 6px;
  background-image: url(../img/arrow-dropdown.svg);
}
select[disabled] {
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}

select.year {
  width: calc(50% - 20px);
}

input#projsearch {
  width: calc(100% - 57px);
  padding-right: 0;
}

input.search-prj {
  margin-bottom: 16px;
  width: 37px;
  padding: 0;
  background-size: 20px;
  background-position: center;
  background-image: url(../img/icon-search-grey.svg);
}

.ui-widget-content p {
  display: none;
}

.department-radio {
  width: 20px;
  height: 19px;
  display: inline-block;
  position: absolute;
  top: 2px;
  left: 0;
  background-color: #527E92;
  -webkit-mask: url(../img/mask-select.svg);
          mask: url(../img/mask-select.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.download-radio {
  width: 24px;
  height: 23px;
  display: inline-block;
  position: relative;
  left: 4px;
  top: 6px;
  background-color: #527E92;
  -webkit-mask: url(../img/mask-select.svg);
          mask: url(../img/mask-select.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
}

.all-dep-radio {
  background-color: #111;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

p input[type=checkbox],
p input[type=radio], .white-box input[type=checkbox],
.white-box input[type=radio] {
  display: none;
}

.department-label {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-top: 10px;
}

.download-label {
  display: block;
  position: relative;
}

.department-label:hover {
  cursor: pointer;
}
.department-label:hover span {
  background-position: center;
  background-image: url(../img/icon-haken.svg);
  background-size: 10px;
  background-repeat: no-repeat;
}

input[type=checkbox]:checked + span,
input[type=radio]:checked + span {
  background-position: center;
  background-image: url(../img/icon-haken.svg);
  background-size: 14px;
  background-repeat: no-repeat;
}

table, thead, tbody, tfoot, tr, th, td {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  vertical-align: inherit;
  text-align: left;
}

@media (max-width: 500px) {
  table.downl-table2 {
    display: block;
  }
  table.downl-table2 thead, table.downl-table2 tbody, table.downl-table2 tfoot, table.downl-table2 tr, table.downl-table2 th, table.downl-table2 td {
    display: block;
  }
}

td.center, th.center {
  text-align: center;
}

table {
  width: 100%;
  margin-top: 40px;
  line-height: 1.5;
  font-weight: 300;
  border-collapse: collapse;
}
table {
  font-size: 16px;
}
table thead {
  background-color: #A0B972;
  color: #fff;
  border-bottom: 2px solid #fff;
  line-height: 1.2;
}
table thead + tbody {
  border-top: none;
}
table tbody tr {
  background-color: #F3F3F3;
  border-bottom: 1px solid #fff;
}
table tbody tr:hover {
  background-color: rgba(112, 112, 112, 0.85);
}
table tbody tr.tr-invis {
  background-color: #fff;
  -webkit-box-shadow: inset -5px 0px 0px 0px #527E92, inset 5px 0px 0px 0px #527E92;
          box-shadow: inset -5px 0px 0px 0px #527E92, inset 5px 0px 0px 0px #527E92;
}
table tbody tr.click-row {
  cursor: pointer;
}
table td {
  position: relative;
  padding: 6px 12px;
}
table th {
  padding: 2px 12px;
  vertical-align: middle;
}
table .iconandtext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

table.proj-table thead {
  background-color: #cab99a;
}

table.downl-table thead {
  background-color: #527E92;
}

table.downl-table2 thead {
  background-color: #527E92;
}
table.downl-table2 tbody tr:hover {
  background-color: #F3F3F3;
}

@media (max-width: 950px) {
  .opt1 {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .opt1a {
    display: none !important;
  }
}

@media (max-width: 600px) {
  .opt2 {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .opt3 {
    display: none !important;
  }
}

.download-form {
  margin-top: 60px;
  background-color: #A0B972;
  padding: 40px;
}
@media (max-width: 500px) {
  .download-form {
    padding: 10px;
  }
}

.columns-formheader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px 40px 20px;
}
.columns-formheader .columns-col1 {
  -ms-flex-preferred-size: 27%;
      flex-basis: 27%;
  padding-right: 20px;
}
.columns-formheader .columns-col {
  -ms-flex-preferred-size: 73%;
      flex-basis: 73%;
}
@media (max-width: 800px) {
  .columns-formheader {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .columns-formheader .columns-col1, .columns-formheader .columns-col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
  .columns-formheader .columns-col {
    padding-top: 20px;
  }
}

.white-box-form {
  padding: 20px 20px 0 20px;
  background-color: #fff;
}

footer {
  background-color: #527E92;
  color: #fff;
  margin-top: 160px;
  padding: 40px 0 20px 0;
}
@media (max-width: 1000px) {
  footer {
    margin-top: 110px;
  }
}
footer a {
  color: #fff;
  max-width: 200px;
}
footer a.active, footer a:active {
  color: #bbb;
}
footer a.level2 {
  padding-left: 20px;
}
footer .logo {
  position: absolute;
  left: calc(50% - 75px);
  top: -60px;
}
footer .logo:hover {
  -webkit-animation: orbit 1s;
          animation: orbit 1s;
}
footer .logo img {
  width: 150px;
  height: auto;
}
footer .icon-language {
  position: absolute;
  bottom: 16px;
  left: calc(50% - 50px);
  width: 100px;
  height: 60px;
  text-align: center;
  padding: 5px 0 5px 0;
  margin: 0;
  z-index: 10;
}
@media (max-width: 950px) {
  footer .icon-language {
    bottom: 56px;
  }
}
footer .icon-language img {
  height: 30px;
}
footer .icon-language a.active {
  color: #bbb;
}
footer .subnote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 400px;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-top: 1px solid #dfdfdf;
  padding: 4px 0 0 0;
  margin-top: 20px;
}
footer .subnote a {
  text-align: center;
}
footer .dot {
  content: "";
  margin: 10px 10px 8px 10px;
  width: 2px;
  height: 2px;
  background-color: #fff;
  border-radius: 100px;
}
@media (max-width: 1000px) {
  footer .columns {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  footer .columns .col {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    margin: 0;
    margin-bottom: calc(2vw + 2vh);
    padding-left: 35px;
  }
  footer .columns .col:nth-child(2), footer .columns .col:nth-child(5) {
    padding-left: 70px;
  }
  footer .columns .collogospace {
    display: none;
  }
}
@media (max-width: 510px) {
  footer .columns .col {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin: 0;
    margin-top: calc(2vw + 2vh);
  }
  footer .columns .col:first-child {
    margin-top: 40px;
  }
  footer .columns .col:last-child {
    margin-bottom: 50px;
  }
  footer .columns .col:nth-child(2), footer .columns .col:nth-child(5) {
    padding-left: 35px;
  }
}

/**
* Cookie Consent Fonts
***************************************************************************************
*/
@font-face {
  font-family: "karlaregular";
  src: url("/site/templates/fonts/cookie-consent/karla-regular.woff2") format("woff2"), url("/site/templates/fonts/cookie-consent/karla-regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "karlabold";
  src: url("/site/templates/fonts/cookie-consent/karla-bold.woff2") format("woff2"), url("/site/templates/fonts/cookie-consent/karla-bold.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
/**
* Cookie Consent im Footer
***************************************************************************************
*/
.cookie-consent-typ9_open {
  cursor: pointer;
}

/**
* Cookie Consent Settings
***************************************************************************************
*/
/**
* Cookie Consent Overlay
***************************************************************************************
*/
#cookie-consent-typ9_wrapper {
  background-color: rgba(0, 0, 0, 0.3);
}
#cookie-consent-typ9_wrapper .well {
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.3));
  display: none;
  margin: 1em;
  max-width: 600px;
}
#cookie-consent-typ9_wrapper .well {
  min-height: 20px;
  padding: 35px;
  margin-bottom: 20px;
  background-color: #f5f5f5;
  border: 1px solid #e3e3e3;
  border-radius: 10px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07);
}
@media (max-width: 450px) {
  #cookie-consent-typ9_wrapper .well {
    padding: 25px;
  }
}
@media (max-width: 380px) {
  #cookie-consent-typ9_wrapper .well {
    padding: 20px;
  }
}
#cookie-consent-typ9_wrapper .well .popup_close {
  position: absolute;
  top: 0;
  right: 6px;
  background: none;
  border: 0;
  font-size: 50px;
  padding: 0 10px;
  color: #676767;
}

/**
* Cookie Consent Content
***************************************************************************************
*/
#cookie-consent-accordion {
  color: #8a8a8a;
}

.cookie-consent-logo {
  width: calc(100% - 60px);
  margin-left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}
.cookie-consent-logo img {
  width: 70px;
}
@media (max-width: 450px) {
  .cookie-consent-logo img {
    width: 60px;
  }
}

.cookie-consent-headline {
  font-family: "karlabold";
  text-transform: uppercase;
  width: 100%;
  margin-bottom: 4px;
  margin-top: 30px;
  color: #676767;
  font-size: 26px;
  line-height: 28px;
}
@media (max-width: 500px) {
  .cookie-consent-headline {
    font-size: 24px;
    line-height: 26px;
  }
}
@media (max-width: 470px) {
  .cookie-consent-headline {
    font-size: 19px;
    line-height: 21px;
  }
}

.cookie-consent-subheadline {
  font-family: "karlaregular";
  width: 100%;
  margin-bottom: 20px;
  color: #4c4c4c;
  font-size: 18px;
  line-height: 20px;
}
@media (max-width: 500px) {
  .cookie-consent-subheadline {
    font-size: 17px;
    line-height: 19px;
  }
}

.cookie-consent-description {
  font-family: "karlaregular";
  font-size: 16px;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='30px' height='30px' viewBox='0 0 24 24' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Artboard' transform='translate(-415.000000, -238.000000)' fill='%23676767'%3E%3Cpath d='M427,238 C425.333325,238 423.776049,238.317707 422.328125,238.95312 C420.880201,239.588547 419.60938,240.447907 418.515625,241.531253 C417.421869,242.614587 416.562503,243.885413 415.9375,245.343747 C415.312497,246.802093 415,248.35416 415,250 C415,251.666675 415.312497,253.22916 415.9375,254.6875 C416.562503,256.14584 417.421869,257.416661 418.515625,258.5 C419.60938,259.583339 420.880201,260.437497 422.328125,261.0625 C423.776049,261.687503 425.333325,262 427,262 C428.66668,262 430.223947,261.687503 431.67188,261.0625 C433.1198,260.437497 434.390613,259.583339 435.484373,258.5 C436.578133,257.416661 437.437493,256.14584 438.062507,254.6875 C438.687507,253.22916 439,251.666675 439,250 C439,249.666665 438.984373,249.333335 438.95312,249 C438.92188,248.666667 438.875,248.333333 438.812507,248 C438.645827,247.666667 438.411453,247.47396 438.109373,247.42188 C437.807293,247.369787 437.656253,247.343747 437.656253,247.343747 L435,247.343747 L435,246 C435,245.333333 434.77604,244.94792 434.32812,244.843747 C433.8802,244.739587 433.656253,244.687493 433.656253,244.687493 L431,244.687493 L431,243.343747 C431,242.67708 430.77604,242.286453 430.32812,242.17188 C429.8802,242.057293 429.656253,242 429.656253,242 L428.343747,242 L428.343747,239.343747 C428.343747,238.67708 428.119793,238.286453 427.671875,238.17188 C427.223956,238.057293 427,238 427,238 Z M423.5,241 C424.203128,241 424.79557,241.2474 425.277343,241.742183 C425.759117,242.236983 426,242.822917 426,243.5 C426,244.203133 425.759117,244.795567 425.277343,245.27735 C424.79557,245.759117 424.203128,246 423.5,246 C422.822912,246 422.23698,245.759117 421.742187,245.27735 C421.247393,244.795567 421,244.203133 421,243.5 C421,242.822917 421.247393,242.236983 421.742187,241.742183 C422.23698,241.2474 422.822912,241 423.5,241 Z M418.5,247 C419.203128,247 419.79557,247.240883 420.277343,247.722666 C420.759117,248.204433 421,248.796874 421,249.5 C421,250.203131 420.759117,250.795572 420.277343,251.277345 C419.79557,251.759118 419.203128,252 418.5,252 C417.822912,252 417.23698,251.759118 416.742187,251.277345 C416.247393,250.795572 416,250.203131 416,249.5 C416,248.796874 416.247393,248.204433 416.742187,247.722666 C417.23698,247.240883 417.822912,247 418.5,247 Z M426.5,248 C427.17709,248 427.763023,248.240883 428.257816,248.722657 C428.75261,249.20443 429,249.796872 429,250.5 C429,251.177087 428.75261,251.763018 428.257816,252.257812 C427.763023,252.752607 427.17709,253 426.5,253 C425.796873,253 425.204431,252.752607 424.722657,252.257812 C424.240883,251.763018 424,251.177087 424,250.5 C424,249.796872 424.240883,249.20443 424.722657,248.722657 C425.204431,248.240883 425.796873,248 426.5,248 Z M433.5,252 C434.203133,252 434.795567,252.240883 435.27735,252.722657 C435.759117,253.20443 436,253.796872 436,254.5 C436,255.20313 435.759117,255.795572 435.27735,256.277345 C434.795567,256.759118 434.203133,257 433.5,257 L433.5,257 C432.796867,257 432.204433,256.759118 431.72265,256.277345 C431.240883,255.795572 431,255.20313 431,254.5 L431,254.5 C431,253.796872 431.240883,253.20443 431.72265,252.722657 C432.204433,252.240883 432.796867,252 433.5,252 Z M426.5,255 C427.203128,255 427.79557,255.240883 428.277343,255.722657 C428.759117,256.20443 429,256.796872 429,257.5 C429,258.20313 428.759117,258.795572 428.277343,259.277345 C427.79557,259.759118 427.203128,260 426.5,260 C425.822912,260 425.23698,259.759118 424.742187,259.277345 C424.247393,258.795572 424,258.20313 424,257.5 C424,256.796872 424.247393,256.20443 424.742187,255.722657 C425.23698,255.240883 425.822912,255 426.5,255 Z' id='Fill-1' transform='translate(427.000000, 250.000000) rotate(180.000000) translate(-427.000000, -250.000000) '%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 2px 5px;
  padding-left: 56px;
  margin-bottom: 25px;
  color: #8a8a8a;
  line-height: 17px;
}

.cookie-consent-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
  margin-bottom: 40px;
}
@media (max-width: 550px) {
  .cookie-consent-buttons {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.cookie-consent-buttons .cookie-consent-btn-left, .cookie-consent-buttons .cookie-consent-btn-right {
  font-family: "karlaregular";
  font-size: 16px;
  width: 45%;
  text-align: center;
  padding: 10px;
  border-radius: 5px;
}
@media (max-width: 550px) {
  .cookie-consent-buttons .cookie-consent-btn-left, .cookie-consent-buttons .cookie-consent-btn-right {
    width: 100%;
  }
}
.cookie-consent-buttons .cookie-consent-btn-left {
  cursor: pointer;
  color: #ffffff;
  background-color: #00914d;
}
@media (max-width: 550px) {
  .cookie-consent-buttons .cookie-consent-btn-left {
    margin-bottom: 10px;
  }
}
.cookie-consent-buttons .cookie-consent-btn-left label {
  cursor: pointer;
}
.cookie-consent-buttons .cookie-consent-btn-right {
  cursor: pointer;
  background-color: #dddfdd;
  color: #676767;
}
.cookie-consent-buttons .cookie-consent-btn-right:hover {
  background-color: rgb(199.9818181818, 203.2181818182, 199.9818181818);
}

.cookie-consent-trigger {
  cursor: pointer;
}

.cookie-consent-trigger_active {
  color: #333;
}
.cookie-consent-trigger_active svg {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.cookie-consent-trigger_active svg #Artboard {
  fill: #d7d7d7;
}

.toggle_container {
  font-family: "karlaregular";
  font-size: 16px;
  width: 100%;
  display: inline-block;
  margin-top: -20px;
  margin-bottom: 30px;
}

.cookie-consent-toggle-container-inner {
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 2px solid #00914d;
  border-bottom: 2px solid #00914d;
  margin-bottom: 15px;
  line-height: 17px;
}
.cookie-consent-toggle-container-inner .cookie-consent-info span {
  display: inline-block;
  margin-top: 15px;
  margin-bottom: 10px;
  font-family: "karlabold";
  text-transform: uppercase;
  color: #4c4c4c;
}
.cookie-consent-toggle-container-inner .cookie-consent-info ul li {
  list-style: none;
  position: relative;
  display: block;
  float: none;
  margin-top: 0;
  margin-bottom: 5px;
  padding-left: 12px;
  color: #4c4c4c;
}
.cookie-consent-toggle-container-inner .cookie-consent-info ul li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 5px;
  height: 5px;
  background-color: #4c4c4c;
  border-radius: 100px;
}

.cookie-consent-label {
  width: calc(100% - 40px);
  float: left;
  margin-bottom: 30px;
}

.cookie-consent-trigger {
  width: 35px;
  height: 40px;
  float: left;
}
.cookie-consent-trigger img {
  margin-left: 8px;
}

.cookie-consent-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}
.cookie-consent-title label {
  font-family: "karlabold";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-left: 15px;
  font-size: 18px;
  line-height: 17px;
}
@media (max-width: 450px) {
  .cookie-consent-title label {
    font-size: 17px;
  }
}
.cookie-consent-title label span {
  display: inline-block;
  padding-left: 25px;
  width: calc(100% - 25px);
  margin-top: -2px;
}

.cookie-consent-text {
  font-family: "karlaregular";
  font-size: 16px;
  width: 100%;
  padding-left: 60px;
  line-height: 17px;
}

.cookie-consent-footer {
  height: 20px;
  width: 100%;
  font-family: "karlaregular";
  font-size: 16px;
  color: #8a8a8a;
  margin-top: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}
.cookie-consent-footer a {
  color: #8a8a8a;
}
.cookie-consent-footer div {
  height: 20px;
  border-right: 1px solid #8a8a8a;
  margin-right: 3px;
  margin-left: 7px;
}

/**
* Config checkbox
***************************************************************************************
*/
.check {
  cursor: pointer;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.check.necessary {
  cursor: default;
}

.check:before {
  content: "";
  position: absolute;
  top: -14px;
  left: 1px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(34, 50, 84, 0.05);
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.check svg {
  position: relative;
  z-index: 1;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: #8a8a8a;
  stroke-width: 1.5;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.check svg path {
  stroke-dasharray: 60;
  stroke-dashoffset: 0;
}

.check svg polyline {
  stroke-dasharray: 22;
  stroke-dashoffset: 66;
}

.check:hover:before {
  opacity: 1;
  background-color: #dddfdd;
}
.check:hover:before.necessary {
  background: rgba(34, 50, 84, 0.05);
}

.check:hover svg {
  stroke: #00a860;
}

#gdpr-cookietype-necessary:checked + .check svg {
  stroke: #00a860;
}

#gdpr-cookietype-necessary:checked + .check svg path {
  stroke-dashoffset: 60;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#gdpr-cookietype-necessary:checked + .check svg polyline {
  stroke-dashoffset: 42;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

#gdpr-cookietype-analytics:checked + .check svg {
  stroke: #00a860;
}

#gdpr-cookietype-analytics:checked + .check svg path {
  stroke-dashoffset: 60;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#gdpr-cookietype-analytics:checked + .check svg polyline {
  stroke-dashoffset: 42;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

#gdpr-cookietype-functionality:checked + .check svg {
  stroke: #00a860;
}

#gdpr-cookietype-functionality:checked + .check svg path {
  stroke-dashoffset: 60;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#gdpr-cookietype-functionality:checked + .check svg polyline {
  stroke-dashoffset: 42;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}

/*************************************************************************************
Hover Effect dotted Underline
*/
.cookie-consent-dotted-effect {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.cookie-consent-dotted-effect::before {
  position: relative;
  top: 13px;
  left: 50%;
  color: transparent;
  content: "·";
  text-shadow: 0 0 transparent;
  -webkit-transition: text-shadow 0.3s, color 0.3s;
  transition: text-shadow 0.3s, color 0.3s;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  pointer-events: none;
}

.cookie-consent-dotted-effect:hover::before,
.cookie-consent-dotted-effect:focus::before {
  color: #8a8a8a;
  text-shadow: 10px 0 #8a8a8a, -10px 0 #8a8a8a;
}

.cookie-consent-dotted-effect:hover,
.cookie-consent-dotted-effect:focus {
  color: #8a8a8a;
}

/*************************************************************************************
Youtube Ersatz-Container wenn Zustimmung nicht erteilt
*/
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.embed-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.embed-button-container {
  cursor: pointer;
  display: inline;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

.MedienContainerOuter {
  width: 50%;
  display: inline-block;
}

.embed-button-container .mapButtom {
  width: 60px;
}
.embed-button-container .mapButtom .mapPointerVerlauf .top-color {
  stop-color: rgba(229, 45, 39, 0.85);
}
.embed-button-container .mapButtom .mapPointerVerlauf .bottom-color {
  stop-color: rgba(142, 42, 37, 0.85);
}
.embed-button-container .YouTubePlayButtom {
  width: 70px;
}
.embed-button-container .YouTubePlayButtom .youtubeButtomVerlauf .top-color {
  stop-color: rgba(229, 45, 39, 0.85);
}
.embed-button-container .YouTubePlayButtom .youtubeButtomVerlauf .bottom-color {
  stop-color: rgba(142, 42, 37, 0.85);
}

.embed-button-container:hover .mapButtom .mapPointerVerlauf .top-color {
  stop-color: #E52D27;
}
.embed-button-container:hover .mapButtom .mapPointerVerlauf .bottom-color {
  stop-color: #b72c26;
}
.embed-button-container:hover .YouTubePlayButtom .youtubeButtomVerlauf .top-color {
  stop-color: #E52D27;
}
.embed-button-container:hover .YouTubePlayButtom .youtubeButtomVerlauf .bottom-color {
  stop-color: #b72c26;
}

/*************************************************************************************
Youtube Ersatz-Container wenn Zustimmung nicht erteilt
*/
iframe[src*="http://www.youtube.com/embed/"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*************************************************************************************
Warnungs wenn keine Cookiegesetzt ist
*/
.warning {
  display: inline-block;
  position: relative;
  padding: 3px 2px 2px 2px;
  -webkit-transition: all 250ms;
  transition: all 250ms;
  z-index: 1000;
}
.warning:before {
  content: "";
  z-index: -1;
  width: calc(100% - 30px);
  height: 100%;
  background: #f5f5f7;
  bottom: 0;
  left: 20px;
  position: absolute;
  -webkit-transition: height 250ms;
  transition: height 250ms;
}
.warning:before:hover {
  background: #ddd3d1;
}
.warning:after {
  content: "";
  z-index: -1;
  width: 4px;
  height: 100%;
  background: red;
  bottom: 0;
  right: 10px;
  position: absolute;
  -webkit-transition: height 250ms;
  transition: height 250ms;
}

.warning:hover:before {
  background: #dddfdd;
}

@media (max-width: 1000px) {
  .InputfieldColumnWidth {
    width: 50% !important;
  }
}
@media (max-width: 660px) {
  .InputfieldColumnWidth {
    width: 100% !important;
  }
}

@media (max-width: 1000px) {
  .Inputfield:nth-child(even) .InputfieldContent, .Inputfield:nth-child(even) .InputfieldHeader {
    padding: 0 !important;
  }
}

@media (max-width: 660px) {
  .Inputfield .InputfieldContent, .Inputfield .InputfieldHeader {
    padding: 0 !important;
  }
}

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