@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: flex;
  flex-direction: row;
  justify-content: space-between;
}
.columns > .col {
  flex: 1;
}
.columns.nogrow > .col {
  flex: unset;
}
.columns.nogrow > .col.grow {
  flex-grow: 1;
}
.columns > .col-2 {
  flex-grow: 2;
}
.columns > .col-3 {
  flex-grow: 3;
}
.columns > .col-4 {
  flex-grow: 4;
}
.columns > .col-5 {
  flex-grow: 5;
}
.columns > .col-6 {
  flex-grow: 6;
}
.columns > .col-7 {
  flex-grow: 7;
}
.columns > .col-8 {
  flex-grow: 8;
}
.columns > .col-9 {
  flex-grow: 9;
}
.columns > .col-10 {
  flex-grow: 10;
}
.columns.columns-2 {
  flex-wrap: wrap;
}
.columns.columns-2 > .col {
  flex: unset;
  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 {
  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 {
  flex-wrap: wrap;
}
.columns.columns-3 > .col {
  flex: unset;
  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 {
  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 {
  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 {
  flex-wrap: wrap;
}
.columns.columns-4 > .col {
  flex: unset;
  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 {
  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 {
  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 {
  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 {
  flex-wrap: wrap;
}
.columns.columns-5 > .col {
  flex: unset;
  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 {
  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 {
  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 {
  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 {
  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 {
  flex-wrap: wrap;
}
.columns.columns-6 > .col {
  flex: unset;
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  flex-wrap: wrap;
}
.columns.columns-7 > .col {
  flex: unset;
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  flex-wrap: wrap;
}
.columns.columns-8 > .col {
  flex: unset;
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  flex-wrap: wrap;
}
.columns.columns-9 > .col {
  flex: unset;
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  flex-wrap: wrap;
}
.columns.columns-10 > .col {
  flex: unset;
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  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 {
  flex-basis: calc(100% / 10 * 10 - (1 - 10 / 10) * (2vh + 2vw + 20px));
  max-width: calc(100% / 10 * 10 - (1 - 10 / 10) * (2vh + 2vw + 20px));
}

@font-face {
  font-family: "Skia";
  src: url("../fonts/Skia.woff2") format("woff2"), url("../fonts/Skia.woff") format("woff");
  font-weight: "";
  font-style: "";
}
@font-face {
  font-family: "ZillaSlab-LightItalic";
  src: url("../fonts/ZillaSlab-LightItalic.woff2") format("woff2"), url("../fonts/ZillaSlab-LightItalic.woff") format("woff");
  font-weight: "";
  font-style: "";
}
@font-face {
  font-family: "ZillaSlab-Medium";
  src: url("../fonts/ZillaSlab-Medium.woff2") format("woff2"), url("../fonts/ZillaSlab-Medium.woff") format("woff");
  font-weight: "";
  font-style: "";
}
@font-face {
  font-family: "ZillaSlabRegular";
  src: url("../fonts/ZillaSlabRegular.woff2") format("woff2"), url("../fonts/ZillaSlabRegular.woff") format("woff");
  font-weight: "";
  font-style: "";
}
/* 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 {
  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 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
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 {
  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] {
  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;
}

* {
  box-sizing: inherit;
}
*:before, *:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
  overflow-y: scroll;
  font-family: "Skia", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
  font-weight: 300;
}
html strong {
  text-shadow: 1px 0 0 currentColor;
  letter-spacing: 0.08em;
  font-size: 0.98em;
}

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

header, main, footer {
  width: 100%;
  position: relative;
  overflow: hidden;
  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-weight: bold;
}

a {
  display: inline-block;
  text-decoration: none;
}
a:hover {
  color: #979b77;
}

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(1400px + 6vw);
  padding-left: 3vw;
  padding-right: 3vw;
}
@media (max-width: 600px) {
  .wrapper {
    width: calc(1400px + 10vw);
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

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

.clear::after {
  clear: both;
}

.protected-address {
  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;
}
/**
  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;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-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);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-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 > * {
  transition: none;
}

.pswp {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  z-index: 2147483646;
  -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;
  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: 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: 2147483648;
  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: 2147483649;
  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: 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: 2147483647;
}

/* 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: normal;
  margin-top: -3.2px;
  margin-bottom: -3.2px;
  margin: 0;
  color: #5F4839;
}
body {
  font-size: 14px;
}
@media (min-width: 400px) {
  body {
    font-size: calc(14px + 2 * (100vw - 400px) / 1000);
  }
}
@media (min-width: 1400px) {
  body {
    font-size: 16px;
  }
}

h1, h2 {
  font-family: "ZillaSlab-LightItalic", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
  line-height: 1.2;
  font-weight: "lighter ";
  margin-top: -9.6px;
  margin-bottom: -9.6px;
  font-weight: lighter !important;
}
h1, h2 {
  font-size: 34px;
}
@media (min-width: 400px) {
  h1, h2 {
    font-size: calc(34px + 14 * (100vw - 400px) / 1000);
  }
}
@media (min-width: 1400px) {
  h1, h2 {
    font-size: 48px;
  }
}

h2.shopify-headline {
  line-height: 1.2;
  font-weight: "lighter";
  margin-top: -8px;
  margin-bottom: -8px;
  font-weight: lighter !important;
}
h2.shopify-headline {
  font-size: 34px;
}
@media (min-width: 400px) {
  h2.shopify-headline {
    font-size: calc(34px + 6 * (100vw - 400px) / 1000);
  }
}
@media (min-width: 1400px) {
  h2.shopify-headline {
    font-size: 40px;
  }
}

h3 {
  line-height: 1.2;
  font-weight: "";
  margin-top: -4.6px;
  margin-bottom: -4.6px;
  text-transform: uppercase;
}
h3 {
  font-size: 18px;
}
@media (min-width: 400px) {
  h3 {
    font-size: calc(18px + 5 * (100vw - 400px) / 1000);
  }
}
@media (min-width: 1400px) {
  h3 {
    font-size: 23px;
  }
}

.subline {
  text-transform: uppercase;
  font-family: "ZillaSlab-Medium", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.2em;
  font-weight: lighter !important;
}

main p a, main li a {
  text-decoration: underline;
  color: #5F4839;
}
main p a:hover, main li a:hover {
  text-decoration: none;
  color: #979b77;
}

main li {
  padding-left: 1.5rem;
}
main li + li {
  margin-top: 0.6rem;
}

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

.columns {
  display: flex;
  justify-content: space-between;
}

.cursor {
  cursor: pointer;
}

body.startseite main {
  padding-top: 100px;
  padding-bottom: 50px;
}

.text {
  font-size: 0.9em;
  color: #5F4839;
}
.text a {
  color: #5F4839;
  text-decoration: none;
  background-image: linear-gradient(#5F4839, #5F4839);
  background-position: 0% 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  transition: background-size 0.3s;
}
.text a:hover {
  background-image: linear-gradient(#979b77, #979b77);
}
.text h1 {
  text-transform: uppercase;
  color: #5F4839;
}
.text h2 {
  text-transform: uppercase;
  color: #5F4839;
  margin-bottom: 30px;
}
.text p + ul {
  margin-top: 0.8rem;
}
.text ul + p {
  margin-top: 0.8rem;
}
.text ul {
  margin: 0;
  padding: 0;
}
.text ul li {
  padding: 0px 0px 0px 10px;
}
.text ul li::before {
  content: "•";
  background-image: none;
  position: absolute;
  top: 0px;
  margin-left: -10px;
  width: auto;
  height: auto;
}

.einleitung {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  width: 100%;
}
@media (max-width: 800px) {
  .einleitung {
    grid-template-columns: repeat(6, 1fr);
  }
}
.einleitung .einleitung-leer {
  grid-column: 1/2;
  grid-row: 1;
  width: 100%;
}
.einleitung .einleitung-text {
  grid-column: 2/4;
  grid-row: 1;
  width: 75%;
  padding-top: 70px;
}
@media (max-width: 1200px) {
  .einleitung .einleitung-text {
    width: 85%;
  }
}
@media (max-width: 800px) {
  .einleitung .einleitung-text {
    grid-column: 2/7;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .einleitung .einleitung-text {
    grid-column: 1/7;
    width: 100%;
  }
}
@media (max-width: 800px) {
  .einleitung .einleitung-text .content-text {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .einleitung .einleitung-text .content-text {
    width: 100%;
  }
}
.einleitung .einleitung-text .content-h1 {
  display: none !important;
  margin-bottom: 25px;
  width: 100%;
  padding-bottom: 30px;
  text-decoration: none;
  position: relative;
}
@media (max-width: 1200px) {
  .einleitung .einleitung-text .content-h1 {
    display: block !important;
  }
}
.einleitung .einleitung-text .content-h1:before, .einleitung .einleitung-text .content-h1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 75%;
  height: 2px;
  background-color: #979b77;
}
.einleitung .einleitung-text .content-h2 {
  width: 100%;
  margin-bottom: 30px;
}
@media (max-width: 1200px) {
  .einleitung .einleitung-text .content-h2 {
    margin-top: 50px;
  }
}
.einleitung .einleitung-text.ende-text {
  padding-top: 0;
  padding-bottom: 60px;
}

/* ************************************************************************ */
.box-text-content-head {
  border-top: 1px solid #5F4839;
  border-left: 1px solid #5F4839;
  border-right: 1px solid #5F4839;
  height: 45px;
  width: 100%;
}

.box-text-content-body {
  padding-left: 1.2vw;
  padding-right: 1.2vw;
  width: 100%;
}
.box-text-content-body h2 {
  padding-bottom: 15px;
  text-decoration: none;
  position: relative;
  margin-bottom: 22px;
  text-align: center;
}
.box-text-content-body h2:before, .box-text-content-body h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 35%;
  right: 35%;
  height: 2px;
  background-color: #979b77;
}
.box-text-content-body .subline {
  margin-bottom: 15px;
  text-align: center;
  font-family: "ZillaSlab-Medium", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
  letter-spacing: 0.08em;
  font-size: 1.2em;
  font-weight: lighter !important;
}
.box-text-content-body .text-box {
  text-align: center;
}

.box-text-content-foot {
  border-bottom: 1px solid #5F4839;
  border-left: 1px solid #5F4839;
  border-right: 1px solid #5F4839;
  height: 45px;
  width: 100%;
}

/* ************************************************************************ */
.contentH1 {
  width: 100%;
  padding-bottom: 30px;
  text-decoration: none;
  position: relative;
}
.contentH1:before, .contentH1:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 75%;
  height: 2px;
  background-color: #979b77;
}

/* ************************************************************************ */
.abstand-content-bottom {
  margin-bottom: 40px;
}

/* ************************************************************************ */
.bg {
  background-image: url(/site/templates/img/content-bg-streifen.png);
  background-repeat: repeat-x;
  background-position: bottom;
}

.bg-full {
  background-color: #f2f6e5;
}

/* ************************************************************************ */
.start-content-container-wrapper {
  padding-top: 150px;
  padding-bottom: 200px;
}
.start-content-container-wrapper .start-content-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  width: 100%;
}
.start-content-container-wrapper .start-content-container .start-headline-container {
  grid-column: 1/2;
  grid-row: 1;
}
@media (max-width: 900px) {
  .start-content-container-wrapper .start-content-container .start-headline-container {
    grid-column: 1/3;
    margin-bottom: 30px;
  }
}
.start-content-container-wrapper .start-content-container .start-headline-container h1.contentH1 {
  width: 70%;
}
.start-content-container-wrapper .start-content-container .start-text-container {
  grid-column: 2/3;
  grid-row: 2;
}
@media (max-width: 900px) {
  .start-content-container-wrapper .start-content-container .start-text-container {
    grid-column: 1/3;
  }
}

/* ************************************************************************ */
@keyframes swing {
  15% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  30% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  65% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.swing:hover {
  -webkit-animation: swing 1s ease;
  animation: swing 1s ease;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

/* ************************************************************************ */
/* Pulse */
@keyframes pulse {
  25% {
    transform: scale(1.1);
  }
  75% {
    transform: scale(0.9);
  }
}
.pulse-hover:hover {
  animation-name: pulse;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

body {
  /**
    festes Seitenverhaeltnis bei responsiven Containern => individuelle Einstellung
    --------------------------------------------------------------------------------
    globale Einstellung in preset
    --------------------------------------------------------------------------------
   */
}
body.startseite .parent {
  padding-bottom: 43.75%;
}
@media (max-width: 600px) {
  body.startseite .parent {
    padding-bottom: 0;
    height: 250px;
  }
}
body.contentseite .parent {
  padding-bottom: 34.375%;
}
@media (max-width: 600px) {
  body.contentseite .parent {
    padding-bottom: 0;
    height: 200px;
  }
}

/* ******************************************************* */
header {
  position: relative;
  background-color: #f2f6e5;
  background-image: url("/site/templates/img/bg-header.png");
  background-repeat: repeat-x;
  background-position: bottom;
}
@media (max-width: 1200px) {
  header {
    background-image: url("/site/templates/img/bg-header-small.png");
  }
}

/* ******************************************************* */
body.contentseite .header-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  width: 100%;
}
body.contentseite .header-content .logo-container {
  grid-column: 1/2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  align-content: stretch;
}
@media (max-width: 600px) {
  body.contentseite .header-content .logo-container {
    grid-column: 1/4;
    grid-row: 1;
  }
}
body.contentseite .header-content .logo-container .logo {
  margin-top: 8px;
}
body.contentseite .header-content .logo-container .logo img {
  width: 293px;
}
@media (max-width: 1200px) {
  body.contentseite .header-content .logo-container .logo {
    margin-top: 65px;
  }
  body.contentseite .header-content .logo-container .logo img {
    width: 95%;
  }
}
@media (max-width: 800px) {
  body.contentseite .header-content .logo-container .logo {
    margin-top: 20px;
  }
}
@media (max-width: 600px) {
  body.contentseite .header-content .logo-container .logo {
    width: 55%;
  }
}
@media (max-width: 450px) {
  body.contentseite .header-content .logo-container .logo {
    width: 210px;
  }
}
body.contentseite .header-content .bachmaier-hl {
  padding-bottom: 63px;
  display: inline-block;
  text-decoration: none;
  position: relative;
}
@media (max-width: 1200px) {
  body.contentseite .header-content .bachmaier-hl {
    padding-bottom: 38px;
  }
}
@media (max-width: 1200px) {
  body.contentseite .header-content .bachmaier-hl {
    display: none;
  }
}
body.contentseite .header-content .bachmaier-hl:before, body.contentseite .header-content .bachmaier-hl:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 75%;
  height: 2px;
  background-color: #979b77;
}
body.contentseite .header-content .keyvisual-container {
  grid-column: 2/4;
  grid-row: 1;
}
@media (max-width: 600px) {
  body.contentseite .header-content .keyvisual-container {
    grid-column: 1/4;
    grid-row: 2;
  }
}

#keyvisual > * {
  transition: none;
}

#keyvisual {
  position: relative;
  z-index: 5;
}

body.startseite .outerbox, body.startseite .slide {
  height: 900px;
}
@media (max-width: 2000px) {
  body.startseite .outerbox, body.startseite .slide {
    height: 55vw;
  }
}
body.subpage #keyvisual, body.shop #keyvisual {
  margin-top: 150px;
}
@media (max-width: 935px) {
  body.subpage #keyvisual, body.shop #keyvisual {
    margin-top: 10vw;
  }
}
@media (max-width: 600px) {
  body.subpage #keyvisual, body.shop #keyvisual {
    margin-top: 0;
  }
}
body.subpage .outerbox, body.subpage .slide, body.shop .outerbox, body.shop .slide {
  height: 530px;
}
@media (max-width: 1500px) {
  body.subpage .outerbox, body.subpage .slide, body.shop .outerbox, body.shop .slide {
    height: 35vw;
  }
}
@media (max-width: 600px) {
  body.subpage .outerbox, body.subpage .slide, body.shop .outerbox, body.shop .slide {
    height: 50vw;
  }
}

.outerbox, .slide {
  position: relative;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.outerbox:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.innerbox {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.innerbox > img {
  display: inline-block;
  width: 100vw;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: none;
}

.innerbox picture img {
  display: inline-block;
  width: 100vw;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: none;
}

.logocontainer-start {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  align-content: flex-end;
}
.logocontainer-start.abdunkeln {
  background-color: rgba(30, 11, 11, 0.16);
}
.logocontainer-start .logo-start {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
  align-content: flex-end;
}
.logocontainer-start .logo-start img {
  width: 487px;
  height: auto;
  margin-right: 80px;
}
@media (max-width: 1300px) {
  .logocontainer-start .logo-start img {
    width: 450px;
  }
}
@media (max-width: 1200px) {
  .logocontainer-start .logo-start img {
    width: 400px;
  }
}
@media (max-width: 1100px) {
  .logocontainer-start .logo-start img {
    width: 350px;
    margin-right: 50px;
  }
}
@media (max-width: 900px) {
  .logocontainer-start .logo-start img {
    width: 300px;
    margin-right: 40px;
  }
}
@media (max-width: 800px) {
  .logocontainer-start .logo-start img {
    width: 250px;
    margin-right: 40px;
    margin-bottom: -35px;
  }
}
@media (max-width: 450px) {
  .logocontainer-start .logo-start img {
    width: 220px;
    margin-right: 20px;
    margin-bottom: 0px;
  }
}
.logocontainer-start .arrow-down {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 100%;
}
.logocontainer-start .arrow-down img {
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  .logocontainer-start .arrow-down img {
    width: 45px;
  }
}
@media (max-width: 600px) {
  .logocontainer-start .arrow-down img {
    width: 35px;
    margin-bottom: 5px;
  }
}
@media (max-width: 450px) {
  .logocontainer-start .arrow-down img {
    display: none;
  }
}

.item {
  position: relative;
}

.social-navigation {
  position: absolute;
  top: 10px;
  right: 3vw;
  z-index: 200;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 1010px) {
  .social-navigation {
    flex-direction: column;
  }
}
@media (max-width: 935px) {
  .social-navigation {
    flex-direction: row-reverse;
  }
}
.social-navigation section {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  align-content: stretch;
}
.social-navigation .facebook-top {
  width: 49px;
  height: 50px;
  z-index: 150;
  margin-left: 10px;
}
@media (max-width: 1010px) {
  .social-navigation .facebook-top {
    margin-left: 0;
    margin-bottom: 10px;
  }
}
@media (max-width: 935px) {
  .social-navigation .facebook-top {
    margin-left: 10px;
  }
}
.social-navigation .facebook-top:hover {
  background-color: #979b77;
}
.social-navigation .insta-top {
  width: 49px;
  height: 50px;
  z-index: 150;
}
.social-navigation .insta-top:hover {
  background-color: #979b77;
}

.navi {
  position: absolute;
  width: 100%;
  z-index: 100;
  top: 0px;
}

@media (max-width: 935px) {
  nav {
    display: none;
  }
}

/* nav */
.navigation {
  height: 48px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: flex-end;
  align-content: stretch;
}
@media (max-width: 935px) {
  .navigation {
    height: 100%;
    margin-left: 0;
    left: 0;
  }
  .navigation.wrapper {
    position: fixed;
  }
}

.navigation ul {
  margin: 0px 135px 0px 0px;
  padding: 0;
}
@media (max-width: 1010px) {
  .navigation ul {
    margin-right: 75px;
  }
}
.navigation ul.startseite li a {
  color: #fff;
}
.navigation ul.startseite li:not(:last-child):after {
  color: #ffffff;
}
.navigation ul.subpage li a, .navigation ul.shop li a {
  color: #5F4839;
}
.navigation ul.subpage li:not(:last-child):after, .navigation ul.shop li:not(:last-child):after {
  color: #5F4839;
}

.navigation li {
  font-family: "ZillaSlab-Medium", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
  font-weight: lighter !important;
  letter-spacing: 0.08em;
  margin: 0;
  padding: 0;
  list-style: none;
  display: inline-block;
  *display: inline; /* ie7 */
}
.navigation li a {
  font-family: "ZillaSlab-Medium", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
  letter-spacing: 0.08em;
  font-size: 1em;
  font-weight: lighter !important;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
@media (max-width: 900px) {
  .navigation li a {
    font-size: 0.98em;
  }
}
@media (max-width: 830px) {
  .navigation li a {
    font-size: 0.96em;
  }
}
@media (max-width: 935px) {
  .navigation li a {
    font-size: 1.1em;
  }
}
.navigation li a span {
  font-family: "ZillaSlab-Medium", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
  font-size: 1em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .navigation li a span {
    font-size: 0.98em;
  }
}
@media (max-width: 830px) {
  .navigation li a span {
    font-size: 0.96em;
  }
}
@media (max-width: 935px) {
  .navigation li a span {
    font-size: 1.1em;
  }
}
.navigation li a.startseite.active {
  border-bottom: 1px solid #979b77;
}
.navigation li a.startseite:hover {
  border-bottom: 1px solid #fff;
}
.navigation li a.contentseite.active {
  border-bottom: 1px solid #979b77;
}
.navigation li a.contentseite:hover {
  border-bottom: 1px solid #5F4839;
}
.navigation li a .bg-left {
  display: block;
}
.navigation li a .bg-left:hover {
  background-repeat: no-repeat;
  background-position: bottom left;
}
.navigation li a .bg-left.startseite.active {
  background-repeat: no-repeat;
  background-position: bottom left;
  background-image: url("/site/templates/img/nav-hover-bg-gruen.png");
}
.navigation li a .bg-left.startseite:hover {
  background-image: url("/site/templates/img/nav-hover-bg-weiss.png");
}
.navigation li a .bg-left.contentseite.active {
  background-repeat: no-repeat;
  background-position: bottom left;
  background-image: url("/site/templates/img/nav-hover-bg-gruen.png");
}
.navigation li a .bg-left.contentseite:hover {
  background-image: url("/site/templates/img/nav-hover-bg-braun.png");
}
.navigation li a .bg-right {
  display: block;
  padding: 5px 10px;
}
.navigation li a .bg-right:hover {
  background-repeat: no-repeat;
  background-position: bottom right;
}
.navigation li a .bg-right.startseite.active {
  background-repeat: no-repeat;
  background-position: bottom right;
  background-image: url("/site/templates/img/nav-hover-bg-gruen.png");
}
.navigation li a .bg-right.startseite:hover {
  background-image: url("/site/templates/img/nav-hover-bg-weiss.png");
}
.navigation li a .bg-right.contentseite.active {
  background-repeat: no-repeat;
  background-position: bottom right;
  background-image: url("/site/templates/img/nav-hover-bg-gruen.png");
}
.navigation li a .bg-right.contentseite:hover {
  background-image: url("/site/templates/img/nav-hover-bg-braun.png");
}
.navigation li.setContent:not(:last-child):after {
  content: "·";
  position: relative;
  top: 4px;
  left: 2px;
  height: 2px;
  width: 2px;
  margin-right: 6px;
  margin-left: 4px;
  white-space: pre;
}
@media (max-width: 935px) {
  .navigation li.setContent:not(:last-child):after {
    content: "";
  }
}
.navigation li.noContent:not(:last-child):after {
  content: " ";
  position: relative;
  top: 4px;
  left: 2px;
  height: 2px;
  width: 2px;
  margin-right: 6px;
  margin-left: 4px;
  white-space: pre;
}
@media (max-width: 935px) {
  .navigation li.noContent:not(:last-child):after {
    content: "";
  }
}
@media (max-width: 935px) {
  .navigation li {
    display: flex;
    margin-bottom: 10px;
  }
}
.navigation li.onlyMobile {
  display: none;
}

.navigation a {
  text-decoration: none;
  color: #5F4839;
  line-height: 100%;
}
@media (max-width: 935px) {
  .navigation a {
    color: #ffffff;
  }
}

.navigation .active [data-href] {
  cursor: pointer;
}

/* right nav */
.navigation.left ul {
  text-align: left;
}

/* center nav */
.navigation.center ul {
  text-align: center;
}

/******************************************************************************
* neues Mobile Menü
*/
@media (max-width: 935px) {
  nav {
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.9);
    position: fixed;
    z-index: 900;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.3s ease-in-out;
  }
  nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    position: absolute;
    left: 50%;
    top: 170px;
    transition: all 0.3s ease-in-out;
    transform: translateX(-50%);
  }
  nav ul li {
    transform: translateY(50px);
    margin-bottom: 15px !important;
  }
  nav ul li a {
    display: block;
    font-size: 2em;
    text-decoration: none;
    text-align: center;
    color: #ffffff;
    border-bottom: 1px solid transparent;
  }
  nav ul li a.startseite:hover, nav ul li a.contentseite:hover {
    border-bottom: 1px solid #fff !important;
  }
  nav ul li a .bg-left.startseite:hover, nav ul li a .bg-left.contentseite:hover {
    background-image: url("/site/templates/img/nav-hover-bg-weiss.png") !important;
  }
  nav ul li a .bg-right.startseite:hover, nav ul li a .bg-right.contentseite:hover {
    background-image: url("/site/templates/img/nav-hover-bg-weiss.png") !important;
  }
  .toggle-btn {
    display: block;
    position: absolute;
    z-index: 1000;
    right: 130px;
    margin-right: 20px;
    top: 15px;
    cursor: pointer;
  }
}
@media (max-width: 935px) and (max-width: 400px) {
  .toggle-btn {
    right: unset;
    margin-right: unset;
    left: 20px;
  }
}
@media (max-width: 935px) {
  .toggle-btn .bar {
    width: 30px;
    height: 2px;
    margin: 7px auto;
    transition: all 0.3s ease-in-out;
  }
  .toggle-btn.startseite .bar {
    background-color: #fff;
  }
  .toggle-btn.contentseite .bar {
    background-color: #5F4839;
  }
  #nav-toggle:checked ~ label {
    position: fixed;
  }
  #nav-toggle:checked ~ nav {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  #nav-toggle:checked ~ nav ul {
    top: 70px;
  }
  #nav-toggle:checked + label.toggle-btn .bar {
    background-color: #979b77;
  }
  #nav-toggle:checked + label.toggle-btn .bar:nth-child(2) {
    transform: translateX(50px);
    opacity: 0;
  }
  #nav-toggle:checked + label.toggle-btn .bar:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }
  #nav-toggle:checked + label.toggle-btn .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
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;
}

.shoploading {
  background-image: url(../img/loading.gif);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: 200px 200px;
  width: 100%;
  min-height: 500px;
}

.bg-white {
  background-color: #fff;
}

.btn {
  display: inline-block;
  padding: 2px 9px 2px 9px;
  margin-top: 15px;
  background-color: #ffffff;
}
.btn a {
  text-decoration: none;
  color: #ffffff;
  font-family: #979b77;
  font-size: 1.2em;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.btn a:hover {
  color: #979b77;
}

.button-container, .infobox-button {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  margin-top: 40px;
}
.button-container .btn, .infobox-button .btn {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  color: #979b77;
  padding: 3px;
}
@media (max-width: 640px) {
  .button-container .btn, .infobox-button .btn {
    margin-top: 25px;
  }
}
.button-container .btn a, .infobox-button .btn a {
  color: #979b77;
  font-family: "ZillaSlab-Medium", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
}
.button-container .btn:not(:last-child), .infobox-button .btn:not(:last-child) {
  margin-right: 20px;
}
.button-container .btn-left, .infobox-button .btn-left {
  border-bottom: 1px solid #979b77;
  border-left: 1px solid #979b77;
  border-top: 1px solid #979b77;
  width: 8px;
}
.button-container .btn-right, .infobox-button .btn-right {
  border-bottom: 1px solid #979b77;
  border-right: 1px solid #979b77;
  border-top: 1px solid #979b77;
  width: 8px;
}

@keyframes btn {
  15% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  30% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  50% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  65% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  80% {
    -webkit-transform: translateX(2px);
    transform: translateX(2px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.btn:hover {
  animation: swing 1s ease;
  animation-iteration-count: 1;
}

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

.collage-outer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  width: 100%;
}
@media (max-width: 1200px) {
  .collage-outer {
    grid-template-columns: repeat(8, 1fr);
  }
}
@media (max-width: 1000px) {
  .collage-outer {
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (max-width: 900px) {
  .collage-outer {
    grid-template-columns: repeat(1, 1fr);
  }
}
.collage-outer .block-1 {
  grid-column: 1/3;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  width: 100%;
}
@media (max-width: 1200px) {
  .collage-outer .block-1 {
    grid-column: 2/8;
  }
}
@media (max-width: 1000px) {
  .collage-outer .block-1 {
    grid-column: 2/12;
  }
}
@media (max-width: 900px) {
  .collage-outer .block-1 {
    grid-column: 1/3;
  }
}
@media (max-width: 900px) {
  .collage-outer .block-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.collage-outer .block-1 .collage-text {
  grid-column: 1/2;
  grid-row: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-end;
  align-content: stretch;
}
.collage-outer .block-1 .collage-text .collage-text-content {
  width: 100%;
}
.collage-outer .block-1 .collage-img-1 {
  grid-column: 2/3;
  grid-row: 1;
}
.collage-outer .block-1 .collage-img-1 img {
  width: 100%;
}
@media (max-width: 900px) {
  .collage-outer .block-1 .collage-img-1 {
    grid-column: 1/2;
    grid-row: 3;
  }
  .collage-outer .block-1 .collage-img-1 img {
    width: 60%;
    margin-left: 20%;
  }
}
@media (max-width: 600px) {
  .collage-outer .block-1 .collage-img-1 img {
    width: 80%;
    margin-left: 10%;
  }
}
.collage-outer .block-1 .collage-img-2 {
  grid-column: 1/3;
  grid-row: 2;
  width: 100%;
}
@media (max-width: 900px) {
  .collage-outer .block-1 .collage-img-2 {
    grid-column: 1/2;
    grid-row: 2;
  }
}
.collage-outer .block-1 .collage-img-2 img {
  width: 100%;
}
.collage-outer .block-2 {
  grid-column: 3/4;
  grid-row: 1;
}
@media (max-width: 1200px) {
  .collage-outer .block-2 {
    grid-column: 2/8;
  }
}
@media (max-width: 1000px) {
  .collage-outer .block-2 {
    grid-column: 2/12;
  }
}
@media (max-width: 900px) {
  .collage-outer .block-2 {
    grid-column: 1/3;
  }
}
@media (max-width: 1200px) {
  .collage-outer .block-2 {
    grid-row: 2;
  }
}
.collage-outer .block-2 .collage-img-3 img {
  margin-top: 240px;
  width: 100%;
}
@media (max-width: 1500px) {
  .collage-outer .block-2 .collage-img-3 img {
    margin-top: 16vw;
  }
}
@media (max-width: 1200px) {
  .collage-outer .block-2 .collage-img-3 img {
    margin-top: 0;
  }
}
@media (max-width: 900px) {
  .collage-outer .block-2 .collage-img-3 img {
    width: 60%;
    margin-left: 20%;
  }
}
@media (max-width: 600px) {
  .collage-outer .block-2 .collage-img-3 img {
    width: 80%;
    margin-left: 10%;
  }
}

.infobox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  width: 100%;
}
@media (max-width: 800px) {
  .infobox {
    grid-template-columns: repeat(6, 1fr);
  }
}
.infobox .infobox-leer {
  grid-column: 1/2;
  grid-row: 1;
  width: 100%;
}
.infobox .infobox-text {
  grid-column: 2/4;
  grid-row: 1;
  width: 50%;
}
@media (max-width: 1200px) {
  .infobox .infobox-text {
    width: 70%;
  }
}
@media (max-width: 800px) {
  .infobox .infobox-text {
    grid-column: 2/7;
  }
}
@media (max-width: 600px) {
  .infobox .infobox-text {
    grid-column: 1/7;
    width: 100%;
  }
}

.infobox-button {
  width: 100%;
  margin-top: 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: stretch;
}

.img-infobox {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  width: 100%;
}
.img-infobox .infobox-img {
  grid-column: 1/3;
  grid-row: 1;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
@media (max-width: 1000px) {
  .img-infobox .infobox-img {
    grid-column: 1/4;
    grid-row: 2;
    min-height: 400px;
  }
}
.img-infobox .infobox-text {
  grid-column: 3/4;
  grid-row: 1;
  width: 100%;
}
@media (max-width: 1000px) {
  .img-infobox .infobox-text {
    grid-column: 1/4;
    grid-row: 1;
  }
}
.img-infobox .btn {
  width: max-content;
}
@media (max-width: 1300px) {
  .img-infobox .btn {
    width: min-content;
  }
}
@media (max-width: 1000px) {
  .img-infobox .btn {
    width: max-content;
  }
}
@media (max-width: 400px) {
  .img-infobox .btn {
    width: min-content;
  }
}

.headlinebox {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
  width: 100%;
  margin-top: 60px;
}
@media (max-width: 800px) {
  .headlinebox {
    grid-template-columns: repeat(6, 1fr);
  }
}
.headlinebox .box-text-content-body {
  padding: 0;
}
.headlinebox h2 {
  text-align: left;
  display: inline-block;
}
@media (max-width: 800px) {
  .headlinebox h2 {
    display: block;
    text-align: center;
  }
}
.headlinebox .headlinebox-leer {
  grid-column: 1/2;
  grid-row: 1;
  width: 100%;
}
@media (max-width: 800px) {
  .headlinebox .headlinebox-leer {
    display: none;
  }
}
.headlinebox .headlinebox-text {
  grid-column: 2/4;
  grid-row: 1;
  width: 50%;
}
@media (max-width: 1200px) {
  .headlinebox .headlinebox-text {
    width: 85%;
  }
}
@media (max-width: 800px) {
  .headlinebox .headlinebox-text {
    grid-column: 2/6;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .headlinebox .headlinebox-text {
    grid-column: 1/7;
    width: 100%;
  }
}

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;
  }
}

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

input:focus {
  outline: none;
}

select {
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  appearance: none;
  border-radius: 1px;
  border: 1px solid #bbb;
  padding: 9px 35px 7px 10px;
  position: relative;
  user-select: none;
  cursor: pointer;
  background-size: 34px 34px;
  background-position: center right;
  background-color: #fff;
  color: #111;
}
select:focus {
  outline: none;
}
select[disabled] {
  cursor: not-allowed;
}
select::-ms-expand {
  display: none;
}

.FormBuilder ::-webkit-input-placeholder {
  color: #bbb;
}
.FormBuilder ::-moz-placeholder {
  color: #bbb;
}
.FormBuilder :-ms-input-placeholder {
  color: #bbb;
}
.FormBuilder :-moz-placeholder {
  color: #bbb;
}
.FormBuilder label {
  display: inline-block;
  margin: 0;
}
.FormBuilder input[type=text], .FormBuilder input[type=email], .FormBuilder textarea {
  font-size: 16px;
  font-weight: 300;
  width: 100%;
  -webkit-appearance: none;
  box-shadow: none;
  outline: none;
  background-color: #fff;
  color: #111;
  border: 1px solid #bbb;
  border-radius: 1px;
  margin: 0 0 15px 0;
  padding: 9px 10px 7px;
  position: relative;
}
.FormBuilder select {
  margin-bottom: 15px;
}
.FormBuilder textarea {
  resize: none;
  overflow: auto;
  line-height: 1.45;
  height: calc(7vh + 7vw + 70px);
  display: block;
  margin-bottom: 0;
}
.FormBuilder .InputfieldCheckbox {
  margin-bottom: 15px;
  user-select: none;
}
.FormBuilder .InputfieldCheckbox span {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 30px;
}
.FormBuilder .InputfieldCheckbox span::before, .FormBuilder .InputfieldCheckbox span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
}
.FormBuilder .InputfieldCheckbox span::before {
  border: 1px solid #bbb;
  border-radius: 1px;
  background-color: #fff;
}
.FormBuilder .InputfieldCheckbox input {
  display: none;
}
.FormBuilder input:focus, .FormBuilder input:valid, .FormBuilder input.filled, .FormBuilder textarea:focus, .FormBuilder textarea:valid, .FormBuilder textarea.filled, .FormBuilder select:focus, .FormBuilder select:valid, .FormBuilder select.filled {
  border: 1px solid #888888;
}
.FormBuilder .InputfieldHeader {
  display: none;
}
.FormBuilder .Inputfields::after, .FormBuilder .Inputfields::before {
  content: " ";
  display: table;
}
.FormBuilder .Inputfields::after {
  clear: both;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .FormBuilder .Inputfields {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .FormBuilder .Inputfields::after, .FormBuilder .Inputfields::before {
    display: none;
  }
}
@supports (display: flex) {
  .FormBuilder .Inputfields {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .FormBuilder .Inputfields::after, .FormBuilder .Inputfields::before {
    display: none;
  }
}
.FormBuilder .Inputfield {
  width: 100%;
  position: relative;
  float: left;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .FormBuilder .Inputfield {
    float: none;
  }
}
@supports (display: flex) {
  .FormBuilder .Inputfield {
    float: none;
  }
}
.FormBuilder .Inputfield.InputfieldColumnWidth:not(.InputfieldTextarea):not(.InputfieldSubmit):not(.InputfieldColumnWidthFirst) {
  padding-left: 15px;
}
.FormBuilder .InputfieldContent {
  position: relative;
}
.FormBuilder .InputfieldStateRequired input[type=text], .FormBuilder .InputfieldStateRequired input[type=email], .FormBuilder .InputfieldStateRequired textarea {
  padding-right: 25px;
}
.FormBuilder .InputfieldStateRequired:not(.InputfieldSelect) .InputfieldContent {
  position: relative;
}
.FormBuilder .InputfieldStateRequired:not(.InputfieldSelect) .InputfieldContent::after {
  content: "*";
  position: absolute;
  top: 9px;
  right: 7px;
  width: 15px;
  height: 15px;
  text-align: center;
  font-size: 1.6rem;
  color: red;
}
.FormBuilder .InputfieldStateError ::-webkit-input-placeholder {
  color: red;
}
.FormBuilder .InputfieldStateError ::-moz-placeholder {
  color: red;
}
.FormBuilder .InputfieldStateError :-ms-input-placeholder {
  color: red;
}
.FormBuilder .InputfieldStateError :-moz-placeholder {
  color: red;
}
.FormBuilder .InputfieldStateError input {
  border: 1px solid rgba(255, 0, 0, 0.45);
  background-color: rgba(255, 0, 0, 0.2);
  color: red;
}
.FormBuilder .InputfieldStateError label {
  color: red;
}
.FormBuilder .InputfieldStateError.InputfieldStateRequired:not(.InputfieldSelect) .InputfieldContent::after {
  color: red;
}
.FormBuilder .InputfieldStateError input:valid, .FormBuilder .InputfieldStateError input.filled, .FormBuilder .InputfieldStateError textarea:valid, .FormBuilder .InputfieldStateError textarea.filled, .FormBuilder .InputfieldStateError select:valid, .FormBuilder .InputfieldStateError select.filled {
  border: 1px solid rgba(187, 187, 187, 0.4);
  background-color: #fff;
  color: #111;
}
.FormBuilder .InputfieldSubmit {
  padding-bottom: 10px;
}
.FormBuilder .InputfieldSubmit button {
  margin-top: -1px;
  float: right;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .FormBuilder .InputfieldSubmit button {
    float: none;
  }
}
@supports (display: flex) {
  .FormBuilder .InputfieldSubmit button {
    float: none;
  }
}
.FormBuilder .InputfieldSubmit .InputfieldContent {
  position: relative;
}
.FormBuilder .InputfieldSubmit .InputfieldContent::before {
  content: "Nach Erhalt Ihrer Nachricht setzen wir uns umgehend mit Ihnen in Verbindung.";
  position: absolute;
  width: 50%;
  top: 10px;
  left: 0;
  line-height: 1.45;
  font-weight: 300;
  color: #111;
}
.FormBuilder .InputfieldSubmit .InputfieldContent::before {
  font-size: 16px;
}
@media (max-width: 600px) {
  .FormBuilder .InputfieldSubmit .InputfieldContent::before {
    display: none;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .FormBuilder .InputfieldSubmit .InputfieldContent {
    display: flex;
    justify-content: flex-end;
  }
}
@supports (display: flex) {
  .FormBuilder .InputfieldSubmit .InputfieldContent {
    display: flex;
    justify-content: flex-end;
  }
}
.FormBuilder .Inputfield_address, .FormBuilder .Inputfield_source {
  display: none;
}

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

table, thead, tbody, tfoot, tr, th, td {
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  border-collapse: inherit;
  border-spacing: 0;
  border-color: inherit;
  vertical-align: inherit;
  -webkit-border-horizontal-spacing: 0;
  -webkit-border-vertical-spacing: 0;
}

table {
  width: 100%;
  line-height: 1.5;
  font-weight: 300;
  border-collapse: collapse;
  border: 0;
}
table {
  font-size: 16px;
}
table thead {
  color: #bbb;
  border-bottom: 1px solid #bbb;
}
table thead + tbody {
  border-top: none;
}
table tbody {
  border: 1px solid #bbb;
}
table tbody tr:nth-child(even) {
  background-color: #bbb;
}
table td, table th {
  padding: 6px 12px;
}

.phonelayer {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
  overflow: hidden;
  cursor: pointer;
}

.phonelayer-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}

#overlay-tel {
  color: #ffffff !important;
  line-height: 1.2;
  font-weight: bold;
  margin-top: -14px;
  margin-bottom: -14px;
  text-align: center;
  display: inline-block;
  margin: 0 auto;
  transition: 0.3s;
}
#overlay-tel {
  font-size: 35px;
}
@media (min-width: 400px) {
  #overlay-tel {
    font-size: calc(35px + 35 * (100vw - 400px) / 1000);
  }
}
@media (min-width: 1400px) {
  #overlay-tel {
    font-size: 70px;
  }
}

.phonelayer a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.phonelayer a:hover, .phonelayer a:focus {
  color: #f1f1f1;
}

.phonelayer .closebtn {
  position: absolute;
  top: 20px;
  right: 45px;
  font-size: 100px;
}

.shopify-productlist {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 50px;
  text-align: center;
}
@media (max-width: 1260px) {
  .shopify-productlist {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .shopify-productlist {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .shopify-productlist {
    grid-template-columns: 1fr;
  }
}
.shopify-productlist h2.shopify-headline {
  text-align: center;
  flex-grow: 4;
  padding-left: 20px;
  padding-right: 20px;
}
.shopify-productlist h3.shopify-price {
  text-align: center;
  text-transform: none;
  margin-top: 20px;
}
.shopify-productlist .shopify-gallery {
  justify-self: stretch;
  align-self: stretch;
}
.shopify-productlist .shopify-gallery .box-quadrat {
  margin-top: 20px;
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center center;
}
.shopify-productlist .shopify-gallery .box-quadrat:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.shopify-productlist .shopify-gallery .box-quadrat img {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  object-fit: cover;
}
.shopify-productlist .shopify-product {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  padding: 20px 0 30px;
  border: 1px solid #979b77;
  background-color: #fff;
  color: #5F4839;
}

.shopify-productdetail {
  margin-top: 50px;
  margin-bottom: 50px;
  display: grid;
  grid-template-areas: "backbutton backbutton" "images title" "images price" "images description" "images buybutton" "images .";
  grid-template-columns: 400px auto;
  column-gap: 60px;
  row-gap: 20px;
}
@media (max-width: 1000px) {
  .shopify-productdetail {
    grid-template-columns: 250px auto;
    column-gap: 40px;
  }
}
@media (max-width: 700px) {
  .shopify-productdetail {
    grid-template-areas: "backbutton" "title" "price" "images" "description" "buybutton";
    grid-template-columns: auto;
  }
}
.shopify-productdetail h2.shopify-headline {
  grid-area: title;
}
.shopify-productdetail h3.shopify-price {
  grid-area: price;
  text-transform: none;
  margin-top: 0;
}
.shopify-productdetail .shopify-gallery {
  grid-area: images;
  display: grid;
  align-content: start;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas: "bigimage bigimage bigimage";
  gap: 5px;
}
@media (max-width: 1000px) {
  .shopify-productdetail .shopify-gallery {
    grid-template-columns: auto;
    grid-template-areas: "bigimage";
  }
}
@media (max-width: 700px) {
  .shopify-productdetail .shopify-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "bigimage none";
  }
}
@media (max-width: 500px) {
  .shopify-productdetail .shopify-gallery {
    grid-template-columns: auto;
    grid-template-areas: "bigimage";
  }
}
.shopify-productdetail .shopify-gallery figure a {
  width: 100%;
  height: 100%;
}
.shopify-productdetail .shopify-gallery figure a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shopify-productdetail .shopify-gallery figure {
  display: block;
  width: 130px;
  height: 130px;
}
.shopify-productdetail .shopify-gallery figure.bigimage {
  grid-area: bigimage;
  width: 400px;
  height: 400px;
}
@media (max-width: 1000px) {
  .shopify-productdetail .shopify-gallery figure, .shopify-productdetail .shopify-gallery figure.bigimage {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 700px) {
  .shopify-productdetail .shopify-gallery figure, .shopify-productdetail .shopify-gallery figure.bigimage {
    width: 100%;
    height: auto;
    max-height: 300px;
  }
}
@media (max-width: 500px) {
  .shopify-productdetail .shopify-gallery figure, .shopify-productdetail .shopify-gallery figure.bigimage {
    width: 230px;
    height: 180px;
  }
}
.shopify-productdetail .shopify-gallery .box-quadrat {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
}
.shopify-productdetail .shopify-gallery .box-quadrat:before {
  content: "";
  display: block;
  padding-top: 100%;
}
.shopify-productdetail .shopify-gallery .box-quadrat img {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  object-fit: cover;
}
.shopify-productdetail .shopify-description {
  grid-area: description;
}
.shopify-productdetail .shopify-description span {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.shopify-productdetail .shopify-buybutton {
  grid-area: buybutton;
  self-align: end;
}
.shopify-productdetail .shopify-backbutton {
  grid-area: backbutton;
  justify-self: end;
  align-self: start;
}
.shopify-productdetail .shopify-backbutton .yellowbutton-wrap-outer {
  margin-top: 0;
}

footer {
  /*************************************************************************************
  Hover Effect dotted Underline
  */
}
footer .footer-content {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  width: 100%;
  /***********************************************************************************
  * Footer Head **********************************************************************
  */
  /***********************************************************************************
  * Footer Body **********************************************************************
  */
}
footer .footer-content li, footer .footer-content .opening, footer .footer-content a {
  font: 0.75em;
  color: #5F4839;
  font-family: "Skia", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
}
footer .footer-content p {
  margin: 0 !important;
}
footer .footer-content .footer-head {
  min-height: 146px;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch;
  /**
  * box 1 **********************************************************************
  */
  /**
  * box 2 **********************************************************************
  */
  /**
  * box 3 **********************************************************************
  */
}
footer .footer-content .footer-head .box1 {
  width: calc(50% - 70px);
}
footer .footer-content .footer-head .box1 .bordercontainer-left {
  position: relative;
  border-top: 1px solid #5F4839;
  border-left: 1px solid #5F4839;
  margin-top: 87px;
  height: 59px;
  padding: 6px;
}
footer .footer-content .footer-head .box1 .bordercontainer-left::after {
  content: "";
  position: absolute;
  top: -3px;
  right: 0px;
  width: 25px;
  height: 61px;
  background-color: #ffffff;
}
footer .footer-content .footer-head .box2 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  width: 240px;
}
footer .footer-content .footer-head .box3 {
  width: calc(50% - 70px);
}
footer .footer-content .footer-head .box3 .bordercontainer-right {
  position: relative;
  border-top: 1px solid #5F4839;
  border-right: 1px solid #5F4839;
  margin-top: 87px;
  height: 59px;
  padding: 6px 10px 6px 10px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: stretch;
  align-content: stretch;
}
footer .footer-content .footer-head .box3 .bordercontainer-right::before {
  content: "";
  position: absolute;
  top: -3px;
  left: 0px;
  width: 25px;
  height: 61px;
  background-color: #ffffff;
}
footer .footer-content .footer-head .box3 .bordercontainer-right ul li {
  margin: 0;
  padding: 0;
  display: inline;
  list-style-type: none;
  float: left;
  font-size: 0.85em;
}
footer .footer-content .footer-head .box3 .bordercontainer-right ul li a {
  color: #979b77;
  margin-left: 10px;
}
@media (max-width: 700px) {
  footer .footer-content .footer-head .box3 .bordercontainer-right ul {
    position: absolute;
    width: 200px;
    right: 10px;
    top: 42px;
  }
}
footer .footer-content .footer-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 0px;
  width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
  margin-bottom: 100px;
  margin-top: -20px;
}
@media (max-width: 1250px) {
  footer .footer-content .footer-body {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 700px) {
  footer .footer-content .footer-body {
    margin-top: 40px;
  }
}
footer .footer-content .footer-body .contact-1 {
  grid-column: 1/2;
  grid-row: 1;
}
@media (max-width: 1250px) {
  footer .footer-content .footer-body .contact-1 {
    grid-column: 1/3;
    grid-row: 1;
  }
}
@media (max-width: 700px) {
  footer .footer-content .footer-body .contact-1 {
    grid-column: 1/5;
    grid-row: 1;
  }
}
footer .footer-content .footer-body .contact-1 ul {
  width: 100%;
}
footer .footer-content .footer-body .contact-1 ul.c1 {
  margin: 0px 0px 10px 0px;
  padding: 0;
  list-style-type: none;
  float: left;
}
footer .footer-content .footer-body .contact-1 ul.c1 li:not(:last-child):after {
  content: "·";
  position: relative;
  top: 4px;
  left: 2px;
  height: 2px;
  width: 2px;
  margin-right: 6px;
  margin-left: 4px;
  white-space: pre;
}
footer .footer-content .footer-body .contact-2 {
  grid-column: 2/3;
  grid-row: 1;
}
@media (max-width: 1250px) {
  footer .footer-content .footer-body .contact-2 {
    grid-column: 3/5;
    grid-row: 1;
  }
}
@media (max-width: 700px) {
  footer .footer-content .footer-body .contact-2 {
    grid-column: 1/5;
    grid-row: 2;
    margin-top: 40px;
  }
  footer .footer-content .footer-body .contact-2 .contact-hl {
    display: none;
  }
}
footer .footer-content .footer-body .opening {
  grid-column: 3/4;
  grid-row: 1;
}
footer .footer-content .footer-body .opening li br {
  display: none;
}
@media (max-width: 1250px) {
  footer .footer-content .footer-body .opening {
    grid-column: 1/5;
    grid-row: 2;
    margin-top: 40px;
  }
}
@media (max-width: 700px) {
  footer .footer-content .footer-body .opening {
    grid-column: 1/5;
    grid-row: 3;
  }
}
@media (max-width: 400px) {
  footer .footer-content .footer-body .opening li {
    margin-bottom: 6px;
  }
  footer .footer-content .footer-body .opening li br {
    display: block;
  }
}
footer .footer-content .contact-hl {
  margin-bottom: 10px;
}
footer .footer-content .contact-hl li {
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  display: inline;
  list-style-type: none;
  font-family: "ZillaSlab-LightItalic", Roboto, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", Arial, sans-serif;
}
footer .dotted-underline-effect a {
  transition: color 0.3s;
}
footer .dotted-underline-effect a::before {
  position: absolute;
  top: 10px;
  left: 50%;
  color: transparent;
  content: "•";
  text-shadow: 0 0 transparent;
  font-size: 1.2em;
  transition: text-shadow 0.3s, color 0.3s;
  transform: translateX(-50%);
  pointer-events: none;
}
footer .dotted-underline-effect a:hover::before,
footer .dotted-underline-effect a:focus::before {
  color: #979b77;
  text-shadow: 10px 0 #979b77, -10px 0 #979b77;
}
footer .dotted-underline-effect a:hover,
footer .dotted-underline-effect a:focus {
  color: #979b77;
}

.cookiebotContainer {
  display: none;
}

.CybotCookiebotDialogBodyButton {
  border: none !important;
  padding-top: 4px !important;
  padding-left: 5px !important;
  padding-right: 5px !important;
}

/* notwendigeCookies */
#CybotCookiebotDialogBodyLevelButtonLevelOptinDeclineAll {
  color: #ffffff !important;
}

/* auswahlErlauben */
#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowallSelection {
  color: #ffffff !important;
}

/* cookiesZulassen */
#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
  color: #ffffff !important;
}

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