@charset "UTF-8";
/**
 * 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.eot"); /* IE9 Compat Modes */
  src: url("/theme/public/assets/fonts/rajdhani-v15-latin-300.eot?#iefix") format("embedded-opentype"), url("/theme/public/assets/fonts/rajdhani-v15-latin-300.woff2") format("woff2"), url("/theme/public/assets/fonts/rajdhani-v15-latin-300.woff") format("woff"), url("/theme/public/assets/fonts/rajdhani-v15-latin-300.ttf") format("truetype"), url("/theme/public/assets/fonts/rajdhani-v15-latin-300.svg#Rajdhani") format("svg"); /* Legacy iOS */
}
/* 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.eot"); /* IE9 Compat Modes */
  src: url("/theme/public/assets/fonts/rajdhani-v15-latin-regular.eot?#iefix") format("embedded-opentype"), url("/theme/public/assets/fonts/rajdhani-v15-latin-regular.woff2") format("woff2"), url("/theme/public/assets/fonts/rajdhani-v15-latin-regular.woff") format("woff"), url("/theme/public/assets/fonts/rajdhani-v15-latin-regular.ttf") format("truetype"), url("/theme/public/assets/fonts/rajdhani-v15-latin-regular.svg#Rajdhani") format("svg"); /* Legacy iOS */
}
/* 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.eot"); /* IE9 Compat Modes */
  src: url("/theme/public/assets/fonts/rajdhani-v15-latin-500.eot?#iefix") format("embedded-opentype"), url("/theme/public/assets/fonts/rajdhani-v15-latin-500.woff2") format("woff2"), url("/theme/public/assets/fonts/rajdhani-v15-latin-500.woff") format("woff"), url("/theme/public/assets/fonts/rajdhani-v15-latin-500.ttf") format("truetype"), url("/theme/public/assets/fonts/rajdhani-v15-latin-500.svg#Rajdhani") format("svg"); /* Legacy iOS */
}
/* 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.eot"); /* IE9 Compat Modes */
  src: url("/theme/public/assets/fonts/rajdhani-v15-latin-600.eot?#iefix") format("embedded-opentype"), url("/theme/public/assets/fonts/rajdhani-v15-latin-600.woff2") format("woff2"), url("/theme/public/assets/fonts/rajdhani-v15-latin-600.woff") format("woff"), url("/theme/public/assets/fonts/rajdhani-v15-latin-600.ttf") format("truetype"), url("/theme/public/assets/fonts/rajdhani-v15-latin-600.svg#Rajdhani") format("svg"); /* Legacy iOS */
}
/* 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.eot"); /* IE9 Compat Modes */
  src: url("/theme/public/assets/fonts/rajdhani-v15-latin-700.eot?#iefix") format("embedded-opentype"), url("/theme/public/assets/fonts/rajdhani-v15-latin-700.woff2") format("woff2"), url("/theme/public/assets/fonts/rajdhani-v15-latin-700.woff") format("woff"), url("/theme/public/assets/fonts/rajdhani-v15-latin-700.ttf") format("truetype"), url("/theme/public/assets/fonts/rajdhani-v15-latin-700.svg#Rajdhani") format("svg"); /* Legacy iOS */
}
:root {
  --logoHeight: 3rem;
  --headerHeight: calc(var(--logoHeight) + 3rem);
}

:root {
  --halfGap: 6px;
  --gap: calc(var(--halfGap) * 2);
  --2gap: calc(var(--gap) * 2);
  --3gap: calc(var(--gap) * 3);
  --4gap: calc(var(--gap) * 4);
  --5gap: calc(var(--gap) * 5);
  --6gap: calc(var(--gap) * 6);
  --7gap: calc(var(--gap) * 7);
  --8gap: calc(var(--gap) * 8);
  --contentWidth: 1400px;
  --headerWitdth: 1400px;
  --websiteWidth: 1400px;
}

@media screen and (min-width: 992px) {
  :root {
    --halfGap: 12px;
  }
}
.gridContainer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 calc(2 * var(--gap));
  margin: 0 auto;
  max-width: var(--contentWidth);
  position: relative;
}
@media screen and (min-width: 992px) {
  .gridContainer {
    padding-top: calc(2 * var(--gap));
  }
  .gridContainer .gridItem--1 {
    grid-column: 1;
  }
  .gridContainer .gridItem--2 {
    grid-column: 2;
  }
  .gridContainer .editor:first-child h1:first-child,
  .gridContainer .editor:first-child h2:first-child,
  .gridContainer .editor:first-child h3:first-child,
  .gridContainer .editor:first-child h4:first-child {
    padding-top: 0;
  }
  .gridContainer .editor:last-child h1:last-child,
  .gridContainer .editor:last-child h2:last-child,
  .gridContainer .editor:last-child h3:last-child,
  .gridContainer .editor:last-child h4:last-child {
    padding-bottom: 0;
  }
}

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

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

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

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

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

@media screen and (min-width: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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;
  }
}

.gridItem > :last-child:not(.btn):not(.editor) {
  padding-bottom: var(--gap);
}

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

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 #000;
  color: #000;
  padding: 4px;
}

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

.radio label,
.checkbox label {
  display: flex;
  align-items: flex-start;
}
.radio label input,
.checkbox label input {
  margin-right: 0.5rem;
  position: relative;
  top: 6px;
}

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

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

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

.alert {
  padding: var(--gap);
}
.alert .formcheckbox,
.alert ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.alert li {
  margin: 0;
}
.alert li + li {
  padding-top: 0.25em;
}

.alert-success {
  margin-bottom: 2rem;
  background-color: green !important;
  border-color: green !important;
  color: #fff !important;
  font-weight: 700;
}
.alert-success * {
  color: #fff !important;
}

.alert-info {
  color: #000 !important;
  padding: 1rem 0 !important;
}
.alert-info * {
  color: #000 !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;
  margin-bottom: 2rem;
}
.alert-warning * {
  color: #8a6d3b !important;
}

.alert-danger {
  margin-bottom: 2rem;
  background-color: red !important;
  border-color: red !important;
  color: #fff !important;
}
.alert-danger * {
  color: #fff !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(--gap));
  margin-bottom: var(--gap);
}

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

.formGridContainer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 var(--gap);
  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: #666;
  color: #fff;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 0.2rem;
  text-decoration: none;
}
nav.pagination a:hover {
  background: #000000;
  text-decoration: none;
}
nav.pagination .active a {
  background: #000000;
}
nav.pagination .disabled a {
  opacity: 0.25;
  cursor: default;
}
nav.pagination .disabled a:hover {
  background: #afb7bb;
}
nav.pagination svg {
  height: 1rem;
}

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

.download__itemLink {
  display: grid;
  grid-template-columns: 2.6rem 1fr;
}
.download__itemLink:hover {
  text-decoration: none;
}
.download__itemLink:hover * {
  text-decoration: none;
}

.download__itemIcon {
  display: flex;
  align-items: center;
}
.download__itemIcon svg {
  display: block;
  height: 2.3rem;
  width: auto;
}

.download__itemTitle {
  line-height: 1.3;
}
.download__itemTitle small {
  display: block;
}

.module, .swiper-slide-text, .offscreen, .header {
  padding: 0 var(--3gap);
  position: relative;
}
.module .image, .swiper-slide-text .image, .offscreen .image, .header .image {
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  .module .image, .swiper-slide-text .image, .offscreen .image, .header .image {
    max-width: none;
  }
}
.module .image__caption, .swiper-slide-text .image__caption, .offscreen .image__caption, .header .image__caption {
  font: normal normal 400 1rem/1.5 "Rajdhani", sans-serif;
}
.module .gallery, .swiper-slide-text .gallery, .offscreen .gallery, .header .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, .swiper-slide-text .gallery .isotopeGridSizer, .offscreen .gallery .isotopeGridSizer, .header .gallery .isotopeGridSizer {
  width: 100%;
}
.module .gallery .isotopeTile, .swiper-slide-text .gallery .isotopeTile, .offscreen .gallery .isotopeTile, .header .gallery .isotopeTile {
  width: 100%;
  margin-bottom: calc(2 * var(--gap));
  padding-bottom: 0;
}
@media screen and (min-width: 500px) {
  .module .gallery .isotopeGridSizer, .swiper-slide-text .gallery .isotopeGridSizer, .offscreen .gallery .isotopeGridSizer, .header .gallery .isotopeGridSizer {
    width: calc(50% - 1 * var(--gap));
  }
  .module .gallery .isotopeTile, .swiper-slide-text .gallery .isotopeTile, .offscreen .gallery .isotopeTile, .header .gallery .isotopeTile {
    width: calc(50% - 1 * var(--gap));
    margin-bottom: calc(2 * var(--gap));
  }
}
@media screen and (min-width: 992px) {
  .module .gallery .isotopeGridSizer, .swiper-slide-text .gallery .isotopeGridSizer, .offscreen .gallery .isotopeGridSizer, .header .gallery .isotopeGridSizer {
    width: calc(33.33% - 1.3333333333 * var(--gap));
  }
  .module .gallery .isotopeTile, .swiper-slide-text .gallery .isotopeTile, .offscreen .gallery .isotopeTile, .header .gallery .isotopeTile {
    width: calc(33.33% - 1.3333333333 * var(--gap));
    margin-bottom: calc(2 * var(--gap));
  }
}
.module .gallery.firstImage2Col .isotopeTile:first-child, .swiper-slide-text .gallery.firstImage2Col .isotopeTile:first-child, .offscreen .gallery.firstImage2Col .isotopeTile:first-child, .header .gallery.firstImage2Col .isotopeTile:first-child {
  width: 100%;
}
@media screen and (min-width: 500px) {
  .module .gallery, .swiper-slide-text .gallery, .offscreen .gallery, .header .gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: calc(2 * var(--gap));
  }
}
@media screen and (min-width: 992px) {
  .module .gallery, .swiper-slide-text .gallery, .offscreen .gallery, .header .gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.module .gallery .isotopeTile + .isotopeTile, .swiper-slide-text .gallery .isotopeTile + .isotopeTile, .offscreen .gallery .isotopeTile + .isotopeTile, .header .gallery .isotopeTile + .isotopeTile {
  margin-top: var(--gap);
}
@media screen and (min-width: 500px) {
  .module .gallery .isotopeTile + .isotopeTile, .swiper-slide-text .gallery .isotopeTile + .isotopeTile, .offscreen .gallery .isotopeTile + .isotopeTile, .header .gallery .isotopeTile + .isotopeTile {
    margin-top: 0;
  }
}
.module .videoWrapper.hasRatio, .swiper-slide-text .videoWrapper.hasRatio, .offscreen .videoWrapper.hasRatio, .header .videoWrapper.hasRatio {
  position: relative;
}
.module .videoWrapper.hasRatio video, .swiper-slide-text .videoWrapper.hasRatio video, .offscreen .videoWrapper.hasRatio video, .header .videoWrapper.hasRatio video {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.module .videoRatio, .swiper-slide-text .videoRatio, .offscreen .videoRatio, .header .videoRatio {
  display: block;
  width: 100%;
}
.module video, .swiper-slide-text video, .offscreen video, .header video {
  width: 100%;
  display: block;
}
@media screen and (min-width: 768px) {
  .module, .swiper-slide-text, .offscreen, .header {
    padding-left: var(--3gap);
    padding-right: var(--3gap);
  }
}
@media screen and (min-width: 1600px) {
  .module, .swiper-slide-text, .offscreen, .header {
    padding-left: var(--4gap);
    padding-right: var(--4gap);
  }
}
@media screen and (min-width: 992px) {
  .module.lastChildH1 + .module .gridContainer, .lastChildH1.swiper-slide-text + .module .gridContainer, .module.lastChildH1 + .swiper-slide-text .gridContainer, .lastChildH1.swiper-slide-text + .swiper-slide-text .gridContainer, .lastChildH1.offscreen + .module .gridContainer, .lastChildH1.offscreen + .swiper-slide-text .gridContainer, .module.lastChildH1 + .offscreen .gridContainer, .lastChildH1.swiper-slide-text + .offscreen .gridContainer, .lastChildH1.offscreen + .offscreen .gridContainer, .lastChildH1.header + .module .gridContainer, .lastChildH1.header + .swiper-slide-text .gridContainer, .lastChildH1.header + .offscreen .gridContainer, .module.lastChildH1 + .header .gridContainer, .lastChildH1.swiper-slide-text + .header .gridContainer, .lastChildH1.offscreen + .header .gridContainer, .lastChildH1.header + .header .gridContainer {
    padding-top: var(--4gap);
  }
}
.module.lastChildH1 + .module .gridItem--1 > .editor > h1, .lastChildH1.swiper-slide-text + .module .gridItem--1 > .editor > h1, .module.lastChildH1 + .swiper-slide-text .gridItem--1 > .editor > h1, .lastChildH1.swiper-slide-text + .swiper-slide-text .gridItem--1 > .editor > h1, .lastChildH1.offscreen + .module .gridItem--1 > .editor > h1, .lastChildH1.offscreen + .swiper-slide-text .gridItem--1 > .editor > h1, .module.lastChildH1 + .offscreen .gridItem--1 > .editor > h1, .lastChildH1.swiper-slide-text + .offscreen .gridItem--1 > .editor > h1, .lastChildH1.offscreen + .offscreen .gridItem--1 > .editor > h1, .lastChildH1.header + .module .gridItem--1 > .editor > h1, .lastChildH1.header + .swiper-slide-text .gridItem--1 > .editor > h1, .lastChildH1.header + .offscreen .gridItem--1 > .editor > h1, .module.lastChildH1 + .header .gridItem--1 > .editor > h1, .lastChildH1.swiper-slide-text + .header .gridItem--1 > .editor > h1, .lastChildH1.offscreen + .header .gridItem--1 > .editor > h1, .lastChildH1.header + .header .gridItem--1 > .editor > h1, .module.lastChildH1 + .module .gridItem--1 > .editor > h2, .lastChildH1.swiper-slide-text + .module .gridItem--1 > .editor > h2, .module.lastChildH1 + .swiper-slide-text .gridItem--1 > .editor > h2, .lastChildH1.swiper-slide-text + .swiper-slide-text .gridItem--1 > .editor > h2, .lastChildH1.offscreen + .module .gridItem--1 > .editor > h2, .lastChildH1.offscreen + .swiper-slide-text .gridItem--1 > .editor > h2, .module.lastChildH1 + .offscreen .gridItem--1 > .editor > h2, .lastChildH1.swiper-slide-text + .offscreen .gridItem--1 > .editor > h2, .lastChildH1.offscreen + .offscreen .gridItem--1 > .editor > h2, .lastChildH1.header + .module .gridItem--1 > .editor > h2, .lastChildH1.header + .swiper-slide-text .gridItem--1 > .editor > h2, .lastChildH1.header + .offscreen .gridItem--1 > .editor > h2, .module.lastChildH1 + .header .gridItem--1 > .editor > h2, .lastChildH1.swiper-slide-text + .header .gridItem--1 > .editor > h2, .lastChildH1.offscreen + .header .gridItem--1 > .editor > h2, .lastChildH1.header + .header .gridItem--1 > .editor > h2, .module.lastChildH1 + .module .gridItem--1 > .editor > h3, .lastChildH1.swiper-slide-text + .module .gridItem--1 > .editor > h3, .module.lastChildH1 + .swiper-slide-text .gridItem--1 > .editor > h3, .lastChildH1.swiper-slide-text + .swiper-slide-text .gridItem--1 > .editor > h3, .lastChildH1.offscreen + .module .gridItem--1 > .editor > h3, .lastChildH1.offscreen + .swiper-slide-text .gridItem--1 > .editor > h3, .module.lastChildH1 + .offscreen .gridItem--1 > .editor > h3, .lastChildH1.swiper-slide-text + .offscreen .gridItem--1 > .editor > h3, .lastChildH1.offscreen + .offscreen .gridItem--1 > .editor > h3, .lastChildH1.header + .module .gridItem--1 > .editor > h3, .lastChildH1.header + .swiper-slide-text .gridItem--1 > .editor > h3, .lastChildH1.header + .offscreen .gridItem--1 > .editor > h3, .module.lastChildH1 + .header .gridItem--1 > .editor > h3, .lastChildH1.swiper-slide-text + .header .gridItem--1 > .editor > h3, .lastChildH1.offscreen + .header .gridItem--1 > .editor > h3, .lastChildH1.header + .header .gridItem--1 > .editor > h3 {
  padding-top: 0;
}
.module.lastChildH2 + .module .gridItem--1 > .editor > h1, .lastChildH2.swiper-slide-text + .module .gridItem--1 > .editor > h1, .module.lastChildH2 + .swiper-slide-text .gridItem--1 > .editor > h1, .lastChildH2.swiper-slide-text + .swiper-slide-text .gridItem--1 > .editor > h1, .lastChildH2.offscreen + .module .gridItem--1 > .editor > h1, .lastChildH2.offscreen + .swiper-slide-text .gridItem--1 > .editor > h1, .module.lastChildH2 + .offscreen .gridItem--1 > .editor > h1, .lastChildH2.swiper-slide-text + .offscreen .gridItem--1 > .editor > h1, .lastChildH2.offscreen + .offscreen .gridItem--1 > .editor > h1, .lastChildH2.header + .module .gridItem--1 > .editor > h1, .lastChildH2.header + .swiper-slide-text .gridItem--1 > .editor > h1, .lastChildH2.header + .offscreen .gridItem--1 > .editor > h1, .module.lastChildH2 + .header .gridItem--1 > .editor > h1, .lastChildH2.swiper-slide-text + .header .gridItem--1 > .editor > h1, .lastChildH2.offscreen + .header .gridItem--1 > .editor > h1, .lastChildH2.header + .header .gridItem--1 > .editor > h1, .module.lastChildH2 + .module .gridItem--1 > .editor > h2, .lastChildH2.swiper-slide-text + .module .gridItem--1 > .editor > h2, .module.lastChildH2 + .swiper-slide-text .gridItem--1 > .editor > h2, .lastChildH2.swiper-slide-text + .swiper-slide-text .gridItem--1 > .editor > h2, .lastChildH2.offscreen + .module .gridItem--1 > .editor > h2, .lastChildH2.offscreen + .swiper-slide-text .gridItem--1 > .editor > h2, .module.lastChildH2 + .offscreen .gridItem--1 > .editor > h2, .lastChildH2.swiper-slide-text + .offscreen .gridItem--1 > .editor > h2, .lastChildH2.offscreen + .offscreen .gridItem--1 > .editor > h2, .lastChildH2.header + .module .gridItem--1 > .editor > h2, .lastChildH2.header + .swiper-slide-text .gridItem--1 > .editor > h2, .lastChildH2.header + .offscreen .gridItem--1 > .editor > h2, .module.lastChildH2 + .header .gridItem--1 > .editor > h2, .lastChildH2.swiper-slide-text + .header .gridItem--1 > .editor > h2, .lastChildH2.offscreen + .header .gridItem--1 > .editor > h2, .lastChildH2.header + .header .gridItem--1 > .editor > h2, .module.lastChildH2 + .module .gridItem--1 > .editor > h3, .lastChildH2.swiper-slide-text + .module .gridItem--1 > .editor > h3, .module.lastChildH2 + .swiper-slide-text .gridItem--1 > .editor > h3, .lastChildH2.swiper-slide-text + .swiper-slide-text .gridItem--1 > .editor > h3, .lastChildH2.offscreen + .module .gridItem--1 > .editor > h3, .lastChildH2.offscreen + .swiper-slide-text .gridItem--1 > .editor > h3, .module.lastChildH2 + .offscreen .gridItem--1 > .editor > h3, .lastChildH2.swiper-slide-text + .offscreen .gridItem--1 > .editor > h3, .lastChildH2.offscreen + .offscreen .gridItem--1 > .editor > h3, .lastChildH2.header + .module .gridItem--1 > .editor > h3, .lastChildH2.header + .swiper-slide-text .gridItem--1 > .editor > h3, .lastChildH2.header + .offscreen .gridItem--1 > .editor > h3, .module.lastChildH2 + .header .gridItem--1 > .editor > h3, .lastChildH2.swiper-slide-text + .header .gridItem--1 > .editor > h3, .lastChildH2.offscreen + .header .gridItem--1 > .editor > h3, .lastChildH2.header + .header .gridItem--1 > .editor > h3 {
  padding-top: 0;
}
.module.lastChildH3 + .module .gridItem--1 > .editor > h1, .lastChildH3.swiper-slide-text + .module .gridItem--1 > .editor > h1, .module.lastChildH3 + .swiper-slide-text .gridItem--1 > .editor > h1, .lastChildH3.swiper-slide-text + .swiper-slide-text .gridItem--1 > .editor > h1, .lastChildH3.offscreen + .module .gridItem--1 > .editor > h1, .lastChildH3.offscreen + .swiper-slide-text .gridItem--1 > .editor > h1, .module.lastChildH3 + .offscreen .gridItem--1 > .editor > h1, .lastChildH3.swiper-slide-text + .offscreen .gridItem--1 > .editor > h1, .lastChildH3.offscreen + .offscreen .gridItem--1 > .editor > h1, .lastChildH3.header + .module .gridItem--1 > .editor > h1, .lastChildH3.header + .swiper-slide-text .gridItem--1 > .editor > h1, .lastChildH3.header + .offscreen .gridItem--1 > .editor > h1, .module.lastChildH3 + .header .gridItem--1 > .editor > h1, .lastChildH3.swiper-slide-text + .header .gridItem--1 > .editor > h1, .lastChildH3.offscreen + .header .gridItem--1 > .editor > h1, .lastChildH3.header + .header .gridItem--1 > .editor > h1, .module.lastChildH3 + .module .gridItem--1 > .editor > h2, .lastChildH3.swiper-slide-text + .module .gridItem--1 > .editor > h2, .module.lastChildH3 + .swiper-slide-text .gridItem--1 > .editor > h2, .lastChildH3.swiper-slide-text + .swiper-slide-text .gridItem--1 > .editor > h2, .lastChildH3.offscreen + .module .gridItem--1 > .editor > h2, .lastChildH3.offscreen + .swiper-slide-text .gridItem--1 > .editor > h2, .module.lastChildH3 + .offscreen .gridItem--1 > .editor > h2, .lastChildH3.swiper-slide-text + .offscreen .gridItem--1 > .editor > h2, .lastChildH3.offscreen + .offscreen .gridItem--1 > .editor > h2, .lastChildH3.header + .module .gridItem--1 > .editor > h2, .lastChildH3.header + .swiper-slide-text .gridItem--1 > .editor > h2, .lastChildH3.header + .offscreen .gridItem--1 > .editor > h2, .module.lastChildH3 + .header .gridItem--1 > .editor > h2, .lastChildH3.swiper-slide-text + .header .gridItem--1 > .editor > h2, .lastChildH3.offscreen + .header .gridItem--1 > .editor > h2, .lastChildH3.header + .header .gridItem--1 > .editor > h2, .module.lastChildH3 + .module .gridItem--1 > .editor > h3, .lastChildH3.swiper-slide-text + .module .gridItem--1 > .editor > h3, .module.lastChildH3 + .swiper-slide-text .gridItem--1 > .editor > h3, .lastChildH3.swiper-slide-text + .swiper-slide-text .gridItem--1 > .editor > h3, .lastChildH3.offscreen + .module .gridItem--1 > .editor > h3, .lastChildH3.offscreen + .swiper-slide-text .gridItem--1 > .editor > h3, .module.lastChildH3 + .offscreen .gridItem--1 > .editor > h3, .lastChildH3.swiper-slide-text + .offscreen .gridItem--1 > .editor > h3, .lastChildH3.offscreen + .offscreen .gridItem--1 > .editor > h3, .lastChildH3.header + .module .gridItem--1 > .editor > h3, .lastChildH3.header + .swiper-slide-text .gridItem--1 > .editor > h3, .lastChildH3.header + .offscreen .gridItem--1 > .editor > h3, .module.lastChildH3 + .header .gridItem--1 > .editor > h3, .lastChildH3.swiper-slide-text + .header .gridItem--1 > .editor > h3, .lastChildH3.offscreen + .header .gridItem--1 > .editor > h3, .lastChildH3.header + .header .gridItem--1 > .editor > h3 {
  padding-top: 0;
}

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

:root {
  --halfGap: 6px;
  --gap: calc(var(--halfGap) * 2);
  --2gap: calc(var(--gap) * 2);
  --3gap: calc(var(--gap) * 3);
  --4gap: calc(var(--gap) * 4);
  --5gap: calc(var(--gap) * 5);
  --6gap: calc(var(--gap) * 6);
  --7gap: calc(var(--gap) * 7);
  --8gap: calc(var(--gap) * 8);
  --contentWidth: 1400px;
  --headerWidth: 1400px;
  --websiteWidth: 1400px;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 201;
  left: 0;
  top: 0;
}
.header.headroom--not-top {
  background: rgba(255, 255, 255, 0.8);
}

.header__inner {
  width: 100%;
  height: 100%;
  max-width: calc(var(--websiteWidth) + 160px);
  max-width: var(--websiteWidth);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 201;
}
.header__inner svg {
  display: block;
  height: var(--logoHeight);
  width: auto;
}

.header__logo {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: block;
}
.header__logo svg {
  fill: #000;
}
.header__logo:hover svg {
  fill: #f1a836;
}

body {
  padding-top: var(--headerHeight);
}

.header__nav {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 1rem;
}
.header__nav ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.header__nav ul.level0 {
  text-transform: uppercase;
}
.header__nav li {
  padding: 0 0 0 2em;
  position: relative;
  white-space: nowrap;
}
.header__nav li:before {
  content: "/";
  position: absolute;
  left: 1em;
}
.header__nav li:first-child {
  padding-left: 0;
}
.header__nav li:first-child:before {
  display: none;
}
.header__nav a.current, .header__nav a.active {
  font-weight: 700;
}
@media screen and (min-width: 1300px) {
  .header__nav {
    display: flex;
  }
}

.footer {
  width: 100%;
  padding-top: 6rem;
}

.footer__inner {
  display: flex;
  margin: 0 auto;
  justify-content: space-between;
  max-width: var(--websiteWidth);
  padding: 1rem var(--3gap) 2rem var(--3gap);
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 1rem var(--3gap) 2rem var(--3gap);
  }
}
@media screen and (min-width: 1600px) {
  .footer__inner {
    padding: 1rem 0 2rem 0;
  }
}
.footer__inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.footer__inner ul li {
  position: relative;
  padding-left: 2em;
}
.footer__inner ul li:before {
  content: "|";
  position: absolute;
  left: 1em;
}
.footer__inner ul li:first-child {
  padding-left: 0;
}
.footer__inner ul li:first-child:before {
  display: none;
}

.offscreen {
  position: fixed;
  top: 0;
  width: 100%;
  min-height: 100vh;
  z-index: 200;
  overflow: auto;
  right: -100%;
  transition: right 0.25s;
}
.offscreen.visible {
  right: 0;
}
.offscreen .offscreen__toggle {
  background: none transparent;
}
.offscreen .offscreen__toggleText {
  display: none;
}
.offscreen .offscreen__toggleIcon b {
  background: #000000;
  margin: 0;
}
.offscreen .offscreen__toggleIcon b:first-child {
  transform: translate(1px, 2px) rotate(45deg);
}
.offscreen .offscreen__toggleIcon b:last-child {
  transform: translate(0, 0) rotate(-45deg);
}

.offscreen__inner {
  width: 100%;
  max-width: var(--websiteWidth);
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}

.offscreen__nav {
  width: 100%;
  max-width: 20rem;
  float: none;
  clear: both;
  position: relative;
  padding: calc(var(--2gap) + var(--headerHeight)) 67px var(--2gap) 0;
  height: 100vh;
}
.offscreen__nav:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 22000px;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
}
.headroom--not-top .offscreen__nav:before {
  top: var(--headerHeight);
  height: calc(100% - var(--headerHeight));
}
.offscreen__nav li {
  display: block;
}
.offscreen__nav a {
  display: block;
  padding: 0.4rem 0;
  font: normal normal 400 1.2rem/1.5 "Rajdhani", sans-serif;
  color: #000000;
  text-align: right;
  position: relative;
}
.offscreen__nav a:hover {
  color: #f1a836;
  font-weight: 700;
}
.offscreen__nav a:hover:after {
  content: "";
  display: block;
  position: absolute;
  right: -3.15rem;
  top: 0.9em;
  width: 1.7rem;
  height: 6px;
  background: #f1a836;
}
@media screen and (min-width: 992px) {
  .offscreen__nav a:hover:after {
    right: -56px;
  }
}
.offscreen__nav a.current {
  color: #000;
  font-weight: 700;
}
.offscreen__nav a.current:after {
  content: "";
  display: block;
  position: absolute;
  right: -3.15rem;
  top: 0.9em;
  width: 1.7rem;
  height: 6px;
  background: #000000;
}
@media screen and (min-width: 992px) {
  .offscreen__nav a.current:after {
    right: -56px;
  }
}
.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 {
  position: relative;
  right: calc(-1 * var(--gap));
  z-index: 199;
  padding: var(--gap);
  display: flex;
  opacity: 0;
  transition: opacity 0.25s ease-in-out;
}
.offscreen__toggle svg {
  width: 2.7rem;
  height: auto;
}
.offscreen__toggle svg {
  display: none;
}
.offscreen__toggle svg:nth-child(1) {
  display: block;
}
.offscreen__toggle svg:nth-child(1),
.offscreen__toggle svg:nth-child(2) {
  width: 2.85rem;
}
.offscreen__toggle.visible {
  opacity: 1;
}
.offscreen__toggle.headroom--top {
  background: none transparent;
}
.offscreen__toggle:hover {
  text-decoration: none;
}
.offscreen__toggle:hover svg:nth-child(1) {
  display: none;
}
.offscreen__toggle:hover svg:nth-child(2) {
  display: block;
}
.offscreen__toggle.open svg:nth-child(1),
.offscreen__toggle.open svg:nth-child(2) {
  display: none !important;
}
.offscreen__toggle.open svg:nth-child(3) {
  display: block;
}
.offscreen__toggle.open:hover svg:nth-child(3) {
  display: none;
}
.offscreen__toggle.open:hover svg:nth-child(4) {
  display: block;
}

.offscreen__toggleInner {
  line-height: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-decoration: none;
}
.offscreen__toggleInner svg {
  fill: #000000;
}

.offscreen__toggleText {
  display: block;
  line-height: 1;
  font-weight: 600;
  margin-bottom: 13px;
  color: #000000;
  text-transform: uppercase;
  font-size: 0.8rem;
  text-decoration: none;
}
.offscreen__toggleText:hover {
  text-decoration: none;
}
@media screen and (min-width: 1200px) {
  .offscreen__toggleText {
    font-size: 1rem;
  }
}

.offscreen__toggleIcon {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
}
.offscreen__toggleIcon b {
  display: block;
  width: 3rem;
  height: 2px;
  background: #000000;
  border-radius: 100px;
}
.offscreen__toggleIcon b + b {
  margin-top: 8px;
}

.moduleSwiper {
  padding: 0;
  position: relative;
}
.moduleSwiper .swiper-container {
  background: #fff;
}
.moduleSwiper:before {
  content: "";
  background: #afb7bb;
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  top: 40%;
}
.moduleSwiper + .module28 {
  margin-top: var(--3gap);
}
.moduleSwiper:first-child {
  margin-top: calc(-1 * var(--headerHeight));
}

.swiper-slide {
  height: auto;
  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;
  background-repeat: no-repeat;
  background-color: #fff;
  background-position: center !important;
}

.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: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 1;
}

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

.swiper-pagination-bullet {
  display: inline-block;
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  opacity: 1;
  background: none transparent;
  border: 1px solid #afb7bb;
  margin-left: var(--halfGap);
}

.swiper-pagination-bullet-active {
  border: 1px solid #000;
}

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

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

.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: 100vh;
  }
  .module28 .swiper-slide:after {
    padding-top: 66.6666%;
  }
  .swiper-slide-background-landscape {
    display: none;
  }
}
@media screen and (orientation: landscape) {
  .swiper-slide:after {
    padding-top: 100vh;
  }
  .module28 .swiper-slide:after {
    padding-top: 66.6666%;
  }
  .swiper-slide-background-portrait {
    display: none;
  }
}
.slide__headline,
.slide__text {
  color: #fff;
  text-shadow: 0 0 3px #000;
}

.slide__headline {
  font-size: 2rem;
}

.slide__content {
  max-width: var(--contentWidth);
  margin: 0 auto;
  line-height: 1.1;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .slide__content {
    font-size: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .slide__content {
    font-size: 4.5rem;
  }
}
@media screen and (min-width: 1200px) {
  .slide__content {
    font-size: 5.5rem;
  }
}
@media screen and (min-width: 1600px) {
  .slide__content {
    font-size: 6rem;
  }
}

.swiper-slide--text .swiper-slide-text,
.swiper-slide--imageText .swiper-slide-text {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: calc((100vh - 7rem) / 4.5);
}

.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: #000000;
  background: #fff;
  position: relative;
  font: normal normal 400 16px/1.5 "Rajdhani", sans-serif;
  font-size: 18px;
}
@media screen and (min-width: 992px) {
  html {
    font-size: 20px;
  }
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 22px;
  }
}

body {
  position: relative;
  width: 100%;
}

h1, .moduleContact h2 {
  color: #000000;
  font: normal normal 700 1.8rem/1.3 "Rajdhani", sans-serif;
  margin: 0;
  padding: var(--gap) 0;
}

h2 {
  color: #000000;
  font: normal normal 700 1rem/1.5 "Rajdhani", sans-serif;
  margin: 0;
  padding: var(--gap) 0;
}

h3 {
  color: #000000;
  font: normal normal 700 1rem/1.5 "Rajdhani", sans-serif;
  margin: 0;
  padding: var(--gap) 0;
}

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

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

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

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

a {
  text-decoration: none;
  cursor: pointer;
  color: #000000;
}

a:hover {
  text-decoration: none;
  color: #f1a836;
}

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(--gap) 0;
}

td {
  padding: 0 1rem 0 0;
}

strong,
b {
  font-weight: 700;
}

em,
i {
  font-style: italic;
}

iframe {
  border: 0;
}

figure {
  margin: 0;
  padding: 0 0 var(--gap) 0;
}

blockquote {
  margin: 0;
  padding: 0 0 var(--gap) 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%;
  background: #afb7bb;
  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.5rem 0;
}

.btn {
  display: inline-flex;
  background: #000;
  color: #fff;
  border: 0;
  padding: 0.25rem 2rem;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
}

.btn__link {
  border: 0;
  font-weight: 400;
  text-decoration: none;
  background: #000000;
  color: #fff;
  text-shadow: none;
  padding: 1rem 2rem;
  margin-top: var(--gap);
  margin-bottom: var(--gap);
  text-transform: uppercase;
  font-size: 1.2rem;
}
.btn__link:hover {
  background: black;
  text-decoration: none;
  color: #fff;
}
.btn__link:hover svg {
  fill: #fff;
}
.btn__link svg {
  position: relative;
  top: 0.15em;
  height: 1em;
  padding-right: 0.75rem;
  fill: #fff;
}

.btn__link--download {
  line-height: 1.3;
}
.btn__link--download svg {
  height: 1.6em;
}
.btn__link--download small {
  display: block;
}

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

/**/
.content {
  width: 100%;
  margin: 0 auto;
  min-height: calc(100vh - 7rem);
}

.editor ul {
  list-style: none;
  padding-left: 0;
}
.editor li {
  padding-left: 0.75rem;
  position: relative;
}
.editor li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #000000;
}

.totop__wrapper {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 100%;
  display: none;
}

.totop__wrapperInner {
  width: 100%;
  max-width: var(--websiteWidth);
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .totop__wrapperInner {
    width: calc(100% - var(--4gap));
  }
}

.totop {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: var(--gap);
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}
.totop svg {
  width: 32px;
}
.totop svg path {
  fill: #000000;
}
.totop:hover svg path {
  fill: #000000;
}
.totop.aboveFooter {
  background: #afb7bb;
}

/**/
.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: #000000;
}
.faq__question:hover {
  color: #f1a836;
}
.faq__question:hover svg {
  fill: #f1a836;
}
.faq__question.open svg {
  transform: rotate(180deg);
}

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

/**/
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
}
@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(--contentWidth);
  margin: 0 auto;
}

.imageCredits__tile,
.isotopeGridSizer {
  float: left;
  background: #afb7bb;
  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(--gap)) calc(0.5 * var(--gap));
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  font-size: 0.8rem;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-decoration: none;
  font-weight: 400;
}
.imageCredits__text a {
  color: #000000;
  text-decoration: none;
}
.imageCredits__text a:hover {
  color: #000000;
  text-decoration: none;
}

/**/
.fullWidthImage {
  padding: var(--3gap) 0 var(--gap) 0;
  position: relative;
}
.fullWidthImage:first-child {
  padding-top: 0;
}
.fullWidthImage:last-child {
  padding-bottom: 0;
}

.fullWidthImage__inner {
  width: 100%;
  max-width: var(--websiteWidth);
  margin: 0 auto;
  position: relative;
}
.fullWidthImage__inner:after {
  content: "";
  display: block;
  padding-top: 40%;
}
@media screen and (min-width: 992px) {
  .fullWidthImage__inner:after {
    padding-top: 50%;
  }
}

.fullWidthImage__landscape,
.fullWidthImage__landscape .lazyloadWrapper,
.fullWidthImage__portrait,
.fullWidthImage__portrait .lazyloadWrapper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.fullWidthImage__portrait {
  display: none;
}

@media screen and (orientation: portrait) {
  .fullWidthImage__inner:after {
    padding-top: 60vh;
  }
}
@media screen and (orientation: portrait) and (min-width: 992px) {
  .fullWidthImage__inner:after {
    padding-top: 50%;
  }
}
@media screen and (orientation: portrait) {
  .fullWidthImage__landscape {
    display: none;
  }
  .fullWidthImage__portrait {
    display: block;
  }
}
@media screen and (max-width: 360px) {
  .fullWidthImage__inner:after {
    padding-top: 90vh;
  }
}
/**/
.gridContainer--33_66.gridContainer--project {
  grid-template-columns: 100%;
}
@media screen and (min-width: 992px) {
  .gridContainer--33_66.gridContainer--project {
    grid-template-columns: calc(33.3333% - 1.3333333333 * var(--gap)) calc(66.6666% - 1.3333333333 * var(--gap));
    grid-template-columns: calc(33.3333% - var(--gap)) calc(66.6666% - var(--gap));
  }
}

.gridContainer--project h1 + p, .gridContainer--project .moduleContact h2 + p, .moduleContact .gridContainer--project h2 + p {
  margin-bottom: var(--3gap);
}
.gridContainer--project .gridItem--1 {
  position: relative;
  padding-bottom: 6rem;
}
@media screen and (min-width: 992px) {
  .gridContainer--project .swiper-container {
    margin-top: calc(var(--gap) + 0.4rem);
  }
}

.projectDetail__backLink {
  position: absolute;
  left: 0;
  bottom: var(--gap);
  display: block;
  width: 100%;
  max-width: 100px;
}
.projectDetail__backLink svg {
  height: 2.4rem;
  width: auto;
}
.projectDetail__backLink svg polygon {
  fill: #1d1d1b;
  stroke: #1d1d1b;
}
.projectDetail__backLink:hover svg polygon {
  fill: #f1a836;
  stroke: #f1a836;
}

.module__projectlist a:hover, .module__projectlist a:hover * {
  text-decoration: none;
}
.module__projectlist a:hover img {
  filter: saturate(50%);
}

.project__showDetails {
  border: 0;
  background: 0;
  padding: 0;
  display: flex;
  font-weight: bold;
  align-items: center;
  cursor: pointer;
}
.project__showDetails i {
  line-height: 0;
}
.project__showDetails svg {
  margin-right: 0.5em;
  width: 0.6em;
}
.project__showDetails .project__close {
  display: none;
}
.project__showDetails.open .project__open {
  display: none;
}
.project__showDetails.open .project__close {
  display: block;
}

.text2 {
  line-height: 1.3;
}

.projectDetail__downloads {
  padding-top: var(--gap);
  padding-bottom: var(--2gap) !important;
  /*
  .download__itemLink {
    display: inline-grid;
    grid-template-columns: 2rem 1fr;
    padding: .25rem .5rem;
    background: #000;
    color: #fff;
    svg {
      path {
        fill: #fff;
      }
    }
  }
   */
}
.projectDetail__downloads .download__itemIcon svg {
  height: 1.9rem;
}

.project__downloads {
  display: none;
  padding-top: var(--gap);
}

/**/
.extraVerticalSpace--1 {
  padding-top: 1rem;
}

.extraVerticalSpace--2 {
  padding-top: 2rem;
}

.extraVerticalSpace--3 {
  padding-top: 3rem;
}

.extraVerticalSpace--4 {
  padding-top: 4rem;
}

.extraVerticalSpace--5 {
  padding-top: 5rem;
}

.extraVerticalSpace--6 {
  padding-top: 6rem;
}

.extraVerticalSpace--7 {
  padding-top: 7rem;
}

.extraVerticalSpace--8 {
  padding-top: 8rem;
}

.extraVerticalSpace--9 {
  padding-top: 9rem;
}

.extraVerticalSpace--10 {
  padding-top: 10rem;
}

/**/
.language__nav {
  position: fixed;
  left: 0;
  top: 25vh;
  z-index: 100;
  font-size: 80%;
}
.language__nav ul, .language__nav li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.language__nav ul {
  display: flex;
  flex-direction: column;
  border: 1px solid #000;
  border-left: 0;
}
.language__nav li {
  width: 1.8em;
}
.language__nav a {
  display: block;
  padding: 0.3em 0 0.2em 0;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  text-decoration: none;
  text-indent: 1px;
  background: #fff;
}
.language__nav a:hover {
  text-decoration: none;
  background: #fff;
  color: #000;
}
.language__nav a.current {
  background: #000;
  color: #fff;
}

.moduleContact {
  max-width: var(--websiteWidth);
  margin: 0 auto;
  background: #000;
  color: #fff;
  text-align: center;
  padding-top: var(--2gap);
  padding-bottom: var(--2gap);
}
.moduleContact a, .moduleContact a:hover {
  color: #fff;
  line-height: 1;
}
.moduleContact h2 {
  padding-bottom: var(--halfgap);
  color: #fff;
}
.moduleContact p {
  margin-top: var(--3gap);
  display: flex;
  justify-content: center;
}
.moduleContact svg {
  width: 2.6rem;
  height: 2.6rem;
  display: block;
  margin: 0 auto;
  fill: #fff;
}
/*# sourceMappingURL=dev.css.map */
