/**
 * Swiper 4.3.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2018 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 5, 2018
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-invisible-blank-slide {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

/* rajdhani-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 300;
  src: url("/theme/public/assets/fonts/rajdhani-v15-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* rajdhani-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 400;
  src: url("/theme/public/assets/fonts/rajdhani-v15-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* rajdhani-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 500;
  src: url("/theme/public/assets/fonts/rajdhani-v15-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* rajdhani-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 600;
  src: url("/theme/public/assets/fonts/rajdhani-v15-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* rajdhani-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 700;
  src: url("/theme/public/assets/fonts/rajdhani-v15-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* squada-one-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Squada One";
  font-style: normal;
  font-weight: 400;
  src: url("/theme/public/assets/fonts/squada-one-v18-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
:root {
  --gap: 22px;
  --2gap: calc(2 * var(--gap));
  --3gap: calc(3 * var(--gap));
  --4gap: calc(4 * var(--gap));
  --5gap: calc(5 * var(--gap));
  --6gap: calc(6 * var(--gap));
  --7gap: calc(7 * var(--gap));
  --8gap: calc(8 * var(--gap));
  --halfgap: calc(.5 * var(--gap));
  --quartergap: calc(.25 * var(--gap));
  --vGap: 22px;
  --hGap: 22px;
  --contentMaxWidthNarrow: 80rem;
  --contentMaxWidthWide: 80rem;
  --contentMaxWidthFull: 2000px;
  --defaultFontColor: #000;
  --headerPaddingTop: var(--gap);
  --headerPaddingBottom: var(--gap);
  --headerNavFontSize: 1.1rem;
  --headerNavLineHeight: 1.5;
  --headerHeight: calc(var(--headerPaddingTop) + var(--headerPaddingBottom) + (var(--headerNavFontSize) * var(--headerNavLineHeight)));
  --slideshowHeight: calc(100svh - var(--headerHeight));
  --templateColor: #fff;
  --headerColor: var(--defaultFontColor);
  --headerNavLevel1Color: var(--defaultFontColor);
}

@media screen and (min-width: 1200px) {
  :root {
    --headerPaddingTop: var(--2gap);
    --headerPaddingBottom: var(--2gap);
  }
}
.gridContainer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 calc(2 * var(--hGap));
  margin: 0 auto;
  max-width: var(--contentMaxWidthNarrow);
  position: relative;
  padding-top: calc(1 * var(--vGap));
  padding-bottom: calc(1 * var(--vGap));
}
@media screen and (min-width: 768px) {
  .gridContainer {
    padding-top: calc(3 * var(--vGap));
    padding-bottom: calc(2 * var(--vGap));
  }
  .gridContainer .gridItem--1 {
    grid-column: 1;
  }
  .gridContainer .gridItem--2 {
    grid-column: 2;
  }
  .gridContainer h1:first-child,
  .gridContainer h2:first-child,
  .gridContainer h3:first-child,
  .gridContainer h4:first-child {
    padding-top: 0;
  }
  .gridContainer h1:last-child,
  .gridContainer h2:last-child,
  .gridContainer h3:last-child,
  .gridContainer h4:last-child {
    padding-bottom: 0;
  }
  .gridContainer h2:last-child,
  .gridContainer h3:last-child,
  .gridContainer h4:last-child {
    margin-bottom: calc(-1 * var(--vGap));
  }
}

@media screen and (min-width: 768px) {
  .gridContainer--50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .gridContainer--25_75 {
    grid-template-columns: 25fr 75fr;
  }
}

@media screen and (min-width: 768px) {
  .gridContainer--75_25 {
    grid-template-columns: 75fr 25fr;
  }
}

@media screen and (min-width: 768px) {
  .gridContainer--33_66 {
    grid-template-columns: calc(33.3333% - 1.3333333333 * var(--hGap)) 1fr;
  }
}

@media screen and (min-width: 768px) {
  .gridContainer--66_33 {
    grid-template-columns: 1fr calc(33.3333% - 1.3333333333 * var(--hGap));
  }
}

@media screen and (min-width: 768px) {
  .gridContainer--33_33_33 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gridContainer--33_33_33 .gridItem--3 {
    grid-column: 1;
  }
}
@media screen and (min-width: 992px) {
  .gridContainer--33_33_33 {
    grid-template-columns: repeat(3, 33.3333fr);
  }
  .gridContainer--33_33_33 .gridItem--3 {
    grid-column: 3;
  }
}

@media screen and (min-width: 768px) {
  .gridContainer--50_25_25 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gridContainer--50_25_25 .gridItem--1 {
    grid-column: 1/span 2;
  }
  .gridContainer--50_25_25 .gridItem--2 {
    grid-column: 1;
    grid-row: 2;
  }
  .gridContainer--50_25_25 .gridItem--3 {
    grid-column: 2;
    grid-row: 2;
  }
}
@media screen and (min-width: 992px) {
  .gridContainer--50_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .gridContainer--50_25_25 .gridItem--2 {
    grid-column: 3;
    grid-row: auto;
  }
  .gridContainer--50_25_25 .gridItem--3 {
    grid-column: 4;
    grid-row: auto;
  }
}

@media screen and (min-width: 768px) {
  .gridContainer--25_25_50 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gridContainer--25_25_50 .gridItem--3 {
    grid-column: 1/span 2;
    grid-row: 2;
  }
}
@media screen and (min-width: 992px) {
  .gridContainer--25_25_50 {
    grid-template-columns: repeat(4, 1fr);
  }
  .gridContainer--25_25_50 .gridItem--3 {
    grid-column: 3/span 2;
    grid-row: auto;
  }
}

@media screen and (min-width: 768px) {
  .gridContainer--15_70_15 {
    grid-template-columns: 15fr 70fr 15fr;
  }
}

@media screen and (min-width: 768px) {
  .gridContainer--25_25_25_25 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gridContainer--25_25_25_25 .gridItem--3 {
    grid-column: 1;
    grid-row: 2;
  }
  .gridContainer--25_25_25_25 .gridItem--4 {
    grid-column: 2;
    grid-row: 2;
  }
}
@media screen and (min-width: 992px) {
  .gridContainer--25_25_25_25 {
    grid-template-columns: repeat(4, 1fr);
  }
  .gridContainer--25_25_25_25 .gridItem--3 {
    grid-column: 3;
    grid-row: auto;
  }
  .gridContainer--25_25_25_25 .gridItem--4 {
    grid-column: 4;
    grid-row: auto;
  }
}

@media screen and (min-width: 768px) {
  .gridContainer--15_35_35_15 {
    grid-template-columns: 15fr 35fr 35fr 15fr;
  }
}

.gridContainer--wide {
  max-width: var(--contentMaxWidthWide);
}

.gridContainer--vCenter .gridItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.gridItem > :last-child:not(.btn) {
  padding-bottom: var(--vGap);
}
@media screen and (min-width: 768px) {
  .gridItem {
    order: initial !important;
  }
}

.container {
  margin: 0 auto;
  max-width: var(--contentMaxWidthNarrow);
  position: relative;
}
@media screen and (min-width: 768px) {
  .container {
    padding-top: calc(2 * var(--vGap));
  }
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

label {
  display: block;
}
label.form_warning {
  color: #a94442;
}
input[type=radio] + label {
  display: inline;
}

input[type=text],
input[type=password],
input[type=email],
textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 4px;
}

select {
  width: 100%;
  border-color: #ccc;
  border-style: solid;
  border-width: 1px;
  padding: 3px 4px 4px 4px;
}

.radio label,
.checkbox label {
  display: flex;
}
.radio label input,
.checkbox label input {
  margin-right: 0.5rem;
}

.form_warning li {
  font-weight: bold;
  color: #a94442;
}

label.error {
  display: block;
  padding: 0.1em 0.6em;
  background: #a94442;
  color: #fff;
}

.form-group {
  padding-bottom: var(--vGap);
}
.form-group.has-error * {
  border-color: red;
}

.alert {
  padding: calc(0.5 * var(--vGap)) calc(0.5 * var(--hGap));
  margin-bottom: var(--vGap);
  border-width: 1px;
  border-style: solid;
  border-radius: 0.2em;
}
.alert .formcheckbox,
.alert ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.alert li {
  margin: 0;
}
.alert li + li {
  padding-top: 0.25em;
}

.alert-success {
  background-color: #dff0d8 !important;
  border-color: #d0e9c6 !important;
  color: #3c763d !important;
}
.alert-success * {
  color: #fff !important;
}

.alert-info {
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
  color: #414042 !important;
}
.alert-info * {
  color: #414042 !important;
}
.alert-info a,
.alert-info a:hover {
  text-decoration: underline;
}
.alert-info label.error {
  color: #fff !important;
}

.alert-warning {
  background-color: #fcf8e3 !important;
  border-color: #faf2cc !important;
  color: #8a6d3b !important;
}
.alert-warning * {
  color: #8a6d3b !important;
}

.alert-danger {
  background-color: #f2dede !important;
  border-color: #ebcccc !important;
  color: #a94442 !important;
}
.alert-danger * {
  color: #a94442 !important;
}

[name=rex_ycom_auth_stay] {
  float: left;
  margin-right: 0.2em;
  position: relative;
  top: 0.3em;
}

.datenschutz-checkbox-wrapper + label.error {
  margin-top: calc(-1 * var(--vGap));
  margin-bottom: var(--vGap);
}

.form-group-submit {
  display: flex;
  justify-content: flex-end;
}
.form-group-submit .btn {
  margin: 0;
}

.formGridContainer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 var(--hGap);
  position: relative;
}

@media screen and (min-width: 768px) {
  .formGridContainer--50_50 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 768px) {
  .formGridContainer--10_45_45 {
    grid-template-columns: 10fr 45fr 45fr;
  }
}

.formGridContainer--submit {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.formGridContainer--submit button {
  margin: 0;
}

nav.pagination {
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  nav.pagination {
    padding: 2rem;
  }
}
nav.pagination ul {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
nav.pagination li {
  padding: 0 0 0 0.25rem !important;
}
nav.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #6f6f6f;
  color: #fff;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 0.2rem;
  text-decoration: none;
}
nav.pagination a:hover {
  background: #8e191b;
  text-decoration: none;
}
nav.pagination .active a {
  background: #8e191b;
}
nav.pagination .disabled a {
  opacity: 0.25;
  cursor: default;
}
nav.pagination .disabled a:hover {
  background: #f3f3f3;
}
nav.pagination svg {
  height: 1rem;
}

.download__item + .download__item {
  margin-top: var(--vGap);
}

.download__itemLink {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.download__itemIcon {
  flex: 0 0 2rem;
}
.download__itemIcon svg {
  display: block;
  height: 2rem;
  width: auto;
}

.module {
  padding: 0 var(--hGap);
}
@media screen and (min-width: 768px) {
  .module {
    padding: 0 calc(2 * var(--hGap));
  }
}
.module .image {
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .module .image {
    max-width: none;
  }
}
.module .image__caption {
  line-height: 1.3;
  padding-top: 0.25rem;
  font: normal normal 400 0.8rem/1.2 "Rajdhani", sans-serif;
}
.module .gallery {
  /*
  .lightbox-image {
      position: relative;
      &:hover {
          img {
              filter: blur(15px);
          }
          .image-ratio {
              &:after {
                  content: '+';
                  position: absolute;
                  left: 0;
                  top: 0;
                  right: 0;
                  bottom: 0;
                  color: #fff;
                  font-size: 8rem;
                  display: flex;
                  justify-content: center;
                  align-items: center;
                  font-style: normal;
              }
          }
      }
  }
   */
}
.module .gallery .isotopeGridSizer {
  width: 100%;
}
.module .gallery .isotopeTile {
  width: 100%;
  margin-bottom: calc(2 * var(--hGap));
  padding-bottom: 0;
}
@media screen and (min-width: 500px) {
  .module .gallery .isotopeGridSizer {
    width: calc(50% - 1 * var(--hGap));
  }
  .module .gallery .isotopeTile {
    width: calc(50% - 1 * var(--hGap));
    margin-bottom: calc(2 * var(--hGap));
  }
}
@media screen and (min-width: 992px) {
  .module .gallery .isotopeGridSizer {
    width: calc(33.33% - 1.3333333333 * var(--hGap));
  }
  .module .gallery .isotopeTile {
    width: calc(33.33% - 1.3333333333 * var(--hGap));
    margin-bottom: calc(2 * var(--hGap));
  }
}
.module .gallery.firstImage2Col .isotopeTile:first-child {
  width: 100%;
}
@media screen and (min-width: 500px) {
  .module .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(2 * var(--hGap));
  }
}
@media screen and (min-width: 992px) {
  .module .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.module .gallery .isotopeTile + .isotopeTile {
  margin-top: var(--vGap);
}
@media screen and (min-width: 500px) {
  .module .gallery .isotopeTile + .isotopeTile {
    margin-top: 0;
  }
}
.module .videoWrapper.hasRatio {
  position: relative;
}
.module .videoWrapper.hasRatio video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.module .videoRatio {
  display: block;
  width: 100%;
}
.module video {
  width: 100%;
  display: block;
}

.module20 h2 {
  padding-bottom: calc(0.5 * var(--vGap));
}
.module20 a, .module20 a:hover {
  text-decoration: none;
  display: block;
}
.module20 a *, .module20 a:hover * {
  text-decoration: none;
}

.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 var(--gap);
}
@media screen and (min-width: 1200px) {
  .header {
    padding: 0 var(--2gap);
  }
}

.header__inner {
  margin: 0 auto;
  max-width: var(--contentMaxWidthWide);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--headerPaddingTop) 0 var(--headerPaddingBottom) 0;
}
.headerLogo {
  position: relative;
  z-index: 21;
}

.headerLogo__inner {
  position: absolute;
  top: calc(-0.5 * var(--headerHeight));
  height: var(--headerHeight);
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.headerLogo__inner a {
  height: 3.2rem;
  position: relative;
  top: -0.2rem;
}
.headerLogo__inner img {
  height: 100%;
  width: auto;
  max-width: none;
}

.header__nav {
  z-index: 20;
  display: none;
  flex: 1;
  align-items: flex-end;
}
.header__nav ul.level0 {
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  gap: var(--2gap);
}
.header__nav ul.level1 {
  width: calc(50% - var(--4gap));
}
.header__nav li.level0 div.level1 {
  display: none;
}
.header__nav li.level0 div.level1.visible {
  display: block;
}
.header__nav li.level0:hover a.level0 span:after {
  content: "";
  height: 1px;
  background: var(--headerNavLevel1Color);
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -0.75rem;
  pointer-events: none;
}
.header__nav li.level0:hover div.level1 {
  display: block;
}
.header__nav li.level1 {
  text-align: right;
  padding-bottom: var(--gap);
  position: relative;
  display: flex;
  justify-content: flex-end;
}
.header__nav a {
  text-decoration: none;
}
.header__nav span {
  display: inline-block;
}
.header__nav a.level0 {
  color: var(--headerNavLevel1Color);
  white-space: nowrap;
  text-transform: uppercase;
  font-size: var(--headerNavFontSize);
  line-height: var(--headerNavLineHeight);
  position: relative;
  z-index: 1;
  display: block;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 1600px) {
  .header__nav a.level0 {
    padding: var(--halfGap) var(--gap);
  }
}
.header__nav a.level0.current, .header__nav a.level0.active {
  font-weight: bold;
}
.header__nav a.level0.current:after, .header__nav a.level0.active:after {
  content: "";
  height: 1px;
  background: var(--headerNavLevel1Color);
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -0.75rem;
  pointer-events: none;
}
.header__nav a.level1 {
  color: #fff;
  white-space: nowrap;
}
.header__nav a.level1 svg {
  flex: 0 0 0.35em;
  margin-right: 0.5em;
  margin-top: 0.25em;
}
.header__nav a.level1:hover {
  color: #fff;
}
.header__nav a.level2 {
  padding: 0.2em var(--halfGap) 0.2em var(--2gap);
  line-height: 1.2;
  display: flex;
  align-items: flex-start;
  color: #fff;
}
.header__nav a.level2 svg {
  flex: 0 0 0.35em;
  margin-right: 0.5em;
  margin-top: 0.25em;
}
.header__nav a.level2:hover {
  color: #fff;
}
.header__nav a.level2.current span {
  transform: scale(1.1);
  transform-origin: center left;
}
@media screen and (min-width: 992px) {
  .header__nav {
    display: flex;
  }
}
.header__nav div.level1 {
  position: absolute;
  top: calc(var(--headerHeight) - var(--2gap));
  left: 0;
  right: 0;
  pointer-events: none;
  padding: 0 var(--gap);
}
@media screen and (min-width: 1200px) {
  .header__nav div.level1 {
    padding: 0 var(--2gap);
  }
}
.header__nav div.level1__inner {
  margin: 0 auto;
  max-width: var(--contentMaxWidthWide);
}
.header__nav div.level1__inner:before {
  content: "";
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  width: 33%;
  right: 0;
  top: var(--2gap);
  bottom: 0;
}
.header__nav div.level1__innerContent {
  display: flex;
  justify-content: flex-end;
  padding: var(--5gap) 0 0 var(--2gap);
  height: 100vh;
  height: calc(var(--slideshowHeight) + var(--2gap));
  pointer-events: all;
  width: 50%;
  margin-left: auto;
}
.header__nav .level1__templateColor {
  display: inline-block;
  width: var(--2gap);
  height: 1.2em;
  position: relative;
  margin-left: var(--gap);
  top: 0.3em;
}
.header__nav .level1__templateColor--noColor {
  border-bottom: 1px solid #fff;
  height: 0;
  top: -0.25em;
}

.footer {
  padding: var(--gap);
  background: #fff;
}
@media screen and (min-width: 768px) {
  .footer {
    padding: var(--2gap);
  }
}
.footer * {
  color: #414042;
}
.footer a {
  text-decoration: none;
  color: #414042;
}
.footer a:hover {
  text-decoration: none;
  color: #000;
}
.footer hr {
  padding-bottom: var(--2gap);
}

.footer__inner {
  margin: 0 auto;
  max-width: var(--contentMaxWidthNarrow);
  display: flex;
  gap: var(--4gap);
  padding-top: var(--3gap);
  padding-bottom: var(--2gap);
  position: relative;
}
.footer__inner:before {
  position: absolute;
  top: 0;
  left: -14px;
  left: 0;
  right: -14px;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 14px;
  height: 10px;
  overflow: hidden;
  background: url(/theme/public/assets/img/punkt.png) round 0 0;
  background: #000;
}
.footer__inner:first-child:before {
  display: none;
}
.footer__inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__inner + .footer__inner {
  padding-top: var(--3gap);
  padding-bottom: var(--2gap);
  gap: var(--2gap);
}

.footer__nav > li li:first-child {
  padding-top: 0.5rem;
}
.footer__nav > li + li {
  padding-top: var(--2gap);
}
.footer__nav > li > a {
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.2em;
}
.footer__nav a.level0 {
  font-weight: 700;
}

.footer__links {
  display: flex;
  gap: var(--2gap);
  flex-wrap: wrap;
}

.offscreen {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background: rgba(0, 0, 0, 0.9);
  overflow: auto;
  width: 100%;
  right: -100%;
  transition: right 0.25s;
}
.offscreen.visible {
  right: 0;
}
.offscreen .offscreen__toggle {
  position: absolute;
  right: var(--gap);
  top: calc(var(--headerPaddingTop) + 1rem);
  width: 24px !important;
  z-index: 1;
}
.offscreen .offscreen__toggle svg {
  width: 100%;
  height: auto;
}
.offscreen .offscreen__toggle svg path {
  fill: #fff;
}
@media screen and (min-width: 768px) {
  .offscreen .offscreen__toggle {
    right: var(--2gap);
  }
}
@media screen and (min-width: 992px) {
  .offscreen {
    display: none !important;
  }
}

.offscreen__logo {
  display: block;
  width: 200px;
  margin: calc(0.5 * var(--vGap)) var(--hGap);
  transition: width 0.25s;
}
@media screen and (min-width: 768px) {
  .offscreen__logo {
    width: 300px;
  }
}

.offscreen__nav {
  width: 100%;
  float: none;
  clear: both;
  padding: var(--4gap) var(--gap) var(--gap) var(--gap);
}
@media screen and (min-width: 768px) {
  .offscreen__nav {
    padding: var(--6gap) var(--2gap) var(--2gap) var(--2gap);
  }
}
.offscreen__nav ul.level1 {
  padding-top: var(--halfgap);
}
.offscreen__nav li.level0 {
  padding-bottom: var(--gap);
}
.offscreen__nav li.level1 {
  padding: 0.25rem 0;
}
.offscreen__nav a {
  display: flex;
  font: normal normal 400 1.5rem/1.3 "Rajdhani", sans-serif;
  position: relative;
}
.offscreen__nav a .nav__text {
  color: #fff;
}
.offscreen__nav a .level1__templateColor {
  display: block;
  width: calc(1.5 * var(--gap));
  position: absolute;
  left: 0;
  bottom: 0.5rem;
  top: 0.3rem;
}
.offscreen__nav a .level1__templateColor--noColor {
  border-bottom: 1px solid #fff;
  height: 0;
  top: 0.5em;
}
.offscreen__nav a.current span {
  color: #fff;
}
.offscreen__nav a:hover span {
  color: #fff;
}
.offscreen__nav a.level0 {
  text-transform: uppercase;
  font-weight: 500;
}
.offscreen__nav a.level1 {
  padding-left: var(--2gap);
}
.nav__toggler {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 3rem;
}
.nav__toggler .nav__togglerExpand {
  display: none;
  width: 1.2rem;
  line-height: 0;
}
.nav__toggler .nav__togglerCollapse {
  display: block;
  width: 1.2rem;
  line-height: 0;
}
.nav__toggler.closed .nav__togglerExpand {
  display: block;
}
.nav__toggler.closed .nav__togglerCollapse {
  display: none;
}

.offscreen__toggle {
  height: 24px;
  width: 36px;
  cursor: pointer;
  position: relative;
  display: block;
}
.headroom--not-top .offscreen__toggle {
  transition: top 0.5s;
}
@media screen and (min-width: 992px) {
  .offscreen__toggle {
    display: none !important;
  }
}

.offscreen__toggleBar {
  height: 2px;
  margin-bottom: 8px;
  background-color: var(--defaultFontColor);
  transition: width 0.3s;
}
.offscreen__toggleBar:nth-child(1) {
  width: 100%;
}
.offscreen__toggleBar:nth-child(2) {
  width: 60%;
}
.offscreen__toggleBar:nth-child(3) {
  width: 80%;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  .offscreen__toggleBar {
    margin-bottom: 12px;
  }
}

.offscreen__toggle:not(.open):hover .offscreen__toggleBar:nth-child(2) {
  width: 100%;
}
.offscreen__toggle:not(.open):hover .offscreen__toggleBar:nth-child(3) {
  width: 100%;
}

/*
.offscreen__toggle.open {
    .offscreen__toggleBar {
        background-color: $primary-color-1;
        transition: background-color .5s;
        &:first-child {
            animation-name: topBar;
            animation-duration: .5s;
            animation-fill-mode: forwards;
            @include mq(s) {
                animation-name: topBarS;
            }
        }
        &:last-child {
            animation-name: bottomBar;
            animation-duration: .5s;
            animation-fill-mode: forwards;
            @include mq(s) {
                animation-name: bottomBarS;
            }
        }
    }
}
@keyframes topBar {
    0% {
        transform: rotate(0) translate(0, 0);
    }
    50% {
        transform: rotate(0) translate(0, 15px);
    }
    100% {
        transform: rotate(45deg);
        transform-origin: 13px 50%;
    }
}
@keyframes bottomBar {
    0% {
        transform: rotate(0) translate(0, 0);
    }
    50% {
        transform: rotate(0) translate(0, -15px);
    }
    100% {
        transform: rotate(-45deg);
        transform-origin: 13px 50%;
    }
}
@keyframes topBarS {
    0% {
        transform: rotate(0) translate(0, 0);
    }
    50% {
        transform: rotate(0) translate(0, 14px);
    }
    100% {
        transform: rotate(45deg);
        transform-origin: 19px 50%;
    }
}
@keyframes bottomBarS {
    0% {
        transform: rotate(0) translate(0, 0);
    }
    50% {
        transform: rotate(0) translate(0, -14px);
    }
    100% {
        transform: rotate(-45deg);
        transform-origin: 19px 50%;
    }
}
 */
/*
.offscreen__toggle {
    display: block;
    line-height: 0;
    width: 32px;
    text-decoration: none;
    position: relative;
    top: -3px;
    svg {
        fill: $primary-color-1;
    }
    &:focus {
        outline: 0;
    }
    @include mq(m) {
        width: 48px;
    }
}
 */
.moduleSwiper {
  padding: 0;
  position: relative;
}
.moduleSwiper:before {
  content: "";
  background: #f3f3f3;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 40%;
}

.swiper-slide {
  height: 100vh;
  height: var(--slideshowHeight);
  overflow: hidden;
  position: relative;
}
.swiper-slide:after {
  content: "";
  display: block;
}

.swiper-slide [class^=swiper-slide-background],
.swiper-slide [class^=swiper-slide-background] div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.swiper-button-next,
.swiper-button-prev {
  display: none;
  position: absolute;
  background: none transparent;
  text-align: center;
  font-size: 2em;
  padding: 2rem;
  color: #fff;
  width: auto;
  height: auto;
  margin-top: -1em;
  z-index: 10;
  top: 50%;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  width: 1rem;
  fill: #fff;
}
@media screen and (min-width: 992px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: block;
  }
}

.swiper-button-next {
  right: 0;
  border-top-left-radius: 0.4em;
  border-bottom-left-radius: 0.4em;
}

.swiper-button-prev {
  left: 0;
  border-top-right-radius: 0.4em;
  border-bottom-right-radius: 0.4em;
}

.swiper-pagination {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 10;
  padding: 0 var(--gap);
}
@media screen and (min-width: 1200px) {
  .swiper-pagination {
    padding: 0 var(--2gap);
  }
}

.swiper-pagination-inner {
  margin: 0 auto;
  max-width: var(--contentMaxWidthWide);
  display: flex;
  justify-content: flex-end;
  padding-bottom: var(--headerPaddingBottom);
}

.swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 0.8rem;
  height: 0.8rem;
  opacity: 1;
  margin: calc(0.25 * var(--gap));
  background: 0;
  font-size: 1rem;
}
.swiper-pagination-bullet:after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 0.5rem;
  background: #fff;
}

.swiper-pagination-bullet-active:after {
  background: none transparent;
  border: 2px solid #fff;
}

.swiper-slide-text {
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}

.swiper-slide-text-inner {
  position: relative;
  width: 100%;
  padding: var(--gap) var(--gap) var(--3gap) var(--gap);
  margin: 0 auto;
}

.swiper-slide-copyright {
  display: none;
}

.swiper-meta {
  margin: 0 auto -0.8rem auto;
  max-width: var(--contentWidth);
  position: relative;
  top: 0.8rem;
  display: flex;
  justify-content: flex-end;
  line-height: 0;
}

.swiper-copyright {
  padding-right: calc(0.5 * var(--gap));
}

@media screen and (orientation: portrait) {
  .swiper-slide:after {
    padding-top: 50vh;
  }
  .swiper-slide-background-landscape {
    display: none;
  }
}
@media screen and (orientation: landscape) {
  .swiper-slide:after {
    padding-top: 30%;
  }
  .swiper-slide-background-portrait {
    display: none;
  }
}
.slide__headline,
.slide__text {
  color: #fff;
  text-shadow: 0 0 3px #000;
}

.slide__headline {
  font-size: 2rem;
}

.slide__text {
  font-size: 1.2rem;
}

.swiper-slide--text .swiper-slide-text,
.swiper-slide--imageText .swiper-slide-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1.4rem;
}
.swiper-slide--text .swiper-slide-text strong,
.swiper-slide--imageText .swiper-slide-text strong {
  font-size: 2rem;
  display: block;
  padding: var(--gap);
}
.swiper-slide--text .swiper-slide-text strong + br,
.swiper-slide--imageText .swiper-slide-text strong + br {
  display: none;
}

.swiper-slide--text .swiper-slide-text {
  background: #000;
  font-size: clamp(3rem, 10vw, 10vw);
  font-weight: 400;
  font-family: "Squada One", sans-serif;
}

/*
Inhalt der /PhotoSwipe-4.1.3/src/css/_main-settings.scss
 */
/*
Kopie der /PhotoSwipe-4.1.3/src/css/default-skin/default-skin.scss
- :before,:after und background raus
- svg kram rein
 */
.pswp {
  position: relative;
}
.pswp .pswp__caption__center {
  max-width: none;
  text-align: center;
}

.pswp__button {
  line-height: 1em;
}
.pswp__button svg {
  width: 0.8em;
}

.pswp__button--arrow--left svg,
.pswp__button--arrow--right svg,
.pswp__button--fs svg {
  width: 1em;
}

.pswp__button--zoom svg.minus {
  display: none;
}

.pswp--zoomed-in .pswp__button--zoom svg.minus {
  display: inline-block;
}

.pswp--zoomed-in .pswp__button--zoom svg.plus {
  display: none;
}

.pswp__button--fs svg.compress-wide {
  display: none;
}

.pswp--fs .pswp__button--fs svg.compress-wide {
  display: inline-block;
}

.pswp--fs .pswp__button--fs svg.expand-wide {
  display: none;
}

/*

	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;
  transition: opacity 0.2s;
  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--fs {
  display: none;
}

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

.pswp__button--zoom {
  display: none;
}

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

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

/*

	2. Share modal/popup and links

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

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

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

.pswp__share-tooltip {
  z-index: 1620;
  position: absolute;
  background: #FFF;
  top: 56px;
  border-radius: 2px;
  display: block;
  width: auto;
  right: 44px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25);
  transform: translateY(6px);
  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 {
  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 rgba(0, 0, 0, 0);
  border-bottom-color: #FFF;
  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: #FFF;
  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;
  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--css_animation .pswp__preloader--active {
  opacity: 1;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
  animation: clockwise 500ms linear infinite;
}
.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
  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 {
  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;
  }
}
@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes donut-rotate {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(-140deg);
  }
  100% {
    transform: rotate(0);
  }
}
/*

	6. Additional styles

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

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

.pswp__caption,
.pswp__top-bar,
.pswp--has_mouse .pswp__button--arrow--left,
.pswp--has_mouse .pswp__button--arrow--right {
  -webkit-backface-visibility: hidden;
  will-change: opacity;
  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: rgba(0, 0, 0, 0.3);
}

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

#skiptocontent a {
  padding: 0.5rem;
  position: absolute;
  top: -3rem;
  left: 0;
  color: white;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  border-bottom-right-radius: 0.5rem;
  background: #BF1722;
  transition: top 1s ease-out;
  z-index: 100;
}
#skiptocontent a:focus {
  position: absolute;
  left: 0;
  top: 0;
  outline-color: transparent;
  -webkit-transition: top 0.1s ease-in;
  transition: top 0.1s ease-in;
}

@media (prefers-reduced-motion: reduce) {
  #skiptocontent a {
    transition-duration: 0.001ms !important;
  }
}
/* ie11 */
_:-ms-fullscreen svg,
:root svg {
  display: none !important;
}
_:-ms-fullscreen .header,
:root .header {
  padding: 20px;
}
_:-ms-fullscreen .header__inner,
:root .header__inner {
  display: block !important;
}
_:-ms-fullscreen .header__nav,
:root .header__nav {
  display: block !important;
}
_:-ms-fullscreen .header__nav ul.level0,
:root .header__nav ul.level0 {
  justify-content: flex-start !important;
}
_:-ms-fullscreen .header__nav ul.level0 > li,
:root .header__nav ul.level0 > li {
  margin-right: 2em;
}
_:-ms-fullscreen .header__nav ul.level1,
:root .header__nav ul.level1 {
  width: auto !important;
}
_:-ms-fullscreen .gridContainer,
:root .gridContainer {
  padding: 20px;
  max-width: 1200px;
}
_:-ms-fullscreen .image,
:root .image {
  max-width: 400px !important;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

html {
  color: #414042;
  overflow-y: scroll;
  position: relative;
  font: normal normal 400 13px/1.5 "Rajdhani", sans-serif;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  html {
    font-size: 17px;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 18px;
  }
}
@media screen and (min-width: 1600px) {
  html {
    font-size: 19px;
  }
}
html.hasTemplateColor body {
  background: var(--templateColor);
}
html.hasTemplateColor .content,
html.hasTemplateColor .content * {
  color: #fff;
}

body {
  position: relative;
  max-width: 2000px;
  margin: 0 auto;
}

h1 {
  color: var(--headerColor);
  font: normal normal 700 1.5rem/1.1 "Rajdhani", sans-serif;
  padding: var(--vGap) 0 var(--vGap) 0;
  margin: 0;
  hyphens: auto;
}
@media screen and (min-width: 768px) {
  h1 {
    padding-bottom: var(--vGap);
  }
}

h2 {
  color: var(--headerColor);
  font: normal normal 700 1.5rem/1.1 "Rajdhani", sans-serif;
  padding: calc(0.5 * var(--vGap)) 0 var(--vGap) 0;
  margin: 0;
}

h3 {
  font: normal normal 700 1.1rem/1.5 "Rajdhani", sans-serif;
  padding: 0 0 var(--vGap) 0;
  margin: 0;
}

h4 {
  font: normal normal 700 1.1rem/1.5 "Rajdhani", sans-serif;
  padding: 0 0 var(--vGap) 0;
  margin: 0;
}

p {
  padding: 0 0 var(--vGap) 0;
  margin: 0;
}

hr {
  width: 100%;
  height: 0;
  display: block;
  border: 0;
  border-top: 1px solid #f3f3f3;
  margin: 0;
  padding: 0 0 var(--vGap) 0;
}

ul {
  margin: 0;
  padding-bottom: var(--vGap);
}

ol {
  margin: 0;
  padding-bottom: var(--vGap);
}

a {
  text-decoration: underline;
  cursor: pointer;
  color: var(--defaultFontColor);
}

a:hover {
  text-decoration: underline;
  color: var(--defaultFontColor);
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  display: block;
}

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

table {
  width: auto;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0;
  padding: 0 0 var(--vGap) 0;
}

td {
  padding: 0 1rem 0 0;
}

strong,
b {
  font-weight: 600;
}

em,
i {
  font-style: italic;
}

iframe {
  border: 0;
}

figure {
  margin: 0;
  padding: 0 0 var(--vGap) 0;
  width: 100%;
}

blockquote {
  margin: 0;
  padding: 0 0 var(--vGap) 0;
}

.js .lazyload,
.js .lazyloading {
  opacity: 0;
}
.js .lazyloaded {
  opacity: 1;
  transition: opacity 300ms;
}

img[data-sizes=auto] {
  width: 100%;
  max-width: none;
}

.image-ratio {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}
.image-ratio i {
  display: block;
  width: 100%;
  pointer-events: none;
}
.image-ratio i:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
.image-ratio img {
  position: absolute;
  left: 0;
  top: 0;
}

.fa-svg {
  pointer-events: none;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav li {
  margin: 0;
  padding: 0;
}
nav a, nav a:hover {
  text-decoration: none;
}

.clear {
  clear: both;
  width: 100%;
  float: none;
}

.image__caption {
  padding: 0.2rem;
}

.copyright {
  color: #6f6f6f;
  font-size: 0.8rem;
  font-weight: 400;
  font-style: italic;
  opacity: 0.8;
}
.copyright a {
  color: #6f6f6f;
  font-weight: 400;
}

.datenschutz-checkbox-wrapper {
  font-size: 0.8rem;
  line-height: 1.2;
}

.btn {
  display: inline-block;
  font-size: 1.2rem;
  text-decoration: none;
  background: #fff;
  color: var(--defaultFontColor);
  border: 1px solid var(--defaultFontColor);
  text-shadow: none;
  padding: 0.2em 1em;
  font-weight: 300;
}
.btn svg {
  display: none;
}
.btn:hover {
  background: var(--defaultFontColor);
  text-decoration: none;
  border-color: var(--defaultFontColor);
  color: #fff;
}
.btn:hover svg {
  fill: #fff;
}
.gridItem .btn {
  margin-bottom: var(--gap);
}
p + .btn {
  margin-top: calc(0.5 * var(--gap));
}
.btn svg {
  height: 0.7em;
  padding-right: 0.5rem;
  fill: #fff;
}

.iw-icon {
  position: relative;
  top: 0.1em;
  display: inline-block;
  overflow: auto;
  text-align: center;
  line-height: 0;
  width: 1.2em;
}
.iw-icon.map-marker-alt {
  top: 0.2em;
}
.iw-icon svg {
  position: relative;
  width: 0.9em;
  height: auto;
}
.iw-icon svg.map-marker-alt {
  width: 0.8em;
}
.iw-icon svg.chevron-double-right {
  width: 0.6em;
}

/**/
.faq__question {
  position: relative;
  cursor: pointer;
  padding-left: 1.2em;
}
.faq__question svg {
  height: 0.8em;
  margin-right: 0.5em;
  position: absolute;
  left: 0;
  top: 0.3em;
  fill: #414042;
}
.faq__question:hover {
  color: #000;
}
.faq__question:hover svg {
  fill: #000;
}
.faq__question.open svg {
  transform: rotate(180deg);
}

.faq__answer {
  padding-bottom: calc(0.5 * var(--vGap));
}

/**/
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--hGap);
}
@media screen and (min-width: 600px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 800px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1000px) {
  .gallery {
    grid-template-columns: repeat(5, 1fr);
  }
}

/**/
.imageCredits {
  max-width: var(--contentMaxWidthWide);
  margin: 0 auto;
}

.imageCredits__tile,
.isotopeGridSizer {
  float: left;
  background: #f3f3f3;
  width: 100%;
}
.imageCredits__tile .image-ratio i:after,
.isotopeGridSizer .image-ratio i:after {
  display: none;
}
@media screen and (min-width: 600px) {
  .imageCredits__tile,
  .isotopeGridSizer {
    width: 50%;
  }
}
@media screen and (min-width: 900px) {
  .imageCredits__tile,
  .isotopeGridSizer {
    width: 33.3333%;
  }
}
.isotopeGridSizer {
  background: none transparent !important;
}

.imageCredits__text {
  padding: calc(0.5 * var(--vGap)) calc(0.5 * var(--hGap));
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  color: #414042;
  font-size: 0.8rem;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-decoration: none;
  font-weight: 400;
}
.imageCredits__text a {
  color: #414042;
  text-decoration: none;
}
.imageCredits__text a:hover {
  color: #414042;
  text-decoration: none;
}

/**/
.moduleTeaser {
  padding-bottom: var(--gap);
}
@media screen and (min-width: 768px) {
  .moduleTeaser {
    padding-top: calc(2 * var(--gap));
    padding-bottom: calc(2 * var(--gap));
  }
  .moduleTeaser + .moduleTeaser {
    padding-top: 0;
  }
}
@media screen and (min-width: 992px) {
  .moduleTeaser + .moduleTeaser {
    padding-top: calc(2 * var(--gap));
  }
}

.moduleTeaser__inner {
  margin: 0 auto;
  max-width: var(--contentMaxWidthNarrow);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--gap);
}
.moduleTeaser__inner h2 {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .moduleTeaser__inner {
    gap: calc(2 * var(--gap));
  }
}
@media screen and (min-width: 992px) {
  .moduleTeaser__inner {
    gap: calc(4 * var(--gap));
  }
}

.moduleTeaser__teaser {
  position: relative;
  aspect-ratio: 1;
}
.moduleTeaser__teaser .image-ratio {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.moduleTeaser__teaserInner {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: var(--gap);
}
.moduleTeaser__teaserInner .btn {
  background: none transparent;
  color: #fff;
  border-color: #fff;
}
.moduleTeaser__teaserInner .btn:hover {
  background: #fff;
  text-decoration: none;
  border-color: #fff;
  color: #8e191b;
}

.moduleFullwidthImage {
  padding-bottom: var(--gap);
}
@media screen and (min-width: 768px) {
  .moduleFullwidthImage {
    padding-top: calc(2 * var(--gap));
    padding-bottom: calc(2 * var(--gap));
  }
  .moduleFullwidthImage:first-child {
    padding-top: 0;
  }
}

.moduleFullwidthImage__inner {
  margin: 0 auto;
  max-width: var(--contentMaxWidthFull);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 10/10;
}
@media screen and (min-width: 400px) {
  .moduleFullwidthImage__inner {
    aspect-ratio: 10/10;
  }
}
@media screen and (min-width: 600px) {
  .moduleFullwidthImage__inner {
    aspect-ratio: 10/4;
  }
}
@media screen and (min-width: 992px) {
  .moduleFullwidthImage__inner {
    aspect-ratio: 10/3;
    justify-content: center;
  }
}

.moduleFullwidthImage__text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: calc(2 * var(--gap)) var(--gap);
  color: #fff;
  font-weight: 300;
  font-size: 2.8rem;
}
.moduleFullwidthImage__text br {
  display: none;
}
.moduleFullwidthImage__text .btn {
  background: none transparent;
  color: #fff;
  border-color: #fff;
  margin-top: 1rem;
}
.moduleFullwidthImage__text .btn:hover {
  background: #fff;
  text-decoration: none;
  border-color: #fff;
  color: #8e191b;
}
.moduleFullwidthImage__text small {
  font-size: 1.6rem;
}
@media screen and (min-width: 400px) {
  .moduleFullwidthImage__text br {
    display: inline-block;
  }
  .moduleFullwidthImage__text .btn {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 992px) {
  .moduleFullwidthImage__text br {
    display: inline-block;
  }
  .moduleFullwidthImage__text .btn {
    margin-top: 2rem;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1600px) {
  .moduleFullwidthImage__text .btn {
    margin-top: 4rem;
    font-size: 1.2rem;
  }
}

/**/
.content ul {
  padding-left: 0;
  list-style: none;
}
.content li {
  padding-left: 1em;
  position: relative;
}
.content li:before {
  content: "-";
  position: absolute;
  left: 0;
}

/**/
@media screen and (min-width: 768px) {
  .testimonial {
    display: flex;
    flex: 0 0 100%;
  }
}

.textimonial__inner {
  padding: 0 var(--hGap);
}
@media screen and (min-width: 768px) {
  .textimonial__inner {
    padding: 0 calc(2 * var(--hGap));
  }
}

.testimonial__image {
  padding: var(--gap) 0;
}
@media screen and (min-width: 768px) {
  .testimonial__image {
    flex: 0 0 calc(4rem + 300px);
    padding: 0;
    display: flex;
    align-items: center;
  }
}

.testimonial__text {
  padding: 0 var(--gap);
}
@media screen and (min-width: 768px) {
  .testimonial__text {
    display: flex;
    align-items: center;
    flex: 1;
    padding: 2rem 0;
  }
}
.testimonial__text figure {
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .testimonial__text figure {
    padding-left: var(--gap);
  }
}
.testimonial__text blockquote {
  font-style: italic;
}

/**/
.leistungen {
  display: grid;
  gap: 1px;
}
@media screen and (min-width: 600px) {
  .leistungen {
    grid-template-columns: calc(50% - 0.5px) calc(50% - 0.5px);
  }
}
@media screen and (min-width: 900px) {
  .leistungen {
    grid-template-columns: calc(33.33% - 0.6666666667px) calc(33.33% - 0.6666666667px) calc(33.33% - 0.6666666667px);
  }
}

.leistungen__item {
  aspect-ratio: 3/2;
}
@media screen and (min-width: 600px) {
  .leistungen__item {
    height: calc(0.5 * var(--slideshowHeight) - 1px);
    aspect-ratio: auto;
  }
}
.leistungen__item a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.leistungen__item a:hover {
  text-decoration: none;
}
.leistungen__item img {
  width: 40%;
  max-width: 200px;
  padding: 0 0 var(--gap) 0;
}
.leistungen__item p {
  padding: 0 var(--gap);
  text-align: center;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
}

.leistungen__item--noIcon a {
  justify-content: center;
}

/**/
.parallaxImage {
  height: 50vh;
  position: relative;
  overflow: hidden;
}

.parallaxImage__landscape,
.parallaxImage__portrait {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.parallaxImage__landscape div,
.parallaxImage__portrait div {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.isIos .parallaxImage__landscape div,
.isIos .parallaxImage__portrait div {
  background-attachment: scroll;
}

.parallaxImage__landscape {
  display: block;
}

@media screen and (orientation: portrait) {
  .parallaxImage {
    height: 33.33vh;
  }
  .parallaxImage__portrait {
    display: block;
  }
  .parallaxImage__landscape {
    display: none;
  }
}
#yform-formular-upload .input-group {
  display: flex;
}
#yform-formular-upload .input-group .btn {
  font-size: 1.6rem;
  border: 0;
  padding: 0 0.5em;
  font-weight: 700;
  color: red;
  margin: 0;
  position: relative;
  top: -0.15em;
  cursor: pointer;
}
#yform-formular-upload .input-group .btn:hover {
  background: #fff;
}

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