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

@font-face {
  font-family: "HelveticaNeueLTPro-Cn";
  src: url("/theme/public/assets/fonts/3B2D73_0_0.eot");
  src: url("/theme/public/assets/fonts/3B2D73_0_0.eot?#iefix") format("embedded-opentype"), url("/theme/public/assets/fonts/3B2D73_0_0.woff2") format("woff2"), url("/theme/public/assets/fonts/3B2D73_0_0.woff") format("woff"), url("/theme/public/assets/fonts/3B2D73_0_0.ttf") format("truetype");
}
@font-face {
  font-family: "HelveticaNeueLTPro-MdCn";
  src: url("/theme/public/assets/fonts/3B2D73_1_0.eot");
  src: url("/theme/public/assets/fonts/3B2D73_1_0.eot?#iefix") format("embedded-opentype"), url("/theme/public/assets/fonts/3B2D73_1_0.woff2") format("woff2"), url("/theme/public/assets/fonts/3B2D73_1_0.woff") format("woff"), url("/theme/public/assets/fonts/3B2D73_1_0.ttf") format("truetype");
}
/* rajdhani-300 - latin */
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 300;
  src: url("/theme/public/assets/fonts/rajdhani-v9-latin-300.eot"); /* IE9 Compat Modes */
  src: local("Rajdhani Light"), local("Rajdhani-Light"), url("/theme/public/assets/fonts/rajdhani-v9-latin-300.eot?#iefix") format("embedded-opentype"), url("/theme/public/assets/fonts/rajdhani-v9-latin-300.woff2") format("woff2"), url("/theme/public/assets/fonts/rajdhani-v9-latin-300.woff") format("woff"), url("/theme/public/assets/fonts/rajdhani-v9-latin-300.ttf") format("truetype"), url("/theme/public/assets/fonts/rajdhani-v9-latin-300.svg#Rajdhani") format("svg"); /* Legacy iOS */
}
/* rajdhani-regular - latin */
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 400;
  src: url("/theme/public/assets/fonts/rajdhani-v9-latin-regular.eot"); /* IE9 Compat Modes */
  src: local("Rajdhani Regular"), local("Rajdhani-Regular"), url("/theme/public/assets/fonts/rajdhani-v9-latin-regular.eot?#iefix") format("embedded-opentype"), url("/theme/public/assets/fonts/rajdhani-v9-latin-regular.woff2") format("woff2"), url("/theme/public/assets/fonts/rajdhani-v9-latin-regular.woff") format("woff"), url("/theme/public/assets/fonts/rajdhani-v9-latin-regular.ttf") format("truetype"), url("/theme/public/assets/fonts/rajdhani-v9-latin-regular.svg#Rajdhani") format("svg"); /* Legacy iOS */
}
/* rajdhani-500 - latin */
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 500;
  src: url("/theme/public/assets/fonts/rajdhani-v9-latin-500.eot"); /* IE9 Compat Modes */
  src: local("Rajdhani Medium"), local("Rajdhani-Medium"), url("/theme/public/assets/fonts/rajdhani-v9-latin-500.eot?#iefix") format("embedded-opentype"), url("/theme/public/assets/fonts/rajdhani-v9-latin-500.woff2") format("woff2"), url("/theme/public/assets/fonts/rajdhani-v9-latin-500.woff") format("woff"), url("/theme/public/assets/fonts/rajdhani-v9-latin-500.ttf") format("truetype"), url("/theme/public/assets/fonts/rajdhani-v9-latin-500.svg#Rajdhani") format("svg"); /* Legacy iOS */
}
/* rajdhani-700 - latin */
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 700;
  src: url("/theme/public/assets/fonts/rajdhani-v9-latin-700.eot"); /* IE9 Compat Modes */
  src: local("Rajdhani Bold"), local("Rajdhani-Bold"), url("/theme/public/assets/fonts/rajdhani-v9-latin-700.eot?#iefix") format("embedded-opentype"), url("/theme/public/assets/fonts/rajdhani-v9-latin-700.woff2") format("woff2"), url("/theme/public/assets/fonts/rajdhani-v9-latin-700.woff") format("woff"), url("/theme/public/assets/fonts/rajdhani-v9-latin-700.ttf") format("truetype"), url("/theme/public/assets/fonts/rajdhani-v9-latin-700.svg#Rajdhani") format("svg"); /* Legacy iOS */
}
/* rajdhani-600 - latin */
@font-face {
  font-family: "Rajdhani";
  font-style: normal;
  font-weight: 600;
  src: url("/theme/public/assets/fonts/rajdhani-v9-latin-600.eot"); /* IE9 Compat Modes */
  src: local("Rajdhani SemiBold"), local("Rajdhani-SemiBold"), url("/theme/public/assets/fonts/rajdhani-v9-latin-600.eot?#iefix") format("embedded-opentype"), url("/theme/public/assets/fonts/rajdhani-v9-latin-600.woff2") format("woff2"), url("/theme/public/assets/fonts/rajdhani-v9-latin-600.woff") format("woff"), url("/theme/public/assets/fonts/rajdhani-v9-latin-600.ttf") format("truetype"), url("/theme/public/assets/fonts/rajdhani-v9-latin-600.svg#Rajdhani") format("svg"); /* Legacy iOS */
}
/*!
 *
 *         SimpleBar.js - v2.5.1
 *         Scrollbars, simpler.
 *         https://grsmto.github.io/simplebar/
 *
 *         Made by Adrien Grsmto from a fork by Jonathan Nicol
 *         Under MIT License
 *
 */
[data-simplebar] {
  position: relative;
  z-index: 0;
  overflow: hidden;
  -webkit-overflow-scrolling: touch; /* Trigger native scrolling for mobile, if not supported, plugin is used. */
}

[data-simplebar=init] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.simplebar-scroll-content {
  overflow-x: hidden;
  overflow-y: scroll;
  min-width: 100%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.simplebar-content {
  overflow-x: scroll;
  overflow-y: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 100%;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 11px;
}

.simplebar-scrollbar {
  position: absolute;
  right: 2px;
  border-radius: 7px;
  min-height: 10px;
  width: 7px;
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
  background: black;
  background-clip: padding-box;
}

.simplebar-track:hover .simplebar-scrollbar {
  /* When hovered, remove all transitions from drag handle */
  opacity: 0.5;
  -webkit-transition: opacity 0 linear;
  transition: opacity 0 linear;
}

.simplebar-track .simplebar-scrollbar.visible {
  opacity: 0.5;
}

.simplebar-track.horizontal {
  left: 0;
  width: auto;
  height: 11px;
}

.simplebar-track.vertical {
  top: 0;
}

.horizontal.simplebar-track .simplebar-scrollbar {
  right: auto;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

@media screen and (min-width: 0) {
  .container {
    max-width: 1400px;
  }
  html, .header-logo span {
    font-size: 16px;
    line-height: 1.3;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  h1 {
    font-size: 1.6em;
    line-height: 1.3;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
  }
  h2 {
    font-size: 1.4em;
    line-height: 1.3;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
  }
  a.nav-level-1 {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  a.nav-level-2 {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  h1 {
    margin: 56px 0 32px 0;
  }
  .row.mt-h1,
  .col.mt-h1 {
    margin-top: 40px;
  }
  h2 {
    margin: 40px 0 16px 0;
  }
  .row.mt-h2,
  .col.mt-h2 {
    margin-top: 24px;
  }
  h3 {
    margin: 24px 0 16px 0;
  }
  .row.mt-h3,
  .col.mt-h3 {
    margin-top: 8px;
  }
  h4 {
    margin: 0 0 16px 0;
  }
  .row.mt-h4,
  .col.mt-h4 {
    margin-top: 0;
  }
  h1 + h2 {
    margin-top: -16px;
  }
  .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 1em 0;
  }
  .image {
    margin-bottom: 1em;
  }
  hr {
    margin: 1em 0 2em 0;
  }
  li:last-child {
    margin-bottom: 0;
  }
  .pagination {
    margin: 2em 0 1em 0;
  }
  .ctype1 h1:first-child,
  .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: 10px;
    padding-right: 10px;
  }
  .row-inner {
    margin-left: -10px;
    margin-right: -10px;
  }
  .col {
    padding-left: 10px;
    padding-right: 10px;
  }
  .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: 10px;
  }
  .image-position-left.image-width-100 {
    margin-right: 0;
    padding-right: 0;
  }
  .image-position-right {
    float: right;
    margin-left: 10px;
  }
  .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 16px -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;
  }
  .teaser {
    width: 100%;
    float: left;
    padding-left: 10px;
    padding-right: 10px;
    min-height: 1px;
  }
}
@media screen and (min-width: 600px) {
  .container {
    max-width: 1400px;
  }
  html, .header-logo span {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  h1 {
    font-size: 1.6em;
    line-height: 1.3;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
  }
  h2 {
    font-size: 1.4em;
    line-height: 1.3;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
  }
  a.nav-level-1 {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  a.nav-level-2 {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  h1 {
    margin: 59.5px 0 34px 0;
  }
  .row.mt-h1,
  .col.mt-h1 {
    margin-top: 42.5px;
  }
  h2 {
    margin: 42.5px 0 17px 0;
  }
  .row.mt-h2,
  .col.mt-h2 {
    margin-top: 25.5px;
  }
  h3 {
    margin: 25.5px 0 17px 0;
  }
  .row.mt-h3,
  .col.mt-h3 {
    margin-top: 8.5px;
  }
  h4 {
    margin: 0 0 17px 0;
  }
  .row.mt-h4,
  .col.mt-h4 {
    margin-top: 0;
  }
  h1 + h2 {
    margin-top: -17px;
  }
  .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 1em 0;
  }
  .image {
    margin-bottom: 1em;
  }
  hr {
    margin: 1em 0 2em 0;
  }
  li:last-child {
    margin-bottom: 0;
  }
  .pagination {
    margin: 2em 0 1em 0;
  }
  .ctype1 h1:first-child,
  .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: 20px;
    padding-right: 20px;
  }
  .row-inner {
    margin-left: -20px;
    margin-right: -20px;
  }
  .col {
    padding-left: 20px;
    padding-right: 20px;
  }
  .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: 20px;
  }
  .image-position-left.image-width-100 {
    margin-right: 0;
    padding-right: 0;
  }
  .image-position-right {
    float: right;
    margin-left: 20px;
  }
  .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 17px -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;
  }
  .teaser {
    width: 50%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 1px;
  }
}
@media screen and (min-width: 992px) {
  .container {
    max-width: 1400px;
  }
  html, .header-logo span {
    font-size: 17px;
    line-height: 1.3;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  h1 {
    font-size: 1.6em;
    line-height: 1.3;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
  }
  h2 {
    font-size: 1.4em;
    line-height: 1.3;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
  }
  a.nav-level-1 {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  a.nav-level-2 {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  h1 {
    margin: 76.5px 0 34px 0;
  }
  .row.mt-h1 {
    margin-top: 59.5px;
  }
  h2 {
    margin: 42.5px 0 17px 0;
  }
  .row.mt-h2 {
    margin-top: 25.5px;
  }
  h3 .footer ul {
    margin: 34px 0 17px 0;
  }
  .row.mt-h3 {
    margin-top: 17px;
  }
  h4 {
    margin: 0 0 17px 0;
  }
  .row.mt-h4 {
    margin-top: 0;
  }
  h1 + h2 {
    margin-top: -17px;
  }
  .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 1em 0;
  }
  .image {
    margin-bottom: 1em;
  }
  hr {
    margin: 1em 0 2em 0;
  }
  li:last-child {
    margin-bottom: 0;
  }
  .pagination {
    margin: 2em 0 1em 0;
  }
  .col:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
    margin-top: 1em;
  }
  .ctype1 h1:first-child,
  .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: 20px;
    padding-right: 20px;
  }
  .row-inner {
    margin-left: -20px;
    margin-right: -20px;
  }
  .col {
    padding-left: 20px;
    padding-right: 20px;
    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: 40px;
  }
  .image-position-left.image-width-100 {
    margin-right: 0;
    padding-right: 0;
  }
  .image-position-right {
    float: right;
    margin-left: 40px;
  }
  .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 17px -1px;
  }
  .gallery div {
    padding: 1px;
    width: 25%;
  }
  .col-width-75 .gallery {
    margin: 0 -1px 17px -1px;
  }
  .col-width-75 .gallery div {
    width: 25%;
  }
  .col-width-66 .gallery,
  .col-width-50 .gallery {
    margin: 0 -1px 17px -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 17px -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%;
  }
  .teaser {
    width: 33.3333%;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 1px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1400px;
  }
  html, .header-logo span {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  h1 {
    font-size: 1.6em;
    line-height: 1.3;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
  }
  h2 {
    font-size: 1.4em;
    line-height: 1.3;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
  }
  a.nav-level-1 {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  a.nav-level-2 {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  h1 {
    margin: 81px 0 36px 0;
  }
  .row.mt-h1 {
    margin-top: 63px;
  }
  h2 {
    margin: 45px 0 18px 0;
  }
  .row.mt-h2 {
    margin-top: 27px;
  }
  h3 .footer ul {
    margin: 36px 0 18px 0;
  }
  .row.mt-h3 {
    margin-top: 18px;
  }
  h4 {
    margin: 0 0 18px 0;
  }
  .row.mt-h4 {
    margin-top: 0;
  }
  h1 + h2 {
    margin-top: -18px;
  }
  .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 1em 0;
  }
  .image {
    margin-bottom: 1em;
  }
  hr {
    margin: 1em 0 2em 0;
  }
  li:last-child {
    margin-bottom: 0;
  }
  .pagination {
    margin: 2em 0 1em 0;
  }
  .col:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
    margin-top: 1em;
  }
  .ctype1 h1:first-child,
  .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: 40px;
    padding-right: 40px;
  }
  .row-inner {
    margin-left: -40px;
    margin-right: -40px;
  }
  .col {
    padding-left: 40px;
    padding-right: 40px;
    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: 80px;
  }
  .image-position-left.image-width-100 {
    margin-right: 0;
    padding-right: 0;
  }
  .image-position-right {
    float: right;
    margin-left: 80px;
  }
  .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 18px -1px;
  }
  .gallery div {
    padding: 1px;
    width: 25%;
  }
  .col-width-75 .gallery {
    margin: 0 -1px 18px -1px;
  }
  .col-width-75 .gallery div {
    width: 25%;
  }
  .col-width-66 .gallery,
  .col-width-50 .gallery {
    margin: 0 -1px 18px -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 18px -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%;
  }
  .teaser {
    width: 33.3333%;
    float: left;
    padding-left: 40px;
    padding-right: 40px;
    min-height: 1px;
  }
}
@media screen and (min-width: 1800px) {
  .container {
    max-width: 1400px;
  }
  html, .header-logo span {
    font-size: 19px;
    line-height: 1.3;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  h1 {
    font-size: 1.6em;
    line-height: 1.3;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
  }
  h2 {
    font-size: 1.4em;
    line-height: 1.3;
    font-weight: 700;
    font-family: Rajdhani, sans-serif;
  }
  a.nav-level-1 {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  a.nav-level-2 {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    font-family: Rajdhani, sans-serif;
  }
  h1 {
    margin: 85.5px 0 38px 0;
  }
  .row.mt-h1 {
    margin-top: 66.5px;
  }
  h2 {
    margin: 47.5px 0 19px 0;
  }
  .row.mt-h2 {
    margin-top: 28.5px;
  }
  h3 .footer ul {
    margin: 38px 0 19px 0;
  }
  .row.mt-h3 {
    margin-top: 19px;
  }
  h4 {
    margin: 0 0 19px 0;
  }
  .row.mt-h4 {
    margin-top: 0;
  }
  h1 + h2 {
    margin-top: -19px;
  }
  .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 1em 0;
  }
  .image {
    margin-bottom: 1em;
  }
  hr {
    margin: 1em 0 2em 0;
  }
  li:last-child {
    margin-bottom: 0;
  }
  .pagination {
    margin: 2em 0 1em 0;
  }
  .col:after {
    content: "";
    display: block;
    width: 100%;
    height: 0;
    clear: both;
    margin-top: 1em;
  }
  .ctype1 h1:first-child,
  .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: 40px;
    padding-right: 40px;
  }
  .row-inner {
    margin-left: -40px;
    margin-right: -40px;
  }
  .col {
    padding-left: 40px;
    padding-right: 40px;
    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: 80px;
  }
  .image-position-left.image-width-100 {
    margin-right: 0;
    padding-right: 0;
  }
  .image-position-right {
    float: right;
    margin-left: 80px;
  }
  .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 19px -1px;
  }
  .gallery div {
    padding: 1px;
    width: 25%;
  }
  .col-width-75 .gallery {
    margin: 0 -1px 19px -1px;
  }
  .col-width-75 .gallery div {
    width: 25%;
  }
  .col-width-66 .gallery,
  .col-width-50 .gallery {
    margin: 0 -1px 19px -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 19px -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%;
  }
  .teaser {
    width: 33.3333%;
    float: left;
    padding-left: 40px;
    padding-right: 40px;
    min-height: 1px;
  }
}
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 #999;
  padding: 4px;
}

select {
  width: 100%;
  border-color: #999;
  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;
  color: #fff;
}

@media screen and (min-width: 600px) {
  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: #d9edf7 !important;
  border-color: #bcdff1 !important;
  color: #31708f !important;
}
.alert-info * {
  color: #31708f !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 ul {
  display: flex;
  flex-direction: row;
}
nav.pagination li {
  padding: 0 0.25em 0 0;
}
nav.pagination a {
  display: block;
  text-align: center;
  background: #575656;
  color: #fff;
  width: 2em;
  line-height: 2em;
  border-radius: 0.2em;
  text-decoration: none;
}
nav.pagination a:hover {
  background: #000;
  text-decoration: none;
}
nav.pagination .active a {
  background: #000;
}
nav.pagination .disabled a {
  opacity: 0.25;
  cursor: default;
}
nav.pagination .disabled a:hover {
  background: #eee;
}

.download {
  display: flex;
  flex-direction: row;
  margin-bottom: 1em;
}

.download-icon {
  padding-right: 1em;
}
.download-icon i {
  position: relative;
  top: 0.1em;
  font-size: 2.4em;
}

/*
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__bg {
  background-color: #fff;
}

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

* {
  -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: #000;
  overflow-y: scroll;
  position: relative;
}

body {
  position: relative;
}

h1 {
  color: #000;
}

h2 {
  color: #000;
}

h3 {
  font-size: inherit;
  line-height: 1.3;
  font-weight: 700;
  margin: 0;
}

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

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

ol {
  padding: 0 0 0 2em;
}

ul ul,
ol ol {
  margin: 0;
}

a,
.gaOptout {
  text-decoration: underline;
  cursor: pointer;
  color: #000;
}

a:hover,
.gaOptout:hover {
  text-decoration: none;
  color: #000;
  font-weight: 700;
}

.grid-item a:hover {
  font-weight: 400;
}

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

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%;
}
.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 li:before {
  display: none !important;
}
nav a {
  text-decoration: none;
  padding: 0;
  margin: 0;
}

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

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

.image-caption {
  font-size: 0.8em;
}

.image-credit:before, .image-credit:after {
  content: " ";
  display: table;
}
.image-credit:after {
  clear: both;
}
.image-credit {
  padding-bottom: 1em;
}
.image-credit .image-credit-image {
  float: left;
  padding-right: 10px;
  max-width: 50%;
}
.image-credit .image-credit-image img {
  display: block;
}
.image-credit .image-credit-text {
  padding-left: 10px;
  overflow: hidden;
}

.btn {
  display: inline-block;
  border: 0;
  text-decoration: none;
  background: #000;
  color: #fff;
  text-shadow: none;
  padding: 0.1em 0.8em;
}
.btn:hover {
  background: rgb(25.5, 25.5, 25.5);
}

.row-teaser {
  padding-top: 1em;
  padding-bottom: 1em;
}

.teaser {
  margin-bottom: 1em;
}
.teaser:hover {
  background: #eee;
  cursor: pointer;
}

.teaser-inner {
  height: 100%;
  padding-bottom: 1.5em;
  position: relative;
}

.teaser-text {
  padding: 0 1px;
}

.teaser h2 {
  margin: 1em 0 0 0 !important;
  padding-left: 1em;
  position: relative;
}
.teaser h2:before {
  content: "•";
  position: absolute;
  left: 0;
  top: -0.05em;
  color: #000;
}

.teaser-meta {
  padding: 0 1px;
  text-align: right;
}
.teaser-meta a i {
  margin-left: 0.25em;
  font-size: 0.65em;
}
.teaser-meta .btn:hover {
  background: #fff;
  color: #000;
}

.teaser-image {
  position: relative;
  overflow: hidden;
  margin-bottom: 0.5em;
}

.row-teaser .teaser-image {
  margin-bottom: 0;
}

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

/**/
.image-credit-tile {
  float: left;
  background: #000;
  color: #fff;
  font-size: 0.8em;
}
.image-credit-tile *,
.image-credit-tile *:hover {
  color: #fff;
}
@media screen and (min-width: 600px) {
  .image-credit-tile {
    width: 50%;
  }
}
@media screen and (min-width: 900x) {
  .image-credit-tile {
    width: 33.33%;
  }
}
@media screen and (min-width: 1200px) {
  .image-credit-tile {
    width: 25%;
  }
}

.image-credit-tile-text {
  padding: 0.25em;
  text-align: center;
}

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

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

.content {
  overflow: hidden;
}
@media screen and (min-width: 600px) {
  .content {
    padding: 0 15px;
  }
}
@media screen and (min-width: 1400px) {
  .content {
    padding: 0 35px;
  }
}

.main {
  margin-top: 13em;
}

/**/
.header {
  position: relative;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  background: #fff;
  z-index: 1;
}

.header-inner {
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .header-inner {
    padding: 20px;
  }
}
@media screen and (min-width: 992px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
  }
  .header-inner nav:first-child {
    width: 33.33%;
  }
  .header-inner nav:last-child {
    width: 66.66%;
  }
  .header-inner {
    padding: 20px;
    min-height: 13em;
  }
}
@media screen and (min-width: 1400px) {
  .header-inner nav:first-child {
    width: 50%;
  }
  .header-inner nav:last-child {
    width: 50%;
  }
  .header-inner {
    padding: 40px;
  }
}

.header-nav-top li,
.header-nav-sub li {
  display: inline;
}
.header-nav-top a,
.header-nav-sub a {
  text-transform: uppercase;
  display: inline-block;
  padding: 1px 0;
}
.header-nav-top a.active,
.header-nav-sub a.active {
  font-weight: 700;
}
.header-nav-top a.current,
.header-nav-sub a.current {
  font-weight: 700;
}
.header-nav-top a.has-icon,
.header-nav-sub a.has-icon {
  padding-left: 1em;
  position: relative;
}
@media screen and (min-width: 992px) {
  .header-nav-top a.has-icon,
  .header-nav-sub a.has-icon {
    left: -1em;
  }
}
@media screen and (min-width: 1400px) {
  .header-nav-top a,
  .header-nav-sub a {
    font-size: 17px;
    letter-spacing: 2px;
  }
}
@media screen and (min-width: 1800px) {
  .header-nav-top a,
  .header-nav-sub a {
    font-size: 18px;
  }
}
.header-nav-top i,
.header-nav-sub i {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 0.6em;
  margin-right: 0.25em;
}

.header-nav-top {
  display: flex;
  flex-wrap: wrap;
}
.header-nav-top ul {
  margin-top: 3px;
}
.header-nav-top ul:first-of-type {
  margin-right: 20px;
}
@media screen and (min-width: 600px) {
  .header-nav-top ul {
    margin-left: 5px;
  }
}
@media screen and (min-width: 992px) {
  .header-nav-top ul {
    display: none !important;
  }
}
.header-nav-top li {
  display: block;
  padding-right: 10px;
}
.header-nav-top a {
  display: inline-block;
}
.header-nav-top .header-logo {
  font-family: "HelveticaNeueLTPro-Cn", sans-serif;
  font-weight: normal;
  padding: 0;
  width: 100%;
  margin-bottom: 5px;
}
.header-nav-top .header-logo svg {
  height: 1.4em;
}
.header-nav-top .header-logo svg path {
  fill: #000;
}
@media screen and (min-width: 600px) {
  .header-nav-top .header-logo {
    width: 50%;
  }
  .header-nav-top .header-logo svg {
    height: 1.3em;
  }
}
@media screen and (min-width: 1200px) {
  .header-nav-top .header-logo {
    width: auto;
  }
  .header-nav-top .header-logo svg {
    height: 1.4em;
  }
}
@media screen and (min-width: 1400px) {
  .header-nav-top .header-logo svg {
    height: 1.8em;
  }
}

.header-nav-sub {
  padding: 10px 0 0 0;
  display: flex;
  justify-content: flex-start;
}
.header-nav-sub ul {
  display: none;
}
.header-nav-sub .detail-nav,
.header-nav-sub .grid-nav {
  display: block;
}
.header-nav-sub .detail-nav li,
.header-nav-sub .grid-nav li {
  padding-right: 1em;
  position: relative;
}
@media screen and (min-width: 992px) {
  .header-nav-sub {
    padding: 3px 0 0 0;
  }
  .header-nav-sub ul {
    display: block !important;
    margin-top: 0 !important;
    padding: 0 5px;
  }
  .header-nav-sub ul:nth-child(1) {
    width: 26%;
  }
  .header-nav-sub ul:nth-child(2) {
    width: 44%;
  }
  .header-nav-sub ul:nth-child(3) {
    width: 30%;
  }
  .header-nav-sub li {
    display: block;
  }
}

.totop {
  position: fixed;
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  margin: 0;
  width: 40px;
  height: 45px;
  padding: 10px 10px 15px 10px;
  line-height: 1;
  text-align: center;
  transition: opacity 0.5s;
  outline: none;
}
.totop:hover {
  color: #fff;
}
.totop {
  background: #fff;
}
.totop.visible {
  opacity: 0.9;
}
.totop.hidden {
  opacity: 0;
}
@media screen and (min-width: 600px) {
  .totop {
    width: 60px;
    height: 65px;
    padding: 20px 20px 25px 20px;
  }
}

/**/
.footer {
  padding: 5em 0 0 0;
}

.footer-inner {
  text-align: left;
  padding: 10px;
}
.footer-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-inner li {
  display: inline;
  padding: 0 20px 0 0;
}
.footer-inner a {
  text-decoration: none;
}
.footer-inner a:hover {
  text-decoration: none;
}
.footer-inner * {
  text-transform: uppercase;
}
@media screen and (min-width: 600px) {
  .footer-inner {
    padding: 20px;
  }
}
@media screen and (min-width: 992px) {
  .footer-inner {
    padding: 20px;
  }
}
@media screen and (min-width: 1400px) {
  .footer-inner {
    padding: 40px;
  }
}

.fake-grid-item {
  padding: 0 10px 10px 10px;
}
@media screen and (min-width: 600px) {
  .fake-grid-item {
    padding: 5px;
  }
}

.grid-item {
  padding: 0 10px 10px 10px;
  width: 100%;
  float: left;
}
.grid-item img {
  filter: grayscale(85%);
}
.grid-item img:hover {
  filter: grayscale(0%);
}
@media screen and (min-width: 600px) {
  .grid-item {
    padding: 5px;
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .grid-item {
    width: 33.33%;
  }
  .ctype2 .grid-item {
    width: 50%;
  }
}
@media screen and (min-width: 1800px) {
  .grid-item {
    width: 25%;
  }
  .ctype2 .grid-item {
    width: 50%;
  }
}

#project-detail-grid .grid-item img, #project-detail-grid .grid-item img:hover {
  filter: grayscale(0%);
}

.grid-item-inner {
  position: relative;
}

.grid-item-name {
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0 5px 5px 10px;
  color: #fff;
}

@media screen and (min-width: 1800px) {
  .two-col {
    width: 75%;
  }
}

.ctype1,
.ctype1-no-siblings {
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .ctype1,
  .ctype1-no-siblings {
    padding: 5px;
  }
}

@media screen and (min-width: 992px) {
  .ctype1-no-siblings {
    width: 50%;
    width: 100%;
  }
}

.ctype2 {
  padding: 10px;
}
.ctype2 .grid {
  margin: 0 !important;
}
@media screen and (min-width: 600px) {
  .ctype2 {
    padding: 5px;
  }
}

@media screen and (min-width: 992px) {
  .ctype1 {
    width: 33.3333%;
    float: left;
    padding-right: 20px;
  }
  .ctype2 {
    width: 66.6666%;
    float: right;
  }
}
@media screen and (min-width: 1400px) {
  .ctype1 {
    width: 50%;
    padding-right: 40px;
  }
  .ctype2 {
    width: 50%;
  }
}
@media screen and (min-width: 1800px) {
  .ctype1 {
    width: 33.33%;
  }
  .ctype2 {
    width: 66.66%;
  }
}
.pswp__top-bar {
  background-color: transparent !important;
}

.pswp__bg {
  opacity: 0.95 !important;
}

.pswp__button {
  opcacity: 1 !important;
}

.pswp__img--placeholder--blank {
  background: #fff;
}

.project-archive-link {
  position: relative;
  padding-right: 1.2em;
}
.project-archive-link i {
  position: absolute;
  right: 0;
  top: 1px;
  display: inline-block;
  width: 0.85em;
  margin-right: 0.35em;
}

table.zeitleiste td {
  margin: 0;
  padding: 0;
}
table.zeitleiste td:first-child {
  width: 4em;
}

@media screen and (min-width: 1400px) {
  .header-nav-top a,
  .header-nav-sub a,
  .footer a {
    font-size: 17px;
    letter-spacing: 2px;
  }
}
@media screen and (min-width: 1800px) {
  .header-nav-top a,
  .header-nav-sub a,
  .footer a {
    font-size: 18px;
  }
}

@media screen and (min-width: 1400px) {
  img.desktop-75 {
    max-width: 75%;
  }
}

@media print {
  @page {
    margin: 2cm;
  }
  * {
    color: #000;
  }
  #header, .footer, .to-top {
    display: none;
  }
  .main {
    margin-top: 0;
  }
  .grid-item, .fake-grid-item {
    position: relative !important;
    left: 0 !important;
    top: 0 !important;
    max-width: 50% !important;
    float: none;
    page-break-before: auto; /* 'always,' 'avoid,' 'left,' 'inherit,' or 'right' */
    page-break-after: auto; /* 'always,' 'avoid,' 'left,' 'inherit,' or 'right' */
    page-break-inside: avoid; /* or 'auto' */
  }
}

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