@charset "utf-8";
/* Bei XL ist als Breite 1280px eingestellt und im Design vorgesehen.
// Rechts/links ein Padding von 24px. Bleiben 1232px als Rechengrundlage.
// Gridgap errechnet sich dann 48px / 1232px = 3.89610% */
/* 48px/1232px */
/* max-gridgap wird per media-query gesetzt, sobald Breite größer als 1280px (XL)
// bis break-xl gilt $gridgap, siehe oben, dann ein fester Wert*/
/* 3*16px = 48px */
/* statt vw jetzt in Prozent //3.89610% */
/* ========================[ Allgemeine Angaben ]======================== */
/* ========================[ Farbdefinitionen ]======================== */
/* Farben */
/* Schriftfarbe */
/* ========================[ Die einzelnen Bestandteile ]======================== */
/* Breakpoints des Responsive Designs */
/* Bei Änderungen auch in allen Bild-Content-Elementen die SrcSet-Angaben anpassen */
/* Box-Size-Model (Elementbreite ist width MINUS margin und border) */
*, *:before, *:after {
  box-sizing: border-box;
}
/* Scrollbalken immer einblenden und Schrift auf 10px festlegen */
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
/* Sichtbarkeits-Hilfsklassen – was ist in S, M, L, XL (nicht) sichtbar */
/* Das einzelne Sichtbarmachen erfolgt in den jeweiligen Stylesheets */
.only-s, .only-m, .only-l, .only-xl {
  display: none !important;
}
@media (max-width: 679px) {
  .only-s {
    display: block !important;
  }
  .no-s {
    display: none !important;
  }
}
@media (min-width: 680px) and (max-width: 1023px) {
  .only-m {
    display: block !important;
  }
  .no-m {
    display: none !important;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .only-l {
    display: block !important;
  }
  .no-l {
    display: none !important;
  }
}
@media (min-width: 1280px) {
  .only-xl {
    display: block !important;
  }
  .no-xl {
    display: none !important;
  }
}
@media (min-width: 1920px) {
  /* Für Leistungsberg zb */
  .leistungs-uebersicht-wrap .only-xxl {
    display: block !important;
  }
  .leistungs-uebersicht-wrap .no-xxl {
    display: none !important;
  }
  .leistungs-uebersicht-wrap .only-xl {
    display: none !important;
  }
}
/* Entwicklungshilfe zeigt im Browser rechts oben die aktuellen Breiten s,m,l,xl */
/* Zum Launch auf display: none setzen (siehe letzte Zeile) */
body:after {
  position: fixed;
  top: 0;
  right: 0;
  background: grey;
  opacity: 1;
  font-size: 14px;
  color: #fff;
  padding: 5px 10px;
  z-index: 99999999;
  display: none;
}
.grid {
  display: grid;
  grid-gap: 24px;
  grid-template-columns: repeat(12, 1fr);
  /* Grid mit 12 Spalten */
}
/* jk: Richards Idee für vertikale Abstände von Sektionen */
.grid > * {
  grid-column: span 12;
}
.grid[cols="2-2-2-2-2-2"] > * {
  grid-column: auto / span 6;
}
/* mehrspaltiges Grid ab min-width $break-m und aufwärts aktivieren */
@media (min-width: 680px) {
  /* die "extremen" Gridspalten werden zu 4/8 bzw. 8/4 reduziert */
  /*
	.grid[rows="1"] {-ms-grid-rows:auto;}
	.grid[rows="2"] {-ms-grid-rows:auto unquote("(40px auto)[1]");}
	.grid[rows="3"] {-ms-grid-rows:auto unquote("(40px auto)[2]");}
	.grid[rows="4"] {-ms-grid-rows:auto unquote("(40px auto)[3]");}
	.grid[rows="5"] {-ms-grid-rows:auto unquote("(40px auto)[4]");}
	.grid[rows="6"] {-ms-grid-rows:auto unquote("(40px auto)[5]");}
	.grid[rows="7"] {-ms-grid-rows:auto unquote("(40px auto)[6]");}
	.grid[rows="8"] {-ms-grid-rows:auto unquote("(40px auto)[7]");}
	.grid[rows="9"] {-ms-grid-rows:auto unquote("(40px auto)[8]");}
	*/
  .grid {
    grid-gap: 48px;
  }
  .grid[cols="6-6"] > * {
    grid-column: auto / span 6;
  }
  .grid[cols="4-4-4"] > *, .grid[cols="3-3-3-3"] > * {
    grid-column: auto / span 6;
    height: 100%;
  }
  .grid[cols="2-2-2-2-2-2"] > * {
    grid-column: auto / span 3;
  }
  .grid[cols="9-3"] > :nth-child(odd), .grid[cols="3-9"] > :nth-child(even), .grid[cols="10-2"] > :nth-child(odd), .grid[cols="2-10"] > :nth-child(even) {
    grid-column: auto / span 8;
  }
  .grid[cols="9-3"] > :nth-child(even), .grid[cols="3-9"] > :nth-child(odd), .grid[cols="10-2"] > :nth-child(even), .grid[cols="2-10"] > :nth-child(odd) {
    grid-column: auto / span 4;
  }
  .grid {
    display: -ms-grid;
    -ms-grid-columns: 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr 24px 1fr;
  }
  .grid > :nth-child(odd) {
    -ms-grid-column: 1;
  }
  .grid > :nth-child(even) {
    -ms-grid-column: 13;
  }
  .grid[cols="12"] > * {
    -ms-grid-column-span: 23;
  }
  .grid[cols="6-6"] > * {
    -ms-grid-column-span: 11;
  }
  .grid[cols="3-3-3-3"] {
    -ms-grid-column-span: 11;
    -ms-grid-rows: 1fr 24px 1fr;
  }
  .grid[cols="3-3-3-3"] > :nth-child(3), .grid[cols="3-3-3-3"] > :nth-child(4) {
    -ms-grid-row: 3;
  }
}
@media (min-width: 1024px) {
  /* grid-row auf einzeilig überschreiben, da unterhalb von break-m zweizeiliges grid */
  .grid[cols="2-2-2-2-2-2"] > * {
    grid-column: auto / span 2;
  }
  .grid[cols="3-3-3-3"] > * {
    grid-column: auto / span 3;
  }
  .grid[cols="4-4-4"] > * {
    grid-column: auto / span 4;
  }
  .grid[cols="8-4"] > :nth-child(odd), .grid[cols="4-8"] > :nth-child(even) {
    grid-column: auto / span 8;
  }
  .grid[cols="8-4"] > :nth-child(even), .grid[cols="4-8"] > :nth-child(odd) {
    grid-column: auto / span 4;
  }
  .grid[cols="9-3"] > :nth-child(odd), .grid[cols="3-9"] > :nth-child(even) {
    grid-column: auto / span 9;
  }
  .grid[cols="9-3"] > :nth-child(even), .grid[cols="3-9"] > :nth-child(odd) {
    grid-column: auto / span 3;
  }
  .grid[cols="10-2"] > :nth-child(odd), .grid[cols="2-10"] > :nth-child(even) {
    grid-column: auto / span 10;
  }
  .grid[cols="10-2"] > :nth-child(even), .grid[cols="2-10"] > :nth-child(odd) {
    grid-column: auto / span 2;
  }
  .grid[cols="4-4-4"] > * {
    -ms-grid-column-span: 7;
  }
  .grid[cols="4-4-4"] > :nth-child(2) {
    -ms-grid-column: 9;
  }
  .grid[cols="4-4-4"] > :nth-child(3) {
    -ms-grid-column: 17;
  }
  .grid[cols="3-3-3-3"] {
    -ms-grid-rows: 1fr;
  }
  .grid[cols="3-3-3-3"] > :nth-child(3), .grid[cols="3-3-3-3"] > :nth-child(4) {
    -ms-grid-row: 1;
  }
  .grid[cols="3-3-3-3"] > * {
    -ms-grid-column-span: 5;
  }
  .grid[cols="3-3-3-3"] > :nth-child(2) {
    -ms-grid-column: 7;
  }
  .grid[cols="3-3-3-3"] > :nth-child(3) {
    -ms-grid-column: 13;
  }
  .grid[cols="3-3-3-3"] > :nth-child(4) {
    -ms-grid-column: 19;
  }
  .grid[cols="4-8"] > :first-child {
    -ms-grid-column-span: 7;
  }
  .grid[cols="4-8"] > :last-child {
    -ms-grid-column-span: 15;
    -ms-grid-column: 9;
  }
  .grid[cols="8-4"] > :first-child {
    -ms-grid-column-span: 15;
  }
  .grid[cols="8-4"] > :last-child {
    -ms-grid-column-span: 7;
    -ms-grid-column: 17;
  }
  .grid[cols="3-9"] > :first-child {
    -ms-grid-column-span: 5;
  }
  .grid[cols="3-9"] > :last-child {
    -ms-grid-column-span: 17;
    -ms-grid-column: 7;
  }
  .grid[cols="9-3"] > :first-child {
    -ms-grid-column-span: 17;
  }
  .grid[cols="9-3"] > :last-child {
    -ms-grid-column-span: 5;
    -ms-grid-column: 19;
  }
  .grid[cols="2-10"] > :first-child {
    -ms-grid-column-span: 3;
  }
  .grid[cols="2-10"] > :last-child {
    -ms-grid-column-span: 19;
    -ms-grid-column: 5;
  }
  .grid[cols="10-2"] > :first-child {
    -ms-grid-column-span: 19;
  }
  .grid[cols="10-2"] > :last-child {
    -ms-grid-column-span: 3;
    -ms-grid-column: 21;
  }
}
/* ab break-xl gilt statt gridgap ein festes max-gridgap wie in main.scss definiert */
@media (min-width: 1280px) {
  .grid {
    grid-gap: 3.8961vh;
  }
}
/* grid.scss */
/* fancyBox v3.5.7 */
body.compensate-for-scrollbar {
  overflow: hidden;
}
.fancybox-is-hidden {
  position: absolute !important;
  top: -9999px;
  left: -9999px;
  margin: 0;
  visibility: hidden;
}
.fancybox-active {
  height: auto;
}
.fancybox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  outline: none;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  z-index: 99992;
}
.fancybox-container * {
  box-sizing: border-box;
}
.fancybox-bg, .fancybox-inner, .fancybox-outer, .fancybox-stage {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.fancybox-outer {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.fancybox-bg {
  background: #fff;
  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.9;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.fancybox-caption, .fancybox-infobar, .fancybox-navigation .fancybox-button, .fancybox-toolbar {
  position: absolute;
  direction: ltr;
  z-index: 99997;
}
.fancybox-show-caption .fancybox-caption, .fancybox-show-infobar .fancybox-infobar, .fancybox-show-nav .fancybox-navigation .fancybox-button, .fancybox-show-toolbar .fancybox-toolbar {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.25s ease 0s, visibility 0s ease 0s;
}
.fancybox-infobar {
  min-width: 44px;
  height: 44px;
  top: 0;
  left: 0;
  font-size: 13px;
  line-height: 44px;
  color: #ccc;
  padding: 0 10px;
  mix-blend-mode: difference;
  pointer-events: none;
  user-select: none;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.fancybox-toolbar {
  top: 0;
  right: 0;
}
.fancybox-toolbar button {
  margin: 12px 0;
  margin-right: 12px;
}
.fancybox-stage {
  direction: ltr;
  overflow: visible;
  transform: translateZ(0);
  z-index: 99994;
}
.fancybox-is-open .fancybox-stage {
  overflow: hidden;
}
.fancybox-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  padding: 44px;
  outline: none;
  overflow: auto;
  transition-property: transform, opacity;
  white-space: normal;
  -webkit-overflow-scrolling: touch;
  -webkit-backface-visibility: hidden;
  z-index: 99994;
}
.fancybox-slide:before {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  font-size: 0;
  vertical-align: middle;
}
.fancybox-is-sliding .fancybox-slide, .fancybox-slide--current, .fancybox-slide--next, .fancybox-slide--previous {
  display: block;
}
.fancybox-slide--image {
  overflow: hidden;
  padding: 66px 0;
}
.fancybox-slide--image:before {
  display: none;
}
.fancybox-slide--html {
  padding: 6px;
}
.fancybox-content {
  display: inline-block;
  max-width: 100%;
  position: relative;
  text-align: left;
  vertical-align: middle;
  overflow: auto;
  background: #fff;
  padding: 44px;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}
.fancybox-slide--image .fancybox-content {
  max-width: none;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
  background: transparent;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0;
  transform-origin: top left;
  transition-property: transform, opacity;
  user-select: none;
  animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
  -webkit-backface-visibility: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  z-index: 99995;
}
.fancybox-can-zoomOut .fancybox-content {
  cursor: zoom-out;
}
.fancybox-can-zoomIn .fancybox-content {
  cursor: zoom-in;
}
.fancybox-can-pan .fancybox-content, .fancybox-can-swipe .fancybox-content {
  cursor: grab;
}
.fancybox-is-grabbing .fancybox-content {
  cursor: grabbing;
}
.fancybox-container [data-selectable=true] {
  cursor: text;
}
.fancybox-image, .fancybox-spaceball {
  width: 100%;
  max-width: none;
  height: 100%;
  max-height: none;
  position: absolute;
  top: 0;
  left: 0;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.fancybox-spaceball {
  z-index: 1;
}
.fancybox-slide--iframe .fancybox-content, .fancybox-slide--map .fancybox-content, .fancybox-slide--pdf .fancybox-content, .fancybox-slide--video .fancybox-content {
  width: 100%;
  height: 100%;
  overflow: visible;
  padding: 0;
}
.fancybox-slide--video .fancybox-content {
  background: #444;
}
.fancybox-slide--map .fancybox-content {
  background: #e5e3df;
}
.fancybox-slide--iframe .fancybox-content {
  background: #fff;
}
.fancybox-iframe, .fancybox-video {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.fancybox-iframe {
  position: absolute;
  top: 0;
  left: 0;
}
.fancybox-error {
  width: 100%;
  max-width: 400px;
  background: #fff;
  padding: 40px;
  cursor: default;
}
.fancybox-error p {
  font-size: 16px;
  line-height: 20px;
  color: #444;
  padding: 0;
  margin: 0;
}
.fancybox-button {
  display: inline-block;
  width: 42px;
  height: 42px;
  position: relative;
  background: #0066B3;
  box-shadow: none;
  border: 0;
  border-radius: 50%;
  vertical-align: top;
  padding: 10px;
  margin: 0;
  cursor: pointer;
  visibility: inherit;
  transition: all 0.3s ease-in-out;
}
.fancybox-button, .fancybox-button:link, .fancybox-button:visited {
  color: #fff;
}
.fancybox-button:hover {
  background: #01A6E0;
  transition: all 0.3s ease-in-out;
}
.fancybox-button:focus {
  outline: none;
}
.fancybox-button.fancybox-focus {
  outline: 1px dotted;
}
.fancybox-button[disabled], .fancybox-button[disabled]:hover {
  color: #fff;
  outline: none;
  cursor: default;
  display: none !important;
}
.fancybox-button div {
  height: 100%;
}
.fancybox-button svg {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: visible;
}
.fancybox-button svg path {
  fill: currentColor;
  stroke-width: 0;
}
.fancybox-button--fsenter svg:nth-child(2), .fancybox-button--fsexit svg:first-child, .fancybox-button--pause svg:first-child, .fancybox-button--play svg:nth-child(2) {
  display: none;
}
.fancybox-progress {
  height: 2px;
  position: absolute;
  right: 0;
  top: 0;
  left: 0;
  background: #0066B3;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 99998;
}
.fancybox-close-small {
  position: absolute;
  top: -44px;
  right: -12px;
  color: #444;
  background: transparent;
  border: 0;
  border-radius: 0;
  opacity: 0.8;
  padding: 8px;
  cursor: pointer;
  z-index: 401;
}
.fancybox-close-small:hover {
  color: #fff;
  opacity: 1;
}
.fancybox-slide--html .fancybox-close-small {
  top: 0;
  right: 0;
  color: currentColor;
  padding: 10px;
}
.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
  overflow: hidden;
}
.fancybox-is-scaling .fancybox-close-small, .fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
  display: none;
}
.fancybox-navigation .fancybox-button {
  width: 84px;
  height: 200px;
  border-radius: 0;
  position: absolute;
  top: calc(50% - 100px);
  background-clip: content-box;
  opacity: 1;
}
.fancybox-navigation .fancybox-button div {
  padding: 6px;
}
.fancybox-navigation .fancybox-button--arrow_left {
  left: 0;
  /*	left: env(safe-area-inset-left); */
  padding: 30px 24px 30px 12px;
}
.fancybox-navigation .fancybox-button--arrow_right {
  right: 0;
  /*	right: env(safe-area-inset-right); */
  padding: 30px 12px 30px 24px;
}
.fancybox-caption {
  left: 0;
  bottom: 0;
  right: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: #eee;
  text-align: center;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.85) 0, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.075) 75.5%, rgba(0, 0, 0, 0.037) 82.85%, rgba(0, 0, 0, 0.019) 88%, transparent);
  padding: 75px 44px 25px;
  pointer-events: none;
  z-index: 99996;
}
.fancybox-caption--separate {
  margin-top: -50px;
}
.fancybox-caption__body {
  max-height: 50vh;
  overflow: auto;
  pointer-events: all;
}
.fancybox-caption a, .fancybox-caption a:link, .fancybox-caption a:visited {
  color: #444;
  text-decoration: none;
}
.fancybox-caption a:hover {
  color: #fff;
  text-decoration: underline;
}
.fancybox-loading {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  background: transparent;
  border: 4px solid #888;
  border-bottom-color: #fff;
  border-radius: 50%;
  animation: a 1s linear infinite;
  opacity: 0.7;
  padding: 0;
  margin: -25px 0 0 -25px;
  z-index: 99999;
}
@keyframes a {
  to {
    transform: rotate(1turn);
  }
}
.fancybox-animated {
  transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}
.fancybox-fx-slide.fancybox-slide--previous {
  opacity: 0;
  transform: translate3d(-100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--next {
  opacity: 0;
  transform: translate3d(100%, 0, 0);
}
.fancybox-fx-slide.fancybox-slide--current {
  opacity: 1;
  transform: translateZ(0);
}
.fancybox-fx-fade.fancybox-slide--next, .fancybox-fx-fade.fancybox-slide--previous {
  opacity: 0;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}
.fancybox-fx-fade.fancybox-slide--current {
  opacity: 1;
}
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(1.5, 1.5, 1.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0.5, 0.5, 0.5);
}
.fancybox-fx-zoom-in-out.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1);
}
.fancybox-fx-rotate.fancybox-slide--previous {
  opacity: 0;
  transform: rotate(-1turn);
}
.fancybox-fx-rotate.fancybox-slide--next {
  opacity: 0;
  transform: rotate(1turn);
}
.fancybox-fx-rotate.fancybox-slide--current {
  opacity: 1;
  transform: rotate(0deg);
}
.fancybox-fx-circular.fancybox-slide--previous {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--next {
  opacity: 0;
  transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}
.fancybox-fx-circular.fancybox-slide--current {
  opacity: 1;
  transform: scaleX(1) translateZ(0);
}
.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: translateZ(0) scale(1);
}
@media (max-height: 576px) {
  .fancybox-slide {
    padding-left: 6px;
    padding-right: 6px;
  }
  .fancybox-slide--image {
    padding: 6px 0;
  }
  .fancybox-close-small {
    right: -6px;
  }
  .fancybox-slide--image .fancybox-close-small {
    width: 36px;
    height: 36px;
    top: 0;
    right: 0;
    color: #444;
    background: #0066B3;
    opacity: 1;
    padding: 6px;
  }
  .fancybox-caption {
    padding-left: 12px;
    padding-right: 12px;
  }
}
.fancybox-share {
  max-width: 90%;
  text-align: center;
  background: #0066B3;
  border-radius: 3px;
  padding: 30px;
}
.fancybox-share h1 {
  font-size: 35px;
  font-weight: 700;
  color: #444;
  margin: 0 0 20px;
}
.fancybox-share p {
  padding: 0;
  margin: 0;
}
.fancybox-share__button {
  display: inline-block;
  min-width: 130px;
  font-size: 14px;
  line-height: 40px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  border: 0;
  border-radius: 3px;
  margin: 0 5px 10px;
  padding: 0 15px;
  transition: all 0.2s;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.fancybox-share__button:link, .fancybox-share__button:visited {
  color: #fff;
}
.fancybox-share__button:hover {
  text-decoration: none;
}
.fancybox-share__button--fb {
  background: #0066B3;
}
.fancybox-share__button--fb:hover {
  background: #344e86;
}
.fancybox-share__button--pt {
  background: #0066B3;
}
.fancybox-share__button--pt:hover {
  background: #aa0719;
}
.fancybox-share__button--tw {
  background: 77ae;
}
.fancybox-share__button--tw:hover {
  background: #0d95e8;
}
.fancybox-share__button svg {
  width: 25px;
  height: 25px;
  position: relative;
  top: -1px;
  vertical-align: middle;
  margin-right: 7px;
}
.fancybox-share__button svg path {
  fill: #fff;
}
.fancybox-share__input {
  width: 100%;
  color: #444;
  font-size: 14px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #d7d7d7;
  border-radius: 0;
  outline: none;
  padding: 10px 15px;
  margin: 10px 0 0;
}
.fancybox-thumbs {
  display: none;
  width: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.4);
  padding: 0 4px;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 99995;
}
.fancybox-thumbs-x {
  overflow-x: auto;
  overflow-y: hidden;
}
.fancybox-show-thumbs .fancybox-thumbs {
  display: block;
}
.fancybox-show-thumbs .fancybox-inner {
  right: 200px;
}
.fancybox-thumbs__list {
  width: 100%;
  height: 100%;
  position: absolute;
  position: relative;
  font-size: 0;
  list-style: none;
  white-space: nowrap;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 0;
  margin: 0;
}
.fancybox-thumbs-x .fancybox-thumbs__list {
  overflow: hidden;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
  width: 7px;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
  background: #fff;
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}
.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
  background: #2a2a2a;
  border-radius: 10px;
}
.fancybox-thumbs__list a {
  width: 100%;
  height: 84px;
  position: relative;
  margin: 4px 0;
  background-color: rgba(0, 0, 0, 0.1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  outline: none;
  overflow: hidden;
  cursor: pointer;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
}
.fancybox-thumbs__list a:hover {
  opacity: 0.6;
  transition: opacity 0.2s ease-in-out;
}
.fancybox-thumbs__list a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 3px solid #01A6E0;
  opacity: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 99991;
}
.fancybox-thumbs__list a:focus:before {
  opacity: 0.5;
}
.fancybox-thumbs__list a.fancybox-thumbs-active:before {
  opacity: 1;
}
@media (max-width: 576px) {
  .fancybox-thumbs {
    width: 110px;
  }
  .fancybox-show-thumbs .fancybox-inner {
    right: 110px;
  }
  .fancybox-thumbs__list a {
    max-width: 100%;
  }
}
/*fancybox.scss*/
html {
  scroll-padding-top: 20em;
  /* Kontaktformular: Damit beim Absenden der Warnhinweis nicht unter dem Haeder verschwindet, wenn man ein Pflichtfeld nicht ausgefüllt hat*/
}
body:after {
  content: "S";
}
/* ------------[ Schriften ]------------ */
@font-face {
  font-family: 'Barlow';
  font-style: normal;
  font-weight: 400;
  src: local('Barlow Regular'), local('Barlow-Regular'), url('/inc/fonts/barlow-v11-latin-regular.woff2') format('woff2'), url('/inc/fonts/barlow-v11-latin-regular.woff') format('woff');
  font-display: swap;
}
/* Barlow-300 - latin */
@font-face {
  font-family: 'Barlow semibold';
  font-style: normal;
  font-weight: 300;
  src: local('Barlow Semibold'), local('Barlow-Semibold'), url('/inc/fonts/barlow-v11-latin-300.woff2') format('woff2'), url('/inc/fonts/barlow-v11-latin-300.woff') format('woff');
  font-display: swap;
}
/* Barlow-700 - latin */
@font-face {
  font-family: 'Barlow bold';
  font-style: normal;
  font-weight: 600;
  src: local('Barlow Bold'), local('Barlow-Bold'), url('/inc/fonts/barlow-v11-latin-600.woff2') format('woff2'), url('/inc/fonts/barlow-v11-latin-600.woff') format('woff');
  font-display: swap;
}
strong {
  font-family: 'barlow bold';
}
/* ------------[ Body ]------------ */
body {
  font-family: 'Barlow';
  font-size: 18px;
  line-height: 26px;
  color: #333;
  background: #fff;
  margin: 0;
}
#wrap {
  background-color: #004173;
}
#main {
  overflow: hidden;
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
  box-shadow: 0 0 6px #00000080;
  background-color: #fff;
}
/* ==============================[ Begrenzung Inhalt ]============================== */
/* Begrenzung des Contentbereichs */
.inner {
  width: 100%;
  max-width: 1360px;
  padding: 0 18px;
  margin: 0 auto;
}
.inner.small-800 {
  max-width: 800px;
}
.clear {
  content: '';
  clear: both;
  display: block;
  height: 0;
}
/* ==============================[ Formate für Sektionen ]============================== */
section {
  width: 100%;
  position: relative;
  padding: 60px 0;
  margin: 0 auto;
}
/* Silbentrennung */
section > div {
  hyphens: auto;
}
/* ------------[ spezielle Klassen für Sektionen ]------------ */
/* Sektion mit grauem Hintergrund */
section.grey-stripe {
  background: #f1f1f1;
}
/* Sektion mit grauen Linien */
section.border-top {
  border-top: 2px solid #f1f1f1;
}
section.border-bottom {
  border-bottom: 2px solid #f1f1f1;
}
.headline-section .grid {
  grid-gap: 0;
}
/* ==============================[ universelle Klassen ]============================== */
/* ------------[ vertikale Positionierung der Elemente ]------------ */
section.align-items-center .grid {
  align-items: center;
}
section.align-items-bottom .grid {
  align-items: flex-end;
}
section.align-items-top .grid {
  align-items: flex-start;
}
/* ------------[ verschiedene Abstände ]------------ */
/* Sektion ohne Abstand */
section.no-padding {
  padding: 0;
}
/* Sektion ohne Abstand nach oben */
section.no-padding-top {
  padding: 0 0 60px;
}
/* Sektion ohne Abstand nach unten */
section.no-padding-bottom {
  padding: 60px 0 0;
}
/* kein Abstand nach oben */
.no-margin {
  margin: 0;
}
/* zusätzlicher Abstand nach oben */
.margin-top {
  margin-top: 30px;
}
/* zusätzlicher Abstand nach unten */
.margin-bottom {
  margin-bottom: 30px;
}
.small-1000 .inner, .inner.small-1000 {
  max-width: 1000px;
}
.small-800 .inner, .inner.small-800 {
  max-width: 800px;
}
/* ------------[ verschiedene Abstände im Grid ]------------ */
.no-grid-gap .grid {
  grid-gap: 0;
}
.small-grid-gap .grid {
  grid-gap: 12px;
}
.big-grid-gap .grid {
  grid-gap: 18px;
}
/* ------------[ Klassen für Texte ]------------ */
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-center {
  text-align: center;
}
/* Farben */
.text-color-blue {
  color: #0066B3;
}
/* kleiner Text */
.minitext {
  font-size: 16px;
  line-height: 20px;
}
/* Tabulator */
.tab {
  display: block;
  width: 3.5em;
  float: left;
  clear: left;
}
.item-bold {
  font-family: barlow semibold;
}
/* Hinweis wenn JavaScript deaktiviert */
p.no-java {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  color: #fff;
  background-color: #0066B3;
  padding: 30px;
  margin: 0;
  z-index: 99;
}
/* ------------[ Hinweismeldungen, Fehler, Alerts, Warnungen ]------------ */
.alert {
  background-color: #F1F1F1;
  border: solid 1px #C5C5C5;
  border-radius: 6px;
  padding: 12px;
  margin: 1em 0;
}
.error {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
/* ------------[ Sonstiges ]------------ */
/* Per Script auf ganzes Element ausgeweiteter Link */
.clickbox {
  cursor: pointer;
}
/* Abkürzungen und Akronyme */
abbr {
  border-bottom: 1px dotted #ddd;
  cursor: help;
}
abbr[title], acronym[title] {
  text-decoration: none;
  /* Reset Browser-Default */
}
/* Hintergrundfarbe für selektierten Text */
::selection {
  background: #ddd;
  text-shadow: none;
}
/* ========================[ Animationen ]======================== */
/* einfaden von unten */
.has-js .fade-in {
  opacity: 0;
  transform: translate3d(0, 120px, 0);
  transition: transform 2400ms cubic-bezier(0.19, 1, 0.22, 1), opacity 1800ms cubic-bezier(0.19, 1, 0.22, 1);
}
/* einfaden von links */
.has-js .fade-in-left {
  opacity: 0;
  transform: translate3d(-120px, 0, 0);
  transition: transform 2400ms cubic-bezier(0.19, 1, 0.22, 1), opacity 1800ms cubic-bezier(0.19, 1, 0.22, 1);
}
/* einfaden von rechts */
.has-js .fade-in-right {
  opacity: 0;
  transform: translate3d(120px, 0, 0);
  transition: transform 2400ms cubic-bezier(0.19, 1, 0.22, 1), opacity 1800ms cubic-bezier(0.19, 1, 0.22, 1);
}
.fade-in.inview, .fade-in-left.inview, .fade-in-right.inview {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
/* ========================[ Header-Bereich ]======================== */
header {
  position: fixed;
  /* Fixierter Header */
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 1px 1px 4px -1px rgba(0, 0, 0, 0.4);
  margin: 0 auto;
  z-index: 100;
}
section.header-section {
  padding: 0;
  margin: 0;
}
.header-flex {
  display: flex;
  flex-direction: column;
  max-width: 85%;
  margin: 0 0 0 auto;
}
.header-flex > div {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.oblique {
  width: 190px;
  height: 100%;
  transform: skewX(33deg);
  position: absolute;
  background-color: #0066B3;
  pointer-events: none;
}
.oblique.border {
  background-color: transparent;
  border: 2px solid #fff;
}
.oblique.left {
  top: 0;
  right: 90%;
}
.oblique.left.border {
  top: 50px;
  right: 84.9%;
}
.oblique.right {
  top: 0;
  right: -25%;
  z-index: 1;
}
.oblique.right.border {
  right: -18%;
  top: 42px;
  z-index: 1;
}
.oblique.revert {
  transform: skewX(-33deg);
}
@media screen and (max-width: 400px) {
  .oblique.right {
    right: -30%;
  }
  .oblique.right.border {
    right: -32%;
  }
}
/* ------------[ Logo ]------------ */
a.logo {
  display: block;
  width: 100%;
  max-width: 160px;
  background-color: #fff;
}
/* ------------[ Hauptnavigation ]------------ */
.mainnav {
  width: 100%;
  flex: none;
  position: absolute;
  top: 72px;
  /* Richtet sich nach Höhe des fixierten Headers (Im nächsten Element den gleichen Wert eintragen) */
  left: 0;
  z-index: 99;
}
/* Liste der Hauptnavigation */
.mainnav > ul {
  height: calc(100vh - 72px);
  /* Gesamte Bildschirmhöhe abzüglich fixiertem Header (s.o) */
  background-color: #0066B3;
  padding: 24px;
  margin: 0;
  overflow: auto;
  z-index: 0;
}
/* einzelne Navigationspunkte */
.mainnav > ul li {
  display: block;
  background: none;
  padding: 0;
  margin: 0;
}
/* einzelne links in den Navigationspunkten */
.mainnav > ul li a {
  display: block;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  padding: 12px 18px;
  text-transform: uppercase;
  font-family: barlow bold;
  position: relative;
  transition: all 0.2s ease-out;
}
.mainnav > ul > li > a:before {
  content: '';
  width: 70px;
  height: 13px;
  background-color: #fff;
  position: absolute;
  top: 18px;
  left: -80px;
  transform: skewX(33deg);
  opacity: 0;
  transition: all 0.2s ease-out;
}
.mainnav > ul > li.current > a:before {
  left: -74px;
  opacity: 1;
  transition: all 0.2s ease-out;
}
/* Navigation ausgeblendet wenn kein JavaScript vorhanden */
.header-section .mainnav {
  display: none;
}
/* Navigation verstecken */
.header-section.closed .mainnav {
  display: none;
}
/* Navigation einblenden */
.header-section.open .mainnav {
  display: block;
}
/* hover/focus der Navigationspunkte */
nav.mainnav ul li:hover a, nav.mainnav ul li:focus a {
  color: #fff;
}
/* ------------[ Subnavigation ]------------ */
/* Liste der Subnavigation */
ul.subnav {
  margin: 0 0 24px;
  z-index: 99;
}
/* einzelne Subnavigationspunkte */
ul.subnav li {
  background: none;
  margin: 0;
}
ul.subnav li a {
  text-transform: unset;
  font-family: 'barlow';
}
ul.subnav li a:before {
  content: '';
  width: 70px;
  height: 13px;
  background-color: #fff;
  position: absolute;
  top: 18px;
  left: -80px;
  transform: skewX(33deg);
  opacity: 0;
  transition: all 0.2s ease-out;
}
/* hover/current der Subnavigationspunkte */
ul.subnav li:hover a:before, ul.subnav li.current a:before {
  left: -74px;
  opacity: 1;
  transition: all 0.2s ease-out;
}
/* current der Subnavigationspunkte */
ul.subnav li.current a {
  color: #fff;
}
/* ------------[ mobile Navigation ]------------ */
#nav-toggle-wrap {
  display: flex;
  flex: 1;
  justify-content: flex-end;
  position: relative;
}
.nav-toggle {
  display: block;
  position: relative;
  background: #0066B3;
  padding: 24px;
  margin: 12px 0;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
}
.nav-toggle:hover, .nav-toggle:focus, .nav-toggle.open {
  background: #01A6E0;
}
/* Hamburger-Icon */
.hamburger-icon {
  width: 24px;
  position: absolute;
  top: 18px;
  right: 12px;
}
/* Styling der 3 Striche des Hamburgers */
.hamburger, .hamburger:after, .hamburger:before {
  height: 3px;
  position: relative;
  background-color: #fff;
  margin-top: 5px;
  transition: all 0.3s ease;
}
.hamburger:after, .hamburger:before {
  content: '';
  width: 100%;
  position: absolute;
}
/* Positionierung oberer Strich */
.hamburger:before {
  top: -12px;
}
/* Positionierung unterer Strich */
.hamburger:after {
  top: 2px;
}
/* Hamburger-Icon beim Öffnen des Menüs */
.header-section.open .hamburger {
  background: none;
  /* mittlerer der drei Striche wird ausgeblendet */
}
.header-section.open .hamburger:before {
  top: -6px;
  background: #fff;
  transform: rotate(45deg);
}
.header-section.open .hamburger:after {
  top: -6px;
  background: #fff;
  transform: rotate(-45deg);
}
/* ------------[ Language Navigatrion ]------------ */
.langnav {
  display: inline-block;
  position: absolute;
  left: auto;
  right: 0;
  top: 96px;
  z-index: 110;
  background-color: #fff;
}
.langnav ul {
  display: inline-block;
  margin: 0;
}
.langnav li {
  display: block;
  position: relative;
  background: none;
  padding: 0;
  margin: 0;
}
.langnav li:last-child a {
  border-top: 1px solid #eee;
}
.langnav li.current a, .langnav li a:hover {
  color: #999;
}
.langnav li a {
  position: relative;
  padding: 8px 12px;
  display: block;
  color: #ddd;
}
/* Navigation verstecken */
.header-section .langnav, .header-section.closed .langnav {
  display: none;
}
/* Navigation einblenden */
.header-section.open .langnav {
  display: block;
}
/* ------------[ Keyvisual ]------------ */
.keyvisual-wrap {
  margin-top: 72px;
  position: relative;
}
.keyvisual-wrap .oblique-left {
  right: -15%;
}
/* ========================[ Standard-Elemente ]======================== */
/* ------------[ Überschriften ]------------ */
/* Überschriften */
h1, h2, h3 {
  font-family: 'Barlow', 'sans-serif';
  font-weight: normal;
}
h1 {
  font-size: 40px;
  line-height: 42px;
  margin: 0 0 18px;
}
h2 {
  font-size: 30px;
  line-height: 36px;
  margin: 30px 0 18px;
}
h3 {
  font-size: 24px;
  line-height: 30px;
  margin: 30px 0 18px;
}
h4 {
  font-size: 18px;
  line-height: 24px;
  margin: 24px 0 12px;
}
section h2:first-child, section h3:first-child {
  margin: 0 0 18px;
}
/* ------------[ Absätze ]------------ */
p {
  margin: 0 0 1em;
}
section p:last-child {
  margin-bottom: 0;
}
.additional-headline {
  text-transform: uppercase;
  color: #0066B3;
  margin-bottom: -24px;
}
/* ------------[ Verlinkungen ]------------ */
/* Links */
a {
  color: #0066B3;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: #01A6E0;
}
/* Buttons */
.button {
  min-width: 72px;
  width: auto;
  height: auto;
  display: inline-block;
  margin: 1.5em 0 0 auto;
  padding: 11px 20px;
  background-color: #0066B3;
  border-radius: 60px;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}
.button.arrow {
  padding: 12px 20px;
  overflow: hidden;
}
.button.arrow:hover:after {
  animation: button-arrow-move 1.5s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
.button.arrow:after {
  content: '';
  background: url(/inc/img/arrows/icon-arrow-long-white.svg?m=1643023592) no-repeat center;
  display: block;
  width: 36px;
  height: 24px;
}
.button.white {
  border: 2px solid #fff;
  padding: 10px 20px;
}
.button:hover, .button:focus, .button:active {
  color: #fff;
}
.button:not(.arrow) {
  position: relative;
}
.button:not(.arrow):after {
  content: '';
  background: url(/inc/img/arrows/icon-arrow-long-white.svg?m=1643023592) no-repeat center;
  display: block;
  width: 36px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  right: 0px;
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.button:not(.arrow):hover {
  padding-right: 60px;
}
.button:not(.arrow):hover:after {
  opacity: 1;
  right: 12px;
}
.teaser .button {
  text-align: right;
  position: absolute;
  right: 24px;
  bottom: 24px;
}
.teaser-blue .button {
  border: 2px solid #fff;
  padding: 10px 20px;
}
.teaser-img .button {
  bottom: -24px;
  right: calc(50% - 38px);
  margin: 0;
}
@keyframes button-arrow-move {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  50% {
    transform: translate3d(150%, 0, 0);
    opacity: 1;
  }
  52% {
    transform: translate3d(150%, 0, 0);
    opacity: 0;
  }
  53% {
    transform: translate3d(-150%, 0, 0);
    opacity: 0;
  }
  54% {
    transform: translate3d(-150%, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
/* Verlinkte Bilder */
a img {
  display: block;
  border: none;
}
/* ------------[ Bilder ]------------ */
.pic {
  display: block;
  width: 100%;
  height: auto;
}
/* Bildunterschrift */
.pic-description {
  font-size: 16px;
  line-height: 22px;
  margin-top: 12px;
}
/* ------------[ Bild größer klicken ]------------ */
.fancybox picture {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  transition: all 0.2s ease-in-out;
}
/* + auf groß klickbaren Bild */
.fancybox picture:after {
  content: '';
  width: 42px;
  height: 42px;
  position: absolute;
  bottom: 12px;
  right: 0;
  background-color: #0066B3;
  background-image: url('/inc/img/icons/icon-plus.svg');
  background-size: 20px;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease-in-out;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
  z-index: 9;
}
.fancybox:hover picture:after {
  background-color: #01A6E0;
  transition: all 0.3s ease-in-out;
}
/* ------------[ Text-Bild-Element ]------------ */
.pic-img.left {
  margin-bottom: 30px;
}
.pic-img.right {
  margin-top: 30px;
}
/* ------------[ Unnummerierte Listen ]------------ */
ul {
  padding-left: 0;
  margin: 0 0 1em;
}
/* Liste 1. Ebene */
ul > li {
  list-style-type: none;
  background-image: url('/inc/img/icons/list-dot.svg');
  /*url('/inc/img/list-dot.svg')*/
  background-size: 6px 6px;
  background-position: 0 11px;
  background-repeat: no-repeat;
  padding-left: 18px;
}
/* Liste 2. Ebene */
li ul {
  padding-left: 8px;
  margin: 12px 0;
}
li ul > li {
  background-image: url('/inc/img/icons/list-dot-2.svg');
  padding-left: 18px;
}
li ul ul > li {
  background-image: url('/inc/img/icons/list-dot-3.svg');
  padding-left: 18px;
}
/* ------------[ Nummerierte Listen ]------------ */
ol {
  padding-left: 20px;
  margin: 0;
}
/* Liste 1. Ebene */
ol > li {
  padding-left: 6px;
  margin: 0;
}
/* Liste 2. Ebene */
li ol {
  padding-left: 30px;
  margin: 12px 0;
}
li ol > li {
  padding-left: 6px;
}
/* ------------[ Listen mit mehr Abstand ]------------ */
.listspace > li {
  margin: 6px 0;
}
.listspace li ul {
  margin: 18px 0;
}
/* ------------[ Tabellen ]------------ */
table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}
tr {
  border: 2px solid #f1f1f1;
  border-width: 2px 0;
}
th, td {
  vertical-align: top;
  border-width: 0;
  padding: 12px;
}
/* ========================[ Sonderelmente ]======================== */
/* ------------[ Infobox grau ]------------ */
.infobox-grey {
  display: block;
  height: 100%;
  background-color: #f1f1f1;
  padding: 30px;
}
/* graue infobox auf grauem Streifen */
section.grey-stripe .infobox-grey {
  background-color: #fff;
}
/* ------------[ Infobox blau ]------------ */
.infobox-blue {
  display: block;
  height: 100%;
  color: #fff;
  background-color: #0066B3;
  padding: 30px;
}
.infobox-blue a, .infobox-blue a:hover {
  color: #fff;
}
.infobox-blue a.button, .infobox-blue a.button:hover {
  color: #fff;
  background-color: #01A6E0;
}
/* ------------[ Teaser ]------------ */
.teaser {
  background: #fff;
  /*height: 100%;   // hover bei Über uns geht über teaser hinaus*/
  transition: all 0.3s ease-in-out;
}
.teaser-content {
  position: relative;
  height: 100%;
  padding: 24px 24px 72px;
  border: 2px solid #eee;
}
.teaser-content h2 {
  margin: 0;
}
.teaser:hover, .teaser:focus {
  background: #f1f1f1;
  transition: all 0.3s ease-in-out;
}
.teaser:hover .button.arrow:after, .teaser:focus .button.arrow:after {
  animation: button-arrow-move 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}
/* Verlinkte Überschrift im Teaser */
.teaser a, .teaser a:hover {
  display: block;
  color: #444;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
/* Teaser-Text */
.teaser p {
  margin: 18px 0;
}
.teaser-img.no-image .teaser-content {
  border: 2px solid #eee;
}
/* ------------[ Teaser mit Bild ]------------ */
.teaser-img {
  margin-bottom: 24px;
}
.teaser-img .teaser-content {
  border-top: 0;
  padding: 24px;
  height: auto;
}
/* ------------[ Teaser blau (leistungsteaser)]------------ */
.teaser-blue .teaser {
  background: #0066B3;
  transition: all 0.3s ease-in-out;
}
.teaser-blue .teaser a {
  color: #fff;
}
.teaser-blue .button-text {
  border: 2px solid #fff;
}
.teaser-blue .teaser-content {
  border: none;
}
/* ------------[ Teaser auf grauem Hintergrund ]------------ */
.grey-stripe .teaser-blue .teaser:hover {
  background: #0066B3;
}
.grey-stripe .teaser:hover {
  background: #fff;
  box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.2);
}
.grey-stripe .teaser-content {
  border: 0;
}
/* ------------[ Teaser Team ]------------ */
#team-member-list ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
#team-member-list .teaser {
  width: 100%;
  float: left;
  margin: 0.7917%;
  padding: 0;
  display: flex;
  flex-direction: column;
}
#team-member-list .teaser img {
  border: 2px solid #eee;
}
#team-member-list .teaser-content {
  padding: 24px;
  background: #eee;
  flex: 1;
}
#team-member-list a {
  color: #0066B3;
}
#team-member-list a:hover {
  color: #01A6E0;
}
#team-member-list .teaser-content p:first-child {
  margin-top: 0;
}
/* ------------[ Flex-Teaser ]------------ */
/* alle Teaser */
.teaser-flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: -12px 0;
}
/* Einzelne Teaser auf small alle gleich */
.teaser-flex .teaser {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  margin: 12px 0;
  transition: all 0.3s ease-in-out;
  padding: 0;
}
.teaser-flex .teaser .teaser-flex-image {
  height: 200px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.teaser-flex .teaser-content {
  flex: 1;
}
/* ------------[ Bildergalerie ]------------ */
.image-gallery {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 0;
  margin: -6px 0;
}
/* Auf small alle Bilder vollbreit */
.image-gallery li {
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  background: none;
  padding: 0;
  margin: 6px 0;
  transition: all 0.3s ease-in-out;
}
/* Lupen-icon zum groß klicken */
.image-gallery li a {
  position: relative;
}
.image-gallery li a:after {
  content: '';
  width: 36px;
  height: 36px;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #0066B3;
  background-image: url('/inc/img/icons/icon-plus.svg');
  background-size: 18px;
  background-repeat: no-repeat;
  background-position: center;
  padding: 12px;
  transition: all 0.3s ease-in-out;
  z-index: 99;
}
.image-gallery li:hover a:after {
  background-color: #01A6E0;
  transition: all 0.3s ease-in-out;
}
/* ------------[ Akkordeon ]------------ */
/* Akkordeon Titel */
.accordion .title {
  background: #0066B3;
  border-radius: 2px;
  padding: 0 18px 0 0;
  /* Abstand für Pfeile rechts */
  margin-bottom: 6px;
  /* Abstand zu unterem accordion */
  cursor: pointer;
  transition: all 0.2s ease-in-out;
}
.accordion .title:hover {
  background: #01A6E0;
}
.accordion .title:last-child {
  margin-bottom: 0;
  /* Abstand zu unterem accordion */
}
/* Akkordeon Verlinkung */
.accordion a {
  color: #fff;
  text-decoration: none;
}
/* Akkordeon Überschrift im Titel */
.accordion .title h2, .accordion .title h3 {
  display: block;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
  background-image: url('/inc/img/arrows/arrow-right.svg');
  /*url('/inc/img/arrows/arrow-right.svg')*/
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center right;
  padding: 12px 18px;
  margin: 0;
}
/* Akkordeon Inhalt */
.accordion .acc-content {
  background: #fff;
  padding: 6px 24px 32px;
  /* mehr Abstand nach unterem wegen Abstand durch accordion */
}
/* wenn Akkordeon offen */
.accordion .open {
  background: #01A6E0;
}
.accordion .open h2, .accordion .open h3 {
  background-image: url('/inc/img/arrows/arrow-down.svg');
  /*url('/inc/img/arrows/arrow-down.svg')*/
  background-size: 16px 16px;
}
/* ------------[ Videoplayer ]------------ */
/* Video als iFrame responsive einbinden */
.video-embed {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.video-embed iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/* Video als PopUp öffnen */
.video-overlay a {
  display: block;
  position: relative;
  cursor: pointer !important;
}
.video-overlay a[mhlightbox]:after {
  display: none;
  /* "Plus" der Lightbox ausblenden */
}
/* Playbutton Youtube */
.m_yt_button {
  display: block;
  width: 84px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}
/* grauer Hintergrund des Play-Buttons im SVG */
.ytp-large-play-button-bg {
  fill: #1f1f1f;
  fill-opacity: 0.8;
  transition: fill 0.5s cubic-bezier(0.4, 0, 1, 1) 0s, fill-opacity 0.5s cubic-bezier(0.4, 0, 1, 1) 0s;
}
.video-overlay a:hover .ytp-large-play-button-bg {
  fill: #cc181e;
  fill-opacity: 1;
  transition: fill 0.5s cubic-bezier(0, 0, 0.2, 1) 0s, fill-opacity 0.5s cubic-bezier(0, 0, 0.2, 1) 0s;
}
.responsive-video-popup img {
  width: 100%;
  height: auto;
}
/* ------------[ Formulare ]------------ */
.form-content {
  margin: 12px 0;
}
legend {
  display: block;
  font-size: 18px;
  line-height: 24px;
  padding: 12px 0 0;
}
fieldset > legend {
  font-family: barlow bold;
}
label {
  display: block;
  font-size: 18px;
  margin-bottom: 0.5em;
  color: #444;
  cursor: pointer;
}
input, textarea, select, .input-radio-content, .input-checkbox-content {
  width: 100%;
  margin: 10px 0;
}
input, textarea {
  display: block;
  font-size: 16px;
  line-height: 22px;
  background-color: #fff;
  border: 1px solid #c4c4c4;
  padding: 12px 18px;
  margin-bottom: 24px;
  resize: none;
}
fieldset {
  border: none;
  clear: both;
  padding: 0;
  margin: 0;
}
textarea {
  width: 100%;
  min-height: 120px;
}
select {
  color: #333;
  width: 100%;
  font-size: 16px;
  line-height: 22px;
  background-color: #fff;
  background-image: url('/inc/img/arrows/arrow-down.svg');
  /*url(/inc/img/arrows/arrow-down.svg)*/
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 18px;
  border: 1px solid #c4c4c4;
  padding: 12px 18px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -webkit-appearance: none;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border: 1px solid #00baff;
}
/* Radio/Checkboxen */
input[type="radio"]:checked, input[type="radio"]:not(:checked), input[type="checkbox"]:checked, input[type="checkbox"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
input[type="radio"]:checked + label, input[type="radio"]:not(:checked) + label, input[type="checkbox"]:checked + label, input[type="checkbox"]:not(:checked) + label {
  position: relative;
  font-size: 16px;
  line-height: 24px;
  padding-left: 30px;
  cursor: pointer;
}
input[type="radio"]:checked + label:before, input[type="radio"]:not(:checked) + label:before, input[type="checkbox"]:checked + label:before, input[type="checkbox"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 100%;
  border: 1px solid #c4c4c4;
  background: #fff;
}
input[type="radio"]:checked + label:after, input[type="radio"]:not(:checked) + label:after, input[type="checkbox"]:checked + label:after, input[type="checkbox"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  position: absolute;
  top: 6px;
  left: 6px;
  background: #00baff;
  border-radius: 100%;
  transition: all 0.2s ease-in-out;
}
/* Checkbox */
input[type="checkbox"]:checked + label:before, input[type="checkbox"]:not(:checked) + label:before {
  border-radius: 6px;
}
input[type="checkbox"]:checked + label:after, input[type="checkbox"]:not(:checked) + label:after {
  border-radius: 0;
  background: url(/inc/img/icons/input-check.svg) center no-repeat;
}
/* Radio */
input[type="radio"]:not(:checked) + label:after, input[type="checkbox"]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
}
input[type="radio"]:checked + label:after, input[type="checkbox"]:checked + label:after {
  opacity: 1;
  transform: scale(1);
  -webkit-transform: scale(1);
}
/* option */
option {
  padding: 0.3em 1em 0.3em 1em;
  border-top: 1px solid #444;
  background: #fff;
}
/* Button */
input[type="submit"] {
  color: #fff;
  background-color: #0066B3;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  width: auto;
}
button {
  font-size: 16px;
  line-height: 22px;
  border: none;
  outline: none;
  cursor: pointer;
  width: auto;
}
input[type="submit"]:hover {
  background-color: #01A6E0;
}
/* Fehlermeldungen */
.fieldError {
  border: 1px solid #a94442;
}
.labelError {
  color: #a94442;
}
select::-ms-expand {
  display: none;
}
/* ========================[ Sonderelmente "Kunde" ]======================== */
/* ------------[ Call to Action als content-Element]------------ */
.cta-section {
  padding: 0;
}
.cta-section .inner {
  padding: 24px 24px 88px;
  background-color: #fff;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 2;
}
.cta-section .oblique.right {
  right: 5%;
  width: 400px;
}
.cta-section .oblique.border.right {
  top: 40px;
  right: 0;
}
.cta-button {
  position: absolute;
  bottom: 24px;
  right: 24px;
}
.cta-button:hover {
  transition: all 0.2s ease-in-out;
}
.cta-bg {
  background-image: url(/images/istockphoto-1310800473.jpg);
  background-repeat: no-repeat;
  height: 100%;
  background-position: center;
  background-size: cover;
  padding: 80px 16px;
}
/* ------------[ services-section / leistungen ]------------ */
.services-section .grid {
  grid-gap: 18px;
}
.services-section .teaser, .services-section .teaser > a {
  height: 100%;
}
/* ------------[ benefits-section / vorteile ]------------ */
.benefits-item {
  padding: 42px 0 0 36px;
  margin-top: 24px;
  position: relative;
}
.section-benefits h2 {
  margin-bottom: 54px;
}
.benefits-count {
  color: rgba(255, 255, 255, 0.7);
  font-size: 5em;
  line-height: 1em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
/* ------------[ Timeline-Section]------------ */
.timeline-section h2 {
  text-align: center;
}
.timeline-section.grey-stripe .dot {
  background-color: #f1f1f1;
}
.timeline {
  position: relative;
}
.timeline .grid {
  flex: 1;
  grid-gap: 0;
}
.timeline hr {
  position: absolute;
  display: block;
  top: 60px;
  bottom: 0;
  left: 42px;
  border: 1px solid #0066B3;
  z-index: -1;
}
.timeline .dot {
  position: relative;
  width: 50px;
  height: 50px;
  background-color: #fff;
  border: 2px solid #0066B3;
  border-radius: 50%;
}
.timeline .dot:after {
  content: '';
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  top: 24px;
  right: -30px;
  background-color: #0066B3;
}
.timeline .dot span {
  color: #0066B3;
  font-size: 1.7em;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.timeline-item {
  position: relative;
  padding: 60px 0 0;
  display: flex;
}
.timeline-item:last-child:before {
  content: '';
  height: calc(100% - 60px);
  width: 4px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 24px;
}
.grey-stripe .timeline-item:last-child:before {
  background-color: #f1f1f1;
}
.timeline-text {
  padding: 11px 0 0 40px;
}
/* ------------[ Referenzseite Grid-Kacheln]------------ */
.grid-kacheln > div {
  display: grid;
  grid-gap: 12px;
  grid-auto-flow: dense;
  margin-bottom: 12px;
}
.grid-kacheln-item {
  padding: 24px;
  background-color: #f1f1f1;
}
/*.grid-kacheln-item-img{
	 	margin-bottom: 24px ;
	 }

*/
.grid-kacheln .referenz-image {
  min-height: 300px;
  padding: 0;
}
.grid-kacheln .referenz-image .grid-kacheln-item-img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-color: transparent;
  height: 100%;
  position: relative;
}
.grid-kacheln .referenz-image .grid-kacheln-item-img span {
  position: absolute;
  bottom: 12px;
  right: 12px;
  color: #f1f1f1;
  font-size: 0.7em;
  line-height: 1em;
}
/* ------------[ Call to Action vor Footer ]------------ */
.cta-footer {
  background: url('/inc/img/cta-footer.jpg') no-repeat center;
  background-size: cover;
  color: #fff;
}
.cta-footer-item {
  padding: 24px;
}
.cta-footer-item.blue-bg {
  background: #0066B3;
}
.cta-footer-item .button {
  margin: 8px 0 0;
}
/* ========================[ Footer ]======================== */
footer {
  background-color: #f1f1f1;
  padding: 24px 0;
}
footer section {
  padding: 0;
}
.footer-wrap {
  display: flex;
  flex-direction: column;
}
.footer-wrap > div {
  margin: 12px 0;
}
/* Small Screens */
@media screen and (min-width: 680px) {
  body:after {
    content: "M";
  }
  /* ------------[ Schriften ]------------ */
  /* ------------[ Body ]------------ */
  /* ==============================[ Begrenzung Inhalt ]============================== */
  /* Begrenzung des Contentbereichs */
  .inner {
    padding: 0 24px;
  }
  /* ==============================[ Formate für Sektionen ]============================== */
  /* ------------[ spezielle Klassen für Sektionen ]------------ */
  /* ==============================[ universelle Klassen ]============================== */
  /* ------------[ vertikale Positionierung der Elemente ]------------ */
  /* ------------[ verschiedene Abstände ]------------ */
  /* zusätzlicher Abstand nach oben */
  .margin-top {
    margin-top: 42px;
  }
  /* zusätzlicher Abstand nach unten */
  .margin-bottom {
    margin-bottom: 42px;
  }
  /* ------------[ verschiedene Abstände im Grid ]------------ */
  .big-grid-gap .grid {
    grid-gap: 42px;
  }
  /* ------------[ Klassen für Texte ]------------ */
  /* ------------[ Hinweismeldungen, Fehler, Alerts, Warnungen ]------------ */
  /* ------------[ Sonstiges ]------------ */
  /* ========================[ Header-Bereich ]======================== */
  .header-flex {
    max-width: 78%;
  }
  .oblique {
    width: 280px;
  }
  .oblique.left {
    right: 80%;
  }
  .oblique.left.border {
    right: 76.7%;
  }
  .oblique.right {
    width: 400px;
    right: -29%;
  }
  .oblique.right.border {
    right: -25%;
    top: 40px;
  }
  /* ------------[ Logo ]------------ */
  a.logo {
    max-width: 240px;
  }
  /* ------------[ Hauptnavigation ]------------ */
  /* ------------[ Subnavigation ]------------ */
  /* ------------[ mobile Navigation ]------------ */
  /* ------------[ Language Navigatrion ]------------ */
  .header-section .langnav, .header-section.closed .langnav, .header-flex.closed .langnav > ul {
    display: block;
  }
  .langnav {
    right: 92px;
    top: 16px;
  }
  .langnav li {
    display: inline-block;
  }
  .langnav li:last-child a {
    border-left: 1px solid #eee;
    border-top: none;
  }
  /* ========================[ Standard-Elemente ]======================== */
  /* ------------[ Überschriften ]------------ */
  h1 {
    font-size: 48px;
    line-height: 48px;
  }
  h2 {
    font-size: 36px;
    line-height: 42px;
  }
  /* ------------[ Absätze ]------------ */
  /* ------------[ Verlinkungen ]------------ */
  /* ------------[ Bilder ]------------ */
  /* ------------[ Bild größer klicken ]------------ */
  /* ------------[ Text-Bild-Element ]------------ */
  /* Kombinationen für Bildbreiten und Bildposition */
  .pic-img {
    margin: 0 0 18px;
  }
  .pic-img.half {
    width: calc((100% - 24px) / 2);
  }
  .pic-img.third {
    width: calc((100% - 2 * 24px) / 3);
  }
  .pic-img.fourth {
    width: calc((100% - 3 * 24px) / 4);
  }
  .pic-img.left {
    float: left;
    margin-right: 24px;
  }
  .pic-img.right {
    float: right;
    margin-left: 24px;
  }
  /* ------------[ Unnummerierte Listen ]------------ */
  /* ------------[ Nummerierte Listen ]------------ */
  /* ------------[ Listen mit mehr Abstand ]------------ */
  /* ------------[ Tabellen ]------------ */
  /* ========================[ Sonderelemente ]======================== */
  /* ------------[ Infobox grau ]------------ */
  /* ------------[ Infobox blau ]------------ */
  /* ------------[ Teaser ]------------ */
  .teaser-content {
    padding: 40px 40px 72px;
  }
  #team-member-list .teaser {
    width: 31.75%;
  }
  /* ------------[ Teaser mit Bild ]------------ */
  .teaser-img .teaser-content {
    padding: 40px;
  }
  /* ------------[ Flex-Teaser ]------------ */
  /* alle Teaser */
  .teaser-flex {
    margin: -1%;
  }
  /* Einzelne Teaser auf small alle gleich */
  .teaser-flex .teaser {
    flex-basis: 48%;
    margin: 1%;
  }
  /* Gesamt-DIV um alle Teaser */
  /*.teaser-flex {
	margin: 0 -(24px / 2);
}

/* Einzelne Teaser allgemein */
  /*.teaser-flex .teaser {
	margin: (24px / 2);
}

/* für diese Konstellationen 1 Teaser pro Zeile */
  /*.teaser-flex.cols-1 .teaser {
	width: calc(100% - 24px);
}

/* für diese Konstellationen 2 Teaser pro Zeile */
  /*.teaser-flex.cols-2  .teaser, // 2
.teaser-flex.cols-4  .teaser, // 2 + 2
.teaser-flex.cols-7  .teaser, // 2 + 2 + 2 + 1
.teaser-flex.cols-8  .teaser, // 2 + 2 + 2 + 2
.teaser-flex.cols-10 .teaser, // 2 + 2 + 2 + 2 + 2
.teaser-flex.cols-13 .teaser, // 2 + 2 + 2 + 2 + 2 + 2 + 1
.teaser-flex.cols-14 .teaser, // 2 + 2 + 2 + 2 + 2 + 2 + 2
.teaser-flex.cols-15 .teaser, // 2 + 2 + 2 + 2 + 2 + 2 + 2 + 1
.teaser-flex.cols-16 .teaser  // 2 + 2 + 2 + 2 + 2 + 2 + 2 + 2
{
	width: calc((100% - 2 * 24px) / 2);
}

/* für diese Konstellationen 3 Teaser pro Zeile */
  /*.teaser-flex.cols-3  .teaser, // 3
.teaser-flex.cols-5  .teaser, // 3 + 2
.teaser-flex.cols-6  .teaser, // 3 + 3
.teaser-flex.cols-9  .teaser, // 3 + 3 + 3
.teaser-flex.cols-11 .teaser, // 3 + 3 + 3 + 2
.teaser-flex.cols-12 .teaser, // 3 + 3 + 3 + 3
.teaser-flex.cols-14 .teaser, // 3 + 3 + 3 + 3 + 2
.teaser-flex.cols-15 .teaser  // 3 + 3 + 3 + 3 + 3
{
	width: calc((100% - 3 * 24px / 3);
}


/* ------------[ Bildergalerie ]------------ */
  .image-gallery {
    margin: -0.5%;
  }
  /* Auf small alle Bilder vollbreit */
  .image-gallery li {
    flex-basis: 32.3%;
    margin: 0.5%;
  }
  /*.image-gallery {
	margin: 0 -(24px / 2);
}

/* 3 Fotos pro Zeile - oder die beiden Werte in der width-Berechnung gegen andere Anzahl austauschen */
  /* Wenn Abstand zu groß, einfach zwei Zeien aus- und zwei Zeilen einkommentieren */
  /*.image-gallery li {

	/* Abstände mit halbem Gridgap */
  /* margin: ((24px / 2) / 2);
	width: calc((100% - 3 * (24px / 2)) / 3);

	/* Abstände mit normalem Gridgap */
  /*margin: (24px / 2);
	width: calc((100% - 3 * 24px) / 3);
}


/* ------------[ Akkordeon ]------------ */
  /* ------------[ Videoplayer ]------------ */
  /* ------------[ Formulare ]------------ */
  .fieldset-one .field {
    display: inline-block;
    vertical-align: top;
    width: 49.61%;
  }
  .field-left-padding {
    padding-right: 1.6vw;
  }
  .field-right-padding {
    padding-left: 1.94805vw;
  }
  /* ========================[ Sonderelmente "Kunde" ]======================== */
  /* ------------[ services-section / leistungen ]------------ */
  .services-section {
    padding-bottom: 152px;
  }
  .services-section .grid {
    grid-gap: 12px;
  }
  .services-section .grid > div:nth-child(2n) {
    position: relative;
    top: 92px;
  }
  /* ------------[ Timeline-Section]------------ */
  .timeline {
    position: relative;
  }
  .timeline .grid {
    grid-gap: 3.8961%;
  }
  .timeline hr {
    left: calc(50% - 0.5px);
  }
  .timeline .dot {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 34px;
    left: calc(50% - 40px);
  }
  .timeline .dot:after {
    top: 40px;
    left: -30px;
    background-color: #0066B3;
  }
  .timeline .dot span {
    color: #0066B3;
    font-size: 2.7em;
    font-family: barlow thin;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .timeline .left li {
    padding-right: 18px;
    background-position: right;
  }
  .timeline-item.left .icon-pfeil img {
    transform: rotate(180deg);
  }
  .timeline-item:last-child:before {
    left: calc(50% - 1px);
  }
  .timeline-text {
    width: 100%;
    padding: 0 60px 0 0;
  }
  .right .dot:after {
    right: -30px;
    left: auto;
  }
  .right .timeline-text {
    margin: 0 0 0 60px;
  }
  .left .timeline-text {
    text-align: right;
  }
  /* ------------[ Referenzseite Grid-Kacheln]------------ */
  .grid-kacheln > div {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
  }
  .grid-kacheln .grid-kacheln-item {
    grid-column: span 3;
  }
  .grid-kacheln .grid-kacheln-item:nth-child(3n) {
    grid-column: span 6;
  }
  /* ------------[ Call to Action als content-Element]------------ */
  .cta-section .inner {
    padding: 40px 40px 88px;
  }
  .cta-section .oblique.right {
    right: 10%;
  }
  .cta-section .oblique.border.right {
    top: 40px;
    right: 5%;
  }
  .cta-button {
    bottom: 40px;
    right: 40px;
  }
  .cta-button:hover {
    transition: all 0.2s ease-in-out;
  }
  .cta-bg {
    padding: 80px 40px;
  }
  /* ========================[ Footer ]======================== */
}
/* Middle Screens*/
@media screen and (min-width: 1024px) {
  body:after {
    content: "L";
  }
  /* ------------[ Schriften ]------------ */
  /* ------------[ Body ]------------ */
  /* ==============================[ Begrenzung Inhalt ]============================== */
  /* Begrenzung des Contentbereichs */
  .inner {
    padding: 0 30px;
  }
  /* ==============================[ Formate für Sektionen ]============================== */
  /* ------------[ spezielle Klassen für Sektionen ]------------ */
  /* ==============================[ universelle Klassen ]============================== */
  /* ------------[ vertikale Positionierung der Elemente ]------------ */
  /* ------------[ verschiedene Abstände ]------------ */
  /* ------------[ verschiedene Abstände im Grid ]------------ */
  .big-grid-gap .grid {
    grid-gap: 60px;
  }
  /* ------------[ Klassen für Texte ]------------ */
  /* ------------[ Hinweismeldungen, Fehler, Alerts, Warnungen ]------------ */
  /* ------------[ Sonstiges ]------------ */
  /* ========================[ Header-Bereich ]======================== */
  .header-flex {
    align-items: flex-end;
    max-width: 100%;
  }
  .header-flex > div {
    display: block;
    position: relative;
  }
  .oblique {
    width: 318px;
  }
  .oblique.left {
    right: 90%;
  }
  .oblique.left.border {
    right: 87%;
  }
  .oblique.right {
    width: 450px;
    right: -18%;
  }
  .oblique.right.border {
    top: 98px;
    right: -15%;
  }
  /* ------------[ Logo ]------------ */
  a.logo {
    max-width: 310px;
    padding: 32px 0 0;
    transition: all 0.2s ease-out;
  }
  .small a.logo {
    max-width: 196px;
    padding: 21px 0 0;
    transition: all 0.2s ease-out;
  }
  /* ------------[ Hauptnavigation ]------------ */
  .mainnav {
    display: block;
    position: relative;
    width: auto;
    height: auto;
    top: 0;
    overflow-x: unset;
  }
  .mainnav ul {
    position: fixed;
    top: 54px;
    left: 0;
    right: 0;
    height: auto;
    border: none;
    box-shadow: none;
    padding: 42px 6px 72px;
    overflow: auto;
  }
  .mainnav ul li a {
    color: #444;
  }
  .mainnav > ul {
    display: block;
    position: relative;
    top: 0;
    left: auto;
    background-color: inherit;
    border: none;
    padding: 0;
    margin: 0;
    overflow: inherit;
  }
  .mainnav > ul > li {
    display: inline-block;
    position: relative;
    background: none;
    padding: 0;
    margin: 0;
  }
  .mainnav > ul > li a {
    padding: 24px 12px;
    transition: all 0.2s ease-out;
  }
  .small .mainnav > ul > li > a {
    padding: 16px 12px;
    transition: all 0.2s ease-out;
  }
  .header-section .mainnav, .header-flex.closed .mainnav > ul {
    display: block;
  }
  /* current der Navigationspunkte */
  nav.mainnav > ul > li.current > a, nav.mainnav ul:not(.subnav) > li:hover > a {
    color: #0066B3;
  }
  /* ------------[ Subnavigation ]------------ */
  ul.subnav {
    position: absolute;
    top: 74px;
    left: -24px;
    right: auto;
    margin: 0;
    padding: 24px;
    display: none;
    background-color: #0066B3;
    min-width: 322px;
    box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.2);
  }
  .small ul.subnav {
    top: 58px;
  }
  ul.subnav li {
    border: none;
  }
  ul.subnav li a {
    padding: 8px 12px;
    color: #fff;
    text-transform: none;
  }
  ul.subnav li a:before {
    width: 52px;
    top: 14px;
    left: -60px;
  }
  ul.subnav li:hover a:before, ul.subnav li.current a:before {
    left: -40px;
  }
  ul.subnav li.current a, ul.subnav li:hover a {
    color: #fff;
    padding: 8px 12px 8px 32px;
  }
  ul li:hover ul.subnav {
    display: block;
  }
  .mainnav > ul > li > a:before {
    content: none;
  }
  /* ------------[ Mobile Navigation ]------------ */
  #nav-toggle-wrap {
    display: none;
    flex: none;
  }
  /* ------------[ Language Navigatrion ]------------ */
  .langnav {
    right: 0;
    top: 0;
  }
  /* ------------[ Keyvisual ]------------ */
  .keyvisual-wrap {
    margin-top: 157px;
  }
  .keyvisual-wrap .oblique-left {
    right: -15%;
    width: 450px;
  }
  /* ========================[ Standard-Elemente ]======================== */
  /* ========================[ Standard-Elemente ]======================== */
  /* ------------[ Überschriften ]------------ */
  /* ------------[ Absätze ]------------ */
  /* ------------[ Verlinkungen ]------------ */
  /* ------------[ Bilder ]------------ */
  /* ------------[ Bild größer klicken ]------------ */
  /* ------------[ Text-Bild-Element ]------------ */
  /* ------------[ Unnummerierte Listen ]------------ */
  /* ------------[ Nummerierte Listen ]------------ */
  /* ------------[ Listen mit mehr Abstand ]------------ */
  /* ------------[ Tabellen ]------------ */
  /* ========================[ Sonderelemente ]======================== */
  /* ------------[ Infobox grau ]------------ */
  /* ------------[ Infobox blau ]------------ */
  /* ------------[ Teaser ]------------ */
  #team-member-list .teaser {
    width: 23.41%;
  }
  /* ------------[ Flex-Teaser ]------------ */
  /* alle Teaser */
  .teaser-flex {
    margin: -2%;
  }
  /* Einzelne Teaser auf small alle gleich */
  .teaser-flex .teaser {
    flex-basis: 29.3%;
    margin: 2%;
  }
  /* für diese Konstellationen 3 Teaser pro Zeile */
  /*.teaser-flex.cols-3  .teaser, // 3
.teaser-flex.cols-5  .teaser, // 3 + 2
.teaser-flex.cols-6  .teaser, // 3 + 3
.teaser-flex.cols-9  .teaser, // 3 + 3 + 3 
.teaser-flex.cols-13 .teaser, // 3 + 3 + 3 + 3 + 1
.teaser-flex.cols-14 .teaser, // 3 + 3 + 3 + 3 + 2
.teaser-flex.cols-15 .teaser  // 3 + 3 + 3 + 3 
{
	width: calc((100% - 3 * 24px) / 3);
}

/* für diese Konstellationen 4 Teaser pro Zeile */
  /*.teaser-flex.cols-4  .teaser, // 4
.teaser-flex.cols-7  .teaser, // 4 + 3
.teaser-flex.cols-8  .teaser, // 4 + 4
.teaser-flex.cols-10 .teaser, // 4 + 4 + 2
.teaser-flex.cols-11 .teaser, // 4 + 4 + 3
.teaser-flex.cols-12 .teaser, // 4 + 4 + 4
.teaser-flex.cols-16 .teaser  // 4 + 4 + 4 + 4 
{
	width: calc((100% - 3 * 24px) / 3);
}


/* ------------[ Bildergalerie ]------------ */
  /* Auf small alle Bilder vollbreit */
  .image-gallery li {
    flex-basis: 16.15%;
  }
  /* 4 Fotos pro Zeile - oder die beiden Werte in der width-Berechnung gegen andere Anzahl austauschen */
  /* Wenn Abstand zu groß, einfach zwei Zeien aus- und zwei Zeilen einkommentieren */
  /*.image-gallery li {

/* Abstände mit halbem Gridgap */
  /*// margin: (($gridgap / 2) / 2);
// width: calc((100% - 4 * (24px / 2)) / 4);

/* Abstände mit normalem Gridgap */
  /*	margin: ($gridgap / 2);
	width: calc((100% - 4 * 24px) / 4);
}


/* ------------[ Akkordeon ]------------ */
  /* ------------[ Videoplayer ]------------ */
  /* ------------[ Formulare ]------------ */
  .field-left-padding {
    padding-right: 16px;
  }
  .field-right-padding {
    padding-left: 20px;
  }
  /* ========================[ Sonderelmente "Kunde" ]======================== */
  /* ------------[ services-section / leistungen ]------------ */
  .services-section {
    padding-bottom: 152px;
  }
  .services-section .grid {
    grid-gap: 12px;
  }
  .services-section .grid > div:nth-child(2n) {
    top: 0;
  }
  .services-section .grid > div:nth-child(3n - 1) {
    position: relative;
    top: 92px;
  }
  /* ------------[ benefits-section / vorteile ]------------ */
  .benefits-item {
    padding: 80px 0 0 96px;
    margin-top: 24px;
  }
  .section-benefits h2 {
    margin-bottom: 54px;
  }
  .benefits-count {
    font-size: 8em;
    top: 0;
    left: 0;
  }
  /* ------------[ Call to Action als content-Element]------------ */
  .cta-section .oblique.right {
    right: 10%;
    width: 500px;
  }
  /* ------------[ Call to Action footer ]------------ */
  .cta-footer {
    padding: 0;
  }
  .cta-footer .oblique.left.border {
    right: 50%;
    top: 50%;
    width: 700px;
    min-height: 300px;
  }
  .cta-footer-item {
    transform: skewX(-33deg);
    padding: 60px 0px;
    background: #0066B3;
  }
  .shape {
    height: 140%;
  }
  .shape.before {
    width: 131px;
    shape-outside: polygon(0px 0, 100% 0, 0% 70%, 0 100%);
    float: left;
  }
  .shape.after {
    float: right;
    shape-outside: polygon(100% 0, 100% 0%, 100% 100%, 0 100%);
    width: 122px;
  }
  .cta-footer-text {
    transform: skewX(33deg);
  }
  /* ------------[ Referenzseite Grid-Kacheln]------------ */
  .grid-kacheln > div {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-kacheln > div .grid-kacheln-item {
    grid-column: auto;
  }
  .grid-kacheln > div .grid-kacheln-item:nth-child(3n) {
    grid-column: auto;
  }
  .grid-kacheln > div .grid-kacheln-item:nth-child(4n - 3), .grid-kacheln > div .grid-kacheln-item:nth-child(4n) {
    grid-column: span 2;
  }
  .grid-kacheln-item {
    padding: 24px;
    background-color: #f1f1f1;
  }
  /* ========================[ Footer-Bereich ]======================== */
  /* Sticky Footer (http://www.cssstickyfooter.com) */
  /* Wenn nicht gewünscht inklusive im HTML #wrap und #main löschen. Ansonsten Höhe an 3 Stellen anpassen */
  /* HTML-Konstrukt muss sein: <div id="wrap"><div id="main">...</div></div> <footer>...</footer> */
  /*
html, body {
	height: 100%;
}

#wrap {
	min-height: 100%;
}

#main {
	padding-bottom: 120px;
}

footer {
	position: relative;
	height: 120px;
	background-color:#f1f1f1;
	padding:24px 0;
	margin-top: -120px;
}
*/
  .footer-wrap {
    display: flex;
    flex-direction: row;
  }
  .footer-wrap > div {
    flex: 1;
  }
  .footer-wrap > div:nth-child(2) {
    flex: 2;
  }
  footer .shape.before {
    shape-outside: polygon(-40px 0, -40% 0%, 170% 100%, 50% 100%);
    width: 50px;
  }
  footer .tab {
    float: none;
    width: auto;
    clear: none;
    display: inline-block;
  }
}
/* Large Screens*/
@media screen and (min-width: 1280px) {
  body:after {
    content: "XL";
  }
  /* ------------[ Schriften ]------------ */
  /* ------------[ Body ]------------ */
  /* ==============================[ Begrenzung Inhalt ]============================== */
  /* ==============================[ Formate für Sektionen ]============================== */
  /* ------------[ spezielle Klassen für Sektionen ]------------ */
  /* ==============================[ universelle Klassen ]============================== */
  /* ------------[ vertikale Positionierung der Elemente ]------------ */
  /* ------------[ verschiedene Abstände ]------------ */
  /* ------------[ verschiedene Abstände im Grid ]------------ */
  /* ------------[ Klassen für Texte ]------------ */
  /* ------------[ Hinweismeldungen, Fehler, Alerts, Warnungen ]------------ */
  /* ------------[ Sonstiges ]------------ */
  /* ========================[ Header-Bereich ]======================== */
  .oblique {
    width: 100%;
  }
  .oblique.left {
    right: 80%;
  }
  .oblique.left.border {
    right: 77.2%;
    top: 80px;
  }
  .oblique.right {
    width: 655px;
  }
  /* ------------[ Logo ]------------ */
  /* ------------[ Hauptnavigation ]------------ */
  /* ------------[ Subnavigation ]------------ */
  /* ------------[ mobile Navigation ]------------ */
  /* ------------[ keyvisual ]------------ */
  .keyvisual-wrap .oblique-left {
    width: 796px;
  }
  /* ========================[ Standard-Elemente ]======================== */
  /* ------------[ Überschriften ]------------ */
  /* ------------[ Absätze ]------------ */
  /* ------------[ Verlinkungen ]------------ */
  /* ------------[ Bilder ]------------ */
  /* ------------[ Bild größer klicken ]------------ */
  /* ------------[ Text-Bild-Element ]------------ */
  /* ------------[ Unnummerierte Listen ]------------ */
  /* ------------[ Nummerierte Listen ]------------ */
  /* ------------[ Listen mit mehr Abstand ]------------ */
  /* ------------[ Tabellen ]------------ */
  /* ========================[ Sonderelemente ]======================== */
  /* ------------[ Infobox ]------------ */
  /* ------------[ Teaser ]------------ */
  /* ------------[ Flex-Teaser ]------------ */
  /* ab break-xl gilt statt gridgap mit $max-gridgap arbeiten */
  /* Gesamt-DIV um alle Teaser */
  /*.teaser-flex {
	margin: 0 -($max-gridgap / 2);
}

.teaser-flex .teaser {
	margin: ($max-gridgap / 2);
}

/* für Konstellationen 1 und 2 Teaser pro Zeile siehe 3middle.scss*/
  /* für diese Konstellationen 3 Teaser pro Zeile*/
  /*.teaser-flex.cols-3  .teaser, // 3
.teaser-flex.cols-6  .teaser, // 3 + 3
.teaser-flex.cols-9  .teaser, // 3 + 3 + 3 
{
	width: calc((100% - 3 * 3.8961vh) / 3);
}

/* für diese Konstellationen 4 Teaser pro Zeile*/
  /*.teaser-flex.cols-4  .teaser, // 4
.teaser-flex.cols-7  .teaser, // 4 + 3
.teaser-flex.cols-11 .teaser, // 4 + 4 + 3
.teaser-flex.cols-12 .teaser, // 4 + 4 + 4
.teaser-flex.cols-16 .teaser  // 4 + 4 + 4 + 4 
{
	width: calc((100% - 4 * 3.8961vh) / 4);
}

/* für diese Konstellationen 5 Teaser pro Zeile*/
  /*.teaser-flex.cols-5  .teaser, // 5
.teaser-flex.cols-8  .teaser, // 5 + 3
.teaser-flex.cols-10 .teaser, // 5 + 5
.teaser-flex.cols-13 .teaser, // 5 + 5 + 3
.teaser-flex.cols-14 .teaser, // 5 + 5 + 4
.teaser-flex.cols-15 .teaser  // 5 + 5 + 5 
{
	width: calc((100% - 5 * 3.8961vh) / 5);
}


/* ------------[ Bildergalerie ]------------ */
  /* ab break-xl gilt statt gridgap mit $max-gridgap arbeiten */
  /* Gesamt-DIV um alle Teaser */
  /*.image-gallery {
	margin: 0 -($max-gridgap / 2);
}

/* 4 Fotos pro Zeile - oder die beiden Werte in der width-Berechnung gegen andere Anzahl austauschen */
  /* Wenn Abstand zu groß, einfach zwei Zeien aus- und zwei Zeilen einkommentieren */
  /*.image-gallery li {

	/* Abstände mit halbem Gridgap */
  /*	// margin: (($max-gridgap / 2) / 2);
	// width: calc((100% - 4 * (3.8961vh / 2)) / 4);

	/* Abstände mit normalem Gridgap */
  /*	margin: ($max-gridgap / 2);
	width: calc((100% - 4 * 3.8961vh) / 4);
}


/* ------------[ Akkordeon ]------------ */
  /* ------------[ Videoplayer ]------------ */
  /* ------------[ Formulare ]------------ */
  /* ========================[ Sonderelmente "Kunde" ]======================== */
  /* ------------[ Call to Action als content-Element]------------ */
  .cta-section .oblique.right {
    right: 20%;
    width: 600px;
  }
  .cta-section .oblique.border.right {
    right: 15%;
  }
  /* ========================[ Footer-Bereich ]======================== */
  footer .shape.before {
    shape-outside: polygon(0px 0, 0% 0%, 100% 100%, 50% 100%);
    width: 100px;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1400px) {
  .keyvisual-wrap .schraege-left {
    width: 550px;
  }
}
/* xLarge Screens*/
@media print {
  /* ========================[ Basiselemente ]======================== */
  * {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }
  /* Remove shadow and background */
  *, *:before, *:after, p:first-letter, div:first-letter, blockquote:first-letter, li:first-letter, p:first-line, div:first-line, blockquote:first-line, li:first-line {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  /* ------------[ Pagebreak ]------------ */
  .page-break, .page-break-before {
    page-break-before: always;
  }
  .page-break-after {
    page-break-after: always;
  }
  .no-print {
    display: none;
  }
  /* ------------[ HTML ]------------ */
  html {
    font-size: 12px;
    padding: 0;
    margin: 0;
  }
  /* Section */
  article section {
    margin: 24px 0;
  }
  /* ------------[ Nummerierte Listen ]------------ */
  /* Placeholder WebKit browsers*/
  ::-webkit-input-placeholder {
    color: transparent;
  }
  /* Mozilla Firefox 4 to 18 */
  :-moz-placeholder {
    color: transparent;
  }
  /* Mozilla Firefox 19+ */
  ::-moz-placeholder {
    color: transparent;
  }
  /* Internet Explorer 10+*/
  :-ms-input-placeholder {
    color: transparent;
  }
  /* ========================[ Content-Bereich ]======================== */
  /* Padding */
  /* Colors*/
  /* Note: Black prints faster (http://www.sanbeiji.com/archives/953) (thanks to html5 boilerplate) */
  body {
    max-width: 21cm;
    font-family: arial;
    font-size: 12px;
    line-height: 16pt;
    color: #000 !important;
    background: #fff !important;
    padding: 24px;
    margin: 0 auto;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }
  /* ------------[ Header-Bereich ]------------ */
  header {
    position: relative;
  }
  /* Allgemein */
  .mainnav, .keyvisual-wrap, .nav-toggle-wrap {
    display: none;
  }
  /* ========================[ Schriften ]======================== */
  /* Font family Taken from bootstrap */
  /* Font size */
  /* Base */
  /* ------------[ Überschriften ]------------ */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.2;
    color: #000;
    margin-top: 0;
    margin-bottom: 0.75rem;
  }
  h1 {
    font-size: 18px;
  }
  h2 {
    font-size: 16px;
  }
  h3 {
    font-size: 15px;
  }
  h4 {
    font-size: 14px;
  }
  h5 {
    font-size: 13px;
  }
  h6 {
    font-size: 12px;
  }
  /* ------------[ Absätze ]------------ */
  p, blockquote, table, ul, ol, dl {
    margin-top: 0;
    margin-bottom: 1.5rem;
  }
  p:last-child, ul:last-child, ol:last-child {
    margin-bottom: 0;
  }
  /* Intro */
  .intro {
    margin-bottom: 24px;
  }
  /* kleiner Text */
  .minitext {
    font-size: 13px;
  }
  /* ========================[ Contentelemente ]======================== */
  /* ------------[ Trennlinie ]------------ */
  hr {
    height: 0;
    border: 0;
    border-bottom: 2px solid #bbb;
    padding: 0;
    margin: 2.25rem 0;
  }
  /* ------------[ Links ]------------ */
  /* Links*/
  a, a:visited {
    color: #000;
    text-decoration: underline;
    word-wrap: break-word;
  }
  a.arrowlink {
    padding-left: 0;
  }
  .button {
    padding: 0;
  }
  /* ------------[ Bilder ]------------ */
  img.pic {
    display: block;
    max-width: 200px !important;
    border: 0;
    vertical-align: middle;
  }
  .pic-description {
    font-size: 14px;
  }
  .image-gallery li {
    display: inline-block;
    vertical-align: top;
  }
  /* ------------[ Tabellen ]------------ */
  table {
    border-collapse: collapse;
  }
  thead {
    display: table-header-group;
  }
  tr, .modern tr {
    border: none;
  }
  table, th, td, table.modern, .modern th, .modern td {
    border: 1px solid #bdbdbd;
  }
  td, th, .modern th, .modern td {
    padding: 7px 14px;
    page-break-inside: avoid;
  }
  /* ========================[ Sonderelmente ]======================== */
  /* ------------[ Infobox ]------------ */
  .infobox {
    border: 2px solid #e7e7e7;
    padding: 12px;
  }
  .infobox.rahmen {
    padding: 12px;
  }
  .infobox.hgColor, .infobox.hgColor a {
    color: #000;
  }
  /* ------------[ Teaser ]------------ */
  .teaser-flex .teaser {
    width: calc(100% / 2 - 48px);
    padding: 0;
    margin-right: 24px;
  }
  .teaser-flex .teaser-image {
    height: auto;
  }
  .teaser.clickbox {
    padding: 0;
  }
  .teaser.clickbox span.button {
    display: none;
  }
  /* ------------[ Akkordion ]------------ */
  .accordion .acc-item .title h2, .title h3 {
    font-size: 16px;
    color: #000;
  }
  /* ------------[ Call to Action ]------------ */
  .calltoaction {
    font-size: 1rem;
    text-align: left;
    padding: 0;
    margin: 0;
  }
  .calltoaction span {
    font-size: 1rem;
  }
  /* ========================[ Sonstiges ]======================== */
  /* ------------[ Others ]------------ */
  blockquote {
    border: 0;
    border-left: 5px solid #bbb;
    padding: 12px 1.5rem;
    margin-left: 1px;
  }
  [dir='rtl'] blockquote {
    border-left: 0;
    border-right: 5px solid #bbb;
    margin-left: 0;
    margin-right: 1px;
  }
  blockquote:first-child {
    margin-top: 0;
  }
  blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
    margin-bottom: 0;
  }
  blockquote footer {
    display: block;
    font-size: 80%;
  }
  /* ------------[ Others ]------------ */
  dt {
    font-weight: bold;
  }
  dd {
    margin: 0;
    margin-bottom: 0.75rem;
  }
  abbr[title], acronym[title] {
    border: 0;
    text-decoration: none;
  }
  abbr[title].no-reformat:after, acronym[title].no-reformat:after {
    content: '';
  }
  .no-reformat abbr:after, .no-reformat acronym:after, .no-reformat a:after {
    content: '';
  }
  /* ------------[ Code, Pre ]------------ */
  code, pre, kbd {
    font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
    font-size: 85%;
    border: 1px solid #bbb;
  }
  code, kbd {
    padding: 3px;
  }
  pre {
    padding: 10px 12px;
    margin-bottom: 1.5rem;
  }
  pre code, kbd {
    border: 0;
  }
}
/* Print Styles*/
