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

/* poppins-100 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 100;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-100.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-100.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-200 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 200;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-200.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-200.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-100italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 100;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-100italic.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-100italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-200italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 200;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-200italic.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-200italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-300 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-300.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-300.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-regular - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-regular.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-300italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 300;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-300italic.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-300italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-italic.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-500 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-500.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-500italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 500;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-500italic.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-500italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-600 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-600.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-600.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-600italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 600;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-600italic.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-600italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-700italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 700;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-700italic.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-700italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-700 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-700.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-800 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-800.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-800.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-800italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 800;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-800italic.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-800italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-900italic - latin */
@font-face {
  font-family: "Poppins";
  font-style: italic;
  font-weight: 900;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-900italic.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-900italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* poppins-900 - latin */
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  src: local(""), url("/theme/public/assets/fonts/poppins-v15-latin-900.woff2") format("woff2"), url("/theme/public/assets/fonts/poppins-v15-latin-900.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@media screen and (min-width: 0) {
  .container {
    max-width: 1920px;
  }
  .container--no-maxwidth {
    max-width: none;
  }
  html {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    font-family: Poppins, sans-serif;
  }
  h1 {
    font-size: 1.6rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  h2, .big-link a, .teaser__title {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  h3 {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-1 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-2 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-3 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  h1 {
    margin: 3.5rem 0 2rem 0;
  }
  .articledate {
    margin: -2rem 0 2rem 0;
  }
  .row.mt-h1,
  .col.mt-h1 {
    margin-top: 2.5rem;
  }
  h2 {
    margin: 2.5rem 0 1rem 0;
  }
  .row.mt-h2,
  .col.mt-h2 {
    margin-top: 1.5rem;
  }
  h3 {
    margin: 1.5rem 0 1rem 0;
  }
  .row.mt-h3,
  .col.mt-h3 {
    margin-top: 0.5rem;
  }
  h4 {
    margin: 0 0 1rem 0;
  }
  .row.mt-h4,
  .col.mt-h4 {
    margin-top: 0;
  }
  h1 + h2 {
    margin-top: -1rem;
  }
  .row.mb-h1 + .row.mt-h2 {
    margin-top: 0;
  }
  ul,
  ol,
  table,
  p,
  hr,
  fieldset,
  blockquote,
  .form-group,
  .yform-element,
  .html object,
  .html iframe,
  .responsive-iframe {
    margin: 0 0 1rem 0;
  }
  .image {
    margin-bottom: 1rem;
  }
  hr {
    margin: 1rem 0 2rem 0;
  }
  li {
    margin-bottom: 0.25rem;
  }
  li:last-child {
    margin-bottom: 0;
  }
  .pagination {
    margin: 2rem 0 1rem 0;
  }
  .row.mt-h1:first-child,
  .row.mt-h2:first-child,
  .row.mt-h3:first-child,
  .row.mt-h4:first-child,
  .col.mt-h1:first-child,
  .col.mt-h2:first-child,
  .col.mt-h3:first-child,
  .col.mt-h4:first-child,
  .col > h1:first-child,
  .col > h1:first-child,
  .col > h2:first-child,
  .col > h3:first-child,
  .col > h4:first-child,
  .image + h1,
  .image + h2,
  .image + h3,
  .image + h4,
  .articlelist-tile-text h2,
  .row:first-child .col:first-child {
    margin-top: 0;
  }
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .row-inner {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .col {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .row:before, .row:after,
  .row-inner:before,
  .row-inner:after {
    content: " ";
    display: table;
  }
  .row:after,
  .row-inner:after {
    clear: both;
  }
  /*
  .image-position-left,
  .image-position-right {
      & + h1,
      & + h2,
      & + h3,
      & + h4,
      & + h5,
      & + h6 {
          overflow: hidden;
      }
  }
  */
  .image img {
    display: block;
  }
  .image-caption * {
    display: inline;
  }
  .responsive-iframe {
    position: relative;
  }
  .responsive-iframe iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .image-position-left {
    float: left;
    margin-right: 1rem;
  }
  .image-position-left.image-width-100 {
    margin-right: 0;
    padding-right: 0;
  }
  .image-position-right {
    float: right;
    margin-left: 1rem;
  }
  .image-position-right.image-width-100 {
    margin-left: 0;
    padding-left: 0;
  }
  .image-width-25,
  .image-width-33,
  .image-width-50 {
    width: 33%;
  }
  .image-width-66,
  .image-width-75,
  .image-width-100 {
    width: 100%;
  }
  .gallery {
    margin: 0 -1px 1rem -1px;
    padding: 0;
  }
  .gallery:before, .gallery:after {
    content: " ";
    display: table;
  }
  .gallery:after {
    clear: both;
  }
  .gallery div {
    margin: 0;
    padding: 1px;
    width: 33.33%;
    float: left;
  }
  .gallery a {
    display: block;
  }
  .gallery img {
    display: block;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .container {
    max-width: 1920px;
  }
  .container--no-maxwidth {
    max-width: none;
  }
  html {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 300;
    font-family: Poppins, sans-serif;
  }
  h1 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  h2, .big-link a, .teaser__title {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  h3 {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-1 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-2 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-3 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  h1 {
    margin: 3.5rem 0 2rem 0;
  }
  .articledate {
    margin: -2rem 0 2rem 0;
  }
  .row.mt-h1,
  .col.mt-h1 {
    margin-top: 2.5rem;
  }
  h2 {
    margin: 2.5rem 0 1rem 0;
  }
  .row.mt-h2,
  .col.mt-h2 {
    margin-top: 1.5rem;
  }
  h3 {
    margin: 1.5rem 0 1rem 0;
  }
  .row.mt-h3,
  .col.mt-h3 {
    margin-top: 0.5rem;
  }
  h4 {
    margin: 0 0 1rem 0;
  }
  .row.mt-h4,
  .col.mt-h4 {
    margin-top: 0;
  }
  h1 + h2 {
    margin-top: -1rem;
  }
  .row.mb-h1 + .row.mt-h2 {
    margin-top: 0;
  }
  ul,
  ol,
  table,
  p,
  hr,
  fieldset,
  blockquote,
  .form-group,
  .yform-element,
  .html object,
  .html iframe,
  .responsive-iframe {
    margin: 0 0 1rem 0;
  }
  .image {
    margin-bottom: 1rem;
  }
  hr {
    margin: 1rem 0 2rem 0;
  }
  li {
    margin-bottom: 0.25rem;
  }
  li:last-child {
    margin-bottom: 0;
  }
  .pagination {
    margin: 2rem 0 1rem 0;
  }
  .row.mt-h1:first-child,
  .row.mt-h2:first-child,
  .row.mt-h3:first-child,
  .row.mt-h4:first-child,
  .col.mt-h1:first-child,
  .col.mt-h2:first-child,
  .col.mt-h3:first-child,
  .col.mt-h4:first-child,
  .col > h1:first-child,
  .col > h1:first-child,
  .col > h2:first-child,
  .col > h3:first-child,
  .col > h4:first-child,
  .image + h1,
  .image + h2,
  .image + h3,
  .image + h4,
  .articlelist-tile-text h2,
  .row:first-child .col:first-child {
    margin-top: 0;
  }
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .row-inner {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .col {
    padding-left: 2rem;
    padding-right: 2rem;
    float: left;
    min-height: 1px;
  }
  .col-width-100 {
    width: 100%;
  }
  .col-width-75 {
    width: 75%;
  }
  .col-width-66 {
    width: 66.6666%;
  }
  .col-width-50 {
    width: 50%;
  }
  .col-width-33 {
    width: 33.3333%;
  }
  .col-width-25 {
    width: 25%;
  }
  .image-position-left {
    float: left;
    margin-right: 4rem;
  }
  .image-position-left.image-width-100 {
    margin-right: 0;
    padding-right: 0;
  }
  .image-position-right {
    float: right;
    margin-left: 4rem;
  }
  .image-position-right.image-width-100 {
    margin-left: 0;
    padding-left: 0;
  }
  .image-width-25 {
    width: 25%;
  }
  .image-width-33 {
    width: 33.3333%;
  }
  .image-width-50 {
    width: 50%;
  }
  .image-width-66 {
    width: 66.6666%;
  }
  .image-width-75 {
    width: 75%;
  }
  .image-width-100 {
    width: 100%;
  }
  .gallery {
    margin: 0 -1px 1rem -1px;
    padding: 0;
  }
  .gallery:before, .gallery:after {
    content: " ";
    display: table;
  }
  .gallery:after {
    clear: both;
  }
  .gallery div {
    margin: 0;
    padding: 1px;
    width: 33.33%;
    float: left;
  }
  .gallery a {
    display: block;
  }
  .gallery img {
    display: block;
    padding: 0;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 1920px;
  }
  .container--no-maxwidth {
    max-width: none;
  }
  html {
    font-size: 17px;
    line-height: 1.5;
    font-weight: 300;
    font-family: Poppins, sans-serif;
  }
  h1 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  h2, .big-link a, .teaser__title {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  h3 {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-1 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-2 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-3 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  h1 {
    margin: 4.5rem 0 2.5rem 0;
  }
  .articledate {
    margin: -1.5rem 0 2rem 0;
  }
  .row.mt-h1 {
    margin-top: 3.5rem;
  }
  h2 {
    margin: 2.5rem 0 1rem 0;
  }
  .row.mt-h2 {
    margin-top: 1.5rem;
  }
  h3 .footer ul {
    margin: 2rem 0 1rem 0;
  }
  .row.mt-h3 {
    margin-top: 1rem;
  }
  h4 {
    margin: 0 0 1rem 0;
  }
  .row.mt-h4 {
    margin-top: 0;
  }
  h1 + h2 {
    margin-top: -1rem;
  }
  .row.mb-h1 + .row.mt-h2 {
    margin-top: 0;
  }
  ul,
  ol,
  table,
  p,
  hr,
  fieldset,
  blockquote,
  .form-group,
  .yform-element,
  .html object,
  .html iframe,
  .responsive-iframe {
    margin: 0 0 1rem 0;
  }
  .image {
    margin-bottom: 1rem;
  }
  hr {
    margin: 1rem 0 2rem 0;
  }
  li {
    margin-bottom: 0.25rem;
  }
  li:last-child {
    margin-bottom: 0;
  }
  .pagination {
    margin: 2rem 0 1rem 0;
  }
  .col:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
    margin-top: 1rem;
  }
  .row.mt-h1:first-child,
  .row.mt-h2:first-child,
  .row.mt-h3:first-child,
  .row.mt-h4:first-child,
  .col.mt-h1,
  .col.mt-h2,
  .col.mt-h3,
  .col.mt-h4,
  .col > h1:first-child,
  .col > h2:first-child,
  .col > h3:first-child,
  .col > h4:first-child,
  .image + h1,
  .image + h2,
  .image + h3,
  .image + h4 {
    margin-top: 0;
  }
  .four-col-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .row-inner {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .col {
    padding-left: 2rem;
    padding-right: 2rem;
    float: left;
    min-height: 1px;
  }
  .col-width-100 {
    width: 100%;
  }
  .col-width-75 {
    width: 75%;
  }
  .col-width-66 {
    width: 66.6666%;
  }
  .col-width-50 {
    width: 50%;
  }
  .col-width-33 {
    width: 33.3333%;
  }
  .col-width-25 {
    width: 25%;
  }
  .image-position-left {
    float: left;
    margin-right: 4rem;
  }
  .image-position-left.image-width-100 {
    margin-right: 0;
    padding-right: 0;
  }
  .image-position-right {
    float: right;
    margin-left: 4rem;
  }
  .image-position-right.image-width-100 {
    margin-left: 0;
    padding-left: 0;
  }
  .image-width-25 {
    width: 25%;
  }
  .image-width-33 {
    width: 33.3333%;
  }
  .image-width-50 {
    width: 50%;
  }
  .image-width-66 {
    width: 66.6666%;
  }
  .image-width-75 {
    width: 75%;
  }
  .image-width-100 {
    width: 100%;
  }
  .gallery {
    margin: 0 -1px 1rem -1px;
  }
  .gallery div {
    padding: 1px;
    width: 25%;
  }
  .col-width-75 .gallery {
    margin: 0 -1px 1rem -1px;
  }
  .col-width-75 .gallery div {
    width: 25%;
  }
  .col-width-66 .gallery,
  .col-width-50 .gallery {
    margin: 0 -1px 1rem -1px;
  }
  .col-width-66 .gallery div,
  .col-width-50 .gallery div {
    width: 33.33%;
  }
  .col-width-33 .gallery,
  .col-width-25 .gallery {
    margin: 0 -1px 1rem -1px;
  }
  .col-width-33 .gallery div,
  .col-width-25 .gallery div {
    width: 50%;
  }
  .four-col-wrapper {
    margin: 0 !important;
    width: 50%;
    float: left;
    clear: none;
  }
  .four-col-wrapper:before, .four-col-wrapper:after {
    content: " ";
    display: table;
  }
  .four-col-wrapper:after {
    clear: both;
  }
  .four-col-wrapper .col {
    width: 50%;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    max-width: 1920px;
  }
  .container--no-maxwidth {
    max-width: none;
  }
  html {
    font-size: 19px;
    line-height: 1.5;
    font-weight: 300;
    font-family: Poppins, sans-serif;
  }
  h1 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  h2, .big-link a, .teaser__title {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  h3 {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-1 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-2 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-3 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  h1 {
    margin: 4.5rem 0 2.5rem 0;
  }
  .articledate {
    margin: -1.5rem 0 2rem 0;
  }
  .row.mt-h1 {
    margin-top: 3.5rem;
  }
  h2 {
    margin: 2.5rem 0 1rem 0;
  }
  .row.mt-h2 {
    margin-top: 1.5rem;
  }
  h3 .footer ul {
    margin: 2rem 0 1rem 0;
  }
  .row.mt-h3 {
    margin-top: 1rem;
  }
  h4 {
    margin: 0 0 1rem 0;
  }
  .row.mt-h4 {
    margin-top: 0;
  }
  h1 + h2 {
    margin-top: -1rem;
  }
  .row.mb-h1 + .row.mt-h2 {
    margin-top: 0;
  }
  ul,
  ol,
  table,
  p,
  hr,
  fieldset,
  blockquote,
  .form-group,
  .yform-element,
  .html object,
  .html iframe,
  .responsive-iframe {
    margin: 0 0 1rem 0;
  }
  .image {
    margin-bottom: 1rem;
  }
  hr {
    margin: 1rem 0 2rem 0;
  }
  li {
    margin-bottom: 0.25rem;
  }
  li:last-child {
    margin-bottom: 0;
  }
  .pagination {
    margin: 2rem 0 1rem 0;
  }
  .col:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
    margin-top: 1rem;
  }
  .row.mt-h1:first-child,
  .row.mt-h2:first-child,
  .row.mt-h3:first-child,
  .row.mt-h4:first-child,
  .col.mt-h1,
  .col.mt-h2,
  .col.mt-h3,
  .col.mt-h4,
  .col > h1:first-child,
  .col > h2:first-child,
  .col > h3:first-child,
  .col > h4:first-child,
  .image + h1,
  .image + h2,
  .image + h3,
  .image + h4 {
    margin-top: 0;
  }
  .four-col-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .row-inner {
    margin-left: -2rem;
    margin-right: -2rem;
  }
  .col {
    padding-left: 2rem;
    padding-right: 2rem;
    float: left;
    min-height: 1px;
  }
  .col-width-100 {
    width: 100%;
  }
  .col-width-75 {
    width: 75%;
  }
  .col-width-66 {
    width: 66.6666%;
  }
  .col-width-50 {
    width: 50%;
  }
  .col-width-33 {
    width: 33.3333%;
  }
  .col-width-25 {
    width: 25%;
  }
  .image-position-left {
    float: left;
    margin-right: 4rem;
  }
  .image-position-left.image-width-100 {
    margin-right: 0;
    padding-right: 0;
  }
  .image-position-right {
    float: right;
    margin-left: 4rem;
  }
  .image-position-right.image-width-100 {
    margin-left: 0;
    padding-left: 0;
  }
  .image-width-25 {
    width: 25%;
  }
  .image-width-33 {
    width: 33.3333%;
  }
  .image-width-50 {
    width: 50%;
  }
  .image-width-66 {
    width: 66.6666%;
  }
  .image-width-75 {
    width: 75%;
  }
  .image-width-100 {
    width: 100%;
  }
  .gallery {
    margin: 0 -1px 1rem -1px;
  }
  .gallery div {
    padding: 1px;
    width: 25%;
  }
  .col-width-75 .gallery {
    margin: 0 -1px 1rem -1px;
  }
  .col-width-75 .gallery div {
    width: 25%;
  }
  .col-width-66 .gallery,
  .col-width-50 .gallery {
    margin: 0 -1px 1rem -1px;
  }
  .col-width-66 .gallery div,
  .col-width-50 .gallery div {
    width: 33.33%;
  }
  .col-width-33 .gallery,
  .col-width-25 .gallery {
    margin: 0 -1px 1rem -1px;
  }
  .col-width-33 .gallery div,
  .col-width-25 .gallery div {
    width: 50%;
  }
  .four-col-wrapper {
    margin: 0 !important;
    width: 50%;
    float: left;
    clear: none;
  }
  .four-col-wrapper:before, .four-col-wrapper:after {
    content: " ";
    display: table;
  }
  .four-col-wrapper:after {
    clear: both;
  }
  .four-col-wrapper .col {
    width: 50%;
  }
}
@media screen and (min-width: 1600px) {
  .container {
    max-width: 1920px;
  }
  .container--no-maxwidth {
    max-width: none;
  }
  html {
    font-size: 26px;
    line-height: 1.5;
    font-weight: 300;
    font-family: Poppins, sans-serif;
  }
  h1 {
    font-size: 2rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  h2, .big-link a, .teaser__title {
    font-size: 1.1rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  h3 {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 600;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-1 {
    font-size: 0.9rem;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-2 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  a.nav-level-3 {
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
    font-family: Poppins, sans-serif;
  }
  h1 {
    margin: 4.5rem 0 2.5rem 0;
  }
  .articledate {
    margin: -1.5rem 0 2rem 0;
  }
  .row.mt-h1 {
    margin-top: 3.5rem;
  }
  h2 {
    margin: 2.5rem 0 1rem 0;
  }
  .row.mt-h2 {
    margin-top: 1.5rem;
  }
  h3 .footer ul {
    margin: 2rem 0 1rem 0;
  }
  .row.mt-h3 {
    margin-top: 1rem;
  }
  h4 {
    margin: 0 0 1rem 0;
  }
  .row.mt-h4 {
    margin-top: 0;
  }
  h1 + h2 {
    margin-top: -1rem;
  }
  .row.mb-h1 + .row.mt-h2 {
    margin-top: 0;
  }
  ul,
  ol,
  table,
  p,
  hr,
  fieldset,
  blockquote,
  .form-group,
  .yform-element,
  .html object,
  .html iframe,
  .responsive-iframe {
    margin: 0 0 1rem 0;
  }
  .image {
    margin-bottom: 1rem;
  }
  hr {
    margin: 1rem 0 2rem 0;
  }
  li {
    margin-bottom: 0.25rem;
  }
  li:last-child {
    margin-bottom: 0;
  }
  .pagination {
    margin: 2rem 0 1rem 0;
  }
  .col:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
    margin-top: 1rem;
  }
  .row.mt-h1:first-child,
  .row.mt-h2:first-child,
  .row.mt-h3:first-child,
  .row.mt-h4:first-child,
  .col.mt-h1,
  .col.mt-h2,
  .col.mt-h3,
  .col.mt-h4,
  .col > h1:first-child,
  .col > h2:first-child,
  .col > h3:first-child,
  .col > h4:first-child,
  .image + h1,
  .image + h2,
  .image + h3,
  .image + h4 {
    margin-top: 0;
  }
  .four-col-wrapper {
    margin-left: 0;
    margin-right: 0;
  }
  .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .row-inner {
    margin-left: -3rem;
    margin-right: -3rem;
  }
  .col {
    padding-left: 3rem;
    padding-right: 3rem;
    float: left;
    min-height: 1px;
  }
  .col-width-100 {
    width: 100%;
  }
  .col-width-75 {
    width: 75%;
  }
  .col-width-66 {
    width: 66.6666%;
  }
  .col-width-50 {
    width: 50%;
  }
  .col-width-33 {
    width: 33.3333%;
  }
  .col-width-25 {
    width: 25%;
  }
  .image-position-left {
    float: left;
    margin-right: 6rem;
  }
  .image-position-left.image-width-100 {
    margin-right: 0;
    padding-right: 0;
  }
  .image-position-right {
    float: right;
    margin-left: 6rem;
  }
  .image-position-right.image-width-100 {
    margin-left: 0;
    padding-left: 0;
  }
  .image-width-25 {
    width: 25%;
  }
  .image-width-33 {
    width: 33.3333%;
  }
  .image-width-50 {
    width: 50%;
  }
  .image-width-66 {
    width: 66.6666%;
  }
  .image-width-75 {
    width: 75%;
  }
  .image-width-100 {
    width: 100%;
  }
  .gallery {
    margin: 0 -1px 1rem -1px;
  }
  .gallery div {
    padding: 1px;
    width: 25%;
  }
  .col-width-75 .gallery {
    margin: 0 -1px 1rem -1px;
  }
  .col-width-75 .gallery div {
    width: 25%;
  }
  .col-width-66 .gallery,
  .col-width-50 .gallery {
    margin: 0 -1px 1rem -1px;
  }
  .col-width-66 .gallery div,
  .col-width-50 .gallery div {
    width: 33.33%;
  }
  .col-width-33 .gallery,
  .col-width-25 .gallery {
    margin: 0 -1px 1rem -1px;
  }
  .col-width-33 .gallery div,
  .col-width-25 .gallery div {
    width: 50%;
  }
  .four-col-wrapper {
    margin: 0 !important;
    width: 50%;
    float: left;
    clear: none;
  }
  .four-col-wrapper:before, .four-col-wrapper:after {
    content: " ";
    display: table;
  }
  .four-col-wrapper:after {
    clear: both;
  }
  .four-col-wrapper .col {
    width: 50%;
  }
}
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 #888;
  padding: 4px;
}

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

p.radio {
  margin: 0;
}

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

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

@media screen and (min-width: 768px) {
  div[class*=form-grid-] {
    display: flex;
    flex-direction: row;
  }
  .form-grid-20-40-40 > div:nth-child(1) {
    width: 20%;
    padding: 0 0.66em 0 0;
  }
  .form-grid-20-40-40 > div:nth-child(2) {
    width: 40%;
    padding: 0 0.33em 0 0.33em;
  }
  .form-grid-20-40-40 > div:nth-child(3) {
    width: 40%;
    padding: 0 0 0 0.66em;
  }
  .form-grid-50-50 > div:nth-child(1) {
    width: 50%;
    padding: 0 0.5em 0 0;
  }
  .form-grid-50-50 > div:nth-child(2) {
    width: 50%;
    padding: 0 0 0 0.5em;
  }
  .form-grid-20-80 > div:nth-child(1) {
    width: 20%;
    padding: 0 0.5em 0 0;
  }
  .form-grid-20-80 > div:nth-child(2) {
    width: 80%;
    padding: 0 0 0 0.5em;
  }
}
.form-grid-submit {
  text-align: right;
  padding: 1em 0;
}
.form-grid-submit button {
  margin-left: 1em;
}

.form-success {
  font-weight: 700;
  color: #3c763d;
}

.alert {
  padding: 0.5em 1em;
  margin-bottom: 1em;
  border-width: 1px;
  border-style: solid;
  border-radius: 0.2em;
}
.alert .formcheckbox,
.alert ul {
  margin-bottom: 0;
}

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

.alert-info {
  background-color: #ccc !important;
  border-color: #888 !important;
  color: #6d6e72 !important;
}
.alert-info * {
  color: #6d6e72 !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;
}

.input-group-addon {
  display: none;
}

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

.datenschutz-checkbox-wrapper input {
  float: left;
  margin-top: 0.2em;
  margin-right: 0.5em;
}
.datenschutz-checkbox-wrapper + label.error {
  margin-top: -1em;
  margin-bottom: 1em;
}

.datenschutz-checkbox-labeltext {
  display: block;
  overflow: hidden;
}

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: #888;
  color: #fff;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  border-radius: 0.2rem;
  text-decoration: none;
}
nav.pagination a:hover {
  background: #6d6e72;
  text-decoration: none;
}
nav.pagination .active a {
  background: #6d6e72;
}
nav.pagination .disabled a {
  opacity: 0.25;
  cursor: default;
}
nav.pagination .disabled a:hover {
  background: #ccc;
}
nav.pagination svg {
  height: 1rem;
}

.download {
  display: flex;
  flex-direction: row;
}
.download + .download {
  margin-top: 2rem;
}
.download:last-child {
  margin-bottom: 1rem;
}

.download-icon {
  padding-right: 1em;
}
.download-icon svg {
  width: 2rem;
  position: relative;
  top: 0.1rem;
}

/*
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 .teaser__link,
:root .teaser__link {
  display: block;
}
_:-ms-fullscreen .teaser__meta svg,
:root .teaser__meta svg {
  width: 1rem;
}

* {
  -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: #6d6e72;
  letter-spacing: 0.035em;
  overflow-y: scroll;
  position: relative;
}

body {
  position: relative;
}

h1 {
  color: #6d6e72;
}

.articledate {
  display: block;
  padding-top: 0.25rem;
}

h2,
.big-link a {
  color: #6d6e72;
}

h3 {
  color: #6d6e72;
}

hr {
  width: 100%;
  height: 0;
  display: block;
  border: 0;
  border-top: 1px solid #ccc;
}

.content-inner ul {
  padding: 0;
  list-style: none;
}
.content-inner ul li {
  padding-left: 1em;
  position: relative;
}
.content-inner ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: #6d6e72;
}

ol {
  padding: 0 0 0 2em;
}

ul ul,
ol ol {
  margin: 0;
}

a,
.gaOptout {
  text-decoration: none;
  cursor: pointer;
  color: #6d6e72;
}
a.has-icon,
.gaOptout.has-icon {
  text-decoration: none;
}

a:hover,
.gaOptout:hover {
  text-decoration: underline;
  color: #6d6e72;
}

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-bottom: 2em;
}
table tr td {
  padding: 0 0 1em 0;
  vertical-align: top;
}
table tr td:first-child {
  padding-right: 1em;
}
table tr:last-child td {
  padding-bottom: 0;
}

td {
  padding: 0 1em 0 0;
}

strong,
b {
  font-weight: 600;
  color: #6d6e72;
}

em,
i {
  font-style: italic;
}

iframe {
  border: 0;
}

figure {
  margin: 0;
  padding: 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: #ccc;
  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;
}

.image-credit-tile .image-ratio i:after {
  display: none;
}

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

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav li {
  margin: 0;
  padding: 0;
}
nav li:before {
  display: none !important;
}
nav a {
  text-decoration: none;
  padding: 0;
  margin: 0;
}

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

.row {
  margin: 2rem auto;
}
.row.big-link {
  margin: 3rem auto;
}

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

.image-caption {
  padding: 0.2rem;
  font-size: 0.8rem;
}
.image-caption .copyright {
  color: #888;
}
.image-caption .copyright a {
  color: #888;
}

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

.btn {
  display: inline-block;
  border: 0;
  text-decoration: none;
  background: #6d6e72;
  color: #fff;
  text-shadow: none;
  padding: 0.2em 1em;
  border-radius: 5px;
}
.btn:hover {
  background: #86878c;
}

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

/**/
.row-inner--teaser {
  margin: -1rem;
}
.row-inner--teaser:before, .row-inner--teaser:after {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .row-inner--teaser {
    display: flex;
    flex-wrap: wrap;
    min-width: 100%;
  }
}
@media screen and (min-width: 1600px) {
  .row-inner--teaser {
    margin: -1.5rem;
  }
}

.teaser {
  margin: 1rem;
  background-color: #6d6e72;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .teaser {
    width: calc(50% - 2rem);
  }
}
@media screen and (min-width: 1600px) {
  .teaser {
    width: calc(50% - 3rem);
    margin: 1.5rem;
  }
}

.teaser__inner {
  height: 100%;
  position: relative;
}

.teaser__image {
  flex: 1;
}
.teaser__image:after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 50%;
}

.teaser__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.9);
}
.teaser__content * {
  color: #fff;
  color: #6d6e72;
}
@media screen and (min-width: 400px) {
  .teaser__content {
    position: relative;
    left: 0;
  }
}
@media screen and (min-width: 992px) {
  .teaser__content {
    padding: 1.5rem 2rem;
  }
}
@media screen and (min-width: 768px) {
  .teaser__content {
    font-size: 1rem;
  }
}

.teaser__link {
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.teaser__link:hover {
  text-decoration: none;
  color: #fff;
}

.teaser__title {
  color: #6d6e72;
  margin: 0 0 0.5rem 0;
}

.teaser__text {
  position: absolute;
  left: -10000px;
  font-size: 0.9rem;
}
@media screen and (min-height: 730px) {
  .teaser__text {
    position: relative;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .teaser__text {
    position: relative;
    left: 0;
    font-size: 1rem;
  }
}

.teaser__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
}
@media screen and (min-width: 768px) {
  .teaser__meta {
    font-size: 1rem;
  }
}

.teaser__readmore {
  position: relative;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  padding: 0.25rem 0.75rem;
  font-size: 0.9rem;
}
.teaser__readmore svg {
  width: 0.6em;
  position: relative;
  top: 0.05em;
  margin-left: 0.5em;
}
@media screen and (min-width: 768px) {
  .teaser__readmore {
    font-size: 1rem;
  }
}

/**/
.pagination-innner {
  width: 100%;
  text-align: center;
}
.pagination-innner a {
  display: inline-block;
  margin: 0 0.25em;
}
.pagination-innner .btn {
  background: #ccc;
  color: #6d6e72;
}
.pagination-innner .btn:hover {
  background: #fff;
  color: #6d6e72;
}
.pagination-innner .btn.active {
  background: #6d6e72;
}
.pagination-innner .btn.active:hover {
  background: #6d6e72;
  color: #fff;
}

/**/
.image-credit-tile {
  float: left;
  background: #ccc;
}
@media screen and (min-width: 600px) {
  .image-credit-tile {
    width: 50%;
  }
}
@media screen and (min-width: 900px) {
  .image-credit-tile {
    width: 33.33%;
  }
}
.image-credit-tile-text {
  padding: 0.25em;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
  color: #6d6e72;
  font-size: 0.8rem;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-decoration: none;
}
.image-credit-tile-text a {
  color: #6d6e72;
  text-decoration: none;
}
.image-credit-tile-text a:hover {
  color: #6d6e72;
  text-decoration: none;
}

/**/
.container {
  position: relative;
  margin: 0 auto;
}
.container:before, .container:after {
  content: " ";
  display: table;
}
.container:after {
  clear: both;
}

.header,
.main,
.article,
.footer {
  position: relative;
}

.main {
  padding-top: 8rem;
  min-height: 100vh;
}
.swiper-container + .main {
  padding-top: 0;
}
@media screen and (min-width: 1200px) {
  .main {
    padding-top: 300px;
  }
}
@media screen and (min-width: 1600px) {
  .main {
    padding-top: calc(300px + 1rem);
  }
}

.content {
  overflow: hidden;
  padding-bottom: 4rem;
  max-width: 1920px;
  margin: 0 auto;
}
/**/
.header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
}

.header__inner {
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media screen and (min-width: 1200px) {
  .header__inner {
    justify-content: space-between;
  }
}

.header__logo {
  display: block;
  z-index: 11;
  transition: all 0.4s ease;
  text-decoration: none !important;
  width: 18%;
  max-width: 70px;
  margin: 0.5rem 1rem;
}
.header__logo:before, .header__logo:after {
  display: none !important;
}
.header__logo img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header__logo {
    margin-right: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  .header__logo {
    max-width: 130px;
    margin: 1rem 0 1rem 2rem;
  }
}
@media screen and (min-width: 1600px) {
  .header__logo {
    margin: 1rem 0 1rem 3rem;
  }
}

.header__nav {
  z-index: 11;
  justify-content: flex-end;
  align-items: flex-end;
  display: none;
}
.header__nav ul {
  display: none;
}
.header__nav ul.nav-level-1:before, .header__nav ul.nav-level-1:after {
  content: " ";
  display: table;
}
.header__nav ul.nav-level-1:after {
  clear: both;
}
.header__nav ul.nav-level-2 {
  width: 16em;
  position: absolute;
  left: -1rem;
  display: none;
  animation-duration: 0.3s;
  z-index: 1;
  padding: 0;
  background: #fff;
  padding: 0 1rem 1rem 1rem;
}
.header__nav ul.nav-level-2.right {
  right: -1rem;
  left: auto;
  text-align: right;
}
@media screen and (min-width: 1200px) {
  .header__nav ul {
    display: block;
  }
}
.header__nav li.nav-level-1 {
  float: left;
  position: relative;
  margin-left: 1rem;
}
.header__nav li.nav-level-1:hover ul.nav-level-2 {
  display: block;
}
.header__nav li.nav-level-2 {
  display: block;
}
.header__nav a {
  color: #6d6e72;
  display: inline-block;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.header__nav a.active, .header__nav a.current {
  background: #6d6e72;
  color: #fff;
}
.header__nav a:after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 0rem;
  height: 2px;
  width: 0;
  background: #6d6e72;
}
.header__nav a:hover:after {
  width: calc(100% - 2rem);
  transition: width 0.2s ease-in-out;
}
.header__nav a.active:after {
  width: calc(100% - 2rem);
  background: #6d6e72;
}
.header__nav a.current:after {
  width: calc(100% - 2rem);
  background: #6d6e72;
}
.header__nav a.nav-level-1 {
  display: inline-block;
  position: relative;
  padding: 0.2rem 1rem 0.3rem 1rem;
}
.header__nav a.nav-level-2 {
  padding: 0.25rem 1rem;
  padding: 0.5rem 1rem 1rem 1rem;
}
.header__nav a.nav-level-3 {
  padding: 0.25rem 0.5rem 0.25rem 2rem;
}
@media screen and (min-width: 1200px) {
  .header__nav {
    display: flex;
    padding: 0 2rem 0.5rem 0;
  }
}
@media screen and (min-width: 1600px) {
  .header__nav {
    padding: 0 3rem 0.5rem 0;
  }
}

.header__langswitch {
  display: none;
}
@media screen and (min-width: 1200px) {
  .header__langswitch {
    display: block;
    position: absolute;
    right: 2.5rem;
    top: 0rem;
    font-size: 0.7rem;
    z-index: 11;
  }
  .header__langswitch ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
  }
  .header__langswitch li {
    margin: 0;
    padding: 0;
  }
  .header__langswitch a {
    display: inline-block;
    padding: 0.1rem 0.5rem;
    text-transform: uppercase;
    color: #6d6e72;
  }
  .header__langswitch a.current {
    background: #6d6e72;
    color: #fff;
    text-decoration: none;
  }
  .header__langswitch a.current:hover {
    text-decoration: none;
  }
}
@media screen and (min-width: 1600px) {
  .header__langswitch {
    right: 3.5rem;
  }
}

/**/
.offscreen-wrapper {
  position: fixed;
  top: 0;
  width: 300px;
  height: 100%;
  z-index: 200;
  box-shadow: 0 0 2px #6d6e72;
  background: #fff;
  overflow: auto;
  width: 300px;
  left: -300px;
  transition: left 0.25s;
}
.offscreen-wrapper.visible {
  left: 0;
}
@media screen and (min-width: 1200px) {
  .offscreen-wrapper {
    display: none !important;
  }
}
.offscreen-wrapper .toggle-offscreen-wrapper {
  box-shadow: none;
  position: absolute;
  background: none transparent;
}
.offscreen-wrapper .toggle-offscreen-wrapper svg {
  width: 1.4rem;
  fill: #6d6e72;
}

.offscreen-wrapper__langswitch {
  position: absolute;
  right: 1rem;
  top: 1rem;
}
.offscreen-wrapper__langswitch ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.offscreen-wrapper__langswitch li {
  margin: 0;
  padding: 0;
}
.offscreen-wrapper__langswitch a {
  display: inline-block;
  padding: 0.1rem 0.5rem;
  text-transform: uppercase;
}
.offscreen-wrapper__langswitch a.current {
  background: #6d6e72;
  color: #fff;
}

.offscreen-nav {
  width: 100%;
  float: none;
  clear: both;
  margin: 80px 0 45px 0;
}
.offscreen-nav li {
  position: relative;
}
.offscreen-nav a {
  display: block;
  position: relative;
  padding: 0.5rem 0.5rem 0.5rem 24px;
  color: #6d6e72;
  text-decoration: none;
  text-transform: uppercase;
}
.offscreen-nav a.current {
  background: #6d6e72;
  color: #fff;
}
.offscreen-nav a:hover {
  text-decoration: none;
}
.offscreen-nav a.nav-level-2 {
  padding-left: 3rem;
}
.offscreen-nav a.nav-level-3 {
  padding-left: 4rem;
}
.offscreen-nav .toggler {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2rem;
  padding-left: 0.5rem;
  color: #fff;
  left: 0;
  display: none !important;
}
.offscreen-nav .toggler svg {
  margin-top: 0.625rem;
  width: 1rem;
}
.offscreen-nav .toggler svg:first-child {
  display: none;
}
.offscreen-nav .toggler svg:last-child {
  display: inline-block;
}
.offscreen-nav .toggler.closed svg:first-child {
  display: inline-block;
}
.offscreen-nav .toggler.closed svg:last-child {
  display: none;
}
.offscreen-nav .nav-level-2 .toggler {
  width: 3rem;
  padding-left: 1.5rem;
}

.toggle-offscreen-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 199;
  line-height: 0;
  width: 3.4rem;
  height: 3rem;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
  margin-top: 7px;
  display: flex;
  justify-content: center;
  text-decoration: none;
}
.toggle-offscreen-wrapper svg {
  width: 2rem;
  fill: #fff;
  fill: #6d6e72;
}
.toggle-offscreen-wrapper:focus {
  outline: 0;
}
@media screen and (min-width: 360px) {
  .toggle-offscreen-wrapper {
    margin-top: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .toggle-offscreen-wrapper {
    display: none !important;
  }
}

/**/
.faq-item-toggler {
  position: relative;
  padding-left: 1.2em;
  cursor: pointer;
}
.faq-item-toggler .fa {
  position: absolute;
  left: 0;
  top: 0.1em;
}
.faq-item-toggler[data-status=closed] .fa-plus-circle {
  display: inline-block;
}
.faq-item-toggler[data-status=closed] .fa-minus-circle {
  display: none;
}
.faq-item-toggler[data-status=open] .fa-plus-circle {
  display: none;
}
.faq-item-toggler[data-status=open] .fa-minus-circle {
  display: inline-block;
}

/**/
.swiper-container {
  margin-bottom: 3rem;
}

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

.swiper-button-next,
.swiper-button-prev {
  display: none;
  position: absolute;
  background: none transparent;
  text-align: center;
  font-size: 2em;
  padding: 1rem;
  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;
  top: 0;
  bottom: 0;
  z-index: 9;
}

.swiper-pagination-bullets {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: right;
  padding-right: 0;
  left: auto;
  width: auto;
  z-index: 10;
}

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

.swiper-pagination-bullet-active:after {
  background: #6d6e72;
}

.swiper-slide-text {
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  background: rgba(255, 255, 255, 0.9);
  color: #6d6e72;
  font-size: 0.7rem;
}

.swiper-slide-text-inner {
  position: relative;
  width: 100%;
  max-width: 1920px;
  padding: 0.5rem 1rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .swiper-slide-text-inner {
    padding: 0.5rem 2rem;
  }
}
@media screen and (min-width: 1600px) {
  .swiper-slide-text-inner {
    padding: 0.5rem 3rem;
  }
}

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

.swiper-meta {
  position: relative;
  top: 0.5rem;
  display: flex;
  justify-content: flex-end;
  line-height: 0;
  margin-bottom: -0.5rem;
}

.swiper-copyright {
  font-size: 0.8rem;
  color: #888;
  padding-right: 1rem;
}
.swiper-copyright a {
  color: #888;
}

@media screen and (orientation: portrait) {
  .swiper-slide:after {
    padding-top: 75vh;
  }
  .swiper-slide--small {
    max-height: 30vh;
  }
  .swiper-slide--small:after {
    padding-top: 100%;
  }
  .swiper-slide-background-landscape {
    display: none;
  }
}
@media screen and (orientation: landscape) {
  .swiper-slide:after {
    padding-top: 100vh;
  }
  .swiper-slide--small {
    max-height: 30vh;
  }
  .swiper-slide--small:after {
    padding-top: 33.33%;
  }
  .swiper-slide-background-portrait {
    display: none;
  }
}
/**/
.parallax-image {
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.is-mobile .parallax-image {
  background-attachment: scroll;
}

/*
.tiles-inner {
    margin-left: -$half-gutter;
    margin-right: -$half-gutter;
}
.tile {
    width: 100%;
    position: relative;
    padding: 0 $half-gutter;
    margin-bottom: 2*$half-gutter;
    strong {
        position: absolute;
        width: 100%;
        left: 0;
        bottom: 0;
        background: rgba(255, 255, 255, .9);
        padding: 1em;
        color: $primary-color-1;
    }
    @include mq(m) {
        width: 50%;
    }
    @include mq(m) {
        width: 33.33%;
    }
}
.tile-inner {
    position: relative;
}

 */
.totop {
  position: fixed;
  left: auto;
  top: auto;
  right: 1rem;
  bottom: 0;
  margin: 0;
  width: 2.4em;
  height: 2.4em;
  padding: 0.5em;
  line-height: 1;
  text-align: center;
  border-radius: 0.4em 0.4em 0 0;
  transition: opacity 0.5s;
  outline: none;
  color: #fff;
  background: #6d6e72;
}
.totop:hover {
  color: #fff;
}
.totop.visible {
  opacity: 0.9;
}
/**/
.tiles {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 2000px;
  margin: 0 auto 1rem auto;
  padding: 30px 0 15px 0;
}
@media screen and (min-width: 768px) {
  .tiles {
    padding: 60px 15px 30px 15px;
  }
}

.tiles--menu {
  padding: 15px 0 0 0;
}
@media screen and (min-width: 768px) {
  .tiles--menu {
    padding: 30px 15px 0 15px;
  }
}

.tiles--has-image {
  padding: 45px 0 30px 0;
}
@media screen and (min-width: 768px) {
  .tiles--has-image {
    padding: 60px 15px 45px 15px;
  }
}

.tiles__background {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: -1;
}

.tile {
  position: relative;
  flex: 0 0 calc(100% - 30px);
  box-shadow: 0 0 2px #999;
  margin: 0 15px 15px 15px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .tile {
    margin: 0 15px 30px 15px;
  }
}
@media screen and (min-width: 992px) {
  .tile {
    flex: 0 0 calc(50% - 30px);
  }
}
@media screen and (min-width: 1600px) {
  .tile {
    flex: 0 0 calc(33.33% - 30px);
  }
}

.tile--has-link {
  cursor: pointer;
}
.tile--has-link:hover .tile__background {
  opacity: 0.8;
}

.tile--has-image {
  padding-top: 10rem;
}

.tile--menu {
  border-top: 1px solid #6d6e72;
}

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

.tile__inner {
  position: relative;
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.tile__inner--has-image.tile__inner--white,
.tile__inner--wrapper-has-image.tile__inner--white {
  background-color: rgba(255, 255, 255, 0.95);
}

.tile__headline {
  font-family: Catamaran, sans-serif;
  font-size: 1.2rem;
  color: #6d6e72;
}

.tile__headline--menu {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.tile__headline--red {
  color: #fff;
}

.tile__text {
  color: #6d6e72;
}

.tile__text--red {
  color: #fff;
}

.tile__link-wrapper {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.tile__link-wrapper:only-child .tile__link {
  font-size: 1.4rem;
}
.tile__link-wrapper:only-child .tile__link svg {
  height: 1rem;
}

.tile__link {
  text-decoration: none;
  color: #6d6e72;
  font-size: 1.1rem;
}
.tile__link:hover {
  text-decoration: none;
  color: #6d6e72;
}
.tile__link svg {
  width: 0.6em;
  position: relative;
  top: 0.05em;
  margin-left: 0.5em;
}

.tile__link--footer {
  font-size: 1rem;
}

.tile__link--red {
  color: #fff;
}
.tile__link--red:hover {
  color: #fff;
}

.tiles--white.tiles--no-image {
  box-shadow: none;
}

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

.tiles__background--light-grey {
  background-color: #ccc;
}

.tiles__background--medium-grey {
  background-color: #888;
}

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

/**/
.footer {
  padding: 1rem 0;
}
.footer *, .footer *:hover {
  color: #6d6e72;
  font-size: 0.7rem;
}
.footer ul {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}
.footer li {
  padding: 0.25rem 1rem;
  position: relative;
}
.footer a:hover {
  color: #6d6e72;
}
.footer svg {
  display: inline-block;
  width: 0.7rem;
  fill: #6d6e72;
  position: relative;
  top: 0.1rem;
}
@media screen and (min-width: 1200px) {
  .footer li {
    padding: 1rem 1.5rem;
  }
  .footer li:not(:last-child):after {
    content: "";
    position: absolute;
    display: block;
    width: 0;
    height: 0.7rem;
    border-right: 1px solid #6d6e72;
    right: -1px;
    top: 1.25rem;
  }
}

.footer__inner {
  max-width: 1920px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding: 0 1rem;
  }
}

.footer__tiles {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.footer__tile {
  flex: 0 0 100%;
  margin: 0;
  padding: 1rem;
}
@media screen and (min-width: 768px) {
  .footer__tile {
    flex: 1 1 50%;
  }
  .footer__tile:nth-child(3), .footer__tile:nth-child(4) {
    margin-top: 4rem;
  }
}
@media screen and (min-width: 992px) {
  .footer__tile {
    flex: 1 1 20%;
  }
  .footer__tile:nth-child(1), .footer__tile:nth-child(2) {
    flex: 1 1 30%;
  }
  .footer__tile:nth-child(3), .footer__tile:nth-child(4) {
    margin-top: 0;
  }
}
@media screen and (min-width: 1600px) {
  .footer__tile {
    padding: 2rem;
  }
}
.footer__tile h2 {
  margin-top: 0;
}

.footer__tile--nav strong, .footer__tile--nav span {
  display: block;
}

.footer__end {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .footer__end {
    display: flex;
  }
}

.footer__copyright,
.footer__end-nav {
  padding: 1rem;
}
@media screen and (min-width: 1600px) {
  .footer__copyright,
  .footer__end-nav {
    padding: 2rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__copyright {
    flex: 0 0 50%;
  }
}
@media screen and (min-width: 992px) {
  .footer__copyright {
    flex: 0 0 30%;
  }
}

.footer_smLinks {
  display: flex;
}
.footer_smLinks a {
  margin-top: 0.5rem;
  display: flex;
  width: 1.8rem;
  height: 1.8rem;
  background: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  padding: 8px 6px 6px 6px;
  margin-right: 0.5rem;
}
.footer_smLinks svg {
  display: block;
  width: auto;
  height: auto;
}

/**/
.col-type-form_php {
  margin-top: 2rem;
}
@media screen and (min-width: 992px) {
  .col-type-form_php {
    margin-top: 0;
  }
}

.sitemap {
  text-align: left;
}
.sitemap ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sitemap ul li {
  margin: 0;
  padding: 0;
}
.sitemap ul li:before {
  display: none;
}
.sitemap ul li li {
  padding: 0 0 0 2rem;
}
.sitemap ul li a {
  display: inline-block;
  text-decoration: none;
  padding: 0.25em 0;
}

.flatpickr-current-month {
  padding-top: 0;
}

/**/
.big-link a {
  font-weight: bold;
  text-transform: uppercase;
  color: #6d6e72;
  text-decoration: none;
  position: relative;
  padding-bottom: 0.3rem;
}
.big-link a:before {
  content: "";
  display: inline-block;
  margin: 0 1.25rem 0.35em 0;
  width: 3.25rem;
  border-top: 1px solid #6d6e72;
}
.big-link a:after {
  content: "";
  position: absolute;
  left: 4.5rem;
  bottom: 0;
  height: 2px;
  width: 0;
  background: #6d6e72;
}
.big-link a:hover:after {
  width: calc(100% - 4.5rem);
  transition: width 0.2s ease-in-out;
}

@media screen and (min-width: 768px) {
  .contactPerson {
    display: flex;
    align-items: flex-end;
  }
}

.contactPerson__image {
  margin-bottom: 1rem;
  max-width: 450px;
}
@media screen and (min-width: 768px) {
  .contactPerson__image {
    flex: 0 0 calc(50% - 2rem);
    margin-right: 2rem;
  }
}

.contactPerson__text {
  margin-bottom: 2rem;
}

.extraVerticalSpace:after {
  content: "";
  display: block;
}

.extraVerticalSpace--1:after {
  padding-top: 1rem;
}

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

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

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

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

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

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

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

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

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

video {
  width: 100% !important;
  height: auto !important;
}

html.uebergang {
  background: #00747b;
  color: #fff;
}
html.uebergang *, html.uebergang *:hover {
  color: #fff;
}

.uebergang__main {
  padding-top: 30px;
  padding-bottom: 70px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .uebergang__main {
    padding-top: 70px;
  }
}

.uebergang__logo {
  white-space: nowrap;
  overflow: hidden;
  text-indent: 100%;
  background: url(uebergang_logo.png?v=2) no-repeat center center;
  background-size: contain;
  width: 80%;
  max-width: 472px;
  margin: 0 0 30px 0;
}
.uebergang__logo:after {
  content: "";
  display: block;
  padding-top: 40%;
}
@media screen and (min-width: 768px) {
  .uebergang__logo {
    margin: 0 auto 70px auto;
  }
}

.uebergang__content {
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .uebergang__content {
    padding: 0 2rem;
  }
}

@media screen and (min-width: 768px) {
  .uebergang__personen {
    display: flex;
    justify-content: center;
  }
}

.uebergang__person {
  margin-bottom: 2rem;
}
.uebergang__person a {
  align-items: center;
  display: inline-flex;
}
.uebergang__person strong {
  font-size: 1.2rem;
  display: block;
  margin-bottom: -0.2rem;
}
.uebergang__person span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.75rem;
}
.uebergang__person span svg {
  width: 95%;
}
.uebergang__person span.iconPhone {
  border-radius: 50%;
  border: 1px solid #fff;
}
.uebergang__person span.iconPhone svg {
  width: 70%;
}
@media screen and (min-width: 768px) {
  .uebergang__person {
    margin-bottom: 0;
  }
  .uebergang__person:first-child {
    margin-right: 60px;
  }
  .uebergang__person:last-child {
    margin-left: 60px;
  }
}

@media screen and (min-width: 768px) {
  .uebergang__address {
    text-align: center;
  }
}

.uebergang__smlinks {
  display: flex;
  margin-top: 2rem;
  margin-left: -0.25rem;
}
.uebergang__smlinks a {
  background: #00747b;
  margin: 0.25rem;
  display: flex;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.uebergang__smlinks svg {
  max-width: 60%;
  max-height: 60%;
}
@media screen and (min-width: 768px) {
  .uebergang__smlinks {
    margin-left: 0;
    justify-content: center;
  }
}

.uebergang__dots {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  background: url("uebergang_dots.png") no-repeat center center;
  height: 65px;
}

.uebergang__legal {
  padding: 1rem;
  color: #fff;
}
.uebergang__legal *, .uebergang__legal *:hover {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .uebergang__legal {
    text-align: center;
    padding: 2rem;
  }
}

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