/*!
 * Datepicker v1.0.10
 * https://fengyuanchen.github.io/datepicker
 *
 * Copyright 2014-present Chen Fengyuan
 * Released under the MIT license
 *
 * Date: 2020-09-29T14:46:09.037Z
 */
.datepicker-container {
  background-color: #fff;
  direction: ltr;
  font-size: 12px;
  left: 0;
  line-height: 30px;
  position: fixed;
  -webkit-tap-highlight-color: transparent;
  top: 0;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 210px;
  z-index: -1; }

.datepicker-container::before,
.datepicker-container::after {
  border: 5px solid transparent;
  content: " ";
  display: block;
  height: 0;
  position: absolute;
  width: 0; }

.datepicker-dropdown {
  border: 1px solid #ccc;
  box-shadow: 0 3px 6px #ccc;
  box-sizing: content-box;
  position: absolute;
  z-index: 1; }

.datepicker-inline {
  position: static; }

.datepicker-top-left,
.datepicker-top-right {
  border-top-color: #39f; }

.datepicker-top-left::before,
.datepicker-top-left::after,
.datepicker-top-right::before,
.datepicker-top-right::after {
  border-top: 0;
  left: 10px;
  top: -5px; }

.datepicker-top-left::before,
.datepicker-top-right::before {
  border-bottom-color: #39f; }

.datepicker-top-left::after,
.datepicker-top-right::after {
  border-bottom-color: #fff;
  top: -4px; }

.datepicker-bottom-left,
.datepicker-bottom-right {
  border-bottom-color: #39f; }

.datepicker-bottom-left::before,
.datepicker-bottom-left::after,
.datepicker-bottom-right::before,
.datepicker-bottom-right::after {
  border-bottom: 0;
  bottom: -5px;
  left: 10px; }

.datepicker-bottom-left::before,
.datepicker-bottom-right::before {
  border-top-color: #39f; }

.datepicker-bottom-left::after,
.datepicker-bottom-right::after {
  border-top-color: #fff;
  bottom: -4px; }

.datepicker-top-right::before,
.datepicker-top-right::after,
.datepicker-bottom-right::before,
.datepicker-bottom-right::after {
  left: auto;
  right: 10px; }

.datepicker-panel > ul {
  margin: 0;
  padding: 0;
  width: 102%; }

.datepicker-panel > ul::before,
.datepicker-panel > ul::after {
  content: " ";
  display: table; }

.datepicker-panel > ul::after {
  clear: both; }

.datepicker-panel > ul > li {
  background-color: #fff;
  cursor: pointer;
  float: left;
  height: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  width: 30px; }

.datepicker-panel > ul > li:hover {
  background-color: #e5f2ff; }

.datepicker-panel > ul > li.muted,
.datepicker-panel > ul > li.muted:hover {
  color: #999; }

.datepicker-panel > ul > li.highlighted {
  background-color: #e5f2ff; }

.datepicker-panel > ul > li.highlighted:hover {
  background-color: #cce5ff; }

.datepicker-panel > ul > li.picked,
.datepicker-panel > ul > li.picked:hover {
  color: #39f; }

.datepicker-panel > ul > li.disabled,
.datepicker-panel > ul > li.disabled:hover {
  background-color: #fff;
  color: #ccc;
  cursor: default; }

.datepicker-panel > ul > li.disabled.highlighted,
.datepicker-panel > ul > li.disabled:hover.highlighted {
  background-color: #e5f2ff; }

.datepicker-panel > ul > li[data-view="years prev"],
.datepicker-panel > ul > li[data-view="year prev"],
.datepicker-panel > ul > li[data-view="month prev"],
.datepicker-panel > ul > li[data-view="years next"],
.datepicker-panel > ul > li[data-view="year next"],
.datepicker-panel > ul > li[data-view="month next"],
.datepicker-panel > ul > li[data-view="next"] {
  font-size: 18px; }

.datepicker-panel > ul > li[data-view="years current"],
.datepicker-panel > ul > li[data-view="year current"],
.datepicker-panel > ul > li[data-view="month current"] {
  width: 150px; }

.datepicker-panel > ul[data-view="years"] > li,
.datepicker-panel > ul[data-view="months"] > li {
  height: 52.5px;
  line-height: 52.5px;
  width: 52.5px; }

.datepicker-panel > ul[data-view="week"] > li,
.datepicker-panel > ul[data-view="week"] > li:hover {
  background-color: #fff;
  cursor: default; }

.datepicker-hide {
  display: none; }
@charset "UTF-8";
/**
 * Featherlight – ultra slim jQuery lightbox
 * Version 1.7.14 - http://noelboss.github.io/featherlight/
 *
 * Copyright 2019, Noël Raoul Bossart (http://www.noelboss.com)
 * MIT Licensed.
**/
html.with-featherlight {
  /* disable global scrolling when featherlights are visible */
  overflow: hidden; }

.featherlight {
  display: none;
  /* dimensions: spanning the background from edge to edge */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2147483647;
  /* z-index needs to be >= elements on the site. */
  /* position: centering content */
  text-align: center;
  /* insures that the ::before pseudo element doesn't force wrap with fixed width content; */
  white-space: nowrap;
  /* styling */
  cursor: pointer;
  background: #333;
  /* IE8 "hack" for nested featherlights */
  background: rgba(0, 0, 0, 0); }

/* support for nested featherlights. Does not work in IE8 (use JS to fix) */
.featherlight:last-of-type {
  background: rgba(0, 0, 0, 0.8); }

.featherlight:before {
  /* position: trick to center content vertically */
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.featherlight .featherlight-content {
  /* make content container for positioned elements (close button) */
  position: relative;
  /* position: centering vertical and horizontal */
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  /* dimensions: cut off images */
  overflow: auto;
  padding: 25px 25px 0;
  border-bottom: 25px solid transparent;
  /* dimensions: handling large content */
  margin-left: 5%;
  margin-right: 5%;
  max-height: 95%;
  /* styling */
  background: #fff;
  cursor: auto;
  /* reset white-space wrapping */
  white-space: normal; }

/* contains the content */
.featherlight .featherlight-inner {
  /* make sure its visible */
  display: block; }

/* don't show these though */
.featherlight script.featherlight-inner,
.featherlight link.featherlight-inner,
.featherlight style.featherlight-inner {
  display: none; }

.featherlight .featherlight-close-icon {
  /* position: centering vertical and horizontal */
  position: absolute;
  z-index: 9999;
  top: 0;
  right: 0;
  /* dimensions: 25px x 25px */
  line-height: 25px;
  width: 25px;
  /* styling */
  cursor: pointer;
  text-align: center;
  font-family: Arial, sans-serif;
  background: #fff;
  /* Set the background in case it overlaps the content */
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  border: none;
  padding: 0; }

/* See http://stackoverflow.com/questions/16077341/how-to-reset-all-default-styles-of-the-html5-button-element */
.featherlight .featherlight-close-icon::-moz-focus-inner {
  border: 0;
  padding: 0; }

.featherlight .featherlight-image {
  /* styling */
  width: 100%; }

.featherlight-iframe .featherlight-content {
  /* removed the border for image croping since iframe is edge to edge */
  border-bottom: 0;
  padding: 0;
  -webkit-overflow-scrolling: touch; }

.featherlight iframe {
  /* styling */
  border: none; }

.featherlight * {
  /* See https://github.com/noelboss/featherlight/issues/42 */
  box-sizing: border-box; }

/* handling phones and small screens */
@media only screen and (max-width: 1024px) {
  .featherlight .featherlight-content {
    /* dimensions: maximize lightbox with for small screens */
    margin-left: 0;
    margin-right: 0;
    max-height: 98%;
    padding: 10px 10px 0;
    border-bottom: 10px solid transparent; } }

/* hide non featherlight items when printing */
@media print {
  html.with-featherlight > * > :not(.featherlight) {
    display: none; } }
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }
/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0; }

.leaflet-container {
  overflow: hidden; }

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  -webkit-user-drag: none; }

/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::-moz-selection {
  background: transparent; }
.leaflet-tile::selection {
  background: transparent; }

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast; }

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0; }

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block; }

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important; }

.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
  width: auto;
  padding: 0; }

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y; }

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom; }

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none; }

.leaflet-container {
  -webkit-tap-highlight-color: transparent; }

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4); }

.leaflet-tile {
  filter: inherit;
  visibility: hidden; }

.leaflet-tile-loaded {
  visibility: inherit; }

.leaflet-zoom-box {
  width: 0;
  height: 0;
  box-sizing: border-box;
  z-index: 800; }

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none; }

.leaflet-pane {
  z-index: 400; }

.leaflet-tile-pane {
  z-index: 200; }

.leaflet-overlay-pane {
  z-index: 400; }

.leaflet-shadow-pane {
  z-index: 500; }

.leaflet-marker-pane {
  z-index: 600; }

.leaflet-tooltip-pane {
  z-index: 650; }

.leaflet-popup-pane {
  z-index: 700; }

.leaflet-map-pane canvas {
  z-index: 100; }

.leaflet-map-pane svg {
  z-index: 200; }

.leaflet-vml-shape {
  width: 1px;
  height: 1px; }

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute; }

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto; }

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none; }

.leaflet-top {
  top: 0; }

.leaflet-right {
  right: 0; }

.leaflet-bottom {
  bottom: 0; }

.leaflet-left {
  left: 0; }

.leaflet-control {
  float: left;
  clear: both; }

.leaflet-right .leaflet-control {
  float: right; }

.leaflet-top .leaflet-control {
  margin-top: 10px; }

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px; }

.leaflet-left .leaflet-control {
  margin-left: 10px; }

.leaflet-right .leaflet-control {
  margin-right: 10px; }

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  transition: opacity 0.2s linear; }

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1; }

.leaflet-zoom-animated {
  -ms-transform-origin: 0 0;
  transform-origin: 0 0; }

svg.leaflet-zoom-animated {
  will-change: transform; }

.leaflet-zoom-anim .leaflet-zoom-animated {
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1); }

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  transition: none; }

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden; }

/* cursors */
.leaflet-interactive {
  cursor: pointer; }

.leaflet-grab {
  cursor: grab; }

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair; }

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto; }

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: grabbing; }

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none; }

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto; }

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline-offset: 1px; }

.leaflet-container a {
  color: #0078A8; }

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5); }

/* general typography */
.leaflet-container {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5; }

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px; }

.leaflet-bar a {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black; }

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block; }

.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background-color: #f4f4f4; }

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px; }

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none; }

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb; }

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px; }

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px; }

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px; }

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px; }

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px; }

/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px; }

.leaflet-control-layers-toggle {
  background-image: url(./assets/_processed_/layers.a6137.png);
  width: 36px;
  height: 36px; }

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(./assets/_processed_/layers-2x.4f028.png);
  background-size: 26px 26px; }

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px; }

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none; }

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative; }

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff; }

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px; }

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px; }

.leaflet-control-layers label {
  display: block;
  font-size: 13px;
  font-size: 1.08333em; }

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px; }

/* Default icon URLs */
.leaflet-default-icon-path {
  /* used only in path-guessing heuristic, see L.Icon.Default */
  background-image: url(./assets/_processed_/marker-icon.2273e.png); }

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  margin: 0; }

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
  line-height: 1.4; }

.leaflet-control-attribution a {
  text-decoration: none; }

.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
  text-decoration: underline; }

.leaflet-attribution-flag {
  display: inline !important;
  vertical-align: baseline !important;
  width: 1em;
  height: 0.6669em; }

.leaflet-left .leaflet-control-scale {
  margin-left: 5px; }

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px; }

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  white-space: nowrap;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px #fff; }

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px; }

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777; }

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none; }

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box; }

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px; }

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px; }

.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
  font-size: 13px;
  font-size: 1.08333em;
  min-height: 1px; }

.leaflet-popup-content p {
  margin: 17px 0;
  margin: 1.3em 0; }

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-top: -1px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none; }

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  pointer-events: auto;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4); }

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-align: center;
  width: 24px;
  height: 24px;
  font: 16px/24px Tahoma, Verdana, sans-serif;
  color: #757575;
  text-decoration: none;
  background: transparent; }

.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
  color: #585858; }

.leaflet-popup-scrolled {
  overflow: auto; }

.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1; }

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678); }

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999; }

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666; }

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }

.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto; }

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: ""; }

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px; }

.leaflet-tooltip-top {
  margin-top: -6px; }

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px; }

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff; }

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff; }

.leaflet-tooltip-left {
  margin-left: -6px; }

.leaflet-tooltip-right {
  margin-left: 6px; }

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px; }

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff; }

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff; }

/* Printing */
@media print {
  /* Prevent printers from removing background-images of controls. */
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact; } }
@charset "UTF-8";
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0; }

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none; }

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none; }

/*==========================================================================
  mixins
  ==========================================================================*/
/*==========================================================================
  basic animation keyframes
  ==========================================================================*/
@keyframes fade-in-up {
  0% {
    opacity: 0;
    transform: translateY(20%); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fade-in-right {
  0% {
    opacity: 0;
    transform: translateX(-20%); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fade-in-down {
  0% {
    opacity: 0;
    transform: translateY(-20%); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fade-in-left {
  0% {
    opacity: 0;
    transform: translateX(20%); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fade-in-backward {
  0% {
    opacity: 0;
    transform: scale(1.2); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fade-in-forward {
  0% {
    opacity: 0;
    transform: scale(0.8); }
  100% {
    opacity: 1;
    transform: none; } }

@keyframes fade-out {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes move-in {
  from {
    background-position-x: -64px; }
  to {
    background-position-x: -24px; } }

/*==========================================================================
  typography + basic html styles
  ==========================================================================*/
html {
  font-size: 16px; }

body {
  position: relative;
  font-family: "FuturaPT-Book", Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #000000;
  background: #FFF; }
  body:before {
    content: "lg";
    display: none; }
  @media (max-width: 767px) {
    body:before {
      content: "md"; } }
  @media (max-width: 575px) {
    body:before {
      content: "sm"; } }

h1, h2, h3, h4, h5, h6 {
  font-family: "FuturaPT-Demi", Helvetica, sans-serif;
  font-size: 2.0em;
  font-weight: normal;
  line-height: 1.28; }

h1, .h1 {
  font-size: 2.4em; }

h2, .h2 {
  font-size: 2.0em; }

h3, .h3 {
  font-size: 1.6em; }

h4, .h4 {
  font-size: 1.2em; }

h5, h6, .h5 {
  font-size: 1.0em; }

img {
  max-width: 100%;
  height: auto;
  /* Nur Internet Explorer */ }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    img {
      width: 100%; } }

blockquote {
  margin: 0; }

h1, h2, h3, h4, h5, h6,
p,
hr,
ul, ol,
blockquote {
  margin: 0 0 1.25rem; }
  h1:last-child, h2:last-child, h3:last-child, h4:last-child, h5:last-child, h6:last-child,
  p:last-child,
  hr:last-child,
  ul:last-child, ol:last-child,
  blockquote:last-child {
    margin-bottom: 0; }

b,
strong {
  font-weight: bold; }

hr {
  height: 2px;
  border: none;
  background: #cccccc; }

a {
  color: #888;
  cursor: pointer; }

table.table {
  width: 100%; }
  table.table td, table.table th {
    padding: 0.3125rem 0.625rem; }
  table.table thead {
    border-bottom: 2px #e6e6e6 solid; }
    table.table thead th {
      text-align: left; }
  table.table tbody tr:nth-child(2n) {
    background: #f2f2f2; }
  table.table tbody tr:hover {
    background: #e6e6e6; }
  table.table tfoot {
    border-top: 2px #e6e6e6 solid; }

.ce-gallery iframe {
  max-width: 100%; }

/*==========================================================================
  mixins
  ==========================================================================*/
/*==========================================================================
  basic helper classes
  ==========================================================================*/
.hidden,
[hidden] {
  display: none !important; }

.hide {
  display: none; }

.invisible {
  visibility: hidden; }

@media (max-width: 1199px) {
  .lg-screen-only {
    display: none !important; } }

@media (min-width: 768px) {
  .lg-screen-hidden {
    display: none !important; } }

@media (min-width: 1199px) {
  .lg-screen-hidden-footer {
    display: none !important; } }

@media (min-width: 768px) {
  .md-screen-only {
    display: none !important; } }

@media (max-width: 575px) {
  .md-screen-only {
    display: none !important; } }

@media (min-width: 576px) {
  .sm-screen-only {
    display: none !important; } }

@media (max-width: 575px) {
  .sm-screen-hidden {
    display: none !important; } }

@media (max-width: 575px) {
  .sm-screen-no-padding {
    padding: 0 !important; } }

@media screen {
  .print-only {
    display: none !important; } }

@media print {
  .print-hidden {
    display: none !important; } }

.screen-reader-only,
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
  border: none; }

.clear,
.group:after,
.clear-after:after {
  clear: both; }

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

.fl-left,
.push-left {
  float: left; }

.fl-right,
.push-right {
  float: right; }

.text-left {
  text-align: left; }

.text-center {
  text-align: center; }

.text-right {
  text-align: right; }

.text-justify {
  text-align: justify; }

.paragraph {
  margin-bottom: 1.25rem; }

.gap {
  margin: 1.25rem 0; }

.inner-gap {
  padding: 1.25rem 0; }

.block {
  display: block !important; }

.main-font {
  font-family: "FuturaPT-Book", Helvetica, sans-serif !important; }

.title-font {
  font-family: "FuturaPT-Demi", Helvetica, sans-serif !important; }

.test {
  outline: 2px #000000 dotted; }

/*==========================================================================
  mixins
  ==========================================================================*/
/*==========================================================================
  grid system
  ==========================================================================*/
.grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-direction: row;
      flex-direction: row;
  -ms-flex-pack: center;
      justify-content: center; }
  .grid:not(.grid--no-gap) {
    margin-left: -1rem;
    margin-right: -1rem; }
    .grid:not(.grid--no-gap) > .grid__col {
      padding: 0 0.5rem; }
  .grid.grid--no-wrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap; }
  .grid.grid--v-gap {
    margin-top: -2rem; }
    .grid.grid--v-gap > .grid__col {
      margin-top: 2rem !important; }
  @media (max-width: 1199px) {
    .grid.grid--no-lg-vgap .grid__col {
      margin: 0 !important; } }
  .no-flexbox .grid {
    display: block; }
    .no-flexbox .grid:before, .no-flexbox .grid:after {
      display: table;
      content: "";
      clear: both; }
    .no-flexbox .grid:not(.grid--wrap) .grid__col {
      clear: none; }
  .grid .grid--no-margin-bottom {
    margin-bottom: -3rem; }
  .grid__col {
    width: 100%;
    vertical-align: top;
    min-height: 1px;
    box-sizing: border-box; }
    .no-flexbox .grid__col {
      display: block;
      float: left; }
    .grid__col--1 {
      max-width: 8.33333%;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%; }
      .no-flexbox .grid__col--1 {
        width: 8.33333%;
        max-width: none; }
        .no-flexbox .grid__col--1:nth-child(12n + 13) {
          clear: both; }
    .grid__col--2 {
      max-width: 16.66667%;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%; }
      .no-flexbox .grid__col--2 {
        width: 16.66667%;
        max-width: none; }
        .no-flexbox .grid__col--2:nth-child(6n + 7) {
          clear: both; }
    .grid__col--3 {
      max-width: 25%;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%; }
      .no-flexbox .grid__col--3 {
        width: 25%;
        max-width: none; }
        .no-flexbox .grid__col--3:nth-child(4n + 5) {
          clear: both; }
    .grid__col--4 {
      max-width: 33.33333%;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%; }
      .no-flexbox .grid__col--4 {
        width: 33.33333%;
        max-width: none; }
        .no-flexbox .grid__col--4:nth-child(3n + 4) {
          clear: both; }
    .grid__col--5 {
      max-width: 41.66667%;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%; }
      .no-flexbox .grid__col--5 {
        width: 41.66667%;
        max-width: none; }
        .no-flexbox .grid__col--5:nth-child(2n + 3) {
          clear: both; }
    .grid__col--6 {
      max-width: 50%;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%; }
      .no-flexbox .grid__col--6 {
        width: 50%;
        max-width: none; }
        .no-flexbox .grid__col--6:nth-child(2n + 3) {
          clear: both; }
    .grid__col--7 {
      max-width: 58.33333%;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%; }
      .no-flexbox .grid__col--7 {
        width: 58.33333%;
        max-width: none; }
        .no-flexbox .grid__col--7:nth-child(1n + 2) {
          clear: both; }
    .grid__col--8 {
      max-width: 66.66667%;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%; }
      .no-flexbox .grid__col--8 {
        width: 66.66667%;
        max-width: none; }
        .no-flexbox .grid__col--8:nth-child(1n + 2) {
          clear: both; }
    .grid__col--9 {
      max-width: 75%;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%; }
      .no-flexbox .grid__col--9 {
        width: 75%;
        max-width: none; }
        .no-flexbox .grid__col--9:nth-child(1n + 2) {
          clear: both; }
    .grid__col--10 {
      max-width: 83.33333%;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%; }
      .no-flexbox .grid__col--10 {
        width: 83.33333%;
        max-width: none; }
        .no-flexbox .grid__col--10:nth-child(1n + 2) {
          clear: both; }
    .grid__col--11 {
      max-width: 91.66667%;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%; }
      .no-flexbox .grid__col--11 {
        width: 91.66667%;
        max-width: none; }
        .no-flexbox .grid__col--11:nth-child(1n + 2) {
          clear: both; }
    .grid__col--12 {
      max-width: 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%; }
      .no-flexbox .grid__col--12 {
        width: 100%;
        max-width: none; }
        .no-flexbox .grid__col--12:nth-child(1n + 2) {
          clear: both; }
    @media (max-width: 1199px) {
      .grid__col--lg-1 {
        max-width: 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%; }
        .no-flexbox .grid__col--lg-1 {
          width: 8.33333%;
          max-width: none; }
          .no-flexbox .grid__col--lg-1:nth-child(12n + 13) {
            clear: both; }
      .grid__col--lg-2 {
        max-width: 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%; }
        .no-flexbox .grid__col--lg-2 {
          width: 16.66667%;
          max-width: none; }
          .no-flexbox .grid__col--lg-2:nth-child(6n + 7) {
            clear: both; }
      .grid__col--lg-3 {
        max-width: 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
        .no-flexbox .grid__col--lg-3 {
          width: 25%;
          max-width: none; }
          .no-flexbox .grid__col--lg-3:nth-child(4n + 5) {
            clear: both; }
      .grid__col--lg-4 {
        max-width: 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%; }
        .no-flexbox .grid__col--lg-4 {
          width: 33.33333%;
          max-width: none; }
          .no-flexbox .grid__col--lg-4:nth-child(3n + 4) {
            clear: both; }
      .grid__col--lg-5 {
        max-width: 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%; }
        .no-flexbox .grid__col--lg-5 {
          width: 41.66667%;
          max-width: none; }
          .no-flexbox .grid__col--lg-5:nth-child(2n + 3) {
            clear: both; }
      .grid__col--lg-6 {
        max-width: 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%; }
        .no-flexbox .grid__col--lg-6 {
          width: 50%;
          max-width: none; }
          .no-flexbox .grid__col--lg-6:nth-child(2n + 3) {
            clear: both; }
      .grid__col--lg-7 {
        max-width: 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%; }
        .no-flexbox .grid__col--lg-7 {
          width: 58.33333%;
          max-width: none; }
          .no-flexbox .grid__col--lg-7:nth-child(1n + 2) {
            clear: both; }
      .grid__col--lg-8 {
        max-width: 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%; }
        .no-flexbox .grid__col--lg-8 {
          width: 66.66667%;
          max-width: none; }
          .no-flexbox .grid__col--lg-8:nth-child(1n + 2) {
            clear: both; }
      .grid__col--lg-9 {
        max-width: 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%; }
        .no-flexbox .grid__col--lg-9 {
          width: 75%;
          max-width: none; }
          .no-flexbox .grid__col--lg-9:nth-child(1n + 2) {
            clear: both; }
      .grid__col--lg-10 {
        max-width: 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%; }
        .no-flexbox .grid__col--lg-10 {
          width: 83.33333%;
          max-width: none; }
          .no-flexbox .grid__col--lg-10:nth-child(1n + 2) {
            clear: both; }
      .grid__col--lg-11 {
        max-width: 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%; }
        .no-flexbox .grid__col--lg-11 {
          width: 91.66667%;
          max-width: none; }
          .no-flexbox .grid__col--lg-11:nth-child(1n + 2) {
            clear: both; }
      .grid__col--lg-12 {
        max-width: 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; }
        .no-flexbox .grid__col--lg-12 {
          width: 100%;
          max-width: none; }
          .no-flexbox .grid__col--lg-12:nth-child(1n + 2) {
            clear: both; } }
    @media (max-width: 767px) {
      .grid__col--md-1 {
        max-width: 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%; }
        .no-flexbox .grid__col--md-1 {
          width: 8.33333%;
          max-width: none; }
          .no-flexbox .grid__col--md-1:nth-child(12n + 13) {
            clear: both; }
      .grid__col--md-2 {
        max-width: 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%; }
        .no-flexbox .grid__col--md-2 {
          width: 16.66667%;
          max-width: none; }
          .no-flexbox .grid__col--md-2:nth-child(6n + 7) {
            clear: both; }
      .grid__col--md-3 {
        max-width: 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
        .no-flexbox .grid__col--md-3 {
          width: 25%;
          max-width: none; }
          .no-flexbox .grid__col--md-3:nth-child(4n + 5) {
            clear: both; }
      .grid__col--md-4 {
        max-width: 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%; }
        .no-flexbox .grid__col--md-4 {
          width: 33.33333%;
          max-width: none; }
          .no-flexbox .grid__col--md-4:nth-child(3n + 4) {
            clear: both; }
      .grid__col--md-5 {
        max-width: 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%; }
        .no-flexbox .grid__col--md-5 {
          width: 41.66667%;
          max-width: none; }
          .no-flexbox .grid__col--md-5:nth-child(2n + 3) {
            clear: both; }
      .grid__col--md-6 {
        max-width: 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%; }
        .no-flexbox .grid__col--md-6 {
          width: 50%;
          max-width: none; }
          .no-flexbox .grid__col--md-6:nth-child(2n + 3) {
            clear: both; }
      .grid__col--md-7 {
        max-width: 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%; }
        .no-flexbox .grid__col--md-7 {
          width: 58.33333%;
          max-width: none; }
          .no-flexbox .grid__col--md-7:nth-child(1n + 2) {
            clear: both; }
      .grid__col--md-8 {
        max-width: 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%; }
        .no-flexbox .grid__col--md-8 {
          width: 66.66667%;
          max-width: none; }
          .no-flexbox .grid__col--md-8:nth-child(1n + 2) {
            clear: both; }
      .grid__col--md-9 {
        max-width: 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%; }
        .no-flexbox .grid__col--md-9 {
          width: 75%;
          max-width: none; }
          .no-flexbox .grid__col--md-9:nth-child(1n + 2) {
            clear: both; }
      .grid__col--md-10 {
        max-width: 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%; }
        .no-flexbox .grid__col--md-10 {
          width: 83.33333%;
          max-width: none; }
          .no-flexbox .grid__col--md-10:nth-child(1n + 2) {
            clear: both; }
      .grid__col--md-11 {
        max-width: 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%; }
        .no-flexbox .grid__col--md-11 {
          width: 91.66667%;
          max-width: none; }
          .no-flexbox .grid__col--md-11:nth-child(1n + 2) {
            clear: both; }
      .grid__col--md-12 {
        max-width: 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; }
        .no-flexbox .grid__col--md-12 {
          width: 100%;
          max-width: none; }
          .no-flexbox .grid__col--md-12:nth-child(1n + 2) {
            clear: both; } }
    @media (max-width: 575px) {
      .grid__col--sm-1 {
        max-width: 8.33333%;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%; }
        .no-flexbox .grid__col--sm-1 {
          width: 8.33333%;
          max-width: none; }
          .no-flexbox .grid__col--sm-1:nth-child(12n + 13) {
            clear: both; }
      .grid__col--sm-2 {
        max-width: 16.66667%;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%; }
        .no-flexbox .grid__col--sm-2 {
          width: 16.66667%;
          max-width: none; }
          .no-flexbox .grid__col--sm-2:nth-child(6n + 7) {
            clear: both; }
      .grid__col--sm-3 {
        max-width: 25%;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
        .no-flexbox .grid__col--sm-3 {
          width: 25%;
          max-width: none; }
          .no-flexbox .grid__col--sm-3:nth-child(4n + 5) {
            clear: both; }
      .grid__col--sm-4 {
        max-width: 33.33333%;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%; }
        .no-flexbox .grid__col--sm-4 {
          width: 33.33333%;
          max-width: none; }
          .no-flexbox .grid__col--sm-4:nth-child(3n + 4) {
            clear: both; }
      .grid__col--sm-5 {
        max-width: 41.66667%;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%; }
        .no-flexbox .grid__col--sm-5 {
          width: 41.66667%;
          max-width: none; }
          .no-flexbox .grid__col--sm-5:nth-child(2n + 3) {
            clear: both; }
      .grid__col--sm-6 {
        max-width: 50%;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%; }
        .no-flexbox .grid__col--sm-6 {
          width: 50%;
          max-width: none; }
          .no-flexbox .grid__col--sm-6:nth-child(2n + 3) {
            clear: both; }
      .grid__col--sm-7 {
        max-width: 58.33333%;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%; }
        .no-flexbox .grid__col--sm-7 {
          width: 58.33333%;
          max-width: none; }
          .no-flexbox .grid__col--sm-7:nth-child(1n + 2) {
            clear: both; }
      .grid__col--sm-8 {
        max-width: 66.66667%;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%; }
        .no-flexbox .grid__col--sm-8 {
          width: 66.66667%;
          max-width: none; }
          .no-flexbox .grid__col--sm-8:nth-child(1n + 2) {
            clear: both; }
      .grid__col--sm-9 {
        max-width: 75%;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%; }
        .no-flexbox .grid__col--sm-9 {
          width: 75%;
          max-width: none; }
          .no-flexbox .grid__col--sm-9:nth-child(1n + 2) {
            clear: both; }
      .grid__col--sm-10 {
        max-width: 83.33333%;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%; }
        .no-flexbox .grid__col--sm-10 {
          width: 83.33333%;
          max-width: none; }
          .no-flexbox .grid__col--sm-10:nth-child(1n + 2) {
            clear: both; }
      .grid__col--sm-11 {
        max-width: 91.66667%;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%; }
        .no-flexbox .grid__col--sm-11 {
          width: 91.66667%;
          max-width: none; }
          .no-flexbox .grid__col--sm-11:nth-child(1n + 2) {
            clear: both; }
      .grid__col--sm-12 {
        max-width: 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; }
        .no-flexbox .grid__col--sm-12 {
          width: 100%;
          max-width: none; }
          .no-flexbox .grid__col--sm-12:nth-child(1n + 2) {
            clear: both; } }
  .grid--flip {
    -ms-flex-direction: row-reverse;
        flex-direction: row-reverse; }
    @media (max-width: 575px) {
      .grid--flip {
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; } }
    .no-flexbox .grid--flip > .grid__col {
      float: right; }
  .grid--debug .grid__col > * {
    background: rgba(0, 0, 0, 0.15); }
  @media (max-width: 1140px) {
    .grid--responsive {
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important; }
      .grid--responsive > .grid__col:not([class*="--sm-"]) {
        display: block;
        width: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin: 1.25rem 0 0; }
        .grid--responsive > .grid__col:not([class*="--sm-"]):first-child {
          margin-top: 0; } }
  @media (max-width: 575px) {
    .grid--sm-responsive {
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important; }
      .grid--sm-responsive > .grid__col:not([class*="--sm-"]) {
        display: block;
        width: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin: 1.25rem 0 0; }
        .grid--sm-responsive > .grid__col:not([class*="--sm-"]):first-child {
          margin-top: 0; } }
  @media (max-width: 767px) {
    .grid--md-responsive {
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important; }
      .grid--md-responsive > .grid__col:not([class*="--sm-"]) {
        display: block;
        width: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin: 1.25rem 0 0; }
        .grid--md-responsive > .grid__col:not([class*="--sm-"]):first-child {
          margin-top: 0; } }
  @media (max-width: 1199px) {
    .grid--lg-responsive {
      -ms-flex-wrap: wrap !important;
          flex-wrap: wrap !important; }
      .grid--lg-responsive > .grid__col:not([class*="--sm-"]) {
        display: block;
        width: 100%;
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        margin: 1.25rem 0 0; }
        .grid--lg-responsive > .grid__col:not([class*="--sm-"]):first-child {
          margin-top: 0; } }
  .grid--align-items-center {
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: normal;
        justify-content: normal;
    place-content: space-between; }
  .grid--align-content-center {
    -ms-flex-line-pack: center;
        align-content: center; }

.decor.decor--full.grid--opacity {
  padding-top: 3rem;
  padding-bottom: 0; }

.grid--opacity.decor:before,
.grid--opacity[class*='decor']:before {
  margin-top: 0; }

.decor.grid--opacity:after,
[class*='decor'].grid--opacity:after {
  height: 3rem; }

.theme--green .grid--opacity.decor:before,
.theme--green .grid--opacity[class*='decor']:before {
  background-color: #becfbf !important; }

.theme--orange .grid--opacity.decor:before,
.theme--orange .grid--opacity[class*='decor']:before {
  background-color: #e6ae8a !important; }

.theme--violet .grid--opacity.decor:before,
.theme--violet .grid--opacity[class*='decor']:before {
  background-color: #d7b4af !important; }

.theme--yellow .grid--opacity.decor:before,
.theme--yellow .grid--opacity[class*='decor']:before {
  background-color: #eae1b3 !important; }

.theme--blue .grid--opacity.decor:before,
.theme--blue .grid--opacity[class*='decor']:before {
  background-color: #b3ced3 !important; }

.theme--red .grid--opacity.decor:before,
.theme--red .grid--opacity[class*='decor']:before {
  background-color: #dd8a78 !important; }

.grid--opacity.decor:before,
.grid--opacity[class*='decor']:before {
  background: rgba(0, 0, 0, 0.08) !important; }

/*==========================================================================
  basic components
  ==========================================================================*/
.btn {
  display: inline-block;
  padding: 0.297rem 0.66rem 0.33rem;
  color: #FFF;
  background: #888;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  outline: 0; }
  .btn:hover, .btn:focus {
    color: #FFF;
    background: #000000;
    text-decoration: none; }

@font-face {
  font-family: "FuturaPT-Demi";
  src: url(./assets/_processed_/FuturaPT-Demi.3dc67.eot);
  src: local("\263A"), url(./assets/_processed_/FuturaPT-Demi.3dc67.eot?#iefix) format("embedded-opentype"), url(./assets/_processed_/FuturaPT-Demi.cc384.ttf) format("truetype"), url(./assets/_processed_/FuturaPT-Demi.26c1e.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-display: swap; }

@font-face {
  font-family: "FuturaPT-Book";
  src: url(./assets/_processed_/FuturaPT-Book.cbeec.eot);
  src: local("\263A"), url(./assets/_processed_/FuturaPT-Book.cbeec.eot?#iefix) format("embedded-opentype"), url(./assets/_processed_/FuturaPT-Book.a378a.ttf) format("truetype"), url(./assets/_processed_/FuturaPT-Book.c78ce.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-display: swap; }

@font-face {
  font-family: "FuturaPT-Book";
  src: url(./assets/_processed_/FuturaPT-Demi.3dc67.eot);
  src: local("\263A"), url(./assets/_processed_/FuturaPT-Demi.3dc67.eot?#iefix) format("embedded-opentype"), url(./assets/_processed_/FuturaPT-Demi.cc384.ttf) format("truetype"), url(./assets/_processed_/FuturaPT-Demi.26c1e.woff) format("woff");
  font-weight: bold;
  font-style: normal;
  font-variant: normal;
  font-display: swap; }

@font-face {
  font-family: "Reckless-Medium";
  src: url(./assets/_processed_/RecklessNeue-Medium.72371.eot);
  src: local("\263A"), url(./assets/_processed_/RecklessNeue-Medium.72371.eot?#iefix) format("embedded-opentype"), url(./assets/_processed_/RecklessNeue-Medium.a8292.ttf) format("truetype"), url(./assets/_processed_/RecklessNeue-Medium.db6e8.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-display: swap; }

@font-face {
  font-family: "Reckless-Regular";
  src: url(./assets/_processed_/RecklessNeue-Regular.8b1e0.eot);
  src: local("\263A"), url(./assets/_processed_/RecklessNeue-Regular.8b1e0.eot?#iefix) format("embedded-opentype"), url(./assets/_processed_/RecklessNeue-Regular.15eae.ttf) format("truetype"), url(./assets/_processed_/RecklessNeue-Regular.e5a38.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-display: swap; }

@font-face {
  font-family: "IBMPlexMono";
  src: url(./assets/_processed_/IBMPlexMono-Regular.75bde.eot);
  src: local("\263A"), url(./assets/_processed_/IBMPlexMono-Regular.75bde.eot?#iefix) format("embedded-opentype"), url(./assets/_processed_/IBMPlexMono-Regular.fce09.ttf) format("truetype"), url(./assets/_processed_/IBMPlexMono-Regular.cbc0e.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-display: swap; }

@font-face {
  font-family: "IBMPlexMono";
  src: url(./assets/_processed_/IBMPlexMono-Regular.75bde.eot);
  src: local("\263A"), url(./assets/_processed_/IBMPlexMono-Regular.75bde.eot?#iefix) format("embedded-opentype"), url(./assets/_processed_/IBMPlexMono-Regular.fce09.ttf) format("truetype"), url(./assets/_processed_/IBMPlexMono-Regular.cbc0e.woff) format("woff");
  font-weight: normal;
  font-style: normal;
  font-variant: normal;
  font-display: swap; }

html {
  scroll-behavior: smooth; }

body {
  padding: 0;
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.5; }

.site__content {
  background-color: white; }
  .theme--green .site__content {
    background-color: #cfe2d0; }
  [class*="theme--"] .theme--green .site__content {
    background-color: #cfe2d0; }
  .theme--yellow .site__content {
    background-color: #fef4c2; }
  [class*="theme--"] .theme--yellow .site__content {
    background-color: #fef4c2; }
  .theme--blue .site__content {
    background-color: #c2dfe5; }
  [class*="theme--"] .theme--blue .site__content {
    background-color: #c2dfe5; }
  .theme--violet .site__content {
    background-color: #eac4be; }
  [class*="theme--"] .theme--violet .site__content {
    background-color: #eac4be; }
  .theme--orange .site__content {
    background-color: #fabd96; }
  [class*="theme--"] .theme--orange .site__content {
    background-color: #fabd96; }
  .theme--red .site__content {
    background-color: #f09682; }
  [class*="theme--"] .theme--red .site__content {
    background-color: #f09682; }
  .theme--gray .site__content {
    background-color: rgba(0, 0, 0, 0.239); }
  [class*="theme--"] .theme--gray .site__content {
    background-color: rgba(0, 0, 0, 0.239); }
  .theme--black .site__content {
    background-color: transparent; }
  [class*="theme--"] .theme--black .site__content {
    background-color: transparent; }
  .theme--default .site__content {
    background-color: white; }
  [class*="theme--"] .theme--default .site__content {
    background-color: white; }

h1 {
  font-size: 2.8125em; }

h2 {
  font-size: 2.1875em; }

h3 {
  font-size: 1.5625em; }

h4 {
  font-size: 1em; }

hr {
  height: 1px;
  margin-bottom: 3.75rem; }

a {
  outline-color: #FFF;
  text-decoration: none; }

@media all and (-ms-high-contrast: none) {
  img[src$='svg'] {
    height: 100%;
    max-height: 100%; } }

object {
  max-width: 100%;
  height: auto; }

.site__content ul:not([class]) {
  padding-left: 20px; }
  .site__content ul:not([class]) li + li {
    margin-top: 0.625rem; }

table {
  border-collapse: collapse;
  width: 100%; }
  table tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.239); }
    table tbody tr th,
    table tbody tr td {
      text-align: left;
      font-family: "FuturaPT-Book", Helvetica, sans-serif;
      font-size: 1.25em;
      letter-spacing: 0.025em;
      border-spacing: 0;
      padding: 0.5em 1em 0.5em 0;
      line-height: 2em;
      vertical-align: baseline;
      line-break: normal; }
  table thead tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.239);
    opacity: 0.64;
    text-align: left; }
  table thead,
  table tfoot {
    font-size: 0.75em;
    letter-spacing: 0.025em; }
    table thead tr td,
    table thead tr th,
    table tfoot tr td,
    table tfoot tr th {
      font-family: "IBMPlexMono", Helvetica, sans-serif;
      border: none; }
    table thead tr:first-child td,
    table thead tr:first-child th,
    table tfoot tr:first-child td,
    table tfoot tr:first-child th {
      border: none; }
  @media (max-width: 767px) {
    table thead tr th,
    table thead tr td,
    table tfoot tr th,
    table tfoot tr td {
      font-size: 0.75em;
      padding: 0.5em 0.5em 0 0; }
    table tbody tr th,
    table tbody tr td {
      font-size: 1.125em; } }
  @media (max-width: 575px) {
    table thead tr th,
    table thead tr td,
    table tfoot tr th,
    table tfoot tr td {
      padding: 0.5em 2em 0 0; } }

dl {
  display: block;
  position: relative;
  width: 100%; }
  dl:before, dl:after {
    display: table;
    content: "";
    clear: both; }
  dl:after {
    display: block;
    clear: both; }
  dl dt,
  dl dd {
    display: inline-block;
    margin: 0;
    padding: 0.25em 0.5em;
    float: left;
    text-align: left;
    font-family: "Reckless-Regular", Helvetica, sans-serif;
    font-style: italic;
    letter-spacing: 0.025em;
    line-height: 2em;
    vertical-align: baseline;
    line-break: normal; }
  dl dt {
    position: relative;
    padding-right: 2em;
    clear: left; }
    dl dt:before, dl dt:last-of-type:after {
      display: block;
      position: absolute;
      left: 0;
      top: 0;
      width: 1140px;
      height: 1px;
      content: '';
      background: #999; }
    dl dt:last-of-type:after {
      top: auto;
      bottom: 0; }

figure {
  display: block;
  position: relative;
  overflow: hidden;
  margin: 0; }
  figure figcaption {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 1.25rem;
    box-sizing: border-box;
    transition: opacity 0.3s ease;
    background-color: white; }
    .theme--green figure figcaption {
      background-color: #cfe2d0; }
    [class*="theme--"] .theme--green figure figcaption {
      background-color: #cfe2d0; }
    .theme--yellow figure figcaption {
      background-color: #fef4c2; }
    [class*="theme--"] .theme--yellow figure figcaption {
      background-color: #fef4c2; }
    .theme--blue figure figcaption {
      background-color: #c2dfe5; }
    [class*="theme--"] .theme--blue figure figcaption {
      background-color: #c2dfe5; }
    .theme--violet figure figcaption {
      background-color: #eac4be; }
    [class*="theme--"] .theme--violet figure figcaption {
      background-color: #eac4be; }
    .theme--orange figure figcaption {
      background-color: #fabd96; }
    [class*="theme--"] .theme--orange figure figcaption {
      background-color: #fabd96; }
    .theme--red figure figcaption {
      background-color: #f09682; }
    [class*="theme--"] .theme--red figure figcaption {
      background-color: #f09682; }
    .theme--gray figure figcaption {
      background-color: rgba(0, 0, 0, 0.239); }
    [class*="theme--"] .theme--gray figure figcaption {
      background-color: rgba(0, 0, 0, 0.239); }
    .theme--black figure figcaption {
      background-color: transparent; }
    [class*="theme--"] .theme--black figure figcaption {
      background-color: transparent; }
    .theme--default figure figcaption {
      background-color: white; }
    [class*="theme--"] .theme--default figure figcaption {
      background-color: white; }
  figure img {
    display: block; }
  figure a {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    text-indent: -99em;
    color: transparent; }
  figure:not(:hover) figcaption {
    opacity: 0; }

@media (min-width: 768px) and (max-width: 1198px) {
  .only-lg {
    display: none; } }

@media (min-width: 1200px) {
  .only-md {
    display: none; } }

.frame-distance-small,
.frame-intro {
  width: 100%; }
  @media (min-width: 1199px) {
    .frame-distance-small,
    .frame-intro {
      width: 85%; } }

.frame-intro.frame-type-text p {
  font-family: "FuturaPT-Book", Helvetica, sans-serif;
  font-size: 18px;
  line-height: 24px; }
  @media (min-width: 1199px) {
    .frame-intro.frame-type-text p {
      font-size: 24px;
      line-height: 32px;
      letter-spacing: -0.2px; } }
  .frame-intro.frame-type-text p a.button {
    line-height: 1.4; }

.frame-distance-big {
  width: 100%; }
  @media (min-width: 767px) {
    .frame-distance-big {
      width: 70%; } }

.frame-distance-big,
.frame-distance-small,
.frame-intro {
  margin-left: auto;
  margin-right: auto; }

.frame-border-boxes {
  margin: 0 58px; }
  @media (max-width: 1140px) {
    .frame-border-boxes .grid--responsive > .grid__col:not([class*="--sm-"]):first-child {
      margin-top: 20px; }
    .frame-border-boxes .grid--responsive > .grid__col:not([class*="--sm-"]) {
      -ms-flex-preferred-size: unset;
          flex-basis: unset; } }
  .frame-border-boxes .grid__col.grid__col--3 {
    max-width: 267px;
    display: -ms-flexbox;
    display: flex; }
  .frame-border-boxes .grid__col section {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    padding: 2rem;
    width: 100%; }
    .frame-border-boxes .grid__col section .content-teaser-l-h3-24 {
      text-align: left;
      margin-bottom: 0.75rem; }
    .frame-border-boxes .grid__col section p {
      font-family: "FuturaPT-Book", Helvetica, sans-serif;
      font-size: 16px;
      line-height: 24px; }
  @media (max-width: 767px) {
    .frame-border-boxes {
      display: block;
      margin: 0 -58px 0 58px;
      width: 100%; }
      .frame-border-boxes .grid--responsive {
        -ms-flex-wrap: unset !important;
            flex-wrap: unset !important; }
      .frame-border-boxes .grid {
        -ms-flex-pack: start;
            justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1.25rem;
        display: -ms-flexbox;
        display: flex;
        width: 100%; }
        .frame-border-boxes .grid .grid__col.grid__col--3 {
          display: -ms-flexbox;
          display: flex;
          max-width: 328px;
          -ms-flex: 0 0 100%;
              flex: 0 0 100%;
          margin-right: 0; } }
  @media (max-width: 575px) {
    .frame-border-boxes {
      margin: 0 13px; } }

.theme-header h1, .theme-header h2, .theme-header h3, .theme-header h4 {
  color: #FFF; }
  .theme--green .theme-header h1, .theme--green .theme-header h2, .theme--green .theme-header h3, .theme--green .theme-header h4 {
    color: #6e863d; }
  [class*="theme--"] .theme--green .theme-header h1, [class*="theme--"] .theme--green .theme-header h2, [class*="theme--"] .theme--green .theme-header h3, [class*="theme--"] .theme--green .theme-header h4 {
    color: #6e863d; }
  .theme--yellow .theme-header h1, .theme--yellow .theme-header h2, .theme--yellow .theme-header h3, .theme--yellow .theme-header h4 {
    color: #fdda25; }
  [class*="theme--"] .theme--yellow .theme-header h1, [class*="theme--"] .theme--yellow .theme-header h2, [class*="theme--"] .theme--yellow .theme-header h3, [class*="theme--"] .theme--yellow .theme-header h4 {
    color: #fdda25; }
  .theme--blue .theme-header h1, .theme--blue .theme-header h2, .theme--blue .theme-header h3, .theme--blue .theme-header h4 {
    color: #9897c8; }
  [class*="theme--"] .theme--blue .theme-header h1, [class*="theme--"] .theme--blue .theme-header h2, [class*="theme--"] .theme--blue .theme-header h3, [class*="theme--"] .theme--blue .theme-header h4 {
    color: #9897c8; }
  .theme--violet .theme-header h1, .theme--violet .theme-header h2, .theme--violet .theme-header h3, .theme--violet .theme-header h4 {
    color: #966481; }
  [class*="theme--"] .theme--violet .theme-header h1, [class*="theme--"] .theme--violet .theme-header h2, [class*="theme--"] .theme--violet .theme-header h3, [class*="theme--"] .theme--violet .theme-header h4 {
    color: #966481; }
  .theme--orange .theme-header h1, .theme--orange .theme-header h2, .theme--orange .theme-header h3, .theme--orange .theme-header h4 {
    color: #ff9802; }
  [class*="theme--"] .theme--orange .theme-header h1, [class*="theme--"] .theme--orange .theme-header h2, [class*="theme--"] .theme--orange .theme-header h3, [class*="theme--"] .theme--orange .theme-header h4 {
    color: #ff9802; }
  .theme--red .theme-header h1, .theme--red .theme-header h2, .theme--red .theme-header h3, .theme--red .theme-header h4 {
    color: #c05142; }
  [class*="theme--"] .theme--red .theme-header h1, [class*="theme--"] .theme--red .theme-header h2, [class*="theme--"] .theme--red .theme-header h3, [class*="theme--"] .theme--red .theme-header h4 {
    color: #c05142; }
  .theme--gray .theme-header h1, .theme--gray .theme-header h2, .theme--gray .theme-header h3, .theme--gray .theme-header h4 {
    color: rgba(0, 0, 0, 0.561); }
  [class*="theme--"] .theme--gray .theme-header h1, [class*="theme--"] .theme--gray .theme-header h2, [class*="theme--"] .theme--gray .theme-header h3, [class*="theme--"] .theme--gray .theme-header h4 {
    color: rgba(0, 0, 0, 0.561); }
  .theme--black .theme-header h1, .theme--black .theme-header h2, .theme--black .theme-header h3, .theme--black .theme-header h4 {
    color: #000000; }
  [class*="theme--"] .theme--black .theme-header h1, [class*="theme--"] .theme--black .theme-header h2, [class*="theme--"] .theme--black .theme-header h3, [class*="theme--"] .theme--black .theme-header h4 {
    color: #000000; }
  .theme--default .theme-header h1, .theme--default .theme-header h2, .theme--default .theme-header h3, .theme--default .theme-header h4 {
    color: #FFF; }
  [class*="theme--"] .theme--default .theme-header h1, [class*="theme--"] .theme--default .theme-header h2, [class*="theme--"] .theme--default .theme-header h3, [class*="theme--"] .theme--default .theme-header h4 {
    color: #FFF; }

.gap-children > * + * {
  margin-top: 4rem; }

.content-element p a {
  font-weight: normal; }

.fancybox-enabled {
  overflow: hidden; }
  .fancybox-enabled body {
    overflow: visible;
    height: 100%; }

.fancybox-is-hidden {
  position: absolute;
  top: -9999px;
  left: -9999px;
  visibility: hidden; }

.fancybox-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99993;
  -webkit-tap-highlight-color: transparent;
  backface-visibility: hidden;
  transform: translateZ(0); }
  .fancybox-container ~ .fancybox-container {
    z-index: 99992; }

/* Make sure that the first one is on the top */
.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch; }

.fancybox-bg {
  background: #1e1e1e;
  opacity: 0;
  transition-duration: inherit;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71); }

.fancybox-is-open .fancybox-bg {
  opacity: 0.87;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1); }

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption-wrap {
  position: absolute;
  direction: ltr;
  z-index: 99997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0s linear 0.25s;
  box-sizing: border-box; }

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption-wrap {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s, visibility 0s; }

.fancybox-infobar {
  top: 0;
  left: 50%;
  margin-left: -79px; }

.fancybox-infobar__body {
  display: inline-block;
  width: 70px;
  line-height: 44px;
  font-size: 13px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  text-align: center;
  color: #ddd;
  background-color: rgba(30, 30, 30, 0.7);
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: subpixel-antialiased; }

.fancybox-toolbar {
  top: 0;
  right: 0; }

.fancybox-stage {
  overflow: hidden;
  direction: ltr;
  z-index: 99994;
  -webkit-transform: translate3d(0, 0, 0); }

.fancybox-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: auto;
  outline: none;
  white-space: normal;
  box-sizing: border-box;
  text-align: center;
  z-index: 99994;
  -webkit-overflow-scrolling: touch;
  display: none;
  backface-visibility: hidden;
  transition-property: transform, opacity;
  transform-style: preserve-3d; }
  .fancybox-slide::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    height: 100%;
    width: 0; }

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
  display: block; }

.fancybox-slide--image {
  overflow: visible; }
  .fancybox-slide--image::before {
    display: none; }

.fancybox-slide--video .fancybox-content,
.fancybox-slide--video iframe {
  background: #000; }

.fancybox-slide--map .fancybox-content,
.fancybox-slide--map iframe {
  background: #e5e3df; }

.fancybox-slide--next {
  z-index: 99995; }

.fancybox-slide > * {
  display: inline-block;
  position: relative;
  padding: 24px;
  margin: 44px 0 44px;
  border-width: 0;
  vertical-align: middle;
  text-align: left;
  background-color: #fff;
  overflow: auto;
  box-sizing: border-box; }

.fancybox-slide .fancybox-image-wrap {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  border: 0;
  z-index: 99995;
  background: transparent;
  cursor: default;
  overflow: visible;
  -ms-transform-origin: top left;
  transform-origin: top left;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  backface-visibility: hidden; }

.fancybox-can-zoomOut .fancybox-image-wrap {
  cursor: zoom-out; }

.fancybox-can-zoomIn .fancybox-image-wrap {
  cursor: zoom-in; }

.fancybox-can-drag .fancybox-image-wrap {
  cursor: grab; }

.fancybox-is-dragging .fancybox-image-wrap {
  cursor: grabbing; }

.fancybox-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none; }

.fancybox-spaceball {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: none;
  max-height: none;
  z-index: 1; }

.fancybox-slide--iframe .fancybox-content {
  padding: 0;
  width: 80%;
  height: 80%;
  max-width: calc(100% - 100px);
  max-height: calc(100% - 88px);
  overflow: visible;
  background: #fff; }

.fancybox-iframe {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: 100%;
  height: 100%;
  background: #fff; }

.fancybox-error {
  margin: 0;
  padding: 40px;
  width: 100%;
  max-width: 380px;
  background: #fff;
  cursor: default; }
  .fancybox-error p {
    margin: 0;
    padding: 0;
    color: #444;
    font: 16px/20px 'Helvetica Neue', Helvetica, Arial, sans-serif; }

.fancybox-close-small {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: none;
  background: transparent;
  z-index: 10;
  cursor: pointer; }
  .fancybox-close-small:after {
    content: '\D7';
    position: absolute;
    top: 5px;
    right: 5px;
    width: 30px;
    height: 30px;
    font: 20px/30px Arial, 'Helvetica Neue', Helvetica, sans-serif;
    color: #888;
    font-weight: 300;
    text-align: center;
    border-radius: 50%;
    border-width: 0;
    background: #fff;
    transition: background 0.25s;
    box-sizing: border-box;
    z-index: 2; }
  .fancybox-close-small:focus:after {
    outline: 1px dotted #888; }
  .fancybox-close-small:hover:after {
    color: #555;
    background: #eee; }

.fancybox-slide--iframe .fancybox-close-small {
  top: 0;
  right: -44px; }
  .fancybox-slide--iframe .fancybox-close-small:after {
    background: transparent;
    font-size: 35px;
    color: #aaa; }
  .fancybox-slide--iframe .fancybox-close-small:hover:after {
    color: #fff; }

/* Caption */
.fancybox-caption-wrap {
  bottom: 0;
  left: 0;
  right: 0;
  padding: 60px 30px 0 30px;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 40%, rgba(0, 0, 0, 0.6) 80%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none; }

.fancybox-caption {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 14px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #fff;
  line-height: 20px;
  -webkit-text-size-adjust: none; }
  .fancybox-caption a,
  .fancybox-caption button,
  .fancybox-caption select {
    pointer-events: all; }
  .fancybox-caption a {
    color: #fff;
    text-decoration: underline; }

/* Buttons */
.fancybox-button {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: transparent;
  color: #ddd;
  border-radius: 0;
  cursor: pointer;
  vertical-align: top;
  outline: none; }
  .fancybox-button[disabled] {
    cursor: default;
    pointer-events: none; }

.fancybox-infobar__body {
  background: rgba(30, 30, 30, 0.6); }

.fancybox-button {
  background: rgba(30, 30, 30, 0.6); }
  .fancybox-button:hover:not([disabled]) {
    color: #fff;
    background: rgba(0, 0, 0, 0.8); }
  .fancybox-button::before, .fancybox-button::after {
    content: '';
    pointer-events: none;
    position: absolute;
    background-color: currentColor;
    color: currentColor;
    opacity: 0.9;
    box-sizing: border-box;
    display: inline-block; }
  .fancybox-button[disabled]::before, .fancybox-button[disabled]::after {
    opacity: 0.3; }

.fancybox-button--left::after,
.fancybox-button--right::after {
  top: 18px;
  width: 6px;
  height: 6px;
  background: transparent;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor; }

.fancybox-button--left::after {
  left: 20px;
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg); }

.fancybox-button--right::after {
  right: 20px;
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.fancybox-button--left {
  border-bottom-left-radius: 5px; }

.fancybox-button--right {
  border-bottom-right-radius: 5px; }

.fancybox-button--close::before, .fancybox-button--close::after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 2px;
  width: 16px;
  top: calc(50% - 1px);
  left: calc(50% - 8px); }

.fancybox-button--close::before {
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.fancybox-button--close::after {
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

/* Navigation arrows */
.fancybox-arrow {
  position: absolute;
  top: 50%;
  margin: -50px 0 0 0;
  height: 100px;
  width: 54px;
  padding: 0;
  border: 0;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 99995;
  opacity: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: opacity 0.25s; }
  .fancybox-arrow::after {
    content: '';
    position: absolute;
    top: 28px;
    width: 44px;
    height: 44px;
    background-color: rgba(30, 30, 30, 0.8);
    background-image: url(data:image/svg+xml;base64,PHN2ZyBmaWxsPSIjRkZGRkZGIiBoZWlnaHQ9IjQ4IiB2aWV3Qm94PSIwIDAgMjQgMjQiIHdpZHRoPSI0OCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4gICAgPHBhdGggZD0iTTAgMGgyNHYyNEgweiIgZmlsbD0ibm9uZSIvPiAgICA8cGF0aCBkPSJNMTIgNGwtMS40MSAxLjQxTDE2LjE3IDExSDR2MmgxMi4xN2wtNS41OCA1LjU5TDEyIDIwbDgtOHoiLz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 24px 24px; }

.fancybox-arrow--right {
  right: 0; }

.fancybox-arrow--left {
  left: 0;
  -ms-transform: scaleX(-1);
  transform: scaleX(-1); }

.fancybox-arrow--right::after,
.fancybox-arrow--left::after {
  left: 0; }

.fancybox-show-nav .fancybox-arrow {
  opacity: 0.6; }
  .fancybox-show-nav .fancybox-arrow[disabled] {
    opacity: 0.3; }

/* Loading indicator */
.fancybox-loading {
  border: 6px solid rgba(100, 100, 100, 0.4);
  border-top: 6px solid rgba(255, 255, 255, 0.6);
  border-radius: 100%;
  height: 50px;
  width: 50px;
  animation: fancybox-rotate 0.8s infinite linear;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 99999; }

@keyframes fancybox-rotate {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(359deg); } }

/* Transition effects */
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1); }

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0);
  opacity: 0; }

.fancybox-fx-slide.fancybox-slide--next {
  transform: translate3d(100%, 0, 0);
  opacity: 0; }

.fancybox-fx-slide.fancybox-slide--current {
  transform: translate3d(0, 0, 0);
  opacity: 1; }

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous, .fancybox-fx-fade.fancybox-slide--next {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }

.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1; }

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  transform: scale3d(1.5, 1.5, 1.5);
  opacity: 0; }

.fancybox-fx-zoom-in-out.fancybox-slide--next {
  transform: scale3d(0.5, 0.5, 0.5);
  opacity: 0; }

.fancybox-fx-zoom-in-out.fancybox-slide--current {
  transform: scale3d(1, 1, 1);
  opacity: 1; }

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
  -ms-transform: rotate(-360deg);
  transform: rotate(-360deg);
  opacity: 0; }

.fancybox-fx-rotate.fancybox-slide--next {
  -ms-transform: rotate(360deg);
  transform: rotate(360deg);
  opacity: 0; }

.fancybox-fx-rotate.fancybox-slide--current {
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  opacity: 1; }

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
  opacity: 0; }

.fancybox-fx-circular.fancybox-slide--next {
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
  opacity: 0; }

.fancybox-fx-circular.fancybox-slide--current {
  transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
  opacity: 1; }

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
  transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg); }

.fancybox-fx-tube.fancybox-slide--next {
  transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg); }

.fancybox-fx-tube.fancybox-slide--current {
  transform: translate3d(0, 0, 0) scale(1); }

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
  .fancybox-infobar {
    left: 0;
    margin-left: 0; }
  .fancybox-button--left,
  .fancybox-button--right {
    display: none !important; }
  .fancybox-caption {
    padding: 20px 0;
    margin: 0; } }

/* Fullscreen  */
.fancybox-button--fullscreen::before {
  width: 15px;
  height: 11px;
  left: calc(50% - 7px);
  top: calc(50% - 6px);
  border: 2px solid;
  background: none; }

/* Slideshow button */
.fancybox-button--play::before,
.fancybox-button--pause::before {
  top: calc(50% - 6px);
  left: calc(50% - 4px);
  background: transparent; }

.fancybox-button--play::before {
  width: 0;
  height: 0;
  border-top: 6px inset transparent;
  border-bottom: 6px inset transparent;
  border-left: 10px solid;
  border-radius: 1px; }

.fancybox-button--pause::before {
  width: 7px;
  height: 11px;
  border-style: solid;
  border-width: 0 2px 0 2px; }

/* Thumbs */
.fancybox-thumbs,
.fancybox-button--thumbs {
  display: none; }

@media all and (min-width: 800px) {
  .fancybox-button--thumbs {
    display: inline-block; }
    .fancybox-button--thumbs span {
      font-size: 23px; }
    .fancybox-button--thumbs::before {
      width: 3px;
      height: 3px;
      top: calc(50% - 2px);
      left: calc(50% - 2px);
      box-shadow: 0 -4px 0, -4px -4px 0, 4px -4px 0, 0 0 0 32px inset, -4px 0 0, 4px 0 0, 0 4px 0, -4px 4px 0, 4px 4px 0; }
  .fancybox-thumbs {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 220px;
    margin: 0;
    padding: 5px 5px 0 0;
    background: #fff;
    word-break: normal;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    box-sizing: border-box;
    z-index: 99995; }
  .fancybox-show-thumbs .fancybox-thumbs {
    display: block; }
  .fancybox-show-thumbs .fancybox-inner {
    right: 220px; }
  .fancybox-thumbs > ul {
    list-style: none;
    position: absolute;
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    overflow-y: auto;
    font-size: 0; }
    .fancybox-thumbs > ul > li {
      float: left;
      overflow: hidden;
      max-width: 50%;
      padding: 0;
      margin: 0;
      width: 105px;
      height: 75px;
      position: relative;
      cursor: pointer;
      outline: none;
      border: 5px solid transparent;
      border-top-width: 0;
      border-right-width: 0;
      -webkit-tap-highlight-color: transparent;
      backface-visibility: hidden;
      box-sizing: border-box; }
  li.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, 0.1); }
  .fancybox-thumbs > ul > li > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
    max-height: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; }
  .fancybox-thumbs > ul > li:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 2px;
    border: 4px solid #4ea7f9;
    z-index: 99991;
    opacity: 0;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .fancybox-thumbs > ul > li.fancybox-thumbs-active:before {
    opacity: 1; } }

/* custom styling for jquery.nicescroll scrollbars */
.nicescroll-rails-vr {
  right: 0; }

.nicescroll-cursors {
  width: .5em;
  border: none;
  border-radius: 0;
  background-color: #999; }

.articles__slider .slick-list {
  overflow: visible; }

.articles__item {
  position: relative;
  height: 100%;
  padding: 2rem 0 2rem 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.16);
  background: #FFF; }
  .articles__item header h3 {
    text-align: left; }
    @media (max-width: 767px) {
      .articles__item header h3 {
        padding: 0 1em 0 0; } }
  .articles__item--text {
    -ms-flex-order: 2;
        order: 2; }
    @media only screen and (min-width: 1199px) {
      .articles__item--text {
        -ms-flex-order: 1;
            order: 1; } }
  .articles__item--image {
    -ms-flex-order: 1;
        order: 1;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-pack: start;
        justify-content: flex-start;
    -ms-flex-align: center;
        align-items: center; }
    @media only screen and (min-width: 1199px) {
      .articles__item--image {
        -ms-flex-order: 2;
            order: 2; } }
    @media only screen and (min-width: 1199px) {
      .articles__item--image {
        -ms-flex-pack: center;
            justify-content: center; } }
    .articles__item--image img {
      max-width: 190px; }
      @media only screen and (min-width: 1199px) {
        .articles__item--image img {
          max-width: 260px; } }

.articles__title {
  line-height: 1.5rem !important;
  font-size: 1.125rem !important;
  letter-spacing: -0.2px;
  margin-bottom: 0.75rem;
  color: #000;
  font-family: "Reckless-Regular", Helvetica, sans-serif; }
  @media only screen and (min-width: 1199px) {
    .articles__title {
      font-size: 1.5rem !important;
      line-height: 1.875rem !important; } }

.articles__subline {
  font-size: 0.75rem;
  line-height: 1.25rem;
  margin-bottom: 1.25rem;
  font-family: "IBMPlexMono", Helvetica, sans-serif;
  color: rgba(0, 0, 0, 0.64); }

.articles__date {
  font-size: 0.75rem;
  line-height: 1.25rem;
  margin-bottom: 1.25rem;
  font-family: "IBMPlexMono", Helvetica, sans-serif; }

.articles__image {
  border-radius: 20px; }

.articles__slider {
  margin: 0 0 3rem 0; }
  @media only screen and (min-width: 1199px) {
    .articles__slider {
      margin: 0 -37.5rem 3rem 0; } }

.articles__link {
  text-decoration: none; }

.button {
  display: inline-block;
  position: relative;
  font-weight: normal;
  font-family: "IBMPlexMono", Helvetica, sans-serif;
  color: #FFF;
  background-color: #000000;
  text-decoration: none;
  border-radius: 20px;
  border: none;
  padding: 9px 24px;
  margin-bottom: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  z-index: 1; }
  .button--invert {
    color: #000000;
    background-color: #FFF; }
  .button--transparent {
    color: #000000;
    background-color: transparent;
    border: 2px solid #000000; }
  .button--teaser-text-only {
    display: block;
    color: transparent;
    background-image: url(./assets/_processed_/icon-right.5fbcb.svg);
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 40px; }
  .button--secondary {
    color: #000000;
    background-color: #FFF;
    border: solid 2px #000000; }
    .button--secondary--invert {
      background-color: transparent;
      color: #FFF;
      border: solid 2px #FFF; }
  .button--light {
    color: #000000;
    background-color: rgba(0, 0, 0, 0.08); }
    .button--light--subnavi {
      background-image: url(./assets/_processed_/ico-24-pfeil-unten-b.1ce31.svg);
      background-repeat: no-repeat;
      background-position: 18px;
      padding-left: 50px; }
  .button--downloads {
    display: block;
    color: transparent;
    background-image: url(./assets/_processed_/ico-24-download-w.525e8.svg);
    padding: 0;
    background-repeat: no-repeat;
    background-position: center;
    width: 40px;
    height: 40px; }
  .button--social {
    display: block;
    position: relative;
    fill: #fff;
    background-color: #000;
    padding: 0;
    width: 40px;
    height: 40px;
    margin-right: 1rem; }
    .button--social svg {
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

div.collapsible:last-of-type {
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(0, 0, 0, 0.16); }

.collapsible {
  margin-top: 2rem !important;
  border-top: 2px solid rgba(0, 0, 0, 0.16); }
  .collapsible__head {
    position: relative;
    padding-top: 1.5rem;
    cursor: pointer;
    text-align: left !important; }
    .collapsible__head h2, .collapsible__head h3, .collapsible__head h4 {
      color: #333; }
  .collapsible__indicator {
    display: block;
    position: absolute;
    right: 1rem;
    bottom: 35%;
    -ms-transform: scaleY(-1);
        transform: scaleY(-1); }
    .collapsible__indicator:after {
      position: absolute;
      content: "";
      width: 1rem;
      height: 1rem;
      border: 1px currentColor solid;
      border-right: none;
      border-bottom: none;
      -ms-transform: translate(-0.5rem, -0.8rem) rotate(225deg);
          transform: translate(-0.5rem, -0.8rem) rotate(225deg);
      border-width: 2px; }
    .collapsible__indicator::after {
      font-size: 1rem; }
  .collapsible__body {
    animation: fade-in .8s ease;
    font-family: "Reckless-Regular", Helvetica, sans-serif;
    margin-bottom: 48px; }
    .collapsible__body .ce-textpic header {
      display: none; }
  .collapsible:not([data-active="true"]) .collapsible__indicator {
    -ms-transform: scaleY(1);
        transform: scaleY(1); }
  .collapsible:not([data-active="true"]) .collapsible__body {
    display: none; }

@keyframes fade-in {
  from {
    transform: translateY(-1.25rem);
    opacity: 0; } }

.downloads__title {
  display: block;
  font-family: "FuturaPT-Demi", Helvetica, sans-serif; }

.downloads__filename, .downloads__information {
  position: relative;
  font-size: 1em;
  /* Nur Internet Explorer */ }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .downloads__filename, .downloads__information {
      width: 50%; } }

.downloads__information {
  /* Nur Internet Explorer */ }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .downloads__information {
      text-align: right; } }

.downloads__link {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-indent: -99em;
  overflow: hidden;
  color: transparent; }

.downloads__button {
  padding-right: 0; }

@media (max-width: 767px) {
  .downloads .th__filename, .downloads .downloads__filename {
    display: none; } }

@media (max-width: 575px) {
  .downloads .th__filename, .downloads .th__information, .downloads .downloads__filename, .downloads .downloads__information {
    display: none; } }

.downloads-list__search {
  margin: 0 auto !important;
  position: relative;
  height: 100%;
  min-height: 2rem;
  max-width: 555px;
  border-radius: 2rem;
  overflow: hidden;
  width: 100%; }
  .downloads-list__search__input {
    display: block;
    width: 100%;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.5;
    border: none;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    background-color: #e9e9e9;
    padding: 0.5rem 0.5rem 0.5rem 3em !important; }
    .downloads-list__search__input:-ms-input-placeholder {
      color: #000 !important; }
    .downloads-list__search__input::placeholder {
      color: #000 !important; }
  .downloads-list__search > svg {
    position: absolute;
    top: 50%;
    left: 1em;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    width: 1.5em;
    height: 1.5em; }

.downloads-list__more {
  margin-top: 2.5rem; }

.downloads-list__content {
  transition: opacity 1s ease; }

.downloads-list[data-loading="true"] {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .downloads-list[data-loading="true"] .downloads-list__content {
    opacity: .2; }

@media (min-width: 768px) {
  .downloads-list__search {
    margin: 0 auto;
    position: relative;
    height: 100%;
    min-height: 2rem;
    max-width: 555px;
    border-radius: 2rem;
    overflow: hidden;
    width: 100%; }
    .downloads-list__search__input {
      display: block;
      width: 100%;
      font-size: 1.5em;
      font-weight: 300;
      line-height: 1.5;
      border: none;
      outline: none;
      box-sizing: border-box;
      -webkit-appearance: none;
      background-color: #e9e9e9;
      padding: 0.5rem 0.5rem 0.5rem 3em !important; }
      .downloads-list__search__input:-ms-input-placeholder {
        color: #000 !important; }
      .downloads-list__search__input::placeholder {
        color: #000 !important; }
    .downloads-list__search > svg {
      position: absolute;
      top: 50%;
      left: 1.5em;
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
      width: 1.5em;
      height: 1.5em; } }

@media (min-width: 1200px) {
  .downloads-list__search {
    max-width: 750px; } }

.featherlight-content {
  padding: 0 !important;
  border-bottom: none !important;
  max-width: 50em;
  max-height: 85vh !important; }

.featherlight-close {
  right: 0.625rem !important;
  top: 0.625rem !important; }

.fancybox-container .fancybox-inner {
  background: #FFF; }
  .fancybox-container .fancybox-inner .fancybox-navigation .fancybox-arrow,
  .fancybox-container .fancybox-inner .fancybox-navigation .fancybox-arrow:hover,
  .fancybox-container .fancybox-inner .fancybox-navigation .fancybox-arrow:active,
  .fancybox-container .fancybox-inner .fancybox-navigation .fancybox-arrow:focus {
    background-color: none;
    opacity: 1; }
    .fancybox-container .fancybox-inner .fancybox-navigation .fancybox-arrow:after,
    .fancybox-container .fancybox-inner .fancybox-navigation .fancybox-arrow:hover:after,
    .fancybox-container .fancybox-inner .fancybox-navigation .fancybox-arrow:active:after,
    .fancybox-container .fancybox-inner .fancybox-navigation .fancybox-arrow:focus:after {
      background-color: transparent;
      background-image: url(./assets/_processed_/next-item.911d9.svg);
      background-size: auto;
      border-radius: 50%; }
  .fancybox-container .fancybox-inner .fancybox-navigation .fancybox-arrow--left {
    left: 1.25rem; }
  .fancybox-container .fancybox-inner .fancybox-navigation .fancybox-arrow--right {
    right: 1.25rem; }
  .fancybox-container .fancybox-inner .fancybox-toolbar {
    visibility: visible;
    width: 54px;
    top: 1.25rem;
    right: 1.25rem;
    border-radius: 50%; }
    .fancybox-container .fancybox-inner .fancybox-toolbar .fancybox-button,
    .fancybox-container .fancybox-inner .fancybox-toolbar .fancybox-button:hover {
      background: transparent;
      opacity: 1;
      border-radius: 50%; }
    .fancybox-container .fancybox-inner .fancybox-toolbar .fancybox-button:before,
    .fancybox-container .fancybox-inner .fancybox-toolbar .fancybox-button:after {
      color: #000000; }
    .fancybox-container .fancybox-inner .fancybox-toolbar .fancybox-button--play,
    .fancybox-container .fancybox-inner .fancybox-toolbar .fancybox-button--fullscreen,
    .fancybox-container .fancybox-inner .fancybox-toolbar .fancybox-button--thumbs {
      display: none; }

.filter,
.references__filter {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw; }

.filter-flyout-styles .grid--filter {
  margin-top: 1.5em;
  margin-right: -55px;
  gap: 1em;
  -ms-flex-pack: start;
      justify-content: start;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-flow: row nowrap;
      flex-flow: row nowrap;
  padding: 1em 0; }
  .filter-flyout-styles .grid--filter--center {
    -ms-flex-pack: center;
        justify-content: center;
    margin-right: unset; }
    .filter-flyout-styles .grid--filter--center .button {
      margin: 0; }
  .filter-flyout-styles .grid--filter .button {
    color: #000;
    background-color: rgba(0, 0, 0, 0.08);
    white-space: nowrap;
    text-align: center;
    margin: 0 0.75em; }
    .filter-flyout-styles .grid--filter .button:last-child {
      margin: 0 0 0 0.75em; }
    .filter-flyout-styles .grid--filter .button:first-child {
      margin: 0 0.75em 0 0; }
  .filter-flyout-styles .grid--filter .button--icon {
    padding: 7px 8px;
    border-radius: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center; }
    .filter-flyout-styles .grid--filter .button--icon svg {
      pointer-events: none; }

.filter-flyout-styles .filter-flyout__selection__content[data-single-select="true"] .flyout-content__footer {
  display: none; }

.filter-flyout-styles .filter-flyout__selection__content .flyout-content__header {
  padding: 2.5rem;
  height: 88px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.16);
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 0.75rem; }
  .filter-flyout-styles .filter-flyout__selection__content .flyout-content__header > * {
    margin: 0; }
  .filter-flyout-styles .filter-flyout__selection__content .flyout-content__header svg {
    width: 1.5rem;
    height: 1.5rem; }

.filter-flyout-styles .filter-flyout__selection__content .flyout-content__filter {
  padding: 1rem 2.5rem; }

.filter-flyout-styles .filter-flyout__selection__content .flyout-content__footer {
  padding: 0 2.5rem 2rem; }
  .filter-flyout-styles .filter-flyout__selection__content .flyout-content__footer button {
    cursor: pointer; }

.filter-flyout-styles .filter-option--big {
  margin: 1em 0; }
  .filter-flyout-styles .filter-option--big .select__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-align: baseline;
        align-items: baseline;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16); }
    .filter-flyout-styles .filter-option--big .select__list .select__allproduct {
      position: relative;
      -ms-flex-positive: 1;
          flex-grow: 1;
      margin: 0 0.625rem 0 0.625rem;
      padding: 0 0 1rem 0;
      text-align: center; }
      .filter-flyout-styles .filter-option--big .select__list .select__allproduct button {
        border: none;
        text-align: center;
        font-family: "FuturaPT-Demi", Helvetica, sans-serif;
        color: #000;
        font-size: 1.25em;
        line-height: 1.875em;
        letter-spacing: -0.1px; }
        .filter-flyout-styles .filter-option--big .select__list .select__allproduct button:before {
          display: none; }
        .filter-flyout-styles .filter-option--big .select__list .select__allproduct button:focus + .select__item--indicator {
          background-color: #000;
          border-color: #000; }
    .filter-flyout-styles .filter-option--big .select__list .select__item {
      text-align: center;
      font-family: "FuturaPT-Demi", Helvetica, sans-serif;
      font-size: 1.25em;
      line-height: 1.875em;
      letter-spacing: -0.1px;
      -ms-flex-positive: 1;
          flex-grow: 1;
      margin: 0 0.625rem; }
      .filter-flyout-styles .filter-option--big .select__list .select__item:first-child {
        margin: 0 0.625rem 0 0; }
      .filter-flyout-styles .filter-option--big .select__list .select__item:last-child {
        margin: 0 0 0 0.625rem; }
      .filter-flyout-styles .filter-option--big .select__list .select__item__input:checked + .select__item--indicator {
        background-color: #000;
        border-color: #000; }
      .filter-flyout-styles .filter-option--big .select__list .select__item--indicator {
        display: block;
        width: 100%;
        height: 4px;
        background-color: transparent;
        position: absolute;
        bottom: 0; }
      .filter-flyout-styles .filter-option--big .select__list .select__item__label {
        padding: 0.625rem 0 1.25rem 0;
        white-space: nowrap; }

.filter-flyout-styles .filter-option--flyout .select__list .select__item__box {
  display: block;
  position: absolute;
  margin: 0.7em;
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #000;
  border-radius: 0.5rem;
  background: #ffffff;
  top: 0;
  right: 0; }

.filter-flyout-styles .filter-option--flyout .select__list .select__item__input:checked + .select__item__box:before {
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  content: " ";
  line-height: 0;
  background-image: url(./assets/_processed_/ico-24-checkmark-w.dd9f3.svg);
  background-color: black;
  background-size: cover;
  border-radius: .5rem;
  height: 1.6rem;
  width: 1.6rem; }

.filter-flyout-styles .filter-option--flyout .select__list .select__item__input[disabled] ~ .select__item__label {
  opacity: .3;
  cursor: not-allowed; }

.filter-flyout-styles .filter-option--flyout .select__list .select__item__label {
  display: block;
  position: relative;
  cursor: pointer;
  padding: 0.625rem;
  padding-right: 2.75em;
  z-index: 1;
  line-height: 2rem; }

.filter-flyout-styles .filter__summary {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  gap: 8px;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-line-pack: center;
      align-content: center;
  margin-top: 1.5rem; }
  .filter-flyout-styles .filter__summary__list {
    list-style: none;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    margin: 0;
    padding: 0 0 .75em;
    gap: 12px;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center; }
    .filter-flyout-styles .filter__summary__list:empty {
      display: none; }
  .filter-flyout-styles .filter__summary__button {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
        align-items: center;
    position: relative;
    font-weight: normal;
    font-family: "IBMPlexMono", Helvetica, sans-serif;
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.64);
    text-decoration: none;
    border-radius: 8px;
    padding: 4px 14px;
    font-size: 0.75rem;
    line-height: 1.25rem;
    letter-spacing: 0.05em;
    z-index: 1;
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    max-width: 45%; }
    .filter-flyout-styles .filter__summary__button:only-child {
      max-width: unset; }
    .filter-flyout-styles .filter__summary__button:before {
      content: ' ';
      background-image: url(./assets/_processed_/close-transparent.f672b.svg);
      pointer-events: none;
      margin-right: 0.5em;
      width: 16px;
      height: 16px;
      display: block;
      background-size: cover;
      filter: invert(100%); }
    .filter-flyout-styles .filter__summary__button svg {
      pointer-events: none;
      fill: #FFF; }
  .filter-flyout-styles .filter__summary__reset {
    background-color: transparent;
    color: rgba(0, 0, 0, 0.64);
    border: 2px solid rgba(0, 0, 0, 0.64);
    max-width: 100%; }
    .filter-flyout-styles .filter__summary__reset:before {
      filter: opacity(0.64); }

@media (min-width: 768px) {
  .filter-flyout-styles .grid--filter {
    margin-top: 2em;
    gap: 1em; }
    .filter-flyout-styles .grid--filter .button--icon {
      padding: 7px 8px;
      border-radius: 50%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center; }
      .filter-flyout-styles .grid--filter .button--icon svg {
        pointer-events: none; }
  .filter-flyout-styles .filter-flyout__selection__content .flyout-content__header {
    padding: 2.5rem;
    height: 88px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
        align-items: center;
    gap: 0.75rem; }
    .filter-flyout-styles .filter-flyout__selection__content .flyout-content__header > * {
      margin: 0; }
    .filter-flyout-styles .filter-flyout__selection__content .flyout-content__header svg {
      width: 1.5rem;
      height: 1.5rem; }
  .filter-flyout-styles .filter-flyout__selection__content .flyout-content__filter {
    padding: 1rem 2.5rem; }
  .filter-flyout-styles .filter-flyout__selection__content .flyout-content__footer {
    padding: 0 2.5rem; }
    .filter-flyout-styles .filter-flyout__selection__content .flyout-content__footer button {
      cursor: pointer; }
  .filter-flyout-styles .filter-option--big {
    margin: 1em 0; }
    .filter-flyout-styles .filter-option--big .select__list {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
      -ms-flex-align: baseline;
          align-items: baseline;
      border-bottom: 1px solid rgba(0, 0, 0, 0.16); }
      .filter-flyout-styles .filter-option--big .select__list .select__item {
        text-align: center;
        font-family: "FuturaPT-Demi", Helvetica, sans-serif;
        font-size: 1.25em;
        line-height: 1.875em;
        letter-spacing: -0.1px;
        -ms-flex-positive: 1;
            flex-grow: 1;
        margin: 0 0.625rem; }
        .filter-flyout-styles .filter-option--big .select__list .select__item:first-child {
          margin: 0 0.625rem 0 0; }
        .filter-flyout-styles .filter-option--big .select__list .select__item:last-child {
          margin: 0 0 0 0.625rem; }
        .filter-flyout-styles .filter-option--big .select__list .select__item__input:checked + .select__item--indicator {
          background-color: #000;
          border-color: #000; }
        .filter-flyout-styles .filter-option--big .select__list .select__item--indicator {
          display: block;
          width: 100%;
          height: 4px;
          background-color: transparent;
          position: absolute;
          bottom: 0; }
        .filter-flyout-styles .filter-option--big .select__list .select__item__label {
          padding: 0.625rem 0 1.25rem 0; }
  .filter-flyout-styles .filter__summary {
    gap: 12px;
    margin-top: 3em; }
    .filter-flyout-styles .filter__summary__list {
      list-style: none;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
      margin: 0;
      padding: 0;
      gap: 12px; }
      .filter-flyout-styles .filter__summary__list:empty {
        display: none; }
    .filter-flyout-styles .filter__summary__reset {
      background-color: transparent;
      color: rgba(0, 0, 0, 0.64);
      border: 2px solid rgba(0, 0, 0, 0.64); }
      .filter-flyout-styles .filter__summary__reset:before {
        filter: opacity(0.64); } }

@media (min-width: 1200px) {
  .filter-flyout-styles .grid--filter {
    margin-top: 2em;
    margin-right: 0;
    gap: 1em;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap; }
    .filter-flyout-styles .grid--filter .button {
      margin: 0; }
      .filter-flyout-styles .grid--filter .button:last-child {
        margin: 0; }
      .filter-flyout-styles .grid--filter .button:first-child {
        margin: 0; }
    .filter-flyout-styles .grid--filter .button--icon {
      padding: 7px 8px;
      border-radius: 50%;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center; }
      .filter-flyout-styles .grid--filter .button--icon svg {
        pointer-events: none; }
  .filter-flyout-styles .filter-flyout__selection__content .flyout-content__header {
    padding: 2.5rem;
    height: 88px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
        align-items: center;
    gap: 0.75rem; }
    .filter-flyout-styles .filter-flyout__selection__content .flyout-content__header > * {
      margin: 0; }
    .filter-flyout-styles .filter-flyout__selection__content .flyout-content__header svg {
      width: 1.5rem;
      height: 1.5rem; }
  .filter-flyout-styles .filter-flyout__selection__content .flyout-content__filter {
    padding: 1rem 2.5rem; }
  .filter-flyout-styles .filter-flyout__selection__content .flyout-content__footer {
    padding: 0 2.5rem; }
    .filter-flyout-styles .filter-flyout__selection__content .flyout-content__footer button {
      cursor: pointer; }
  .filter-flyout-styles .filter-option--big {
    margin: 1em 0; }
    .filter-flyout-styles .filter-option--big .select__list {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
      -ms-flex-align: baseline;
          align-items: baseline;
      border-bottom: 1px solid rgba(0, 0, 0, 0.16); }
      .filter-flyout-styles .filter-option--big .select__list .select__item {
        text-align: center;
        font-family: "FuturaPT-Demi", Helvetica, sans-serif;
        font-size: 1.25em;
        line-height: 1.875em;
        letter-spacing: -0.1px;
        -ms-flex-positive: 1;
            flex-grow: 1;
        margin: 0 0.625rem; }
        .filter-flyout-styles .filter-option--big .select__list .select__item:first-child {
          margin: 0 0.625rem 0 0; }
        .filter-flyout-styles .filter-option--big .select__list .select__item:last-child {
          margin: 0 0 0 0.625rem; }
        .filter-flyout-styles .filter-option--big .select__list .select__item__input:checked + .select__item--indicator {
          background-color: #000;
          border-color: #000; }
        .filter-flyout-styles .filter-option--big .select__list .select__item--indicator {
          display: block;
          width: 100%;
          height: 4px;
          background-color: transparent;
          position: absolute;
          bottom: 0; }
        .filter-flyout-styles .filter-option--big .select__list .select__item__label {
          padding: 0.625rem 0 1.25rem 0; }
  .filter-flyout-styles .filter__summary {
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    gap: 12px;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-line-pack: center;
        align-content: center;
    margin-top: 3em;
    margin-right: 0; }
    .filter-flyout-styles .filter__summary__list {
      list-style: none;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
      margin: 0;
      padding: 0;
      gap: 12px;
      width: auto; }
      .filter-flyout-styles .filter__summary__list:empty {
        display: none; }
    .filter-flyout-styles .filter__summary__button {
      margin: 0; }
      .filter-flyout-styles .filter__summary__button:first-child {
        margin: 0; }
      .filter-flyout-styles .filter__summary__button:last-child {
        margin: 0; }
    .filter-flyout-styles .filter__summary__reset {
      background-color: transparent;
      color: rgba(0, 0, 0, 0.64);
      border: 2px solid rgba(0, 0, 0, 0.64); }
      .filter-flyout-styles .filter__summary__reset:before {
        filter: opacity(0.64); } }

.filter__flyout {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: 50ms linear; }
  .filter__flyout--visible {
    opacity: 1;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.64); }

.filter-flyout__selection {
  position: fixed;
  background-color: #fff;
  width: 100vw;
  bottom: 0;
  right: -100vw;
  height: 100vh;
  max-width: 100vw;
  z-index: 999;
  overflow-y: auto;
  transition: 300ms linear; }
  .filter-flyout__selection__close {
    position: fixed;
    top: 25px;
    right: -50px;
    cursor: pointer;
    z-index: 999;
    transition: 300ms linear; }
    .filter-flyout__selection__close svg {
      pointer-events: none; }
  .filter-flyout__selection--visible {
    right: 0; }
    .filter-flyout__selection--visible .filter-flyout__selection__close {
      right: 25px; }
  .filter-flyout__selection .filter-flyout__selection__content {
    display: none; }
    .filter-flyout__selection .filter-flyout__selection__content--visible {
      display: block; }
      .filter-flyout__selection .filter-flyout__selection__content--visible .meta-nav__item__search input {
        pointer-events: auto; }

@media (min-width: 768px) {
  .filter__flyout {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 999;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: 50ms linear; }
    .filter__flyout--visible {
      opacity: 1;
      pointer-events: auto;
      background-color: rgba(0, 0, 0, 0.64); }
  .filter-flyout__selection {
    position: fixed;
    background-color: #fff;
    width: 50vw;
    bottom: 0;
    right: -375px;
    height: 100vh;
    max-width: 375px;
    z-index: 999;
    overflow-y: auto;
    transition: 300ms linear; }
    .filter-flyout__selection__close {
      position: fixed;
      top: 25px;
      right: -50px;
      cursor: pointer;
      transition: 300ms linear; }
    .filter-flyout__selection--visible {
      right: 0; }
      .filter-flyout__selection--visible .filter-flyout__selection__close {
        right: 400px; } }

@media (min-width: 1200px) {
  .filter__flyout {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 999;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0);
    pointer-events: none;
    transition: 50ms linear; }
    .filter__flyout--visible {
      opacity: 1;
      pointer-events: auto;
      background-color: rgba(0, 0, 0, 0.64); }
  .filter-flyout__selection {
    position: fixed;
    background-color: #fff;
    width: 50vw;
    bottom: 0;
    right: -450px;
    height: 100vh;
    max-width: 450px;
    z-index: 999;
    overflow-y: auto;
    transition: 300ms linear; }
    .filter-flyout__selection__close {
      position: fixed;
      top: 25px;
      right: -50px;
      cursor: pointer; }
    .filter-flyout__selection--visible {
      right: 0; }
      .filter-flyout__selection--visible .filter-flyout__selection__close {
        right: 475px; } }

.footer {
  padding: 2.5rem 0;
  background-color: #1e1e1e; }
  .footer #t3m-toTop {
    position: fixed;
    bottom: -10px;
    right: 10px;
    width: 48px;
    height: 48px;
    background-color: black;
    border-radius: 50%;
    z-index: 9999;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    cursor: pointer; }
    .footer #t3m-toTop svg {
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
      -ms-transform-origin: center;
          transform-origin: center; }
  .footer__content {
    padding-top: 1.25rem;
    max-width: 1200px; }
  .footer__nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    height: 100%; }
    .footer__nav .grid {
      width: 100%; }
    .footer__nav h3 {
      color: #fff;
      font-size: 20px;
      line-height: 24px; }
    .footer__nav__list {
      list-style: none;
      padding-left: 0; }
    .footer__nav__item {
      margin: 0.5em 0; }
      .footer__nav__item a {
        font-size: 20px;
        text-decoration: none; }
        .footer__nav__item a:hover {
          color: #fff; }
  .footer__meta {
    width: 100%;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end; }
    .footer__meta__menu__item {
      margin-right: 1em; }
      .footer__meta__menu__item a {
        text-decoration: none; }
    .footer__meta__menu__list {
      display: -ms-flexbox;
      display: flex;
      list-style: none;
      padding-left: 0; }
      .footer__meta__menu__list li {
        display: inline; }
      .footer__meta__menu__list li:first-of-type {
        white-space: nowrap; }
      .footer__meta__menu__list li:last-of-type {
        margin-right: 1em; }
    .footer__meta__social__item {
      margin-right: 1em; }
      .footer__meta__social__item a {
        color: #fff; }
      .footer__meta__social__item svg {
        width: 24px;
        height: 24px; }
        .footer__meta__social__item svg path,
        .footer__meta__social__item svg g {
          fill: #fff; }
    .footer__meta__social__list {
      list-style: none;
      padding-left: 0; }
      .footer__meta__social__list li {
        display: inline-block; }
  .footer__claim {
    font-size: 1.25em;
    background-color: black;
    border-radius: 20px;
    height: 320px;
    padding: 1.5em;
    color: #fff; }
    .footer__claim__content > small {
      color: #8c8c8c;
      margin-bottom: 0.25em;
      display: block;
      font-size: 12px;
      font-family: "IBMPlexMono", Helvetica, sans-serif; }
    .footer__claim__content > a {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      width: 100%;
      text-decoration: none;
      color: #fff;
      margin-bottom: 0.5em; }
      .footer__claim__content > a > svg {
        margin-right: 0.3em; }
    .footer__claim__separator {
      margin-top: 1.5em;
      margin-bottom: 1em;
      border-bottom: 1px solid #373737; }
  .footer__nav-layout {
    padding-top: 0.625rem; }
  .footer div.collapsible:last-of-type {
    border-bottom: none; }
  .footer .collapsible {
    border-top: none; }
    .footer .collapsible__body {
      font-family: "FuturaPT-Book", Helvetica, sans-serif; }
  @media (max-width: 1199px) {
    .footer .footer__nav {
      height: auto; }
    .footer .footer__meta__social {
      text-align: right; }
    .footer .footer__meta__social__item {
      margin-right: 0;
      margin-left: 1em; }
    .footer .footer__meta__menu__list {
      -ms-flex-direction: column;
          flex-direction: column; }
      .footer .footer__meta__menu__list .footer__meta__menu__item:last-of-type {
        white-space: nowrap; }
    .footer div.collapsible:last-of-type {
      border-bottom: none; }
    .footer .collapsible__head {
      border-bottom: none;
      padding-bottom: unset;
      border-top: 1px #ffffff solid;
      padding-top: 0.625rem; }
    .footer .collapsible__indicator {
      color: #ffffff; }
    .footer .collapsible__body {
      font-family: "FuturaPT-Book", Helvetica, sans-serif; } }
  @media (min-width: 1199px) {
    .footer .footer__meta__social {
      text-align: left; }
    .footer .footer__meta__social__item {
      margin-right: 1em;
      margin-left: 0; }
    .footer h3 {
      font-size: 24px;
      line-height: 32px; }
    .footer .collapsible__head {
      position: unset;
      padding-bottom: unset;
      cursor: unset;
      border-bottom: none; }
    .footer .collapsible__indicator {
      display: none; }
    .footer__body {
      animation: none; }
    .footer:not([data-active="true"]) .collapsible__indicator {
      -ms-transform: unset;
          transform: unset; }
    .footer:not([data-active="true"]) .collapsible__body {
      display: unset; } }

.form {
  max-width: 100%;
  margin: 0 auto 3em auto; }
  .form .grid__col {
    line-height: 1 !important; }
  .form input,
  .form textarea,
  .form button,
  .form select:not([multiple]),
  .form select:not([multiple]) > option,
  .form label {
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 0;
    border-radius: 0;
    box-sizing: border-box;
    display: inline-block;
    font-family: "FuturaPT-Book", Helvetica, sans-serif;
    font-weight: lighter;
    margin: 0;
    outline: none;
    position: relative;
    width: 100%; }
    .form input[type="search"],
    .form textarea[type="search"],
    .form button[type="search"],
    .form select:not([multiple])[type="search"],
    .form select:not([multiple]) > option[type="search"],
    .form label[type="search"] {
      -webkit-appearance: none;
      border-radius: 0; }
    .form input:focus,
    .form textarea:focus,
    .form button:focus,
    .form select:not([multiple]):focus,
    .form select:not([multiple]) > option:focus,
    .form label:focus {
      outline: none; }
    .form input:-ms-input-placeholder,
    .form textarea:-ms-input-placeholder,
    .form button:-ms-input-placeholder,
    .form select:not([multiple]):-ms-input-placeholder,
    .form select:not([multiple]) > option:-ms-input-placeholder,
    .form label:-ms-input-placeholder {
      color: #999;
      opacity: 1; }
    .form input::placeholder,
    .form textarea::placeholder,
    .form button::placeholder,
    .form select:not([multiple])::placeholder,
    .form select:not([multiple]) > option::placeholder,
    .form label::placeholder {
      color: #999;
      opacity: 1; }
    .form input.error,
    .form textarea.error,
    .form button.error,
    .form select:not([multiple]).error,
    .form select:not([multiple]) > option.error,
    .form label.error {
      box-shadow: 0 3px 0 red; }
  .form label,
  .form legend {
    color: #999;
    font-size: .75em;
    letter-spacing: .2em;
    font-family: "IBMPlexMono", Helvetica, sans-serif; }
  .form fieldset {
    border: 0;
    margin: 1.25rem 0 0;
    min-width: 0;
    padding: 0;
    width: auto; }
    .form fieldset legend {
      display: block;
      margin: 0 0 0.625rem;
      padding: 0;
      transition: .15s; }
    .form fieldset[data-active="true"] legend {
      color: #000000; }
  .form select:not([multiple]) {
    background: url(./assets/_processed_/caret.2e111.svg) 95% center no-repeat;
    background-size: auto .6em;
    box-shadow: inset 0 0 0 1px #999;
    font-size: .75em;
    letter-spacing: .2em;
    margin-top: calc(2em / 2 + 5px);
    padding: 0.625rem;
    text-align: left;
    text-indent: .2em;
    text-transform: uppercase; }
    .form select:not([multiple]) + label {
      -ms-transform: translateY(-3.2em);
          transform: translateY(-3.2em);
      transition: .15s;
      vertical-align: top; }
    .form select:not([multiple])[data-active="true"] + label {
      color: #000000; }
  .form select[multiple] {
    margin-bottom: 1.25rem;
    width: 100%;
    border: none; }
    .form select[multiple] > option {
      font-weight: 300;
      padding: 0.5em; }
  .form button {
    display: inline-block;
    position: relative;
    font-weight: normal;
    font-family: "IBMPlexMono", Helvetica, sans-serif;
    color: #FFF;
    background-color: #000000;
    text-decoration: none;
    border-radius: 20px;
    padding: 9px 24px;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    z-index: 1;
    width: unset; }
  .form label {
    vertical-align: top; }
  .form textarea {
    height: calc(100% - 2.8em);
    margin-top: 2.8em;
    min-height: 12em;
    padding: 0.625rem;
    top: 8px;
    transition: .15s;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 20px; }
    .form textarea + label {
      top: -100%;
      -ms-transform: translateY(1.2em);
          transform: translateY(1.2em);
      transition: .15s; }
    .form textarea[data-active="true"] + label {
      color: #000000;
      -ms-transform: translateY(1.6em);
          transform: translateY(1.6em); }
  .form input {
    letter-spacing: .1em;
    padding: 1em 1.5em;
    transition: .15s;
    border-radius: 24px;
    background-color: rgba(0, 0, 0, 0.08); }
    .form input + label {
      -ms-transform: translate(2em, -2.8em);
          transform: translate(2em, -2.8em);
      transition: .15s; }
    .form input[type="text"][data-active="true"] + label {
      color: transparent; }
    .form input[type="date"] + label, .form input[type="file"] + label {
      -ms-transform: translateY(-2.4em);
          transform: translateY(-2.4em); }
    .form input[type="radio"], .form input[type="checkbox"] {
      display: none; }
      .form input[type="radio"] + label, .form input[type="checkbox"] + label {
        color: #000000;
        cursor: pointer;
        font-size: 0.75em;
        margin-right: 1.25rem;
        padding-left: 36px;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        text-transform: none;
        -ms-transform: none;
            transform: none;
        vertical-align: middle;
        width: auto; }
        .form input[type="radio"] + label:before, .form input[type="radio"] + label:after, .form input[type="checkbox"] + label:before, .form input[type="checkbox"] + label:after {
          border-radius: 12px;
          border: solid 1px #000;
          content: '';
          display: inline-block;
          height: 24px;
          position: absolute;
          left: 0;
          top: 50%;
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
          transition: .15s;
          vertical-align: middle;
          width: 24px; }
    .form input[type="radio"] + label {
      margin-bottom: 1.25rem; }
      .form input[type="radio"] + label:before, .form input[type="radio"] + label:after {
        border-radius: 50% !important;
        border: solid 1px #000;
        content: '';
        display: inline-block;
        height: 24px;
        position: absolute;
        left: 0;
        top: 50%;
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        transition: .15s;
        vertical-align: middle;
        width: 24px; }
    .form input[type="radio"]:checked + label:after {
      top: 50%;
      -ms-transform: translateY(-50%) scale(0.6);
          transform: translateY(-50%) scale(0.6);
      background-color: #FFF;
      height: 1.5rem;
      width: 1.5rem; }
    .form input[type="radio"]:checked + label:before {
      background-color: #000; }
    .form input[type='checkbox'] {
      display: block;
      position: absolute;
      width: 24px;
      opacity: 0; }
      .form input[type='checkbox'] + label:before, .form input[type='checkbox'] + label:after {
        border-radius: 8px !important;
        border: solid 1px #000;
        content: '';
        display: inline-block;
        height: 24px;
        position: absolute;
        left: 0;
        top: 50%;
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        transition: 0.15s;
        vertical-align: middle;
        width: 24px; }
      .form input[type='checkbox']:checked + label:after {
        top: 50%;
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        background-image: url(./assets/_processed_/ico-24-checkmark-w.dd9f3.svg);
        background-color: black;
        background-size: cover;
        height: 1.5rem;
        width: 1.5rem; }
      .form input[type='checkbox']:not(:checked) + label:after {
        display: none; }
    .form input[type="search"] {
      padding: 0;
      box-shadow: none; }
      .form input[type="search"]::-webkit-search-decoration, .form input[type="search"]::-webkit-search-cancel-button, .form input[type="search"]::-webkit-search-results-button, .form input[type="search"]::-webkit-search-results-decoration {
        display: none; }
      .form input[type="search"]:-ms-input-placeholder {
        opacity: 0;
        color: #FFF;
        line-height: normal;
        -ms-transform: translateX(-10%);
            transform: translateX(-10%);
        transition: 0.4s;
        transition-delay: 0.2s; }
      .form input[type="search"]::placeholder {
        opacity: 0;
        color: #FFF;
        line-height: normal;
        -ms-transform: translateX(-10%);
            transform: translateX(-10%);
        transition: 0.4s;
        transition-delay: 0.2s; }
        .theme--green .form input[type="search"]:-ms-input-placeholder {
          color: #6e863d; }
        .theme--green .form input[type="search"]::placeholder {
          color: #6e863d; }
        [class*="theme--"] .theme--green .form input[type="search"]:-ms-input-placeholder {
          color: #6e863d; }
        [class*="theme--"] .theme--green .form input[type="search"]::placeholder {
          color: #6e863d; }
        .theme--yellow .form input[type="search"]:-ms-input-placeholder {
          color: #fdda25; }
        .theme--yellow .form input[type="search"]::placeholder {
          color: #fdda25; }
        [class*="theme--"] .theme--yellow .form input[type="search"]:-ms-input-placeholder {
          color: #fdda25; }
        [class*="theme--"] .theme--yellow .form input[type="search"]::placeholder {
          color: #fdda25; }
        .theme--blue .form input[type="search"]:-ms-input-placeholder {
          color: #9897c8; }
        .theme--blue .form input[type="search"]::placeholder {
          color: #9897c8; }
        [class*="theme--"] .theme--blue .form input[type="search"]:-ms-input-placeholder {
          color: #9897c8; }
        [class*="theme--"] .theme--blue .form input[type="search"]::placeholder {
          color: #9897c8; }
        .theme--violet .form input[type="search"]:-ms-input-placeholder {
          color: #966481; }
        .theme--violet .form input[type="search"]::placeholder {
          color: #966481; }
        [class*="theme--"] .theme--violet .form input[type="search"]:-ms-input-placeholder {
          color: #966481; }
        [class*="theme--"] .theme--violet .form input[type="search"]::placeholder {
          color: #966481; }
        .theme--orange .form input[type="search"]:-ms-input-placeholder {
          color: #ff9802; }
        .theme--orange .form input[type="search"]::placeholder {
          color: #ff9802; }
        [class*="theme--"] .theme--orange .form input[type="search"]:-ms-input-placeholder {
          color: #ff9802; }
        [class*="theme--"] .theme--orange .form input[type="search"]::placeholder {
          color: #ff9802; }
        .theme--red .form input[type="search"]:-ms-input-placeholder {
          color: #c05142; }
        .theme--red .form input[type="search"]::placeholder {
          color: #c05142; }
        [class*="theme--"] .theme--red .form input[type="search"]:-ms-input-placeholder {
          color: #c05142; }
        [class*="theme--"] .theme--red .form input[type="search"]::placeholder {
          color: #c05142; }
        .theme--gray .form input[type="search"]:-ms-input-placeholder {
          color: rgba(0, 0, 0, 0.561); }
        .theme--gray .form input[type="search"]::placeholder {
          color: rgba(0, 0, 0, 0.561); }
        [class*="theme--"] .theme--gray .form input[type="search"]:-ms-input-placeholder {
          color: rgba(0, 0, 0, 0.561); }
        [class*="theme--"] .theme--gray .form input[type="search"]::placeholder {
          color: rgba(0, 0, 0, 0.561); }
        .theme--black .form input[type="search"]:-ms-input-placeholder {
          color: #000000; }
        .theme--black .form input[type="search"]::placeholder {
          color: #000000; }
        [class*="theme--"] .theme--black .form input[type="search"]:-ms-input-placeholder {
          color: #000000; }
        [class*="theme--"] .theme--black .form input[type="search"]::placeholder {
          color: #000000; }
        .theme--default .form input[type="search"]:-ms-input-placeholder {
          color: #FFF; }
        .theme--default .form input[type="search"]::placeholder {
          color: #FFF; }
        [class*="theme--"] .theme--default .form input[type="search"]:-ms-input-placeholder {
          color: #FFF; }
        [class*="theme--"] .theme--default .form input[type="search"]::placeholder {
          color: #FFF; }
      .form input[type="search"] + label {
        position: absolute;
        left: 2.5rem;
        bottom: 0.3em;
        color: #000000;
        -ms-transform: translateY(0);
            transform: translateY(0);
        pointer-events: none;
        transition: 0.4s; }
      .form input[type="search"][data-active="true"]:-ms-input-placeholder {
        opacity: 1;
        -ms-transform: translateX(0);
            transform: translateX(0); }
      .form input[type="search"][data-active="true"]::placeholder {
        opacity: 1;
        -ms-transform: translateX(0);
            transform: translateX(0); }
      .form input[type="search"][data-active="true"] + label {
        opacity: 0;
        -ms-transform: translateX(100%);
            transform: translateX(100%); }
      .form input[type="search"][data-active="false"] + label {
        transition-delay: 0.2s; }
  .form .datepicker-inline {
    padding: 1.25rem 0; }
  .form .help-block {
    padding: 0.41667rem;
    font-size: 1em;
    margin: 0.625rem 0 1.25rem 0px; }
  .form .grid {
    margin-bottom: 1em; }
  .form .inputs-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column;
        flex-flow: column; }
  .form .spacing-bottom {
    margin-bottom: 2rem; }
  .form .fieldset-divider {
    border-bottom: 1px solid rgba(0, 0, 0, 0.16); }

@media (min-width: 768px) {
  .form {
    max-width: 440px; } }

@media (min-width: 1200px) {
  .form {
    max-width: 558px; } }

.frame-slider {
  background-color: #FFF;
  height: 709px;
  margin: 0 -6%; }
  .theme--green .frame-slider {
    background-color: #6e863d; }
  [class*="theme--"] .theme--green .frame-slider {
    background-color: #6e863d; }
  .theme--yellow .frame-slider {
    background-color: #fdda25; }
  [class*="theme--"] .theme--yellow .frame-slider {
    background-color: #fdda25; }
  .theme--blue .frame-slider {
    background-color: #9897c8; }
  [class*="theme--"] .theme--blue .frame-slider {
    background-color: #9897c8; }
  .theme--violet .frame-slider {
    background-color: #966481; }
  [class*="theme--"] .theme--violet .frame-slider {
    background-color: #966481; }
  .theme--orange .frame-slider {
    background-color: #ff9802; }
  [class*="theme--"] .theme--orange .frame-slider {
    background-color: #ff9802; }
  .theme--red .frame-slider {
    background-color: #c05142; }
  [class*="theme--"] .theme--red .frame-slider {
    background-color: #c05142; }
  .theme--gray .frame-slider {
    background-color: rgba(0, 0, 0, 0.561); }
  [class*="theme--"] .theme--gray .frame-slider {
    background-color: rgba(0, 0, 0, 0.561); }
  .theme--black .frame-slider {
    background-color: #000000; }
  [class*="theme--"] .theme--black .frame-slider {
    background-color: #000000; }
  .theme--default .frame-slider {
    background-color: #FFF; }
  [class*="theme--"] .theme--default .frame-slider {
    background-color: #FFF; }
  @media only screen and (min-width: 575px) {
    .frame-slider {
      height: 513px;
      margin: 0 -60%; } }

.frame-slider-references {
  background-color: #FFF;
  height: 674px;
  margin: 0 -60%; }
  .theme--green .frame-slider-references {
    background-color: #6e863d; }
  [class*="theme--"] .theme--green .frame-slider-references {
    background-color: #6e863d; }
  .theme--yellow .frame-slider-references {
    background-color: #fdda25; }
  [class*="theme--"] .theme--yellow .frame-slider-references {
    background-color: #fdda25; }
  .theme--blue .frame-slider-references {
    background-color: #9897c8; }
  [class*="theme--"] .theme--blue .frame-slider-references {
    background-color: #9897c8; }
  .theme--violet .frame-slider-references {
    background-color: #966481; }
  [class*="theme--"] .theme--violet .frame-slider-references {
    background-color: #966481; }
  .theme--orange .frame-slider-references {
    background-color: #ff9802; }
  [class*="theme--"] .theme--orange .frame-slider-references {
    background-color: #ff9802; }
  .theme--red .frame-slider-references {
    background-color: #c05142; }
  [class*="theme--"] .theme--red .frame-slider-references {
    background-color: #c05142; }
  .theme--gray .frame-slider-references {
    background-color: rgba(0, 0, 0, 0.561); }
  [class*="theme--"] .theme--gray .frame-slider-references {
    background-color: rgba(0, 0, 0, 0.561); }
  .theme--black .frame-slider-references {
    background-color: #000000; }
  [class*="theme--"] .theme--black .frame-slider-references {
    background-color: #000000; }
  .theme--default .frame-slider-references {
    background-color: #FFF; }
  [class*="theme--"] .theme--default .frame-slider-references {
    background-color: #FFF; }
  .frame-slider-references h2 {
    padding-top: 48px; }
  @media only screen and (min-width: 767px) {
    .frame-slider-references h2 {
      padding-top: 80px; } }
  @media only screen and (min-width: 1199px) {
    .frame-slider-references {
      height: 907px; }
      .frame-slider-references h2 {
        padding-top: 109px; } }

.frame-slider-history {
  height: 749px;
  margin-left: -6%;
  margin-right: -6%; }
  @media only screen and (min-width: 575px) {
    .frame-slider-history {
      height: 513px;
      margin-left: -60%;
      margin-right: -60%; } }
  .frame-slider-history header {
    margin-bottom: 2em; }

[data-gallery] a,
[data-gallery] button {
  outline: none; }

[data-gallery][data-gallery="default"] .slick-dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  position: absolute;
  left: 40%;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  list-style: none;
  width: 175px; }
  [data-gallery][data-gallery="default"] .slick-dots li {
    border-bottom: 2px solid #999;
    -ms-flex-positive: 1;
        flex-grow: 1; }
    [data-gallery][data-gallery="default"] .slick-dots li.slick-active {
      border-bottom: 2px solid black;
      padding: 0 1em; }
    [data-gallery][data-gallery="default"] .slick-dots li button {
      visibility: hidden; }

[data-gallery][data-gallery="default"] .slick-prev {
  top: 50%;
  -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
  @media only screen and (max-width: 575px) {
    [data-gallery][data-gallery="default"] .slick-prev {
      display: none; } }
  @media only screen and (min-width: 767px) {
    [data-gallery][data-gallery="default"] .slick-prev {
      left: 40%; } }

[data-gallery][data-gallery="default"] .slick-next {
  top: 50%; }
  @media only screen and (max-width: 575px) {
    [data-gallery][data-gallery="default"] .slick-next {
      display: none; } }
  @media only screen and (min-width: 767px) {
    [data-gallery][data-gallery="default"] .slick-next {
      right: 40%; } }

[data-gallery][data-gallery="default"] .slick-disabled {
  opacity: 0; }

[data-gallery][data-gallery="default"] .slick-slide {
  width: 327px;
  height: 400px;
  margin: 2em 24px;
  border-radius: 20px; }
  @media only screen and (min-width: 767px) {
    [data-gallery][data-gallery="default"] .slick-slide {
      width: 578px;
      height: 323px; } }

[data-gallery][data-gallery="default"] .gallery-default {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-direction: column-reverse;
      flex-direction: column-reverse;
  margin: 2em;
  max-height: 400px; }
  @media only screen and (min-width: 767px) {
    [data-gallery][data-gallery="default"] .gallery-default {
      -ms-flex-direction: row;
          flex-direction: row;
      max-height: 259px; } }
  [data-gallery][data-gallery="default"] .gallery-default-text {
    width: 297px;
    margin-right: 2em; }
    @media only screen and (min-width: 767px) {
      [data-gallery][data-gallery="default"] .gallery-default-text {
        width: 220px; } }
    [data-gallery][data-gallery="default"] .gallery-default-text a {
      text-decoration: none;
      color: black; }
    [data-gallery][data-gallery="default"] .gallery-default-text a p {
      font-family: "Reckless-Regular", Helvetica, sans-serif;
      font-size: 24px;
      line-height: 30px;
      letter-spacing: -0.2px;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      /* autoprefixer: off */ }
      @media only screen and (min-width: 767px) {
        [data-gallery][data-gallery="default"] .gallery-default-text a p {
          -webkit-line-clamp: 6; } }
    [data-gallery][data-gallery="default"] .gallery-default-text span {
      font-family: IBMPlexMono;
      letter-spacing: 0;
      line-height: 20px;
      font-size: 12px; }
    [data-gallery][data-gallery="default"] .gallery-default-text span.text-title {
      display: block;
      margin-bottom: 1.4em; }
      @media only screen and (min-width: 575px) {
        [data-gallery][data-gallery="default"] .gallery-default-text span.text-title {
          margin-top: 0.6em;
          margin-bottom: 0.8em; } }
    [data-gallery][data-gallery="default"] .gallery-default-text span.text-lable {
      font-family: IBMPlexMono; }
  [data-gallery][data-gallery="default"] .gallery-default-image img {
    width: 186px;
    height: 186px;
    border-radius: 8px; }
    @media only screen and (min-width: 575px) {
      [data-gallery][data-gallery="default"] .gallery-default-image img {
        width: 259px;
        height: 259px; } }

[data-gallery][data-gallery="reference"] .slick-dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  -ms-flex-pack: distribute;
      justify-content: space-around;
  list-style: none;
  width: auto; }
  @media only screen and (max-width: 767px) {
    [data-gallery][data-gallery="reference"] .slick-dots {
      left: 43%; } }
  [data-gallery][data-gallery="reference"] .slick-dots li {
    border-bottom: 2px solid #999;
    -ms-flex-positive: 1;
        flex-grow: 1;
    max-width: 5px; }
    @media only screen and (max-width: 767px) {
      [data-gallery][data-gallery="reference"] .slick-dots li {
        max-width: 12px; } }
    @media only screen and (min-width: 767px) {
      [data-gallery][data-gallery="reference"] .slick-dots li {
        max-width: 15px; } }
    [data-gallery][data-gallery="reference"] .slick-dots li.slick-active {
      border-bottom: 2px solid black;
      padding: 0 1em; }
    [data-gallery][data-gallery="reference"] .slick-dots li button {
      visibility: hidden; }

[data-gallery][data-gallery="reference"] .slick-prev {
  top: 50%;
  -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
  @media only screen and (max-width: 767px) {
    [data-gallery][data-gallery="reference"] .slick-prev {
      display: none; } }
  @media only screen and (min-width: 767px) {
    [data-gallery][data-gallery="reference"] .slick-prev {
      left: 30%; } }

[data-gallery][data-gallery="reference"] .slick-next {
  top: 50%; }
  @media only screen and (max-width: 575px) {
    [data-gallery][data-gallery="reference"] .slick-next {
      display: none; } }
  @media only screen and (min-width: 767px) {
    [data-gallery][data-gallery="reference"] .slick-next {
      right: 30%; } }

[data-gallery][data-gallery="reference"] .slick-disabled {
  opacity: 0; }

[data-gallery][data-gallery="reference"] .slick-slide {
  width: 327px;
  height: 336px;
  margin: 2em 16px;
  border-radius: 20px; }
  @media only screen and (max-width: 767px) {
    [data-gallery][data-gallery="reference"] .slick-slide {
      margin: 2em 16px 2em 0; } }
  @media only screen and (min-width: 1199px) {
    [data-gallery][data-gallery="reference"] .slick-slide {
      width: 558px;
      height: 474px; } }

[data-gallery][data-gallery="reference"] .references {
  width: 327px;
  height: 336px; }
  [data-gallery][data-gallery="reference"] .references__item a {
    pointer-events: all; }
  [data-gallery][data-gallery="reference"] .references__item__title {
    font-size: 32px;
    line-height: 1.19;
    letter-spacing: -0.1px; }
  [data-gallery][data-gallery="reference"] .references__item__text {
    font-size: 14px;
    line-height: 1.43; }
  [data-gallery][data-gallery="reference"] .references__item__img {
    height: 199px; }
  @media only screen and (min-width: 1199px) {
    [data-gallery][data-gallery="reference"] .references {
      width: 558px;
      height: 474px; }
      [data-gallery][data-gallery="reference"] .references__item__text {
        font-size: 16px;
        line-height: 1.5; }
      [data-gallery][data-gallery="reference"] .references__item__img {
        height: 344px; } }

[data-gallery][data-gallery='thumbs'] img, [data-gallery][data-gallery='product'] img {
  border-radius: 20px; }

[data-gallery][data-gallery='thumbs'] [data-gallery-stage], [data-gallery][data-gallery='product'] [data-gallery-stage] {
  text-align: center;
  margin-bottom: 1.25rem;
  position: relative; }
  [data-gallery][data-gallery='thumbs'] [data-gallery-stage] button.slick-prev, [data-gallery][data-gallery='product'] [data-gallery-stage] button.slick-prev {
    right: 7em;
    bottom: 2em;
    -ms-transform: rotate(180deg);
        transform: rotate(180deg); }
  [data-gallery][data-gallery='thumbs'] [data-gallery-stage] button.slick-next, [data-gallery][data-gallery='product'] [data-gallery-stage] button.slick-next {
    right: 1em;
    bottom: 2em; }
  [data-gallery][data-gallery='thumbs'] [data-gallery-stage] .data-gallery-stage-arrows-prev, [data-gallery][data-gallery='product'] [data-gallery-stage] .data-gallery-stage-arrows-prev {
    right: 1.2em; }
  [data-gallery][data-gallery='thumbs'] [data-gallery-stage] img, [data-gallery][data-gallery='product'] [data-gallery-stage] img {
    width: 100%; }

[data-gallery][data-gallery='thumbs'] #gallery-items img, [data-gallery][data-gallery='product'] #gallery-items img {
  border: solid 1px rgba(0, 0, 0, 0.08); }

[data-gallery][data-gallery='thumbs'] #gallery-items .slick-list, [data-gallery][data-gallery='product'] #gallery-items .slick-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center; }

[data-gallery][data-gallery='thumbs'] #gallery-items .slick-track, [data-gallery][data-gallery='product'] #gallery-items .slick-track {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 1.6em 0;
  height: 75px; }

[data-gallery][data-gallery='thumbs'] #gallery-items .slick-slide, [data-gallery][data-gallery='product'] #gallery-items .slick-slide {
  padding: 0 0.625rem;
  width: 85px !important;
  height: 64px; }
  [data-gallery][data-gallery='thumbs'] #gallery-items .slick-slide img, [data-gallery][data-gallery='product'] #gallery-items .slick-slide img {
    width: 85px;
    height: 64px; }

[data-gallery][data-gallery='thumbs'] #gallery-items .slick-current, [data-gallery][data-gallery='product'] #gallery-items .slick-current {
  opacity: .35; }

[data-gallery][data-gallery='thumbs'] #gallery-items .slick-prev, [data-gallery][data-gallery='product'] #gallery-items .slick-prev {
  -ms-transform: rotate(180deg);
      transform: rotate(180deg); }

[data-gallery][data-gallery='thumbs'] #gallery-items .slick-center.slick-current, [data-gallery][data-gallery='product'] #gallery-items .slick-center.slick-current {
  position: relative; }
  [data-gallery][data-gallery='thumbs'] #gallery-items .slick-center.slick-current::before, [data-gallery][data-gallery='product'] #gallery-items .slick-center.slick-current::before {
    content: "";
    position: absolute;
    bottom: -8px;
    border-bottom: 3px solid black;
    width: 85%; }

[data-gallery][data-gallery="full"] {
  position: relative;
  left: 50%;
  right: 50%;
  width: 1440px;
  margin-left: -720px;
  margin-right: -720px;
  overflow-x: hidden; }
  @media (max-width: 1440px) {
    [data-gallery][data-gallery="full"] {
      position: relative;
      left: 50%;
      right: 50%;
      width: 100vw;
      margin-left: -50vw;
      margin-right: -50vw; } }
  [data-gallery][data-gallery="full"] .slick-list {
    margin-left: -0.625rem;
    margin-right: -0.625rem; }
  [data-gallery][data-gallery="full"] .slick-slide {
    max-height: 40vh;
    padding: 0 0.625rem; }
  [data-gallery][data-gallery="full"] .slick-arrow {
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
    @media (max-width: 575px) {
      [data-gallery][data-gallery="full"] .slick-arrow {
        width: 2.5em;
        height: 2.5em; } }
  [data-gallery][data-gallery="full"] .slick-prev {
    left: 0; }
  [data-gallery][data-gallery="full"] .slick-next {
    right: 0; }

[data-gallery][data-gallery="cardslider"] {
  margin-bottom: 5em; }
  [data-gallery][data-gallery="cardslider"] .slick-dots {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    position: absolute;
    left: 0;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    list-style: none;
    max-width: 175px; }
    @media only screen and (max-width: 767px) {
      [data-gallery][data-gallery="cardslider"] .slick-dots {
        left: -10px;
        -ms-flex-pack: start;
            justify-content: flex-start; } }
    [data-gallery][data-gallery="cardslider"] .slick-dots li {
      border-bottom: 2px solid #999; }
      @media only screen and (max-width: 575px) {
        [data-gallery][data-gallery="cardslider"] .slick-dots li {
          max-width: 12px; } }
      [data-gallery][data-gallery="cardslider"] .slick-dots li.slick-active {
        border-bottom: 2px solid black;
        padding: 0 1em; }
      [data-gallery][data-gallery="cardslider"] .slick-dots li button {
        visibility: hidden; }
  [data-gallery][data-gallery="cardslider"] .slick-prev {
    top: 50%;
    -ms-transform: rotate(180deg);
        transform: rotate(180deg); }
    @media only screen and (max-width: 575px) {
      [data-gallery][data-gallery="cardslider"] .slick-prev {
        display: none; } }
    @media only screen and (min-width: 767px) {
      [data-gallery][data-gallery="cardslider"] .slick-prev {
        left: 17%; } }
  [data-gallery][data-gallery="cardslider"] .slick-next {
    top: 50%; }
    @media only screen and (max-width: 575px) {
      [data-gallery][data-gallery="cardslider"] .slick-next {
        display: none; } }
    @media only screen and (min-width: 767px) {
      [data-gallery][data-gallery="cardslider"] .slick-next {
        right: 32%; } }
  [data-gallery][data-gallery="cardslider"] .slick-disabled {
    opacity: 0;
    pointer-events: none; }
  [data-gallery][data-gallery="cardslider"] .slick-slide {
    width: 327px;
    height: 400px;
    margin: 2em 24px;
    border-radius: 8px; }
    @media only screen and (min-width: 767px) {
      [data-gallery][data-gallery="cardslider"] .slick-slide {
        height: 400px; } }
    @media only screen and (min-width: 1199px) {
      [data-gallery][data-gallery="cardslider"] .slick-slide {
        min-width: 558px;
        height: 323px; } }

[data-gallery][data-gallery="history"] button.slick-prev {
  top: 50%;
  -ms-transform: rotate(180deg);
      transform: rotate(180deg); }
  @media only screen and (max-width: 767px) {
    [data-gallery][data-gallery="history"] button.slick-prev {
      display: none !important; } }
  @media only screen and (min-width: 767px) {
    [data-gallery][data-gallery="history"] button.slick-prev {
      left: 35%; } }

[data-gallery][data-gallery="history"] button.slick-next {
  top: 50%;
  right: 30%; }
  @media only screen and (max-width: 575px) {
    [data-gallery][data-gallery="history"] button.slick-next {
      display: none !important; } }

[data-gallery][data-gallery="history"] button.slick-disabled {
  opacity: 0;
  pointer-events: none; }

[data-gallery][data-gallery="history"] .gallery-history {
  position: relative;
  padding-right: 23px; }
  [data-gallery][data-gallery="history"] .gallery-history::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    height: 100%;
    opacity: 0.65;
    background: linear-gradient(to right, black 9%, rgba(0, 0, 0, 0) 71%);
    border-radius: 20px; }
  [data-gallery][data-gallery="history"] .gallery-history img {
    width: auto;
    max-width: 293px !important;
    height: 400px;
    max-height: 400px;
    border-radius: 20px;
    object-fit: cover; }
    @media only screen and (min-width: 767px) {
      [data-gallery][data-gallery="history"] .gallery-history img {
        max-width: 559px !important; } }
  [data-gallery][data-gallery="history"] .gallery-history__message {
    position: absolute;
    z-index: 12;
    padding-left: 32px;
    top: 2em;
    color: #FFF; }
    [data-gallery][data-gallery="history"] .gallery-history__message .gallery-history__title {
      font-size: 40px;
      font-family: "FuturaPT-Book", Helvetica, sans-serif;
      line-height: 1.2;
      letter-spacing: -0.2px;
      font-weight: bold; }
    [data-gallery][data-gallery="history"] .gallery-history__message .gallery-history__text {
      font-size: 20px;
      line-height: 1.5;
      letter-spacing: -0.1px;
      max-width: 235px; }

[data-gallery] .slick-dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row;
      flex-direction: row;
  width: 175px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  list-style: none; }
  [data-gallery] .slick-dots li {
    border-bottom: 2px solid #999;
    -ms-flex-positive: 1;
        flex-grow: 1; }
    [data-gallery] .slick-dots li.slick-active {
      border-bottom: 2px solid black;
      padding: 0 1em; }
    [data-gallery] .slick-dots li button {
      visibility: hidden;
      border: none; }

[data-gallery] .slick-arrow {
  position: absolute;
  overflow: hidden;
  text-indent: -99em;
  border: none;
  cursor: pointer;
  z-index: 1; }
  [data-gallery] .slick-arrow:before {
    position: absolute;
    content: "";
    width: 30%;
    height: 30%;
    border: 1px currentColor solid;
    border-right: none;
    border-bottom: none;
    -ms-transform: translate(-15%, -24%) rotate(225deg);
        transform: translate(-15%, -24%) rotate(225deg);
    left: 50%;
    top: 50%;
    border-width: 2px; }

[data-gallery] .slick-prev {
  right: 2.5em;
  bottom: -10px; }
  @media only screen and (min-width: 575px) {
    [data-gallery] .slick-prev {
      right: 5em;
      bottom: 0; } }
  [data-gallery] .slick-prev:before {
    -ms-transform: translate(-30%, -50%) rotate(-45deg);
        transform: translate(-30%, -50%) rotate(-45deg); }

[data-gallery] .slick-next {
  right: 0;
  bottom: -10px; }
  @media only screen and (min-width: 575px) {
    [data-gallery] .slick-next {
      bottom: 0; } }
  [data-gallery] .slick-next:before {
    -ms-transform: translate(-70%, -50%) rotate(135deg);
        transform: translate(-70%, -50%) rotate(135deg); }

.productgroup-slider {
  -ms-flex-order: -1;
      order: -1; }
  @media only screen and (min-width: 1199px) {
    .productgroup-slider {
      -ms-flex-order: 1;
          order: 1; } }
  .productgroup-slider [data-gallery][data-gallery='thumbs'] [data-gallery-stage] .slick-slide, .productgroup-slider [data-gallery][data-gallery='product'] [data-gallery-stage] .slick-slide {
    margin: 2em 1.5em;
    border-radius: 20px;
    box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.16); }
    .productgroup-slider [data-gallery][data-gallery='thumbs'] [data-gallery-stage] .slick-slide a, .productgroup-slider [data-gallery][data-gallery='product'] [data-gallery-stage] .slick-slide a {
      display: block !important; }
  .productgroup-slider [data-gallery][data-gallery='thumbs'] [data-gallery-stage] button.slick-prev, .productgroup-slider [data-gallery][data-gallery='product'] [data-gallery-stage] button.slick-prev {
    right: 7em;
    bottom: 3em; }
  .productgroup-slider [data-gallery][data-gallery='thumbs'] [data-gallery-stage] button.slick-next, .productgroup-slider [data-gallery][data-gallery='product'] [data-gallery-stage] button.slick-next {
    right: 3em;
    bottom: 3em; }
  .productgroup-slider [data-gallery][data-gallery='thumbs'] [data-gallery-stage] img, .productgroup-slider [data-gallery][data-gallery='product'] [data-gallery-stage] img {
    width: 100%;
    height: 327px; }
    @media only screen and (min-width: 767px) {
      .productgroup-slider [data-gallery][data-gallery='thumbs'] [data-gallery-stage] img, .productgroup-slider [data-gallery][data-gallery='product'] [data-gallery-stage] img {
        width: 669px;
        height: 669px; } }
    @media only screen and (min-width: 1199px) {
      .productgroup-slider [data-gallery][data-gallery='thumbs'] [data-gallery-stage] img, .productgroup-slider [data-gallery][data-gallery='product'] [data-gallery-stage] img {
        width: 558px;
        height: 522px; } }
  .productgroup-slider [data-gallery][data-gallery='thumbs'] #gallery-items .slick-slide img, .productgroup-slider [data-gallery][data-gallery='product'] #gallery-items .slick-slide img {
    width: 64px;
    height: 64px; }
  .productgroup-slider [data-gallery][data-gallery='thumbs'] #gallery-items .slick-center.slick-current, .productgroup-slider [data-gallery][data-gallery='product'] #gallery-items .slick-center.slick-current {
    position: relative; }
    .productgroup-slider [data-gallery][data-gallery='thumbs'] #gallery-items .slick-center.slick-current::before, .productgroup-slider [data-gallery][data-gallery='product'] #gallery-items .slick-center.slick-current::before {
      content: "";
      position: absolute;
      bottom: -8px;
      border-bottom: 3px solid black;
      width: 62%; }

[data-gallery='history'] .slick-list {
  overflow: visible; }

@media (max-width: 1198px) {
  .header {
    margin: 0; } }

.hero {
  position: relative;
  padding-bottom: 2.5rem; }
  .hero__image img {
    min-width: 100%;
    max-height: 650px;
    object-fit: cover; }
  .hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .hero__content--text {
      text-align: center;
      color: #fff; }
      .hero__content--text h1, .hero__content--text h2, .hero__content--text h3 {
        line-height: 1.5;
        letter-spacing: -0.8px; }
      .hero__content--text h1 {
        font-size: 7.5rem; }
      .hero__content--text h2 {
        font-size: 4.5rem; }
      .hero__content--text p {
        font-size: 1.5rem; }
        .hero__content--text p.subline {
          margin-bottom: 0; }
  .hero__cta {
    margin-top: 2.5rem; }

.ref-hero .subline {
  color: rgba(0, 0, 0, 0.64);
  font-family: "IBMPlexMono", Helvetica, sans-serif; }

.section__content .hero {
  margin: 0 -60%; }

@media (max-width: 767px) {
  .hero__image img {
    min-width: 100%;
    min-height: 560px;
    object-fit: cover; }
  .hero__content--text h1,
  .hero__content--text h2 {
    font-size: 2.5rem; }
  .hero__content--text p {
    font-size: 1rem; }
    .hero__content--text p .subline {
      font-size: 0.75rem; }
  .section__fullpage .familyheader .hero__content--text h1 {
    font-size: 4.5rem; } }

@media (max-width: 575px) {
  .section__fullpage .familyheader .hero__content--text h1 {
    font-size: 3rem; }
  .section .hero .hero__content {
    top: 40%; }
    .section .hero .hero__content h2 {
      margin: 0 0 0 1rem; }
    .section .hero .hero__content .hero__cta {
      margin-top: 1rem; } }

.highlight {
  position: relative; }
  .highlight__image {
    display: block; }
  .highlight__title {
    font-size: 1em;
    margin-top: 1.25rem;
    margin-bottom: 0;
    margin-left: 4rem; }
  .highlight__info {
    font-weight: 500;
    font-size: .75em;
    margin-left: 4rem; }
  .highlight__link {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    text-indent: -99em;
    color: transparent;
    overflow: hidden; }
  .highlight .grid__col--4 {
    max-width: 30%;
    height: auto;
    border-radius: 20px;
    background-color: #fff;
    position: relative;
    margin: 0.5rem;
    padding: 1rem !important;
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.16); }
  @media (min-width: 1141px) {
    .highlight {
      padding-right: 1.25rem;
      padding-bottom: 2rem; } }

.info {
  position: relative;
  padding: 2rem;
  box-sizing: border-box; }
  .info__head {
    position: relative;
    margin-bottom: 1.25rem; }

.masonry {
  min-height: 432px; }
  .masonry__item {
    position: relative;
    margin-bottom: 2.5rem; }
    .masonry__item--size-1 {
      height: 250px; }
    .masonry__item--size-2 {
      height: 432px; }
  @media (max-width: 767px) {
    .masonry__item--size-2 {
      height: 336px; } }
  @media (max-width: 1140px) {
    .masonry__item {
      margin-bottom: 0; } }

.main__content {
  position: relative;
  z-index: 1; }
  .main__content > * + * {
    margin-top: 4rem; }
  .main__content .frame-space-before-none {
    margin-top: 0; }

.main-nav {
  position: relative;
  z-index: 22;
  padding-left: 3em;
  padding-top: 2em; }
  .is-sticky .main-nav {
    box-shadow: 0 2px 0 0 rgba(0, 0, 0, 0.15); }
  .main-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-image: none; }
  .main-nav__item {
    font-size: 1.125rem;
    letter-spacing: 0; }
    .main-nav__item > a {
      color: #000000;
      text-decoration: none; }
    .main-nav__item::before {
      display: block;
      content: attr(title);
      font-weight: bold;
      height: 0;
      overflow: hidden;
      visibility: hidden; }
    .main-nav__item--level-0:hover {
      border-bottom: 3px solid #000; }
      .main-nav__item--level-0:hover > a, .main-nav__item--level-0:hover span {
        font-weight: bold; }
    @media (max-width: 1199px) {
      .main-nav__item {
        pointer-events: none; } }
    .main-nav__item--level-1 > a, .main-nav__item--level-2 > a {
      display: block; }
  .main-nav__list--level-0 {
    display: -ms-flexbox;
    display: flex; }
  .main-nav__list--level-1, .main-nav__list--level-2 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    margin-top: 5px; }
  .main-nav__list--level-2 {
    position: fixed;
    top: 99px;
    left: 70vw;
    width: 450px;
    max-width: 30vw;
    height: calc(100vh - 99px);
    visibility: hidden;
    opacity: 0;
    transition: opacity 100ms linear; }
  .main-nav__sub {
    opacity: 0;
    pointer-events: none;
    transition: opacity 300ms ease; }
    .main-nav__sub--level-1 {
      position: absolute;
      left: 0;
      width: 100%;
      top: 98px;
      height: calc(100vh - 98px - 8em);
      overflow: visible auto;
      z-index: 11; }
      @media (max-width: 1199px) {
        .main-nav__sub--level-1 {
          right: 0;
          left: initial;
          width: 350px; } }
    .main-nav__sub--level-2 {
      position: absolute;
      top: 0;
      left: 100%;
      width: 100%;
      height: 100%;
      z-index: 2; }
    .main-nav__sub--level-3 {
      position: absolute;
      left: 0;
      top: 0;
      width: 300%;
      height: 680px;
      background: #FFF;
      z-index: -1; }
  .main-nav__item--level-1:hover .main-nav__list--level-2 {
    visibility: visible;
    opacity: 1; }
  .main-nav__item > a, .main-nav__item > span {
    display: block;
    padding: 0.625rem 0; }
  .main-nav__item--level-0 {
    height: 4rem;
    padding: 0 0.75rem;
    border-bottom: 3px solid transparent; }
    @media (max-width: 1250px) {
      .main-nav__item--level-0 {
        padding: 0 .5rem; } }
    .main-nav__item--level-0:first-child {
      padding-left: 0; }
      .main-nav__item--level-0:first-child:hover {
        border: 0; }
    .main-nav__item--level-0:hover > button,
    .main-nav__item--level-0:hover > span,
    .main-nav__item--level-0:hover > a {
      cursor: pointer; }
  .main-nav__item--level-1, .main-nav__item--level-2 {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    padding-left: 3em;
    padding-right: 3em; }
    .main-nav__item--level-1 > button,
    .main-nav__item--level-1 > a:not(.button), .main-nav__item--level-2 > button,
    .main-nav__item--level-2 > a:not(.button) {
      font-size: 1.125rem;
      line-height: 1.5;
      letter-spacing: -0.2px;
      font-weight: normal;
      padding: 0.5em 0.5em 0.5em 0;
      width: 100%; }
    .main-nav__item--level-1 > button, .main-nav__item--level-2 > button {
      padding: 1.25rem;
      text-align: left;
      border: 0;
      background-color: transparent; }
    .main-nav__item--level-1 > svg, .main-nav__item--level-2 > svg {
      margin-left: auto; }
    .main-nav__item--level-1__medium, .main-nav__item--level-2__medium {
      padding-left: 1em;
      padding-right: 2em; }
    .main-nav__item--level-1.products-list-item, .main-nav__item--level-2.products-list-item {
      padding: 0 1em; }
    .main-nav__item--level-1 .products-list-item-wrapper, .main-nav__item--level-2 .products-list-item-wrapper {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
      overflow: auto;
      padding: 1rem .5rem 1.5rem; }
    .main-nav__item--level-1 .products-list--subtitle, .main-nav__item--level-2 .products-list--subtitle {
      font-size: 1.125rem;
      line-height: 1.4;
      font-weight: 400;
      font-family: "FuturaPT-Book", Helvetica, sans-serif;
      letter-spacing: -0.1px;
      opacity: 0.64; }
    .main-nav__item--level-1.products-item, .main-nav__item--level-2.products-item {
      border-radius: 20px;
      width: calc(50% - 1rem);
      background-color: white;
      box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.08);
      margin: .5rem;
      padding: 0;
      min-height: 220px; }
      .main-nav__item--level-1.products-item .products-item--link, .main-nav__item--level-2.products-item .products-item--link {
        padding: 0;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
        height: 100%; }
      .main-nav__item--level-1.products-item .products-item--image, .main-nav__item--level-2.products-item .products-item--image {
        padding: 0;
        border-top-right-radius: 20px;
        border-top-left-radius: 20px;
        -ms-flex-positive: 1;
            flex-grow: 1; }
      .main-nav__item--level-1.products-item .products-item--title, .main-nav__item--level-2.products-item .products-item--title {
        padding: 5px 20px;
        font-size: 1rem;
        line-height: 1.25;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    .main-nav__item--level-1:hover > button,
    .main-nav__item--level-1:hover > a:not(.button), .main-nav__item--level-2:hover > button,
    .main-nav__item--level-2:hover > a:not(.button) {
      font-weight: bold; }
    .main-nav__item--level-1:hover > svg circle, .main-nav__item--level-2:hover > svg circle {
      fill: #000; }
    .main-nav__item--level-1:hover > svg path, .main-nav__item--level-2:hover > svg path {
      fill: #fff; }
    .main-nav__item--level-1__separator, .main-nav__item--level-2__separator {
      border-bottom: 1px solid #b5b5b5;
      margin: 0.4em 3em 0.4em 3em; }
    .main-nav__item--level-1__meta, .main-nav__item--level-2__meta {
      position: absolute;
      bottom: 0;
      border-top: 1px solid #b5b5b5;
      padding: 1.25em 3em;
      left: 0;
      right: 0;
      z-index: 33;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: justify;
          justify-content: space-between;
      -ms-flex-align: end;
          align-items: end; }
      @media (max-width: 1199px) {
        .main-nav__item--level-1__meta, .main-nav__item--level-2__meta {
          -ms-flex-direction: column;
              flex-direction: column;
          -ms-flex-pack: start;
              justify-content: flex-start;
          -ms-flex-align: start;
              align-items: flex-start;
          padding: 1em; } }
      .main-nav__item--level-1__meta__menu__list, .main-nav__item--level-2__meta__menu__list {
        height: 100%;
        width: 100%;
        list-style: none;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
            flex-direction: column;
        padding: 0; }
        .main-nav__item--level-1__meta__menu__list li, .main-nav__item--level-2__meta__menu__list li {
          padding: 0.25rem 0; }
        .main-nav__item--level-1__meta__menu__list a, .main-nav__item--level-2__meta__menu__list a {
          text-decoration: none; }
      .main-nav__item--level-1__meta__social__icons, .main-nav__item--level-2__meta__social__icons {
        fill: rgba(0, 0, 0, 0.6);
        padding: 0; }
        .main-nav__item--level-1__meta__social__icons svg, .main-nav__item--level-2__meta__social__icons svg {
          width: 2.5em;
          height: 2.5em;
          padding: 0 0.25em; }
        .main-nav__item--level-1__meta__social__icons li, .main-nav__item--level-2__meta__social__icons li {
          display: inline-block; }
      @media (max-width: 1199px) {
        .main-nav__item--level-1__meta__social__icons, .main-nav__item--level-2__meta__social__icons {
          margin-left: -0.25em; }
          .main-nav__item--level-1__meta__social__icons svg, .main-nav__item--level-2__meta__social__icons svg {
            width: 1.5em;
            height: 1.5em;
            padding: 0.25em; } }
    .main-nav__item--level-1:hover > button,
    .main-nav__item--level-1:hover > span,
    .main-nav__item--level-1:hover > a, .main-nav__item--level-2:hover > button,
    .main-nav__item--level-2:hover > span,
    .main-nav__item--level-2:hover > a {
      cursor: pointer; }
  .main-nav__item:hover > .main-nav__sub {
    pointer-events: all;
    opacity: 1; }
  .main-nav__item--level-2 > a:not(.button) {
    padding: 0.45rem 3.125rem 0.45rem 1.25rem;
    font-size: 1.125rem; }
  .main-nav__overview {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    min-height: 680px;
    background: #FFF;
    z-index: -2; }
    .main-nav__sub--level-2 > .main-nav__overview {
      width: 300%; }
    .main-nav__overview__img {
      width: 100%;
      height: 150px;
      background-position: center;
      background-size: cover;
      background-color: #999; }
    .main-nav__overview__button {
      position: absolute;
      bottom: 2rem;
      right: 2rem; }
    .main-nav__overview__text {
      padding: 2.5rem 1.25rem; }

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

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

@media (max-width: 1140px) {
  __item > a, __item > span {
    padding: 1.25rem; }
  __overview__text {
    padding: 1.25rem; } }

.mobile-nav__sub {
  display: none; }
  .mobile-nav__sub--level-1, .mobile-nav__sub--level-2 {
    position: relative;
    overflow-y: auto;
    max-height: calc(100vh - 20em);
    display: none;
    width: 100%; }
    .mobile-nav__sub--level-1__visible, .mobile-nav__sub--level-2__visible {
      display: block; }

.mobile-nav__list {
  padding: 0; }

.mobile-nav__item--level-1__separator {
  display: none; }
  @media (min-width: 767px) and (max-width: 1199px) {
    .mobile-nav__item--level-1__separator {
      display: block; } }

.mobile-nav__item--level-0, .mobile-nav__item--level-1, .mobile-nav__item--level-2 {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center; }
  .mobile-nav__item--level-0:not(.products-item) > a,
  .mobile-nav__item--level-0 > svg,
  .mobile-nav__item--level-0 > button, .mobile-nav__item--level-1:not(.products-item) > a,
  .mobile-nav__item--level-1 > svg,
  .mobile-nav__item--level-1 > button, .mobile-nav__item--level-2:not(.products-item) > a,
  .mobile-nav__item--level-2 > svg,
  .mobile-nav__item--level-2 > button {
    margin: 0 1em; }
  .mobile-nav__item--level-0__active > button,
  .mobile-nav__item--level-0__active > a, .mobile-nav__item--level-1__active > button,
  .mobile-nav__item--level-1__active > a, .mobile-nav__item--level-2__active > button,
  .mobile-nav__item--level-2__active > a {
    font-weight: bold; }
  .mobile-nav__item--level-0__active > svg, .mobile-nav__item--level-1__active > svg, .mobile-nav__item--level-2__active > svg {
    -ms-transform: rotate(180deg);
        transform: rotate(180deg); }
  .mobile-nav__item--level-0__active__invisible > button,
  .mobile-nav__item--level-0__active__invisible > svg, .mobile-nav__item--level-1__active__invisible > button,
  .mobile-nav__item--level-1__active__invisible > svg, .mobile-nav__item--level-2__active__invisible > button,
  .mobile-nav__item--level-2__active__invisible > svg {
    display: none; }
  .mobile-nav__item--level-0 .link-button, .mobile-nav__item--level-1 .link-button, .mobile-nav__item--level-2 .link-button {
    font-size: 24px;
    padding: 0.5em 1em;
    width: auto;
    text-decoration: none;
    color: #000;
    text-align: left;
    border: 0;
    background-color: transparent; }
  .mobile-nav__item--level-0 > button,
  .mobile-nav__item--level-0 > a:not(.button), .mobile-nav__item--level-1 > button,
  .mobile-nav__item--level-1 > a:not(.button), .mobile-nav__item--level-2 > button,
  .mobile-nav__item--level-2 > a:not(.button) {
    font-size: 24px;
    padding: 0.5em 0.5em 0.5em 0;
    width: 100%;
    text-decoration: none;
    color: #000;
    text-align: left;
    border: 0;
    background-color: transparent;
    max-width: 250px; }
  .mobile-nav__item--level-0 > svg, .mobile-nav__item--level-1 > svg, .mobile-nav__item--level-2 > svg {
    margin-left: auto; }
  .mobile-nav__item--level-0:hover > a:not(.button), .mobile-nav__item--level-1:hover > a:not(.button), .mobile-nav__item--level-2:hover > a:not(.button) {
    font-weight: bold; }
  .mobile-nav__item--level-0:hover > svg circle, .mobile-nav__item--level-1:hover > svg circle, .mobile-nav__item--level-2:hover > svg circle {
    fill: #000; }
  .mobile-nav__item--level-0:hover > svg path, .mobile-nav__item--level-1:hover > svg path, .mobile-nav__item--level-2:hover > svg path {
    fill: #fff; }
  .mobile-nav__item--level-0__separator, .mobile-nav__item--level-1__separator, .mobile-nav__item--level-2__separator {
    border-bottom: 1px solid #b5b5b5;
    margin: 0.5em 1em; }
  .mobile-nav__item--level-0__invisible, .mobile-nav__item--level-1__invisible, .mobile-nav__item--level-2__invisible {
    display: none; }
  .mobile-nav__item--level-0:hover > button,
  .mobile-nav__item--level-0:hover > a, .mobile-nav__item--level-1:hover > button,
  .mobile-nav__item--level-1:hover > a, .mobile-nav__item--level-2:hover > button,
  .mobile-nav__item--level-2:hover > a {
    font-weight: bold; }
  .mobile-nav__item--level-0.products-list-item, .mobile-nav__item--level-1.products-list-item, .mobile-nav__item--level-2.products-list-item {
    padding-left: 0;
    width: 100%; }
    .mobile-nav__item--level-0.products-list-item > a, .mobile-nav__item--level-1.products-list-item > a, .mobile-nav__item--level-2.products-list-item > a {
      margin: 1em auto; }
  .mobile-nav__item--level-0 .products-list--subtitle, .mobile-nav__item--level-1 .products-list--subtitle, .mobile-nav__item--level-2 .products-list--subtitle {
    font-size: 1em;
    font-weight: 400;
    padding: .75em 1em;
    font-family: "FuturaPT-Book", Helvetica, sans-serif;
    line-height: 1.5;
    letter-spacing: -0.1px;
    opacity: 0.64; }
  .mobile-nav__item--level-0 .products-item-list, .mobile-nav__item--level-1 .products-item-list, .mobile-nav__item--level-2 .products-item-list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    -ms-flex-pack: center;
        justify-content: center; }
  .mobile-nav__item--level-0.products-item, .mobile-nav__item--level-1.products-item, .mobile-nav__item--level-2.products-item {
    border-radius: 20px;
    width: calc(50% - 1em - 4.5px);
    margin: 0 4.5px 9px;
    background-color: white;
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.08);
    padding: 0;
    min-height: 220px; }
    .mobile-nav__item--level-0.products-item .products-item--link, .mobile-nav__item--level-1.products-item .products-item--link, .mobile-nav__item--level-2.products-item .products-item--link {
      padding: 0;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
      height: 100%; }
    .mobile-nav__item--level-0.products-item .products-item--image, .mobile-nav__item--level-1.products-item .products-item--image, .mobile-nav__item--level-2.products-item .products-item--image {
      padding: 0;
      border-top-right-radius: 20px;
      border-top-left-radius: 20px;
      -ms-flex-positive: 1;
          flex-grow: 1; }
    .mobile-nav__item--level-0.products-item .products-item--title, .mobile-nav__item--level-1.products-item .products-item--title, .mobile-nav__item--level-2.products-item .products-item--title {
      padding: 5px 20px;
      font-size: 1rem;
      line-height: 1.5rem;
      -ms-flex-positive: 1;
          flex-grow: 1; }

@media (max-width: 575px) {
  .products-list--subtitle {
    display: none; }
  .nav .main-nav__item--level-1__meta__menu__list {
    height: auto; }
  .nav .nav__flyout__background {
    height: 85vh; }
  .nav .nav__flyout--level-2 {
    height: 85vh; } }

.map {
  position: relative;
  height: 100%;
  min-height: 650px;
  background: #FFF; }
  .map__info {
    position: absolute;
    right: 2rem;
    bottom: 2rem;
    padding: 1.25rem;
    border-radius: 20px;
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.16);
    line-height: 1.5;
    transition: opacity .3s ease;
    cursor: pointer;
    z-index: 1; }
  .map .leaflet-container {
    height: 100%;
    min-height: 650px;
    background: transparent; }
    .map .leaflet-container a {
      color: #000000; }
  .map .leaflet-pane {
    z-index: 1; }
  .map .leaflet-map-pane {
    opacity: .5; }
  .map .leaflet-drag-target + .map__info {
    opacity: 0;
    pointer-events: none; }

.meta-nav {
  position: relative;
  z-index: 2; }
  .meta-nav[data-hover="false"] .meta-nav__dropdown {
    display: none; }
  .meta-nav:not([data-hover="true"]) .meta-nav__dropdown {
    display: none; }
  .meta-nav__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-pack: end;
        justify-content: flex-end;
    -ms-flex-align: center;
        align-items: center; }
  .meta-nav__item {
    cursor: pointer; }
    .meta-nav__item__icon {
      margin: 0 0.41667rem;
      height: 24px;
      pointer-events: none; }
      .meta-nav__item__icon a {
        pointer-events: all; }
    .meta-nav__item:first-of-type {
      margin-left: 0; }
    .meta-nav__item__search {
      position: relative;
      margin-left: 1.125rem; }
      .meta-nav__item__search__mobile {
        display: none; }
      @media (max-width: 766px) {
        .meta-nav__item__search {
          display: none; }
          .meta-nav__item__search__mobile {
            display: block; } }
      .meta-nav__item__search input {
        background-color: #e9e9e9;
        border: 1px solid #e9e9e9;
        border-radius: 32px;
        padding: 10px 8px 10px 40px;
        pointer-events: none;
        font-size: 0.75em;
        font-family: "IBMPlexMono", Helvetica, sans-serif; }
      .meta-nav__item__search svg {
        position: absolute;
        top: 6px;
        left: 10px;
        pointer-events: none; }
  .meta-nav__dropdown {
    position: fixed;
    right: 0;
    width: 100%;
    overflow: hidden;
    background: #FFF;
    z-index: 2; }
  .meta-nav[data-hover="true"]:after {
    position: absolute;
    right: calc(((100vw - 1440px) / -2) - 2rem);
    top: 4rem;
    content: '';
    width: 200vw;
    height: 200vh;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1; }
  .meta-nav__sub {
    padding-bottom: 2.5rem; }
    .meta-nav__sub:not([data-active="true"]) {
      display: none; }
    .meta-nav__sub .close {
      cursor: pointer;
      position: absolute;
      right: 16px;
      top: 32px;
      width: 32px;
      height: 32px;
      opacity: 0.3; }
      .meta-nav__sub .close:hover {
        opacity: 1; }
      .meta-nav__sub .close:before, .meta-nav__sub .close:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 33px;
        width: 2px;
        background-color: #333; }
      .meta-nav__sub .close:before {
        -ms-transform: rotate(45deg);
            transform: rotate(45deg); }
      .meta-nav__sub .close:after {
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  @media (min-width: 1440px) {
    .meta-nav__dropdown {
      position: absolute;
      width: 1440px;
      padding-top: 1.375rem;
      -ms-transform: translateX(30px);
          transform: translateX(30px); } }
  @media (min-width: 768px) and (max-width: 1439px) {
    .meta-nav[data-hover="true"]:after, .meta-nav:hover:after {
      right: calc(((100vw - 1440px) / -2) - 25vw) !important; }
    .meta-nav__list {
      position: relative;
      z-index: 5; }
    .meta-nav__dropdown {
      padding-top: 2rem; } }
  @media (max-width: 1198px) and (min-width: 400px) {
    .meta-nav__item__icon {
      padding: 0.20833rem; } }
  @media (max-width: 1140px) {
    .meta-nav__list {
      -ms-flex-pack: justify;
          justify-content: space-between; } }
  @media (max-width: 767px) {
    .meta-nav[data-hover="true"]:after {
      display: block;
      right: -1.25rem; }
    .meta-nav__dropdown {
      max-height: 72vh;
      overflow-y: auto;
      box-shadow: 0 1em 1em rgba(0, 0, 0, 0.2); }
      .meta-nav__dropdown hr:first-child {
        display: none; }
    .meta-nav__sub {
      padding-top: 0.625rem; } }

.nav {
  background: #FFF;
  z-index: 2 !important; }
  .nav:before {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    width: 100vw;
    height: 100%;
    background: #FFF;
    content: '';
    z-index: -1; }
  .nav__logo {
    display: block;
    width: 8rem; }
    .nav__logo img {
      display: block; }
  .nav__check {
    display: none; }
  .nav__wrap__order {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
    @media (max-width: 1199px) {
      .nav__wrap__order {
        padding: 1em 2em; } }
    @media (max-width: 767px) {
      .nav__wrap__order {
        padding: 1em !important; } }
  .nav__meta {
    margin-left: auto; }
    .nav__meta__md {
      display: none; }
      .nav__meta__md__menu__control {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
            align-items: center;
        color: #000;
        border: 0;
        background-color: transparent;
        cursor: pointer; }
        .nav__meta__md__menu__control > svg {
          transition: 200ms linear;
          transition-property: opacity; }
          .nav__meta__md__menu__control > svg:first-of-type {
            width: 0;
            opacity: 0;
            visibility: hidden; }
          .nav__meta__md__menu__control > svg:last-of-type {
            padding-left: 12px; }
        .nav__meta__md__menu__control__active > svg:first-of-type {
          width: auto;
          opacity: 1;
          visibility: visible;
          padding-left: 12px; }
        .nav__meta__md__menu__control__active > svg:last-of-type {
          display: none; }
  .nav__logo {
    left: 0;
    z-index: 1; }
  .nav__meta {
    right: 0;
    z-index: 1;
    padding-right: 3em; }
  .nav__main {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    min-width: 320px;
    max-width: 1140px; }
    .nav__main__close {
      position: absolute;
      right: -60px;
      top: 35px;
      z-index: 3;
      display: none;
      cursor: pointer;
      transition: 200ms linear; }
      .nav__main__close__visible {
        display: block; }
        .nav__main__close__visible--level-2 {
          right: -510px; }
  .nav__toggle {
    display: none; }
  @media (max-width: 767px) {
    .nav__meta {
      padding-right: 0 !important; }
      .nav__meta__md {
        margin-left: 0 !important; }
        .nav__meta__md__menu {
          font-size: 0 !important; } }
  @media (max-width: 1199px) {
    .nav__main {
      overflow: hidden;
      width: 0;
      min-width: 0;
      max-height: 0;
      position: initial; }
    .nav__meta {
      padding: 0.625rem 1.25rem; }
      .nav__meta__md {
        display: -ms-flexbox;
        display: flex;
        padding-right: 0;
        z-index: 22; }
        .nav__meta__md__menu {
          -ms-flex-item-align: center;
              -ms-grid-row-align: center;
              align-self: center; }
          .nav__meta__md__menu > a {
            text-decoration: none; } }
  @media (max-width: 1140px) {
    .nav__logo {
      left: 1.25rem; }
    .nav__toggle {
      padding-left: 1.25rem;
      padding-right: 1.25rem; }
    .nav__meta {
      box-sizing: border-box; } }
  .nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    opacity: 0;
    z-index: 2;
    transition-property: opacity;
    pointer-events: none;
    transition: 200ms linear; }
    .nav__overlay__visible {
      pointer-events: auto;
      opacity: 0.5; }
  .nav__flyout {
    width: 0;
    opacity: 0;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100vh;
    max-width: 70vw;
    z-index: 11;
    pointer-events: none;
    transition: 200ms all 150ms linear; }
    @media (max-width: 1199px) {
      .nav__flyout {
        max-width: none;
        left: auto;
        position: fixed;
        top: 0;
        bottom: 0; } }
    .nav__flyout.nav__flyout__visible {
      width: 100%;
      opacity: 1;
      pointer-events: auto;
      right: 0;
      transition: 200ms all linear; }
      @media (max-width: 1199px) {
        .nav__flyout.nav__flyout__visible {
          right: 0;
          width: 375px; } }
      @media (max-width: 767px) {
        .nav__flyout.nav__flyout__visible {
          width: 100% !important; } }
    @media (max-width: 1199px) {
      .nav__flyout {
        top: 0;
        width: 375px;
        right: -375px; } }
    .nav__flyout__background {
      width: 100%;
      height: 100%;
      background-color: #fff;
      z-index: 12;
      position: relative; }
    .nav__flyout--level-2 {
      z-index: 10;
      opacity: 0;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: 450px;
      max-width: 30vw;
      background-color: #fff;
      box-shadow: inset 30px 0px 50px -60px black;
      visibility: hidden;
      pointer-events: none;
      transition: 200ms linear; }
      .nav__flyout--level-2__visible {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        -ms-transform: translateX(100%);
            transform: translateX(100%); }
      .nav__flyout--level-2__close {
        position: absolute;
        top: 1rem;
        right: 1rem; }
    .nav__flyout__separator {
      border-bottom: 1px solid #b5b5b5;
      overflow: hidden;
      position: absolute;
      top: 98px;
      left: 0;
      width: 100%;
      z-index: 22; }
      @media (max-width: 1199px) {
        .nav__flyout__separator {
          top: calc(5.5em - 1px); } }
      @media (max-width: 767px) {
        .nav__flyout__separator {
          top: calc(5.125em - 1px); } }
      @media (max-width: 575px) {
        .nav__flyout__separator {
          top: 4.75em; } }
  .nav__mobile {
    position: absolute;
    right: 0;
    z-index: 22;
    visibility: hidden;
    pointer-events: none;
    opacity: 0;
    top: 6em;
    width: 375px;
    transition: 200ms linear; }
    @media (max-width: 767px) {
      .nav__mobile {
        width: 100%;
        top: 5.625em; } }
    @media (max-width: 575px) {
      .nav__mobile {
        top: 5.25em; } }
    .nav__mobile__logo {
      z-index: 33; }
    .nav__mobile__visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: 200ms all 200ms linear; }

.nav__flyout-level-2__close {
  position: absolute;
  top: 1rem;
  right: 1rem; }

.page-nav:nth-child(1), .page-nav:nth-child(2) {
  margin-top: -1.875rem; }

.page-nav__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  list-style-image: none; }

.page-nav__item {
  white-space: nowrap; }
  .page-nav__item + .page-nav__item {
    margin-left: 2.5rem; }
  .page-nav__item:hover a {
    color: #000000; }
  .page-nav__item > a {
    color: #000000;
    text-decoration: none; }

@media (max-width: 575px) {
  .page-nav__list {
    -ms-flex-pack: start;
        justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 1.25rem; }
  .page-nav__item + .page-nav__item {
    margin-left: 1.25rem; } }

/*  Box */
.Lteaser-content-full {
  width: 100%;
  height: 400px;
  border-radius: 20px;
  background-color: #fff;
  position: relative; }
  .Lteaser-content-full.poster--cookie {
    box-shadow: none; }
    .Lteaser-content-full.poster--cookie .Mask {
      background: #c2dfe5;
      border-radius: 20px; }
  .Lteaser-content-full.poster--img .poster__text h2,
  .Lteaser-content-full.poster--img .poster__text p {
    word-break: break-word;
    color: #fff; }
  @media (max-width: 575px) {
    .Lteaser-content-full.poster--img {
      margin: 16px 0 0 0; }
      .Lteaser-content-full.poster--img .poster__text {
        position: absolute;
        bottom: 40px;
        font-size: 14px; } }
  .Lteaser-content-full.poster--img .Mask {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 50%);
    height: 400px;
    border-radius: 20px;
    width: 100%; }
  .Lteaser-content-full.poster--solid {
    background: rgba(0, 0, 0, 0.08);
    box-shadow: none !important;
    /* @media (max-width: $layout-sm-width) {
      &.has-bg {
        display: flex;
        align-items: end;
        background-size: 75% !important;
        background-position: center -90px !important;
        margin-top: 16px;
        .poster__text {
          padding: 0 32px 60px;
        }
      }
    }
    @media (max-width: $layout-lg-width) {
      &.has-bg {
        background-position: bottom 20px right -35% !important;
      }
    } */ }
    @media (max-width: 575px) {
      .Lteaser-content-full.poster--solid.has-bg {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: end;
            align-items: end;
        background-size: 75% !important;
        background-position: center -90px !important;
        margin-top: 16px; }
        .Lteaser-content-full.poster--solid.has-bg .poster__text {
          padding: 0 32px 60px; } }
    @media (min-width: 767px) and (max-width: 1199px) {
      .Lteaser-content-full.poster--solid.has-bg {
        background-position: bottom 20px right -35% !important; } }
  .Lteaser-content-full .poster__headline,
  .Lteaser-content-full .poster__text h2 {
    margin: 0 0 16px;
    font-family: "FuturaPT-Demi", Helvetica, sans-serif;
    font-size: 32px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.2;
    letter-spacing: -0.2px;
    color: #000; }
  .Lteaser-content-full .poster__text {
    max-width: 340px;
    margin: 16px 0 30px;
    padding: 40px 32px;
    font-family: "FuturaPT-Book", Helvetica, sans-serif;
    font-size: 20px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: 1.5;
    letter-spacing: -0.1px;
    color: #000; }
  .Lteaser-content-full .poster__cta {
    margin: 16px 0 30px;
    padding: 0 32px;
    position: absolute;
    bottom: 0; }
  .Lteaser-content-full .poster__subline {
    padding: 40px 32px;
    font-family: IBMPlexMono;
    font-size: 12px; }
  @media (max-width: 575px) {
    .Lteaser-content-full .poster__text {
      font-size: 14px; } }
  @media (max-width: 767px) {
    .Lteaser-content-full .poster__text {
      font-size: 16px; }
    .Lteaser-content-full .poster__headline,
    .Lteaser-content-full .poster__text h2 {
      font-size: 36px; } }

@media (max-width: 575px) {
  .poster--blank {
    height: 270px; } }

/* Anpassungen Grid */
.grid__col--3 .poster__text h2,
.grid__col--3 .poster__headline {
  font-size: 32px;
  word-wrap: break-word; }

.grid__col--3 .poster--blank .button {
  display: block;
  color: transparent;
  background-image: url(./assets/_processed_/icon-right.5fbcb.svg);
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px; }

.grid__col--6 .poster__text h2,
.grid__col--6 .poster__headline {
  font-size: 32px; }

/* Home */
.home-background {
  position: relative; }
  .home-background .grid {
    margin: 0; }
  .home-background div.grid__col--6:nth-child(2) {
    margin: 0 0 0; }
    @media (min-width: 767px) {
      .home-background div.grid__col--6:nth-child(2) {
        margin-top: 20.5em; } }
    @media (min-width: 1199px) {
      .home-background div.grid__col--6:nth-child(2) {
        margin-top: 3.5em; } }
  .home-background div.grid__col--6:nth-child(1):first-child {
    margin-bottom: 0; }
    .home-background div.grid__col--6:nth-child(1):first-child header {
      display: block;
      word-break: break-word;
      -webkit-hyphens: auto;
          -ms-hyphens: auto;
              hyphens: auto;
      width: 100%; }
    @media (min-width: 767px) {
      .home-background div.grid__col--6:nth-child(1):first-child {
        margin-bottom: 16em; }
        .home-background div.grid__col--6:nth-child(1):first-child header {
          width: auto; } }
    @media (min-width: 1199px) {
      .home-background div.grid__col--6:nth-child(1):first-child {
        margin-bottom: 5em; } }
  .home-background:before {
    display: block;
    position: absolute;
    width: 100vw;
    height: 90%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    border-radius: 20px;
    top: -2rem;
    left: 50%;
    background-color: white;
    content: '';
    pointer-events: none;
    z-index: -1; }
    .theme--green .home-background:before {
      background-color: #cfe2d0; }
    [class*="theme--"] .theme--green .home-background:before {
      background-color: #cfe2d0; }
    .theme--yellow .home-background:before {
      background-color: #fef4c2; }
    [class*="theme--"] .theme--yellow .home-background:before {
      background-color: #fef4c2; }
    .theme--blue .home-background:before {
      background-color: #c2dfe5; }
    [class*="theme--"] .theme--blue .home-background:before {
      background-color: #c2dfe5; }
    .theme--violet .home-background:before {
      background-color: #eac4be; }
    [class*="theme--"] .theme--violet .home-background:before {
      background-color: #eac4be; }
    .theme--orange .home-background:before {
      background-color: #fabd96; }
    [class*="theme--"] .theme--orange .home-background:before {
      background-color: #fabd96; }
    .theme--red .home-background:before {
      background-color: #f09682; }
    [class*="theme--"] .theme--red .home-background:before {
      background-color: #f09682; }
    .theme--gray .home-background:before {
      background-color: rgba(0, 0, 0, 0.239); }
    [class*="theme--"] .theme--gray .home-background:before {
      background-color: rgba(0, 0, 0, 0.239); }
    .theme--black .home-background:before {
      background-color: transparent; }
    [class*="theme--"] .theme--black .home-background:before {
      background-color: transparent; }
    .theme--default .home-background:before {
      background-color: white; }
    [class*="theme--"] .theme--default .home-background:before {
      background-color: white; }
    @media (min-width: 767px) {
      .home-background:before {
        width: calc(100vw - 3.75rem); } }
    @media (min-width: 1199px) {
      .home-background:before {
        width: calc(100vw - 6rem); } }

.home,
.home-left {
  padding: 0 0.7rem; }
  .home .Lteaser-content-full,
  .home-left .Lteaser-content-full {
    height: 432px;
    width: 100%;
    margin: 0 0 24px 0; }
    .home .Lteaser-content-full .Mask,
    .home-left .Lteaser-content-full .Mask {
      height: 432px; }
    @media (min-width: 1199px) {
      .home .Lteaser-content-full,
      .home-left .Lteaser-content-full {
        height: 622px; }
        .home .Lteaser-content-full .Mask,
        .home-left .Lteaser-content-full .Mask {
          height: 622px; } }
  .home .poster__text,
  .home-left .poster__text {
    position: absolute;
    bottom: 40px; }
  @media (min-width: 768px) and (max-width: 850px) {
    .home .poster__text,
    .home-left .poster__text {
      max-width: 280px; }
    .home .poster__headline,
    .home-left .poster__headline {
      font-size: 30px; } }

.home-left .Lteaser-content-full {
  margin-right: 0;
  margin-left: auto; }

/* Alle Produkte */
.family__content .poster__text,
.family__products .poster__text {
  position: absolute;
  bottom: 40px;
  font-size: 16px;
  padding: 24px 32px; }

.family__content .poster__subline,
.family__products .poster__subline {
  padding: 30px 32px;
  font-family: IBMPlexMono;
  font-size: 12px; }

.family__products .Lteaser-content-full {
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.16); }

.family__products .poster__headline {
  margin: 0;
  font-family: "FuturaPT-Demi", Helvetica, sans-serif;
  font-size: 24px;
  position: absolute;
  bottom: 0; }

.family__products .poster__text {
  position: absolute;
  bottom: 0; }

.productgroup-box {
  background-color: white;
  background-color: #c2dfe5;
  margin: 0 -40%;
  padding: 0 40% 220px; }
  .theme--green .productgroup-box {
    background-color: #cfe2d0; }
  [class*="theme--"] .theme--green .productgroup-box {
    background-color: #cfe2d0; }
  .theme--yellow .productgroup-box {
    background-color: #fef4c2; }
  [class*="theme--"] .theme--yellow .productgroup-box {
    background-color: #fef4c2; }
  .theme--blue .productgroup-box {
    background-color: #c2dfe5; }
  [class*="theme--"] .theme--blue .productgroup-box {
    background-color: #c2dfe5; }
  .theme--violet .productgroup-box {
    background-color: #eac4be; }
  [class*="theme--"] .theme--violet .productgroup-box {
    background-color: #eac4be; }
  .theme--orange .productgroup-box {
    background-color: #fabd96; }
  [class*="theme--"] .theme--orange .productgroup-box {
    background-color: #fabd96; }
  .theme--red .productgroup-box {
    background-color: #f09682; }
  [class*="theme--"] .theme--red .productgroup-box {
    background-color: #f09682; }
  .theme--gray .productgroup-box {
    background-color: rgba(0, 0, 0, 0.239); }
  [class*="theme--"] .theme--gray .productgroup-box {
    background-color: rgba(0, 0, 0, 0.239); }
  .theme--black .productgroup-box {
    background-color: transparent; }
  [class*="theme--"] .theme--black .productgroup-box {
    background-color: transparent; }
  .theme--default .productgroup-box {
    background-color: white; }
  [class*="theme--"] .theme--default .productgroup-box {
    background-color: white; }
  .productgroup-box .productgroup-headline {
    padding-top: 120px;
    text-align: center;
    font-size: 72px; }
  .productgroup-box h2 {
    margin: 64px 0; }
  @media (max-width: 767px) {
    .productgroup-box .productgroup-headline {
      font-size: 48px; } }
  @media (max-width: 575px) {
    .productgroup-box .productgroup-headline {
      font-size: 40px; } }

.product-table, .content-table {
  margin-bottom: 144px; }
  .product-table td, .content-table td {
    vertical-align: middle; }
  .product-table a, .content-table a {
    color: inherit; }
  .product-table__head__img, .content-table__head__img {
    width: 5.5em; }
  .product-table__head__link, .content-table__head__link {
    width: 0; }
  .product-table__body__img img, .content-table__body__img img {
    width: 70px;
    height: 70px;
    background: #ffffff;
    border-radius: 10px;
    padding: 9px;
    max-width: 70px; }
  .product-table__body__name, .content-table__body__name {
    width: 12em;
    font-family: "FuturaPT-Demi", Helvetica, sans-serif; }
  .product-table__body__stat1, .content-table__body__stat1 {
    width: 8em; }
  .product-table__body__stat2, .content-table__body__stat2 {
    width: 8em; }
  .product-table__body__stat3, .content-table__body__stat3 {
    width: 20em;
    font-size: 1em; }
  @media (max-width: 767px) {
    .product-table, .content-table {
      margin-bottom: 0; }
      .product-table__body__stat3, .content-table__body__stat3 {
        width: 11em;
        font-size: 0.875em; } }
  @media (max-width: 767px) {
    .product-table, .content-table {
      margin-bottom: 0; }
      .product-table__head, .product-table__head__stat, .product-table__body__stat1, .product-table__body__stat2, .product-table__body__stat3, .content-table__head, .content-table__head__stat, .content-table__body__stat1, .content-table__body__stat2, .content-table__body__stat3 {
        display: none; }
      .product-table__body__img, .content-table__body__img {
        width: 4em; }
      .product-table__body__name, .content-table__body__name {
        font-size: 1.2em; } }

.products__summary {
  font-size: .75em;
  line-height: 1.25rem;
  color: #000;
  margin: 1rem 0 0;
  font-family: "IBMPlexMono", Helvetica, sans-serif;
  text-align: left; }

.products__filter {
  margin-bottom: 1.25rem; }

.products__title {
  text-align: center;
  font-family: "FuturaPT-Demi", Helvetica, sans-serif;
  font-size: 3rem;
  line-height: 3.5rem;
  letter-spacing: -0.3px;
  margin: 2rem 0 3.5rem; }

.products__list {
  transition: opacity 1s ease; }
  .products__list > * + * {
    margin-top: 6rem; }

.products[data-loading="true"] {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .products[data-loading="true"] .products__list {
    display: none; }

@media (min-width: 768px) {
  .products__filter {
    margin-bottom: 2.5rem; }
  .products__title {
    text-align: center;
    font-family: "FuturaPT-Demi", Helvetica, sans-serif;
    font-size: 4.5rem;
    line-height: 5.25rem;
    letter-spacing: -0.8px;
    margin: 5rem 0 6.5rem; } }

@media (min-width: 1200px) {
  .products__summary {
    text-align: center; }
  .products__title {
    text-align: center;
    font-family: "FuturaPT-Demi", Helvetica, sans-serif;
    font-size: 5.5rem;
    line-height: 5.75rem;
    letter-spacing: -1.4px;
    margin: 5rem 0 6.5rem; } }

.project-data,
.project-header {
  max-width: 1140px;
  width: 100%;
  padding: 0 20px;
  background-color: white; }
  .theme--green .project-data, .theme--green
  .project-header {
    background-color: #cfe2d0; }
  [class*="theme--"] .theme--green .project-data, [class*="theme--"] .theme--green
  .project-header {
    background-color: #cfe2d0; }
  .theme--yellow .project-data, .theme--yellow
  .project-header {
    background-color: #fef4c2; }
  [class*="theme--"] .theme--yellow .project-data, [class*="theme--"] .theme--yellow
  .project-header {
    background-color: #fef4c2; }
  .theme--blue .project-data, .theme--blue
  .project-header {
    background-color: #c2dfe5; }
  [class*="theme--"] .theme--blue .project-data, [class*="theme--"] .theme--blue
  .project-header {
    background-color: #c2dfe5; }
  .theme--violet .project-data, .theme--violet
  .project-header {
    background-color: #eac4be; }
  [class*="theme--"] .theme--violet .project-data, [class*="theme--"] .theme--violet
  .project-header {
    background-color: #eac4be; }
  .theme--orange .project-data, .theme--orange
  .project-header {
    background-color: #fabd96; }
  [class*="theme--"] .theme--orange .project-data, [class*="theme--"] .theme--orange
  .project-header {
    background-color: #fabd96; }
  .theme--red .project-data, .theme--red
  .project-header {
    background-color: #f09682; }
  [class*="theme--"] .theme--red .project-data, [class*="theme--"] .theme--red
  .project-header {
    background-color: #f09682; }
  .theme--gray .project-data, .theme--gray
  .project-header {
    background-color: rgba(0, 0, 0, 0.239); }
  [class*="theme--"] .theme--gray .project-data, [class*="theme--"] .theme--gray
  .project-header {
    background-color: rgba(0, 0, 0, 0.239); }
  .theme--black .project-data, .theme--black
  .project-header {
    background-color: transparent; }
  [class*="theme--"] .theme--black .project-data, [class*="theme--"] .theme--black
  .project-header {
    background-color: transparent; }
  .theme--default .project-data, .theme--default
  .project-header {
    background-color: white; }
  [class*="theme--"] .theme--default .project-data, [class*="theme--"] .theme--default
  .project-header {
    background-color: white; }

.project-header:after {
  height: 4rem; }

.project-data {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  margin-top: -10% !important;
  padding: 1% 5% !important;
  z-index: 1; }
  .project-data .contenttable tr:first-child {
    border-top: 1px solid rgba(0, 0, 0, 0.239); }

.project-header {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  margin-top: -15% !important;
  padding: 5% 5% !important;
  z-index: 1; }
  .project-header h1 {
    font-size: 7vw;
    max-width: 941px;
    margin: 0 auto 0.9em auto; }
  .project-header .subline {
    margin-bottom: 1em; }

.Lteaser-content-full {
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.16); }

@media (max-width: 767px) {
  .section__content .ref-hero .hero__content {
    height: 365px; }
  .project-header {
    margin-top: -25% !important; }
    .project-header h1 {
      font-size: 5vw; }
  .project-data {
    margin-top: -25% !important; } }

@media (max-width: 575px) {
  .project-header {
    margin-top: -25% !important; }
    .project-header h1 {
      font-size: clamp(40px, 5vw, 42px); } }

#product-families .grid__col.grid__col--12,
#product-families .grid__col .grid__col--6 {
  margin-bottom: 1rem; }

#product-families .grid__col.grid__col--6 {
  margin-left: 0.5rem; }

#product-families .text-center {
  margin-top: 3rem; }

.references__filter {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  margin-bottom: 1.875rem; }
  .references__filter__select {
    min-width: 16em;
    margin-left: 1.25rem; }

.references__modes {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: end;
      justify-content: flex-end;
  margin-bottom: 1.25rem; }
  .references__modes__item {
    width: 2em; }
    .references__modes__item + .references__modes__item {
      margin-left: 0.625rem; }

.references__grid {
  transition: opacity 1s ease; }

.references__item {
  display: block;
  position: relative;
  height: 100%;
  overflow: hidden; }
  .references__item.Lteaser-content-full {
    box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.16); }
    @media (max-width: 575px) {
      .references__item.Lteaser-content-full img {
        height: 185px; } }
  .references__item__img {
    object-fit: cover;
    width: 100%;
    height: 313px; }
    @media (max-width: 767px) {
      .references__item__img {
        height: 220px; } }
    @media (max-width: 575px) {
      .references__item__img {
        height: 199px; } }
    @media (max-width: 375px) {
      .references__item__img {
        height: 180px; } }
  .references__item__title {
    font-size: 2rem;
    color: #000;
    position: absolute;
    bottom: 63px;
    padding: 0 32px;
    margin: 0; }
    @media (max-width: 1199px) {
      .references__item__title {
        top: 335px;
        bottom: unset; } }
    @media (max-width: 767px) {
      .references__item__title {
        top: 235px;
        bottom: unset; } }
    @media (max-width: 575px) {
      .references__item__title {
        top: 200px;
        height: 205px; } }
    @media (max-width: 375px) {
      .references__item__title {
        top: 200px;
        bottom: unset; } }
  .references__item__text {
    font-size: 1rem;
    padding: 0 32px;
    margin: 0;
    position: absolute;
    bottom: 29px; }

.references__more {
  padding: 1.25rem 0 10rem;
  text-align: center; }
  .references__more > button {
    font-size: 2em; }

.references[data-loading='true'] {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .references[data-loading='true'] .references__grid {
    opacity: 0.2; }

@media (max-width: 1140px) {
  .references__filter {
    display: block; }
    .references__filter__select {
      min-width: 0;
      width: 100%;
      margin: 1.25rem 0 0; } }

@media (min-width: 1199px) {
  .slick-slide .references__item img {
    height: 344px; }
  .slick-slide .references__item__title {
    top: unset;
    bottom: 63px; } }

@media (max-width: 1198px) {
  .slick-slide .references__item__title {
    top: 205px;
    bottom: unset; } }

.search__form {
  position: relative; }
  .search__form .meta-nav__item__search svg {
    top: 20px;
    left: 20px; }

.search__wrapper {
  margin: 0 auto;
  position: relative;
  height: 100%;
  min-height: 2rem;
  max-width: 555px;
  width: 267px; }
  .search__wrapper--sidebar .search__suggestions {
    position: relative; }
    .search__wrapper--sidebar .search__suggestions__list {
      padding-top: 0;
      box-shadow: none; }
  .search__wrapper > svg {
    position: absolute;
    top: 50%;
    left: 1em;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    width: 1.5em;
    height: 1.5em;
    z-index: 3; }

.search__input {
  position: relative;
  width: 100%;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.5;
  border: none;
  border-radius: 2em;
  outline: none;
  box-sizing: border-box;
  -webkit-appearance: none;
  background-color: #e9e9e9;
  padding: 0.5rem 0.5rem 0.5rem 3em !important;
  z-index: 2; }
  .search__input:-ms-input-placeholder {
    color: #000 !important; }
  .search__input::placeholder {
    color: #000 !important; }
  .search__input:placeholder-shown + .search__suggestions .search__suggestions__list {
    padding: 0; }
  .search__input:focus {
    background-color: #FFF;
    border: 2px solid #e9e9e9; }
  .search__input:focus + .search__suggestions {
    height: auto;
    z-index: 1; }
    .search__input:focus + .search__suggestions .search__suggestions__list {
      width: 100%;
      visibility: visible; }
  .search__input .search__suggestions__list:not(:empty) {
    border: 1px solid #b5b5b5;
    border-radius: 2rem; }

.search__submit {
  position: absolute;
  right: 0;
  -ms-transform: translateY(-150%);
      transform: translateY(-150%);
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer; }
  .search__submit:hover {
    color: #000000; }

.search__suggestions {
  height: 0;
  transition: height 300ms ease-in-out;
  margin: 0 auto;
  font-size: .85em;
  width: 100%;
  max-width: 750px; }
  .search__suggestions__label {
    margin-right: 0.625rem;
    width: 7.5rem; }
  .search__suggestions__list {
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-image: none;
    visibility: collapse;
    transition: visibility 300ms ease-in-out 100ms;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    width: 100%;
    position: absolute;
    z-index: 1;
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.08);
    background-color: #FFF;
    border-bottom-left-radius: 2rem;
    border-bottom-right-radius: 2em;
    top: 2em;
    padding-top: 2em;
    padding-bottom: 1em; }
  .search__suggestions__item {
    float: left;
    padding: .75em 1em;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center; }
    .search__suggestions__item + .search__suggestions__item {
      /*margin-left: $gap/2;*/
      float: left; }
    .search__suggestions__item a {
      font-family: "IBMPlexMono", Helvetica, sans-serif;
      text-decoration: none;
      margin-left: 0.625rem;
      color: #000; }

.search__results {
  margin: 2.5rem 0;
  transition: opacity 1s ease; }
  .search__results__more {
    margin-top: 5rem; }
  .search__results img {
    margin: 0 auto; }
  .search__results a {
    text-decoration: none; }
  .search__results .Lteaser-content-full {
    box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.16);
    position: relative; }
  .search__results .tabs__products h3 {
    font-size: 1.5rem;
    color: #000;
    position: absolute;
    bottom: 40px;
    padding: 0 32px; }
  .search__results .tabs__products .search_img {
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    display: -ms-flexbox;
    display: flex;
    height: 100%; }
  .search__results .tabs__products img {
    max-width: 184px; }
  .search__results .tabs__references .Lteaser-content-full {
    height: 432px; }
  .search__results .tabs__references img {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: 313px; }
  .search__results .tabs__references h3 {
    font-size: 2rem;
    color: #000;
    position: absolute;
    bottom: 63px;
    padding: 0 32px;
    margin: 0; }
  .search__results .tabs__references p {
    font-size: 1rem;
    padding: 0 32px;
    margin: 0;
    position: absolute;
    bottom: 29px; }
  @media (max-width: 1024px) {
    .search__results .tabs__references .Lteaser-content-full {
      height: 336px; }
    .search__results .tabs__references img {
      height: 199px; } }
  @media (max-width: 810px) {
    .search__results .tabs__references h3 {
      font-size: 24px;
      font-size: clamp(22px, 4vw, 24px); } }
  .search__results .tabs__topics .Lteaser-content-full {
    height: 323px; }
  .search__results .tabs__topics .grid {
    padding: 32px; }
  .search__results .tabs__topics img {
    height: auto;
    border-radius: 20px; }
  .search__results .tabs__topics h3 {
    font-size: 1.5rem;
    color: #000; }
  @media (max-width: 767px) {
    .search__results .tabs__topics .Lteaser-content-full {
      height: 450px; }
      .search__results .tabs__topics .Lteaser-content-full .grid {
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; } }
  @media (max-width: 575px) {
    .search__results .tabs__topics .Lteaser-content-full {
      min-height: 323px;
      height: auto; }
      .search__results .tabs__topics .Lteaser-content-full .grid {
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; } }
  @media (max-width: 767px) {
    .search__results .tabs__topics .Lteaser-content-full img {
      height: 186px;
      width: 186px; } }

.search[data-loading="true"] {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }
  .search[data-loading="true"] .search__results {
    opacity: .2; }

@media (max-width: 575px) {
  .search__submit {
    -ms-transform: translateY(0.3125rem);
        transform: translateY(0.3125rem); }
  .search__suggestions__label {
    width: 5.5rem; }
  .search__suggestions__list {
    display: -ms-flexbox;
    display: flex;
    width: 12rem; }
  .search__suggestions__item + .search__suggestions__item {
    margin-left: 0; }
  .search__results__more {
    display: block; } }

@media (min-width: 768px) {
  .search__wrapper {
    margin: 0 auto;
    position: relative;
    height: 100%;
    min-height: 2rem;
    max-width: 555px;
    width: 100%; }
    .search__wrapper > svg {
      position: absolute;
      top: 50%;
      left: 1.5em;
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
      width: 1.5em;
      height: 1.5em; }
  .search__input {
    display: block;
    width: 100%;
    font-size: 1.5em;
    font-weight: 300;
    line-height: 1.5;
    border: none;
    outline: none;
    box-sizing: border-box;
    -webkit-appearance: none;
    background-color: #e9e9e9;
    padding: 0.5rem 0.5rem 0.5rem 3em !important; } }

@media (min-width: 1200px) {
  .search__wrapper {
    max-width: 750px; } }

.section {
  position: relative;
  height: 100%;
  min-width: 100%;
  max-width: 100%; }
  .section__content {
    position: relative;
    height: 100%;
    margin: 0 auto;
    padding: 0 1.875rem;
    min-width: auto;
    max-width: 1200px; }
    @media (min-width: 767px) {
      .section__content {
        padding: 0 3.75rem; } }
    @media (min-width: 1199px) {
      .section__content {
        padding: 0 6rem; } }
  .section__fullpage {
    width: 100%;
    margin: 0 auto 2rem; }

.select {
  position: relative;
  font-size: .85em;
  font-weight: normal;
  padding: 0;
  margin: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border: 1px #FFF solid; }
  .select[data-active="true"] .select__head__indicator {
    -ms-transform: scaleY(-1);
        transform: scaleY(-1); }
  .select[data-selected="true"] .select__head {
    color: #FFF;
    background-color: #FFF; }
    .theme--green .select[data-selected="true"] .select__head {
      background-color: #6e863d; }
    [class*="theme--"] .theme--green .select[data-selected="true"] .select__head {
      background-color: #6e863d; }
    .theme--yellow .select[data-selected="true"] .select__head {
      background-color: #fdda25; }
    [class*="theme--"] .theme--yellow .select[data-selected="true"] .select__head {
      background-color: #fdda25; }
    .theme--blue .select[data-selected="true"] .select__head {
      background-color: #9897c8; }
    [class*="theme--"] .theme--blue .select[data-selected="true"] .select__head {
      background-color: #9897c8; }
    .theme--violet .select[data-selected="true"] .select__head {
      background-color: #966481; }
    [class*="theme--"] .theme--violet .select[data-selected="true"] .select__head {
      background-color: #966481; }
    .theme--orange .select[data-selected="true"] .select__head {
      background-color: #ff9802; }
    [class*="theme--"] .theme--orange .select[data-selected="true"] .select__head {
      background-color: #ff9802; }
    .theme--red .select[data-selected="true"] .select__head {
      background-color: #c05142; }
    [class*="theme--"] .theme--red .select[data-selected="true"] .select__head {
      background-color: #c05142; }
    .theme--gray .select[data-selected="true"] .select__head {
      background-color: rgba(0, 0, 0, 0.561); }
    [class*="theme--"] .theme--gray .select[data-selected="true"] .select__head {
      background-color: rgba(0, 0, 0, 0.561); }
    .theme--black .select[data-selected="true"] .select__head {
      background-color: #000000; }
    [class*="theme--"] .theme--black .select[data-selected="true"] .select__head {
      background-color: #000000; }
    .theme--default .select[data-selected="true"] .select__head {
      background-color: #FFF; }
    [class*="theme--"] .theme--default .select[data-selected="true"] .select__head {
      background-color: #FFF; }
    .select[data-selected="true"] .select__head__indicator {
      -ms-transform: none;
          transform: none; }
      .select[data-selected="true"] .select__head__indicator:after {
        width: .4em;
        border-width: 3px; }
  .select__head {
    position: relative;
    padding: 0.625rem 1.875rem 0.625rem 0.625rem;
    text-transform: uppercase;
    font-weight: normal;
    cursor: pointer;
    /*@include theme-color(background-color, light);*/
    background: #ffffff;
    border: solid 1px #000000; }
    .select__head__indicator {
      position: absolute;
      right: 0.625rem;
      top: 1.25rem; }
      .select__head__indicator:after {
        position: absolute;
        content: "";
        width: 0.75em;
        height: 0.75em;
        border: 1px currentColor solid;
        border-right: none;
        border-bottom: none;
        -ms-transform: translate(-0.375em, -0.6em) rotate(225deg);
            transform: translate(-0.375em, -0.6em) rotate(225deg);
        right: 0;
        border-width: 2px; }
  .select__body {
    position: relative;
    max-height: 15em;
    overflow-y: auto;
    border-top: 1px #FFF solid;
    border-width: 2px;
    /* @include theme-color(background-color, light);*/
    background: #ffffff; }
  .select__list {
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-image: none; }
  .select__item {
    position: relative;
    font-weight: normal;
    min-width: 150px; }
    @media (min-width: 767px) {
      .select__item {
        min-width: auto; } }
    .select__item__box {
      display: block;
      position: absolute;
      margin: 0.8em;
      width: 1em;
      height: 1em;
      border: 1px solid #000;
      background: #ffffff; }
    .select__item__input {
      display: none; }
      .select__item__input:checked + .select__item__box:before {
        position: absolute;
        left: 50%;
        top: 35%;
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        content: "\D7";
        line-height: 0; }
      .select__item__input[disabled] ~ .select__item__label {
        opacity: .3;
        cursor: not-allowed; }
    .select__item__label {
      display: block;
      position: relative;
      cursor: pointer;
      padding: 0.625rem;
      padding-left: 2.75em;
      z-index: 1; }
  .select__footer {
    padding: 0.625rem;
    /*@include theme-color(background-color, light);*/
    background: #ffffff; }
  .select__close {
    width: 100%;
    padding: 0.625rem;
    box-sizing: border-box;
    text-align: center;
    border: none;
    outline: none;
    text-transform: uppercase;
    letter-spacing: .1em;
    cursor: pointer;
    background-color: #FFF; }
    .theme--green .select__close {
      background-color: #6e863d; }
    [class*="theme--"] .theme--green .select__close {
      background-color: #6e863d; }
    .theme--yellow .select__close {
      background-color: #fdda25; }
    [class*="theme--"] .theme--yellow .select__close {
      background-color: #fdda25; }
    .theme--blue .select__close {
      background-color: #9897c8; }
    [class*="theme--"] .theme--blue .select__close {
      background-color: #9897c8; }
    .theme--violet .select__close {
      background-color: #966481; }
    [class*="theme--"] .theme--violet .select__close {
      background-color: #966481; }
    .theme--orange .select__close {
      background-color: #ff9802; }
    [class*="theme--"] .theme--orange .select__close {
      background-color: #ff9802; }
    .theme--red .select__close {
      background-color: #c05142; }
    [class*="theme--"] .theme--red .select__close {
      background-color: #c05142; }
    .theme--gray .select__close {
      background-color: rgba(0, 0, 0, 0.561); }
    [class*="theme--"] .theme--gray .select__close {
      background-color: rgba(0, 0, 0, 0.561); }
    .theme--black .select__close {
      background-color: #000000; }
    [class*="theme--"] .theme--black .select__close {
      background-color: #000000; }
    .theme--default .select__close {
      background-color: #FFF; }
    [class*="theme--"] .theme--default .select__close {
      background-color: #FFF; }
  @media (min-width: 1141px) {
    .select__mask {
      position: absolute;
      width: calc(100% + 4px);
      left: 0px;
      height: 19.95em;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
              clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
      pointer-events: none; }
    .select__dropdown {
      position: absolute;
      width: calc(100% - 6px);
      -ms-transform: translateY(-101%);
          transform: translateY(-101%);
      transition: transform .1s ease-in;
      border: 1px solid #000;
      border-top: none; }
    .select[data-active="true"] {
      z-index: 2; }
      .select[data-active="true"] .select__mask {
        pointer-events: auto; }
      .select[data-active="true"] .select__dropdown {
        transition: transform .3s ease-out;
        -ms-transform: none;
            transform: none; } }
  @media (max-width: 1140px) {
    .select__dropdown {
      display: none; }
    .select__body {
      max-height: none; }
    .select[data-active="true"] .select__dropdown {
      display: block; } }
  @media all and (-ms-high-contrast: none) {
    .select__dropdown {
      transition: none; }
    .select:not([data-active="true"]) .select__dropdown {
      visibility: hidden;
      pointer-events: none; } }

.site {
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden; }
  .site__content {
    position: relative; }

.social-media-nav__list {
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  list-style-image: none; }

.social-media-nav__item {
  width: 2rem; }
  .social-media-nav__item + .social-media-nav__item {
    margin-left: 1.25rem; }

@media (max-width: 1140px) {
  .social-media-nav__list {
    -ms-flex-pack: center;
        justify-content: center; } }

.subline {
  font-family: "IBMPlexMono", Helvetica, sans-serif;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: normal;
  white-space: nowrap;
  color: #000000; }

.tabs {
  position: relative; }
  .tabs__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
        justify-content: space-between;
    list-style: none;
    margin: 0;
    padding: 0;
    list-style-image: none; }
  .tabs__item {
    font-size: 2em;
    font-weight: normal;
    cursor: pointer;
    color: #999; }
    .tabs__item[data-active="true"] {
      color: #000000; }
  .tabs__contents {
    margin-top: 1.25rem; }
  .tabs__content:not([data-active="true"]) {
    display: none; }
  @media (max-width: 575px) {
    .tabs__item {
      font-size: .8em; } }
  .tabs__topics img,
  .tabs__references img {
    object-fit: cover;
    height: 169px;
    width: 100%; }
  .tabs .tabs__list {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-align: baseline;
        align-items: baseline;
    border-bottom: 1px solid rgba(0, 0, 0, 0.16);
    margin: 3rem 0; }
    .tabs .tabs__list .tabs__item {
      text-align: center;
      font-family: "FuturaPT-Book", Helvetica, sans-serif;
      font-size: 1.25em;
      line-height: 1.875em;
      letter-spacing: -0.1px;
      -ms-flex-positive: 1;
          flex-grow: 1;
      margin: 0 0.625rem; }
      .tabs .tabs__list .tabs__item[data-active="true"] {
        font-family: "FuturaPT-Demi", Helvetica, sans-serif; }
      .tabs .tabs__list .tabs__item:first-child {
        margin: 0 0.625rem 0 0; }
      .tabs .tabs__list .tabs__item:last-child {
        margin: 0 0 0 0.625rem; }
      .tabs .tabs__list .tabs__item[data-active="true"] .tabs__item--indicator {
        background-color: #000;
        border-color: #000; }
      .tabs .tabs__list .tabs__item--indicator {
        display: block;
        width: 100%;
        height: 4px;
        background-color: transparent; }
      .tabs .tabs__list .tabs__item__label {
        padding: 0.625rem 0 1.25rem 0;
        white-space: nowrap; }

.family__img {
  display: block;
  position: relative;
  width: 100%;
  top: 2rem;
  z-index: 1; }

.family__links {
  margin-top: 1.25rem; }

.family__content {
  position: relative;
  height: 400px;
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.16);
  background: none;
  left: unset;
  overflow: hidden; }
  .family__content .button--secondary {
    margin-right: 0.25em; }

.family__products a {
  text-decoration: none; }

.family__products .grid__col--2 {
  text-align: center; }
  .family__products .grid__col--2 img {
    z-index: 1;
    transition: transform 0.75s;
    -ms-transform-origin: top center;
        transform-origin: top center; }
  .family__products .grid__col--2 small {
    z-index: 2; }
  .family__products .grid__col--2:hover img {
    -ms-transform: scale(1.25);
        transform: scale(1.25); }

@media (max-width: 1199px) {
  .family__img {
    top: 3rem;
    width: 50%;
    margin-left: auto;
    margin-right: 2rem; }
  .family__content {
    margin-top: 0;
    padding-right: 0;
    left: 0; } }

@media (max-width: 575px) {
  .family__img {
    top: 2rem;
    width: 100%;
    margin: 0;
    margin-right: 0; }
  .family__links {
    max-width: 50%; }
  .family__content {
    margin-top: 0; } }

.family .family-background {
  position: absolute;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  top: 0;
  left: 0;
  right: 0;
  z-index: -5;
  background-color: white; }
  .theme--green .family .family-background {
    background-color: #cfe2d0; }
  [class*="theme--"] .theme--green .family .family-background {
    background-color: #cfe2d0; }
  .theme--yellow .family .family-background {
    background-color: #fef4c2; }
  [class*="theme--"] .theme--yellow .family .family-background {
    background-color: #fef4c2; }
  .theme--blue .family .family-background {
    background-color: #c2dfe5; }
  [class*="theme--"] .theme--blue .family .family-background {
    background-color: #c2dfe5; }
  .theme--violet .family .family-background {
    background-color: #eac4be; }
  [class*="theme--"] .theme--violet .family .family-background {
    background-color: #eac4be; }
  .theme--orange .family .family-background {
    background-color: #fabd96; }
  [class*="theme--"] .theme--orange .family .family-background {
    background-color: #fabd96; }
  .theme--red .family .family-background {
    background-color: #f09682; }
  [class*="theme--"] .theme--red .family .family-background {
    background-color: #f09682; }
  .theme--gray .family .family-background {
    background-color: rgba(0, 0, 0, 0.239); }
  [class*="theme--"] .theme--gray .family .family-background {
    background-color: rgba(0, 0, 0, 0.239); }
  .theme--black .family .family-background {
    background-color: transparent; }
  [class*="theme--"] .theme--black .family .family-background {
    background-color: transparent; }
  .theme--default .family .family-background {
    background-color: white; }
  [class*="theme--"] .theme--default .family .family-background {
    background-color: white; }
  .family .family-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; }
  @media (max-width: 767px) {
    .family .family-background img {
      width: auto; } }

.reference-box,
.product-box {
  background-color: white;
  background-color: #eac4be;
  margin: 0 -40%;
  padding: 0 40% 120px; }
  .theme--green .reference-box, .theme--green
  .product-box {
    background-color: #cfe2d0; }
  [class*="theme--"] .theme--green .reference-box, [class*="theme--"] .theme--green
  .product-box {
    background-color: #cfe2d0; }
  .theme--yellow .reference-box, .theme--yellow
  .product-box {
    background-color: #fef4c2; }
  [class*="theme--"] .theme--yellow .reference-box, [class*="theme--"] .theme--yellow
  .product-box {
    background-color: #fef4c2; }
  .theme--blue .reference-box, .theme--blue
  .product-box {
    background-color: #c2dfe5; }
  [class*="theme--"] .theme--blue .reference-box, [class*="theme--"] .theme--blue
  .product-box {
    background-color: #c2dfe5; }
  .theme--violet .reference-box, .theme--violet
  .product-box {
    background-color: #eac4be; }
  [class*="theme--"] .theme--violet .reference-box, [class*="theme--"] .theme--violet
  .product-box {
    background-color: #eac4be; }
  .theme--orange .reference-box, .theme--orange
  .product-box {
    background-color: #fabd96; }
  [class*="theme--"] .theme--orange .reference-box, [class*="theme--"] .theme--orange
  .product-box {
    background-color: #fabd96; }
  .theme--red .reference-box, .theme--red
  .product-box {
    background-color: #f09682; }
  [class*="theme--"] .theme--red .reference-box, [class*="theme--"] .theme--red
  .product-box {
    background-color: #f09682; }
  .theme--gray .reference-box, .theme--gray
  .product-box {
    background-color: rgba(0, 0, 0, 0.239); }
  [class*="theme--"] .theme--gray .reference-box, [class*="theme--"] .theme--gray
  .product-box {
    background-color: rgba(0, 0, 0, 0.239); }
  .theme--black .reference-box, .theme--black
  .product-box {
    background-color: transparent; }
  [class*="theme--"] .theme--black .reference-box, [class*="theme--"] .theme--black
  .product-box {
    background-color: transparent; }
  .theme--default .reference-box, .theme--default
  .product-box {
    background-color: white; }
  [class*="theme--"] .theme--default .reference-box, [class*="theme--"] .theme--default
  .product-box {
    background-color: white; }
  @media (max-width: 767px) {
    .reference-box,
    .product-box {
      padding: 0 0 120px 0; } }
  .reference-box .reference-box-headline,
  .reference-box .product-box-headline,
  .product-box .reference-box-headline,
  .product-box .product-box-headline {
    padding-top: 120px;
    text-align: center;
    font-size: clamp(66px, 7vw, 72px); }
  .reference-box h2,
  .product-box h2 {
    margin: 64px 0 0 0; }
  .reference-box .text-center,
  .product-box .text-center {
    margin-top: 5rem !important; }
  @media (max-width: 767px) {
    .reference-box .reference-box-headline,
    .reference-box .product-box-headline,
    .product-box .reference-box-headline,
    .product-box .product-box-headline {
      font-size: clamp(40px, 7vw, 48px); } }
  @media (max-width: 575px) {
    .reference-box .reference-box-headline,
    .reference-box .product-box-headline,
    .product-box .reference-box-headline,
    .product-box .product-box-headline {
      font-size: clamp(36px, 6vw, 40px); } }

.download-box {
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.16);
  padding: 120px 5% !important;
  margin-top: -230px !important;
  margin-left: auto;
  margin-right: auto; }

.download-box-produkte {
  margin-top: 0 !important; }

.links {
  display: block;
  margin-bottom: 1.25rem; }
  .links__item {
    display: block; }
    .links__item span {
      display: inline-block;
      position: relative;
      width: 100%;
      margin-bottom: 0.625rem;
      padding-left: 1.875rem;
      text-align: left;
      color: #000000; }
      .links__item span:before {
        display: block;
        position: absolute;
        left: 0;
        top: 50%;
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        transition: transform .2s ease;
        width: 1.25rem;
        height: 0.8rem;
        content: '';
        background: url(./assets/_processed_/arrow-right.82471.svg) right center no-repeat;
        background-size: cover; }
    .links__item:hover span:before {
      -ms-transform: translateX(0.25em) translateY(-50%);
          transform: translateX(0.25em) translateY(-50%); }

.lang-nav {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap; }
  .lang-nav .lang-nav__header {
    position: absolute;
    top: -88px;
    width: 100%; }
    .lang-nav .lang-nav__header span {
      display: block;
      padding: 0.625rem 0;
      font-size: 1.25em;
      line-height: 1.5;
      font-weight: 700;
      letter-spacing: -0.1px; }
  .lang-nav .lang-nav__list {
    list-style: none;
    padding: 0; }
    .lang-nav .lang-nav__list .lang-nav__item {
      margin: .5em 0; }
      .lang-nav .lang-nav__list .lang-nav__item > a {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
        -ms-flex-pack: justify;
            justify-content: space-between;
        -ms-flex-align: center;
            align-items: center;
        text-decoration: none; }
        .lang-nav .lang-nav__list .lang-nav__item > a input[type="radio"] {
          pointer-events: none;
          -webkit-appearance: none;
             -moz-appearance: none;
                  appearance: none;
          background-color: #FFF;
          margin: 0;
          font: inherit;
          color: #FFF;
          width: 1.5em;
          height: 1.5em;
          border: 1px solid rgba(0, 0, 0, 0.24);
          border-radius: 50%; }
          .lang-nav .lang-nav__list .lang-nav__item > a input[type="radio"]:checked {
            border: 0.35em solid #000; }
        .lang-nav .lang-nav__list .lang-nav__item > a label {
          pointer-events: none;
          font-family: "IBMPlexMono", Helvetica, sans-serif;
          font-size: 14px;
          line-height: 1.6;
          color: #000; }

.loader {
  display: -ms-flexbox;
  display: flex;
  position: relative;
  left: 50%;
  height: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  font-weight: normal; }
  .loader__dots {
    display: -ms-flexbox;
    display: flex;
    width: 7.5rem;
    -ms-flex-pack: justify;
        justify-content: space-between; }
  .loader__dot {
    display: block;
    width: 0.9rem;
    height: 0.9rem;
    content: '';
    border-radius: 50%;
    background: #FFF;
    transition: 0.3s; }
    .loader__dot:nth-of-type(1) {
      background-color: #cfe2d0; }
    .loader__dot:nth-of-type(2) {
      background-color: #fef4c2; }
    .loader__dot:nth-of-type(3) {
      background-color: #c2dfe5; }
    .loader__dot:nth-of-type(4) {
      background-color: #eac4be; }
    .loader__dot:nth-of-type(5) {
      background-color: #fabd96; }
    .loader__dot:nth-of-type(6) {
      background-color: #f09682; }
    .loader__dot:nth-of-type(7) {
      background-color: rgba(0, 0, 0, 0.239); }
    .loader__dot:nth-of-type(8) {
      background-color: transparent; }
    .loader__dot:nth-of-type(9) {
      background-color: white; }
    .loader[data-active="true"] .loader__dot {
      animation: wave 2s infinite ease-in-out; }
      .loader[data-active="true"] .loader__dot:nth-of-type(1) {
        animation-delay: calc(0.1s * 1); }
      .loader[data-active="true"] .loader__dot:nth-of-type(2) {
        animation-delay: calc(0.1s * 2); }
      .loader[data-active="true"] .loader__dot:nth-of-type(3) {
        animation-delay: calc(0.1s * 3); }
      .loader[data-active="true"] .loader__dot:nth-of-type(4) {
        animation-delay: calc(0.1s * 4); }
      .loader[data-active="true"] .loader__dot:nth-of-type(5) {
        animation-delay: calc(0.1s * 5); }
      .loader[data-active="true"] .loader__dot:nth-of-type(6) {
        animation-delay: calc(0.1s * 6); }
      .loader[data-active="true"] .loader__dot:nth-of-type(1) {
        background-color: #6e863d; }
      .loader[data-active="true"] .loader__dot:nth-of-type(2) {
        background-color: #fdda25; }
      .loader[data-active="true"] .loader__dot:nth-of-type(3) {
        background-color: #9897c8; }
      .loader[data-active="true"] .loader__dot:nth-of-type(4) {
        background-color: #966481; }
      .loader[data-active="true"] .loader__dot:nth-of-type(5) {
        background-color: #ff9802; }
      .loader[data-active="true"] .loader__dot:nth-of-type(6) {
        background-color: #c05142; }
      .loader[data-active="true"] .loader__dot:nth-of-type(7) {
        background-color: rgba(0, 0, 0, 0.561); }
      .loader[data-active="true"] .loader__dot:nth-of-type(8) {
        background-color: #000000; }
      .loader[data-active="true"] .loader__dot:nth-of-type(9) {
        background-color: #FFF; }
  .loader:hover {
    text-decoration: none; }
  .loader:not(.loader[data-active="true"]):hover .loader__dot:nth-of-type(2), .loader:not(.loader[data-active="true"]):hover .loader__dot:nth-of-type(5) {
    -ms-transform: translateY(20%);
        transform: translateY(20%); }
  .loader:not(.loader[data-active="true"]):hover .loader__dot:nth-of-type(3), .loader:not(.loader[data-active="true"]):hover .loader__dot:nth-of-type(4) {
    -ms-transform: translateY(40%);
        transform: translateY(40%); }
  .loader__text {
    display: block;
    width: 100%;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    text-align: center;
    color: #000000;
    font-size: 1.4rem;
    margin-top: 1.25rem; }

@keyframes wave {
  0%, 60%, 100% {
    opacity: 0.5;
    transform: translateY(0%); }
  20% {
    opacity: 1.0;
    transform: translateY(30%); }
  40% {
    opacity: 1.0;
    transform: translateY(-30%); } }

.v-align--top {
  -ms-flex-item-align: start;
      align-self: flex-start; }

.v-align--center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center; }

.v-align--bottom {
  -ms-flex-item-align: end;
      align-self: flex-end; }

.v-align--stretch {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch; }

.decor, [class*="decor"] {
  position: relative; }
  .decor:before, [class*="decor"]:before {
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    width: 150%;
    height: calc(100% + 1px);
    margin-top: -3rem;
    -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
    background-color: white;
    content: '';
    pointer-events: none;
    z-index: -1; }
    .theme--green .decor:before, .theme--green [class*="decor"]:before {
      background-color: #cfe2d0; }
    [class*="theme--"] .theme--green .decor:before, [class*="theme--"] .theme--green [class*="decor"]:before {
      background-color: #cfe2d0; }
    .theme--yellow .decor:before, .theme--yellow [class*="decor"]:before {
      background-color: #fef4c2; }
    [class*="theme--"] .theme--yellow .decor:before, [class*="theme--"] .theme--yellow [class*="decor"]:before {
      background-color: #fef4c2; }
    .theme--blue .decor:before, .theme--blue [class*="decor"]:before {
      background-color: #c2dfe5; }
    [class*="theme--"] .theme--blue .decor:before, [class*="theme--"] .theme--blue [class*="decor"]:before {
      background-color: #c2dfe5; }
    .theme--violet .decor:before, .theme--violet [class*="decor"]:before {
      background-color: #eac4be; }
    [class*="theme--"] .theme--violet .decor:before, [class*="theme--"] .theme--violet [class*="decor"]:before {
      background-color: #eac4be; }
    .theme--orange .decor:before, .theme--orange [class*="decor"]:before {
      background-color: #fabd96; }
    [class*="theme--"] .theme--orange .decor:before, [class*="theme--"] .theme--orange [class*="decor"]:before {
      background-color: #fabd96; }
    .theme--red .decor:before, .theme--red [class*="decor"]:before {
      background-color: #f09682; }
    [class*="theme--"] .theme--red .decor:before, [class*="theme--"] .theme--red [class*="decor"]:before {
      background-color: #f09682; }
    .theme--gray .decor:before, .theme--gray [class*="decor"]:before {
      background-color: rgba(0, 0, 0, 0.239); }
    [class*="theme--"] .theme--gray .decor:before, [class*="theme--"] .theme--gray [class*="decor"]:before {
      background-color: rgba(0, 0, 0, 0.239); }
    .theme--black .decor:before, .theme--black [class*="decor"]:before {
      background-color: transparent; }
    [class*="theme--"] .theme--black .decor:before, [class*="theme--"] .theme--black [class*="decor"]:before {
      background-color: transparent; }
    .theme--default .decor:before, .theme--default [class*="decor"]:before {
      background-color: white; }
    [class*="theme--"] .theme--default .decor:before, [class*="theme--"] .theme--default [class*="decor"]:before {
      background-color: white; }
    @media (max-width: 767px) {
      .decor:before, [class*="decor"]:before {
        margin-top: 0; } }
  .decor:after, [class*="decor"]:after {
    display: block;
    position: relative;
    width: 100%;
    height: 6rem;
    content: '';
    pointer-events: none; }
  @media (max-width: 767px) {
    .decor, [class*="decor"] {
      margin-top: 0 !important; } }

.decor:before {
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 1440px; }

.decor--full:before {
  min-width: 1140px;
  max-width: 100vw;
  width: 100vw; }

.decor--same-height:before {
  height: 100%;
  margin-top: 0; }

.decor--same-height:after {
  display: none; }

.decor--same-width:before {
  width: calc(100% + 1.25rem);
  margin-left: -1.25rem; }

.decor--half-width:before {
  width: 50%; }

.decor--left:before {
  left: -2rem;
  right: auto; }

.decor--left-offset:before {
  left: auto;
  right: 0;
  margin-right: 25%; }

.decor--download:before {
  width: 110%; }

.decor--right:before {
  left: auto; }

.decor--right-offset:before {
  left: 0;
  right: auto;
  margin-left: 25%; }

.decor--no-margin {
  bottom: -1px;
  margin-bottom: 0; }
  .decor--no-margin:before {
    height: 100%;
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 3rem; }
  .decor--no-margin:after {
    height: 3rem;
    display: block; }

.news-list {
  margin-top: 5rem; }
  .news-list .grid--flip {
    -ms-flex-direction: row;
        flex-direction: row; }
  .news-list__filter {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    margin-bottom: 3rem; }
    .news-list__filter__select {
      width: 100%; }
    .news-list__filter .select {
      border: none; }
    .news-list__filter .select__list {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
      -ms-flex-align: baseline;
          align-items: baseline;
      border-bottom: 1px solid rgba(0, 0, 0, 0.16); }
      .news-list__filter .select__list .select__item {
        text-align: center;
        font-family: "FuturaPT-Demi", Helvetica, sans-serif;
        font-size: 1.25em;
        line-height: 1.875em;
        letter-spacing: -0.1px;
        -ms-flex-positive: 1;
            flex-grow: 1;
        margin: 0 0.625rem; }
        .news-list__filter .select__list .select__item:first-child {
          margin: 0 0.625rem 0 0; }
        .news-list__filter .select__list .select__item:last-child {
          margin: 0 0 0 0.625rem; }
        .news-list__filter .select__list .select__item__input:checked + .select__item--indicator {
          background-color: #000;
          border-color: #000; }
        .news-list__filter .select__list .select__item__input:checked ~ .select__item__label {
          opacity: 1; }
        .news-list__filter .select__list .select__item__input:not(checked) ~ .select__item__label {
          opacity: 0.6; }
        .news-list__filter .select__list .select__item--indicator {
          display: block;
          width: 100%;
          height: 4px;
          background-color: transparent;
          position: absolute;
          bottom: 0; }
        .news-list__filter .select__list .select__item__label {
          padding: 0.625rem 0 1.25rem 0; }
  .news-list__item {
    position: relative;
    height: 100%;
    padding: 0.5rem !important;
    margin-bottom: 0;
    /*&__img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    &__title {
      margin-top: $gap;
      margin-bottom: $gap/2;
      @include theme-color(color);
    }*/ }
    .news-list__item .Lteaser-content-full {
      height: 400px;
      box-shadow: 0 8px 40px 0 rgba(0, 0, 0, 0.16); }
      @media (min-width: 1199px) {
        .news-list__item .Lteaser-content-full {
          height: 324px; } }
    .news-list__item .grid {
      padding: 32px; }
    .news-list__item img {
      height: auto;
      border-radius: 20px; }
    .news-list__item a {
      text-decoration: none; }
    .news-list__item h3 {
      color: #000;
      font-family: "Reckless-Regular", Helvetica, sans-serif;
      padding: 1rem 1rem 0 0;
      text-align: left; }
    .news-list__item__date {
      display: block;
      font-family: "IBMPlexMono", Helvetica, sans-serif;
      font-style: normal;
      font-size: 12px; }
    .news-list__item__description {
      margin-top: 2.5rem; }
  @media (max-width: 1199px) {
    .news-list .Lteaser-content-full {
      height: 400px; }
      .news-list .Lteaser-content-full .grid {
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
    .news-list img {
      height: 186px;
      width: 186px; } }
  @media (max-width: 575px) {
    .news-list .Lteaser-content-full {
      min-height: 323px;
      height: auto; }
      .news-list .Lteaser-content-full .grid {
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse; }
    .news-list img {
      height: 186px;
      width: 186px; } }
  @media (max-width: 575px) {
    .news-list__filter__select {
      min-width: 65%; } }

.news-detail .frame-distance-big {
  width: 50%; }
  @media (max-width: 1199px) {
    .news-detail .frame-distance-big {
      width: 80%; } }
  @media (max-width: 767px) {
    .news-detail .frame-distance-big {
      width: 100%; } }

.news-detail .news__content--text h1 {
  font-family: "Reckless-Regular", Helvetica, sans-serif;
  font-size: 4.5rem; }
  @media (max-width: 767px) {
    .news-detail .news__content--text h1 {
      font-size: 4rem; } }
  @media (max-width: 575px) {
    .news-detail .news__content--text h1 {
      font-size: 2.5rem; } }

.news-detail .news__content--text .subline {
  margin: 40px 0 80px; }

@media (max-width: 767px) {
  .news-detail .news__content--text {
    margin: 20px 0 40px; } }

.news-detail .news--img img {
  border-radius: 20px;
  width: 85%;
  height: 85%; }

.news-detail .news__content--teaser {
  font-family: 'Reckless-Regular';
  font-size: 1.25rem;
  margin: 1rem 0; }

.news-detail .project-box {
  padding-bottom: 120px !important; }

.err-404 {
  display: block;
  height: calc(100vh - 9rem);
  overflow: hidden;
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw; }
  .err-404__background {
    background-color: #c2dfe5;
    position: relative;
    left: 50%;
    right: 50%;
    width: 100vw;
    margin-left: -50vw;
    margin-right: -50vw;
    height: calc(100vh - 9rem);
    min-width: 100vw;
    width: auto;
    z-index: -1; }
  .err-404__lemon {
    mix-blend-mode: normal;
    opacity: 0;
    animation: lemonation 0.75s ease-in-out 4s;
    animation-fill-mode: forwards; }
    .err-404__lemon--ghost {
      mix-blend-mode: luminosity;
      opacity: 1;
      animation: lemonation 0.75s ease-in-out 4s;
      animation-fill-mode: forwards;
      animation-direction: reverse; }
  .err-404__light {
    opacity: 0;
    animation: lemonation 0.75s ease-in-out 4s;
    animation-fill-mode: forwards; }
    .err-404__light__ray {
      fill: #fdda25; }
  .err-404__content {
    position: absolute;
    left: 50%;
    top: 0;
    -ms-transform: translate(calc(-100% - 15rem), 15rem);
        transform: translate(calc(-100% - 15rem), 15rem);
    font-size: 1.2rem;
    color: #000000;
    font-weight: normal;
    width: 15rem; }
    .err-404__content h1, .err-404__content h2, .err-404__content h3 {
      font-size: 1.5em;
      font-weight: 400; }
    .err-404__content h1 {
      color: #c05142; }
    .err-404__content h2 {
      margin: 0;
      opacity: 1;
      animation: text-out 0.75s ease-in-out 4s;
      animation-fill-mode: forwards; }
    .err-404__content h3, .err-404__content a {
      opacity: 0;
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
      animation: text-in 0.75s ease-in-out 4.75s;
      animation-fill-mode: forwards; }
    .err-404__content a {
      width: 100%; }
  .err-404 #lamp {
    -ms-transform-origin: 50% 0;
        transform-origin: 50% 0;
    animation: lamp-in 1s, swing 1s 5 alternate ease-in-out 1s, lamp-tilt-out 1s ease-in-out 6s; }
  @media (max-width: 767px) {
    .err-404 {
      height: calc(100vh - 6rem); }
      .err-404__background {
        height: auto;
        min-height: 30vh;
        width: 100vw;
        opacity: 0.2;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
        -ms-transform: scale(3);
            transform: scale(3); }
      .err-404__content {
        position: absolute;
        top: 30%;
        left: 50%;
        -ms-transform: translate(-50%, 0);
            transform: translate(-50%, 0); } }

@keyframes lamp-in {
  0% {
    transform: translateY(-30%) rotate(0deg); }
  50% {
    transform: translateY(1%) rotate(0deg); }
  100% {
    transform: translateY(0) rotate(-2deg); } }

@keyframes lamp-tilt-out {
  from {
    transform: rotate(2deg); }
  to {
    transform: rotate(0deg); } }

@keyframes text-out {
  0% {
    transform: translateX(0%);
    opacity: 1; }
  99% {
    transform: translateX(100%);
    opacity: 0; }
  100% {
    transform: translateX(100%);
    opacity: 0;
    height: 1px; } }

@keyframes text-in {
  to {
    transform: translateX(0%);
    opacity: 1; } }

@keyframes swing {
  from {
    transform: rotate(-2deg); }
  to {
    transform: rotate(2deg); } }

@keyframes lemonation {
  to {
    opacity: 1; } }

/*.hero---boundary-break {
  overflow: hidden;
  width: auto;
  left: 0;
  right: 0;
  height: 400px;
}
*/
.external--content iframe {
  width: 100%;
  height: 100%;
  border: 0; }

.content-wrapper[data-gallery="contentslider"] {
  width: 1440px; }
  .content-wrapper[data-gallery="contentslider"] section {
    display: none; }
    .content-wrapper[data-gallery="contentslider"] section:first-of-type {
      display: block; }

@media (max-width: 575px) {
  .content-wrapper {
    width: 100%; } }

.stickyfooter.is-sticky .main {
  padding-bottom: 100px; }
  @media (max-width: 575px) {
    .stickyfooter.is-sticky .main {
      padding-bottom: 125px; } }

.stickyfooter.is-sticky .footer {
  position: fixed;
  bottom: 0;
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  left: 0;
  right: 0;
  background-color: white;
  z-index: 1;
  padding: 0 !important;
  box-shadow: 0 -2px 0 0 rgba(0, 0, 0, 0.15); }
  .stickyfooter.is-sticky .footer__content {
    padding-top: 0.25rem; }
  .stickyfooter.is-sticky .footer__social-media {
    margin-top: 0.5rem; }
  @media (max-width: 575px) {
    .stickyfooter.is-sticky .footer {
      zoom: 0.5; } }

.video-teaser {
  overflow: hidden;
  position: relative;
  width: 100%; }

.tablesorter .tablesorter-header {
  outline: none;
  cursor: pointer;
  position: relative;
  padding-right: 25px; }
  .tablesorter .tablesorter-header:after {
    content: ' ';
    position: absolute;
    border: 7px solid transparent;
    left: 85%;
    display: none; }
  .tablesorter .tablesorter-headerAsc:after {
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    display: inline-block;
    border-top-color: #000; }
  .tablesorter .tablesorter-headerDesc:after {
    top: calc(50% - 7px);
    transform: translateY(-50%) rotateX(180deg);
    display: inline-block;
    border-top-color: #000; }

.main__content header {
  text-align: center; }
  .main__content header h1, .main__content header h2, .main__content header h3 {
    line-height: 1.2; }
  @media (max-width: 575px) {
    .main__content header h1 {
      font-size: clamp(46px, 7vw, 48px);
      line-height: 56px;
      letter-spacing: -0.3px; } }
  @media (min-width: 767px) {
    .main__content header h1 {
      font-size: clamp(70px, 9vw, 72px);
      letter-spacing: -0.8px;
      line-height: 84px; } }
  @media (min-width: 1199px) {
    .main__content header h1 {
      font-size: clamp(84px, 9vw, 88px);
      letter-spacing: -1.9px;
      line-height: 92px; } }
  @media (max-width: 767px) {
    .main__content header h2 {
      font-size: clamp(36px, 6vw, 40px);
      letter-spacing: -0.2px;
      line-height: 48px; } }
  @media (min-width: 767px) {
    .main__content header h2 {
      font-size: clamp(40px, 7vw, 48px);
      letter-spacing: -0.3px;
      line-height: 56px; } }
  @media (min-width: 1199px) {
    .main__content header h2 {
      font-size: clamp(66px, 9vw, 72px);
      letter-spacing: -0.8px;
      line-height: 84px; } }
  @media (max-width: 1199px) {
    .main__content header h3 {
      font-size: clamp(26px, 5vw, 30px);
      letter-spacing: -0.1px;
      line-height: 36px; } }
  @media (min-width: 1199px) {
    .main__content header h3 {
      font-size: clamp(36px, 6vw, 40px);
      letter-spacing: -0.2px;
      line-height: 48px; } }

.main__content .pillarpage-l-h1 {
  font-size: clamp(40px, 7vw, 48px);
  line-height: 56px;
  letter-spacing: -0.3px; }
  @media (min-width: 767px) {
    .main__content .pillarpage-l-h1 {
      font-size: clamp(66px, 9vw, 72px);
      line-height: 84px;
      letter-spacing: -0.8px; } }
  @media (min-width: 1199px) {
    .main__content .pillarpage-l-h1 {
      font-size: clamp(112px, 10vw, 120px);
      line-height: 124px;
      letter-spacing: -1.9px; } }

.main__content .news-l-h1 {
  font-family: "Reckless-Regular", Helvetica, sans-serif;
  line-height: 1.2;
  letter-spacing: -0.8px; }
  @media (max-width: 1199px) {
    .main__content .news-l-h1 {
      font-size: clamp(60px, 8vw, 64px);
      line-height: 76px; } }
  @media (min-width: 1199px) {
    .main__content .news-l-h1 {
      font-size: clamp(66px, 9vw, 72px);
      line-height: 84px; } }

.main__content .news-m-h1 {
  line-height: 1.2;
  letter-spacing: -0.5px; }
  @media (max-width: 1199px) {
    .main__content .news-m-h1 {
      font-size: clamp(36px, 6vw, 40px);
      line-height: 48px; } }
  @media (min-width: 1199px) {
    .main__content .news-m-h1 {
      font-size: 64px;
      font-size: 8vw;
      font-size: clamp(60px, 8vw, 64px);
      line-height: 72px; } }

.main__content .news-s-h1 {
  line-height: 48px;
  letter-spacing: -0.2px;
  font-size: clamp(36px, 6vw, 40px); }

.main__content .content-teaser-l-h3-56 {
  line-height: 1.2;
  letter-spacing: -0.4px; }
  @media (max-width: 1199px) {
    .main__content .content-teaser-l-h3-56 {
      font-size: 32px;
      font-size: clamp(30px, 5vw, 32px);
      line-height: 42px; } }
  @media (min-width: 1199px) {
    .main__content .content-teaser-l-h3-56 {
      font-size: 56px;
      font-size: clamp(52px, 6vw, 56px);
      line-height: 68px; } }

.main__content .content-teaser-l-h3-40-rol {
  font-family: "Reckless-Regular", Helvetica, sans-serif; }

.main__content .content-teaser-l-h3-40, .main__content .content-teaser-l-h3-40-rol {
  line-height: 1.2;
  letter-spacing: -0.2px; }
  @media (max-width: 1199px) {
    .main__content .content-teaser-l-h3-40, .main__content .content-teaser-l-h3-40-rol {
      font-size: 24px;
      font-size: clamp(22px, 4vw, 24px);
      line-height: 32px; } }
  @media (min-width: 1199px) {
    .main__content .content-teaser-l-h3-40, .main__content .content-teaser-l-h3-40-rol {
      font-size: 40px;
      font-size: clamp(36px, 6vw, 40px);
      line-height: 48px; } }

.main__content .content-teaser-l-h3-36 {
  letter-spacing: -0.2px; }
  @media (max-width: 1199px) {
    .main__content .content-teaser-l-h3-36 {
      font-size: 18px;
      font-size: clamp(16px, 3vw, 18px);
      line-height: 24px; } }
  @media (min-width: 1199px) {
    .main__content .content-teaser-l-h3-36 {
      font-size: 36px;
      font-size: clamp(34px, 5vw, 36px);
      line-height: 42px; } }

.main__content .content-teaser-l-h3-32-rol {
  font-family: "Reckless-Regular", Helvetica, sans-serif; }

.main__content .content-teaser-l-h3-32, .main__content .content-teaser-l-h3-32-rol {
  line-height: 1.2;
  letter-spacing: -0.1px; }
  @media (max-width: 1199px) {
    .main__content .content-teaser-l-h3-32, .main__content .content-teaser-l-h3-32-rol {
      font-size: 18px;
      font-size: clamp(16px, 3vw, 18px);
      line-height: 24px; } }
  @media (min-width: 1199px) {
    .main__content .content-teaser-l-h3-32, .main__content .content-teaser-l-h3-32-rol {
      font-size: 32px;
      font-size: clamp(30px, 5vw, 32px);
      line-height: 38px; } }

.main__content .content-teaser-l-h3-24 {
  letter-spacing: -0.1px;
  font-family: "Reckless-Regular", Helvetica, sans-serif;
  font-size: 24px;
  font-size: clamp(22px, 4vw, 24px);
  line-height: 32px; }

.main__content .content-teaser-s-h3-30-rol, .main__content .content-teaser-s-h3-24-rol, .main__content .content-teaser-s-h3-18-rol {
  font-family: "Reckless-Regular", Helvetica, sans-serif; }

.main__content .content-teaser-s-h3-30, .main__content .content-teaser-s-h3-30-rol {
  line-height: 36px;
  letter-spacing: -0.1px;
  font-size: 30px;
  font-size: clamp(28px, 5vw, 30px); }

.main__content .content-teaser-s-h3-24, .main__content .content-teaser-s-h3-24-rol {
  line-height: 32px;
  letter-spacing: -0.2px;
  font-size: 24px;
  font-size: clamp(22px, 4vw, 24px); }

.main__content .content-teaser-s-h3-18, .main__content .content-teaser-s-h3-18-rol {
  line-height: 24px;
  letter-spacing: -0.1px;
  font-size: 18px;
  font-size: clamp(16px, 3vw, 18px); }

.main__content .default-l-h1 {
  line-height: 1.2;
  letter-spacing: -1.4px; }
  @media (max-width: 375px) {
    .main__content .default-l-h1 {
      font-size: 32px;
      font-size: clamp(40px, 5vw, 42px);
      line-height: 48px; } }
  @media (max-width: 1199px) and (min-width: 567px) {
    .main__content .default-l-h1 {
      font-size: 72px;
      font-size: clamp(72px, 5vw, 72px);
      line-height: 84px; } }
  @media (min-width: 1199px) {
    .main__content .default-l-h1 {
      font-size: 88px;
      font-size: clamp(88px, 5vw, 88px);
      line-height: 92px; } }

.main__content .default-l-h2 {
  line-height: 1.2;
  letter-spacing: -0.8px; }
  @media (max-width: 375px) {
    .main__content .default-l-h2 {
      font-size: 32px;
      font-size: clamp(30px, 5vw, 32px);
      line-height: 42px; } }
  @media (max-width: 1199px) and (min-width: 567px) {
    .main__content .default-l-h2 {
      font-size: 48px;
      font-size: clamp(46px, 6vw, 48px);
      line-height: 56px; } }
  @media (min-width: 1199px) {
    .main__content .default-l-h2 {
      font-size: 72px;
      font-size: clamp(70px, 8vw, 72px);
      line-height: 84px; } }

.main__content .default-m-h1 {
  line-height: 1.2;
  letter-spacing: -0.8px; }
  @media (max-width: 1199px) {
    .main__content .default-m-h1 {
      font-size: 48px;
      font-size: clamp(46px, 6vw, 48px);
      line-height: 56px; } }
  @media (min-width: 1199px) {
    .main__content .default-m-h1 {
      font-size: 72px;
      font-size: clamp(70px, 8vw, 72px);
      line-height: 84px; } }

.main__content .default-m-h2 {
  line-height: 56px;
  letter-spacing: -0.4px;
  font-size: 48px;
  font-size: clamp(46px, 6vw, 48px); }

.main__content .default-s-h1 {
  line-height: 56px;
  letter-spacing: -0.3px;
  font-size: 48px;
  font-size: clamp(46px, 6vw, 48px); }

.main__content .default-s-h2 {
  line-height: 48px;
  letter-spacing: -0.2px;
  font-size: 40px;
  font-size: clamp(38px, 5vw, 40px); }

.sidebar-container {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: 50ms linear; }
  .sidebar-container--visible {
    opacity: 1;
    pointer-events: auto;
    background-color: rgba(0, 0, 0, 0.64); }
  .sidebar-container .sidebar-selection {
    position: fixed;
    background-color: #fff;
    width: 100vw;
    bottom: 0;
    right: -100vw;
    height: 100dvh;
    max-width: 100vw;
    z-index: 999;
    overflow-y: auto;
    transition: 300ms linear; }
    .sidebar-container .sidebar-selection__close {
      cursor: pointer;
      transition: 300ms linear; }
    .sidebar-container .sidebar-selection--visible {
      right: 0; }
  .sidebar-container .selection__content {
    display: none;
    padding: 90px 24px 0 24px;
    height: calc(100% - 96px);
    /* Update ecGrid Classes to fit Sidebar Layout */ }
    .sidebar-container .selection__content--visible {
      display: block; }
    .sidebar-container .selection__content--language {
      padding-top: 96px; }
      .sidebar-container .selection__content--language:before {
        content: ' ';
        position: absolute;
        left: 0;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.24); }
    .sidebar-container .selection__content .content-box {
      border: 1px solid #616161;
      border-radius: 20px;
      padding: 20px; }
    .sidebar-container .selection__content > section {
      height: 100%; }
      .sidebar-container .selection__content > section .grid--responsive {
        height: 100%; }
        .sidebar-container .selection__content > section .grid--responsive .grid__col--12 {
          display: -ms-flexbox;
          display: flex;
          -ms-flex-flow: column nowrap;
              flex-flow: column nowrap;
          -ms-flex-pack: justify;
              justify-content: space-between; }
          .sidebar-container .selection__content > section .grid--responsive .grid__col--12 section {
            box-sizing: border-box; }
  .sidebar-container .sidebar__content-topbar {
    height: 131px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: justify;
        justify-content: space-between;
    border-bottom: 1px solid #b5b5b5; }
    @media only screen and (min-width: 767px) {
      .sidebar-container .sidebar__content-topbar {
        height: 0px; } }
    .sidebar-container .sidebar__content-topbar .nav__mobile__logo {
      padding: 0 1.5em; }
    .sidebar-container .sidebar__content-topbar .sidebar-selection__close {
      padding-right: 1.5em; }

@media (min-width: 768px) {
  .sidebar-container .sidebar-selection {
    position: fixed;
    background-color: #fff;
    width: 50vw;
    max-width: 375px;
    bottom: 0;
    right: -425px;
    height: 100vh;
    z-index: 999;
    overflow-y: auto;
    transition: 300ms linear; }
    .sidebar-container .sidebar-selection__close {
      position: fixed;
      top: 25px;
      right: -50px;
      cursor: pointer;
      transition: 300ms linear; }
    .sidebar-container .sidebar-selection--visible {
      right: 0; }
      .sidebar-container .sidebar-selection--visible .sidebar-selection__close {
        right: 25px; }
  .sidebar-container .selection__content {
    display: none; }
    .sidebar-container .selection__content--visible {
      display: block; } }

@media (min-width: 1200px) {
  .sidebar-container .sidebar-selection {
    position: fixed;
    background-color: #fff;
    width: 35vw;
    max-width: 450px;
    bottom: 0;
    right: -500px;
    height: 100vh;
    z-index: 999;
    overflow-y: auto;
    transition: 300ms linear; }
    .sidebar-container .sidebar-selection__close {
      position: fixed;
      top: 25px;
      right: -50px;
      cursor: pointer;
      transition: 300ms linear; }
    .sidebar-container .sidebar-selection--visible {
      right: 0; }
      .sidebar-container .sidebar-selection--visible .sidebar-selection__close {
        right: 475px; }
  .sidebar-container .selection__content {
    display: none; }
    .sidebar-container .selection__content--visible {
      display: block; } }

.frame-type-text p, .frame-type-text ul, .frame-type-text li, .frame-type-textpic p, .frame-type-textpic ul, .frame-type-textpic li {
  font-family: Reckless-Regular;
  font-size: 16px;
  line-height: 24px; }
  @media (min-width: 1199px) {
    .frame-type-text p, .frame-type-text ul, .frame-type-text li, .frame-type-textpic p, .frame-type-textpic ul, .frame-type-textpic li {
      font-size: 20px;
      line-height: 30px;
      letter-spacing: -0.1px; } }

.frame-type-text ul, .frame-type-text li, .frame-type-textpic ul, .frame-type-textpic li {
  font-family: "FuturaPT-Book", Helvetica, sans-serif; }

.frame-type-image .ce-gallery img, .frame-type-textmedia .ce-gallery img, .frame-type-textpic .ce-gallery img {
  border-radius: 20px; }

@media (min-width: 1199px) {
  .frame-type-textmedia p, .frame-type-textpic p {
    font-size: 20px; } }

.frame-type-textmedia .ce-intext.ce-right .ce-gallery, .frame-type-textpic .ce-intext.ce-right .ce-gallery {
  margin-left: 48px; }

.frame-type-textmedia .ce-intext.ce-left .ce-gallery, .frame-type-textpic .ce-intext.ce-left .ce-gallery {
  margin-right: 48px; }

.frame-type-textmedia .ce-below .ce-gallery, .frame-type-textpic .ce-below .ce-gallery {
  margin-top: 48px; }

.frame-type-textmedia .ce-above .ce-gallery, .frame-type-textpic .ce-above .ce-gallery {
  margin-bottom: 48px; }

@media (max-width: 768px) {
  .frame-type-textmedia .ce-left .ce-gallery, .frame-type-textmedia .ce-right .ce-gallery, .frame-type-textpic .ce-left .ce-gallery, .frame-type-textpic .ce-right .ce-gallery {
    float: unset; }
  .frame-type-textmedia .ce-intext.ce-right .ce-gallery, .frame-type-textpic .ce-intext.ce-right .ce-gallery {
    margin-left: 0; } }

.socialmediacard {
  position: relative;
  height: 100%;
  padding: 0.5rem 0 !important;
  margin-bottom: 0; }
  .socialmediacard .Lteaser-content-full {
    height: 400px;
    text-align: left; }
    @media (min-width: 1199px) {
      .socialmediacard .Lteaser-content-full {
        height: 324px; } }
    .socialmediacard .Lteaser-content-full .poster__text {
      margin: 0;
      padding: 40px 24px;
      max-width: 466px; }
    .socialmediacard .Lteaser-content-full .poster__headline {
      font-size: 32px; }
    .socialmediacard .Lteaser-content-full .poster__cta {
      width: 100%;
      padding: 0 24px; }
      .socialmediacard .Lteaser-content-full .poster__cta a {
        float: left; }

.products__item {
  margin: 0 -60%; }
  .products__item--family {
    display: block !important;
    width: 280px !important; }
    .products__item--family .poster__text {
      bottom: 0;
      padding: 24px 24px 0; }
      .products__item--family .poster__text .poster__cta {
        position: relative;
        padding: 0;
        margin: 0; }
      .products__item--family .poster__text p[data-text] > p {
        display: -webkit-box;
        -webkit-line-clamp: 3;
        overflow: hidden;
        -webkit-box-orient: vertical;
        /* autoprefixer: off */ }
    .products__item--family .poster__cta .button {
      padding: 9px 50px 9px 10px;
      font-size: 0.7rem;
      width: 3em;
      white-space: nowrap; }
  .products__item--child {
    display: block !important;
    width: 280px !important; }
  .products__item .slick-dots {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: row;
        flex-direction: row;
    position: absolute;
    left: 40%;
    bottom: 5%;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    list-style: none;
    width: 175px; }
    .products__item .slick-dots li {
      border-bottom: 2px solid #999;
      -ms-flex-positive: 1;
          flex-grow: 1; }
      .products__item .slick-dots li button {
        visibility: hidden;
        border: none; }
    .products__item .slick-dots .slick-active {
      border-bottom: 3px solid #000000; }
  .products__item .slick-arrow {
    position: absolute; }
  .products__item .slick-prev {
    left: 26%;
    top: 50%;
    -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    border: none; }
  .products__item .slick-next {
    right: 26%;
    top: 50%;
    border: none; }
  .products__item .slick-disabled {
    opacity: 0;
    pointer-events: none; }
  .products__item .slick-track {
    padding: 6em 0; }
  .products__item .slick-slide {
    padding: 0 12px; }
  @media (max-width: 1199px) {
    .products__item--family, .products__item--family {
      width: 274px !important; }
    .products__item .slick-track {
      padding: 3em 0 4em; }
    .products__item .slick-prev {
      left: 26%; }
    .products__item .slick-next {
      right: 26%; } }
  @media (min-width: 1199px) {
    .products__item--family {
      width: 780px !important; }
      .products__item--family .poster__text {
        bottom: 0; }
      .products__item--family .poster__cta .button {
        font-size: 0.8rem;
        padding: 9px 24px;
        width: auto; }
    .products__item--child {
      width: 280px !important; } }
  @media (min-width: 1500px) {
    .products__item .slick-next {
      right: 26%; } }

.breadcrumb {
  margin-left: 3em;
  margin-bottom: 0.5rem; }
  @media (max-width: 767px) {
    .breadcrumb {
      display: none; } }
  .breadcrumb > a {
    font-size: 14px;
    line-height: 22px;
    color: rgba(0, 0, 0, 0.64);
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
    -ms-flex-align: center;
        align-items: center;
    text-decoration: none; }
    .breadcrumb > a svg {
      margin: 0 4px;
      width: 24px;
      height: 24px; }
      .breadcrumb > a svg path {
        fill: rgba(0, 0, 0, 0.32); }
    .breadcrumb > a:last-of-type {
      font-family: "FuturaPT-Demi", Helvetica, sans-serif;
      color: #000; }
      .breadcrumb > a:last-of-type svg {
        display: none; }
    .breadcrumb > a:hover {
      text-decoration: underline; }

.quote {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: column nowrap;
      flex-flow: column nowrap;
  border-left: 1px solid rgba(0, 0, 0, 0.16);
  padding-left: 23px; }
  .quote .quote-text {
    font-family: "FuturaPT-Demi", Helvetica, sans-serif;
    font-size: 32px;
    letter-spacing: -0.1px;
    line-height: 38px; }
  .quote .quote-footer {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: column nowrap;
        flex-flow: column nowrap;
    gap: 20px; }
    .quote .quote-footer .quote-quotee_name {
      font-family: "FuturaPT-Book", Helvetica, sans-serif;
      font-size: 16px;
      line-heigth: 24px;
      color: rgba(0, 0, 0, 0.64); }
    .quote .quote-footer .quote-quotee_image {
      max-width: 96px;
      border-radius: 50%; }

.mi-line {
  fill: none;
  stroke: #000000;
  stroke-width: 1.2px;
  stroke-miterlimit: 10;
  stroke-linecap: round;
  stroke-linejoin: round; }
  .mi-line--bold {
    stroke-width: 1.68px; }
  .mi-line--colored {
    stroke: #9897c8; }

.mi-fill {
  fill: #FFF; }

.mi-contact-icon .mi-line--colored {
  stroke: #ff9802; }

.mi-contact-icon #letter-content {
  -ms-transform: translateY(40%);
      transform: translateY(40%);
  transition: 0.2s; }

.mi-contact-icon #flap-foreground,
.mi-contact-icon #flap-background {
  transform: rotateX(0);
  -ms-transform-origin: 50% 47%;
      transform-origin: 50% 47%;
  visibility: visible;
  transition-property: transform, visibility;
  transition-duration: 0.4s, 0.2s; }

[data-active="true"] .mi-contact-icon #flap-foreground,
[data-active="true"] .mi-contact-icon #flap-background {
  transform: rotateX(-180deg);
  transition-delay: 0s;
  visibility: hidden; }

[data-active="true"] .mi-contact-icon #flap-background {
  visibility: visible; }

[data-active="true"] .mi-contact-icon #letter-content {
  -ms-transform: translateY(0);
      transform: translateY(0);
  transition-delay: 0.2s; }

[data-active="false"] .mi-contact-icon #flap {
  transition-delay: 0.2s; }

[data-active="false"] .mi-contact-icon #letter-content {
  transition-delay: 0s; }

.mi-download-icon .mi-line--colored {
  stroke: #966481;
  stroke-dasharray: 20px;
  stroke-dashoffset: 20px;
  transition: 0.8s; }

.mi-download-icon #arrow {
  -ms-transform: translateY(0);
      transform: translateY(0);
  transition: 0.26667s; }

.mi-download-icon #line-1 {
  animation-delay: calc(0.1s * (1 - 1) + (0.8s));
  transition-delay: calc(0.1s * (1 - 1)); }

.mi-download-icon #line-2 {
  animation-delay: calc(0.1s * (2 - 1) + (0.8s));
  transition-delay: calc(0.1s * (2 - 1)); }

.mi-download-icon #line-3 {
  animation-delay: calc(0.1s * (3 - 1) + (0.8s));
  transition-delay: calc(0.1s * (3 - 1)); }

[data-active="true"] .mi-download-icon .mi-line--colored {
  animation-name: line-animation;
  animation-duration: 1.9s;
  animation-iteration-count: 0;
  animation-direction: reverse;
  stroke-dashoffset: 0;
  transition: 0.8s; }

[data-active="true"] .mi-download-icon #arrow {
  -ms-transform: translateY(6%);
      transform: translateY(6%); }

[data-active="false"] .mi-download-icon .mi-line--colored {
  transition: 0.26667s; }

@keyframes line-animation {
  0% {
    stroke-dashoffset: 0; }
  25% {
    stroke-dashoffset: 20px; }
  50% {
    stroke-dashoffset: 20px; }
  100% {
    stroke-dashoffset: 0; } }

.mi-search-icon .mi-line {
  stroke-width: 1.5px; }
  .mi-search-icon .mi-line--colored {
    stroke: #9897c8;
    stroke-dasharray: 19px;
    stroke-dashoffset: 20px;
    transition: 0.4s; }

.mi-search-icon #glas-group {
  -ms-transform: rotate(0);
      transform: rotate(0);
  -ms-transform-origin: 27% 31%;
      transform-origin: 27% 31%;
  transition: 0.4s; }

.mi-search-icon #line-1-1 {
  animation-delay: calc(0.1s * (1 - 1) + (0.4s * 2));
  transition-delay: calc(0.1s * (1 - 1)); }

.mi-search-icon #line-1-2 {
  animation-delay: calc(0.1s * 1 + (0.4s * 2));
  transition-delay: calc(0.1s * 1); }

.mi-search-icon #line-2-1 {
  animation-delay: calc(0.1s * (2 - 1) + (0.4s * 2));
  transition-delay: calc(0.1s * (2 - 1)); }

.mi-search-icon #line-2-2 {
  animation-delay: calc(0.1s * 2 + (0.4s * 2));
  transition-delay: calc(0.1s * 2); }

.mi-search-icon #line-3-1 {
  animation-delay: calc(0.1s * (3 - 1) + (0.4s * 2));
  transition-delay: calc(0.1s * (3 - 1)); }

.mi-search-icon #line-3-2 {
  animation-delay: calc(0.1s * 3 + (0.4s * 2));
  transition-delay: calc(0.1s * 3); }

.mi-search-icon #line-4-1 {
  animation-delay: calc(0.1s * (4 - 1) + (0.4s * 2));
  transition-delay: calc(0.1s * (4 - 1)); }

.mi-search-icon #line-4-2 {
  animation-delay: calc(0.1s * 4 + (0.4s * 2));
  transition-delay: calc(0.1s * 4); }

[data-active="true"] .mi-search-icon #glas-group {
  -ms-transform: rotate(-100deg);
      transform: rotate(-100deg); }

[data-active="true"] .mi-search-icon .mi-line--colored {
  animation-name: line-animation;
  animation-duration: 2.4s;
  animation-iteration-count: 0;
  animation-direction: reverse;
  stroke-dashoffset: 0; }

@keyframes line-animation {
  0% {
    stroke-dashoffset: 0; }
  40% {
    stroke-dashoffset: 0; }
  50% {
    stroke-dashoffset: 20px; }
  90% {
    stroke-dashoffset: 20px; }
  100% {
    stroke-dashoffset: 0; } }

.mi-search-bar {
  position: absolute;
  left: 0;
  bottom: 0;
  pointer-events: none; }
  .mi-search-bar #search-container, .mi-search-bar #search-bar-glas, .mi-search-bar #search-bar-line {
    transition-duration: 0.4s;
    transition-delay: 0.1s; }
  .mi-search-bar #search-container {
    -ms-transform: translateX(calc(-100% + 65px));
        transform: translateX(calc(-100% + 65px)); }
  .mi-search-bar #search-bar-glas {
    stroke-dasharray: 144px;
    stroke-dashoffset: 0; }
  .mi-search-bar #search-bar-line {
    stroke-dasharray: 1440px;
    stroke-dashoffset: 1440px; }
  input[data-active="true"] ~ .mi-search-bar #search-container {
    -ms-transform: translateX(-10px);
        transform: translateX(-10px); }
  input[data-active="true"] ~ .mi-search-bar #search-bar-glas {
    stroke-dashoffset: 144px; }
  input[data-active="true"] ~ .mi-search-bar #search-bar-line {
    stroke-dashoffset: 0; }
  @media (max-width: 767px) {
    .mi-search-bar {
      height: 2rem; } }

.mi-arrow {
  /* Nur Internet Explorer */
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  white-space: nowrap; }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .mi-arrow {
      display: none; } }
  .mi-arrow .mi-line {
    stroke-width: 1px; }
  .mi-arrow-shaft, .mi-arrow-box, .mi-arrow-head {
    height: 100%; }
  .mi-arrow-shaft, .mi-arrow-head {
    position: absolute; }
  .mi-arrow-shaft {
    width: 18px;
    left: 0.5px;
    -ms-transform: translateX(-100%);
        transform: translateX(-100%); }
  .mi-arrow-head {
    right: 0.5px;
    -ms-transform: translateX(calc(100% - 1px));
        transform: translateX(calc(100% - 1px)); }
  .mi-arrow-box {
    position: absolute;
    left: -1px;
    top: -1px;
    width: calc(100% + 1px * 2);
    height: calc(100% + 1px * 2);
    display: block;
    -ms-transform: translateY(0.5px);
        transform: translateY(0.5px); }
  .mi-arrow-shaft {
    stroke-dashoffset: 100%;
    stroke-dasharray: 100%;
    transition: stroke-dashoffset 0.2s; }
  .mi-arrow-box > * {
    stroke-dashoffset: 0%;
    stroke-dasharray: 500%;
    transition: stroke-dashoffset 0.4s; }
  .mi-arrow-head {
    stroke-dashoffset: 100px;
    stroke-dasharray: 100px;
    transition: stroke-dashoffset 0.2s; }
  .mi-arrow:hover .mi-arrow-shaft {
    transition-delay: 0.13333s;
    stroke-dashoffset: 0%; }
  .mi-arrow:hover .mi-arrow-box > * {
    stroke-dashoffset: 500%; }
  .mi-arrow:hover .mi-arrow-head {
    stroke-dashoffset: 0;
    transition-delay: 0.13333s; }

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