@charset "UTF-8";
* {
  margin: 0;
  outline: 0;
  border: none;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-size: 1.4rem;
}

html {
  height: 100%;
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  position: relative;
}

:root {
  --color-white: #ffffff;
  --sticky-nav-top-height: 57px;
  --sticky-nav-desktop-height: 0px;
  --sticky-nav-height: calc(var(--sticky-nav-top-height) + var(--sticky-nav-desktop-height));
}
@media (min-width: 1000px) {
  :root {
    --sticky-nav-top-height: 100px;
    --sticky-nav-desktop-height: 49px;
  }
}

html {
  scroll-padding-top: 150px;
}

.center {
  position: relative;
  margin: auto;
  max-width: 1560px;
  background: white;
}
@media screen and (max-width: 640px) {
  .center {
    width: 100%;
  }
}
@media screen and (min-width: 640px) and (max-width: 1000px) {
  .center {
    width: 94%;
  }
}
@media screen and (min-width: 1000px) {
  .center {
    width: 90%;
  }
}
.center.padding {
  padding-right: 64px;
  padding-left: 64px;
}
@media screen and (max-width: 640px) {
  .center.padding {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 640px) and (max-width: 1000px) {
  .center.padding {
    padding-right: 34px;
    padding-left: 34px;
  }
}

.lightbox {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  transition: opacity 1s ease-in-out;
  opacity: 0;
  display: none;
}
.lightbox--visible {
  opacity: 1;
}
.lightbox__close-button {
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  font-family: Arial;
  font-size: 18px;
  line-height: 41px;
  z-index: 20;
  color: white;
  text-align: center;
  cursor: pointer;
  font-weight: lighter;
}
.lightbox__set-control {
  z-index: 20;
  color: white;
  text-align: center;
  cursor: pointer;
  position: absolute;
  display: block;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  top: 50%;
  margin-top: -20px;
}
.lightbox__set-control--prev {
  left: 0;
}
.lightbox__set-control--next {
  right: 0;
}
.lightbox__title {
  position: absolute;
  z-index: 100;
  left: 0;
  bottom: 0;
  color: white;
  padding: 15px;
  margin: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
}
.lightbox__container {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
}
.lightbox__iframe {
  border: none;
  width: 100%;
  height: 100%;
}
.lightbox__image, .lightbox__video, .lightbox__iframe {
  position: relative;
  z-index: 10;
  display: block;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  object-fit: contain;
  object-position: center;
  max-height: calc(100vh - 100px);
  width: calc(100vw - 100px);
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__gdpr {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: calc(100vh - 100px);
  max-width: calc(100vw - 100px);
  width: 480px;
  color: white;
}
.lightbox__gdpr__button {
  background: red;
  color: white;
  padding: 20px 30px;
  border-radius: 5px;
  display: inline-block;
  margin-top: 1.5rem;
  cursor: pointer;
}

/**
 * Slider
 * Felix Kiesewetter <info@felixkiesewetter.de>
 * v1.7.1
 * 2022-04-08
 */
.slider {
  width: 100%;
  display: block !important;
}
.slider--mode-fade {
  position: relative;
}
.slider img {
  max-width: 100%;
}
.slider__intersection-observer-helper {
  height: 1px;
  width: 1px;
  position: absolute;
  opacity: 1;
  left: 50%;
  top: 50%;
  z-index: 10000;
}
.slider__viewport {
  transition: max-height 0.25s ease-out;
}
.slider--mode-slide .slider__viewport {
  overflow: hidden;
}
.slider--hold-transition .slider__items {
  transition: none !important;
}
.slider--mode-slide .slider__items {
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
  width: calc(var(--itemsCount) / var(--itemsPerView) * 100%);
  --prependedItemsCount: 0;
  --dragX: 0px;
  --slideX: 0%;
  transform: translateX(calc(var(--dragX) + var(--slideX)));
  margin-left: calc(var(--prependedItemsCount) * -100% / var(--itemsPerView));
}
[style*=max-height] .slider__items {
  align-items: flex-start;
}
.slider--mode-slide .slider__item {
  width: calc(100% / var(--itemsCount));
  flex-grow: 0;
  flex-shrink: 0;
}
.slider--debug .slider__item {
  border-collapse: collapse;
}
.slider--debug .slider__item--appended {
  border: solid 1px red;
}
.slider--debug .slider__item--prepended {
  border: solid 1px orange;
}
.slider--debug .slider__item:not(.slider__item--prepended):not(.slider__item--appended) {
  border: solid 1px green;
}
.slider--mode-fade .slider__item {
  transition-property: opacity;
  transition-timing-function: linear;
}
.slider--mode-fade .slider__item:first-of-type {
  position: relative;
  z-index: 2;
}
.slider--mode-fade .slider__item:not(:first-of-type) {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.slider__navigation {
  list-style: none;
  padding: 0;
  display: flex;
}
.slider__navigation__item {
  cursor: pointer;
}
.slider__control {
  transition: all 0.25s linear;
  cursor: pointer;
}
.slider__control--disabled {
  opacity: 0;
  cursor: default;
  pointer-events: none;
}
.slider__autoplay-indicator {
  position: relative;
  height: 5px;
}
.slider__autoplay-indicator:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--color-primary);
  animation-duration: var(--d);
  animation-name: autoplay-indicator;
  animation-iteration-count: infinite;
  transform-origin: left center;
}
.slider__autoplay-indicator--hold:before {
  animation: none;
  transform: scaleX(0);
}

@keyframes autoplay-indicator {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.slideshow {
  position: relative;
  overflow-x: hidden;
  -ms-touch-action: pan-y; /* disable x-panning on the slideshow */
  -webkit-transition: height 0.5s ease;
  -moz-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
  -ms-transition: height 0.5s ease;
  transition: height 0.5s ease;
}

.slideshow.noselect,
.slideshow.noselect * {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.slideshow.fade {
  min-height: 150px;
}

.slideshow.autoheight {
  overflow-y: hidden;
}

.article-group article .related {
  top: 0;
}

.slideshow-item-list {
  position: absolute;
  z-index: 999;
  bottom: 40px;
  width: 100%;
  height: 15px;
  text-align: center;
}

.slideshow-item-list li {
  cursor: pointer;
  display: inline-block;
  width: 15px;
  height: 15px;
  background: white;
  margin: 0 2px;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  -ms-border-radius: 20px;
  transition: background 0.2s linear;
  -webkit-transition: background 0.2s linear;
  -moz-transition: background 0.2s linear;
  -o-transition: background 0.2s linear;
  -ms-transition: background 0.2s linear;
}

.slideshow-item-list li:hover {
  background: rgba(0, 0, 0, 0.5);
}

.slideshow-item-list .current {
  background: black;
}

.slideshow.slide .slideshow-items {
  position: relative;
  width: 10000%;
}

.slideshow.slide .slideshow-items:after {
  content: "";
  display: block;
  clear: both;
  float: none !important;
}

.slideshow.slide .slideshow-item {
  position: relative;
  display: block;
  width: 100%;
}

.slideshow.slide .slideshow-items .slideshow-item {
  width: 1% !important;
  float: left !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.slideshow-next,
.slideshow-prev {
  cursor: pointer;
  position: absolute;
  z-index: 999;
  top: 0;
}

#page-header .slideshow-next,
#page-header .slideshow-prev {
  width: 150px;
  height: 100%;
  background: url(../../Images/slideshow-buttons-back.png) repeat-y 0;
}

.article-group .slideshow-next,
.article-group .slideshow-prev {
  width: 30px;
  height: 40px;
}

#page-header .slideshow-prev {
  left: 0;
}

.article-group .slideshow-prev {
  right: 30px;
}

.slideshow-next {
  right: 0;
}

#page-header .slideshow-next {
  background-position: -150px 0;
}

.slideshow-next:before,
.slideshow-prev:before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

#page-header .slideshow-next:before,
#page-header .slideshow-prev:before {
  background: url(../../Images/slideshow-buttons.png) no-repeat -30px center;
  -webkit-transition: background-position 0.2s ease;
  -moz-transition: background-position 0.2s ease;
  -o-transition: background-position 0.2s ease;
  -ms-transition: background-position 0.2s ease;
  transition: background-position 0.2s ease;
}

#page-header .slideshow-prev:hover:before {
  background-position: -40px center;
}

#page-header .slideshow-next:before {
  background-position: -120px center;
}

#page-header .slideshow-next:hover:before {
  background-position: -110px center;
}

.article-group .slideshow-next:before,
.article-group .slideshow-prev:before {
  background: url(../../Images/slideshow-buttons-sml.png) no-repeat 0 center;
  -webkit-transition: background-color 0.2s ease;
  -moz-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  -ms-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.article-group .slideshow-next:before:hover,
.article-group .slideshow-prev:before:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.article-group .slideshow-prev:before {
  background-position: 5px center;
}

.article-group .slideshow-next:before {
  background-position: -30px center;
}

.prevent-actions {
  -webkit-touch-callout: none;
  touch-action: none;
  -ms-touch-action: none;
  pointer-events: none;
}

.-prevent-drag {
  user-drag: none;
  -webkit-user-drag: none;
}

.-prevent-select {
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.-dragging * {
  cursor: grab !important;
}

#menu {
  position: fixed;
  z-index: 10001;
  right: 0;
  top: 0;
  height: 100%;
  width: 0px;
  overflow: hidden;
  transition: width 0.5s ease;
  max-width: 640px;
}
#menu.visible {
  width: 100%;
}
#menu-wrapper {
  position: absolute;
  z-index: 1100;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-color-nav-background);
}
#menu-dismiss, #menu-search {
  position: absolute;
  height: 36px;
}
#menu-dismiss {
  cursor: pointer;
  right: 16px;
  top: 16px;
}
#menu-dismiss:before {
  content: "×";
  font-family: "Courier New", serif;
  font-size: 50px;
  line-height: 1;
  height: 50px;
  font-weight: lighter;
  color: white;
}
#menu-scroll-container {
  height: calc(100% - 90px);
  overflow-y: scroll;
  margin-top: 90px;
  border-bottom: solid 21px var(--color-color-nav-background);
}
#menu-search {
  width: calc(100% - 78px);
  left: 16px;
  top: 21px;
}
#menu-search input,
#menu-search button {
  position: absolute;
  top: 0;
  height: 100%;
  background-color: transparent;
}
#menu-search input {
  left: 0;
  width: 100%;
  padding: 0 46px 0 15px;
  color: white;
  background-color: rgba(255, 255, 255, 0.1333333333);
}
#menu-search input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#menu-search input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#menu-search input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#menu-search input:-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#menu-search button {
  right: 5px;
  width: 36px;
  cursor: pointer;
  background-image: url(../../Images/search-icon-sml.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 18px;
}
#menu-search-results {
  color: white;
  padding: 0 16px 32px;
  min-height: 0;
  position: relative;
}
#menu-search-results.loading {
  min-height: 200px;
}
#menu-search-results.loading:after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border-radius: 50%;
  border: 6px solid #fff;
  border-color: #fff transparent #fff transparent;
  animation: loading 1.2s linear infinite;
}
#menu-search-results a {
  color: white;
}
#menu-nav {
  padding: 0 16px;
}
#menu-nav ul {
  list-style: none;
}
#menu-nav ul li {
  position: relative;
  padding: 0 0 16px 44px;
}
#menu-nav ul li.has-subpages:before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 27px;
  height: 14px;
  background: url(../../Images/menu-accordion.png) no-repeat -27px -14px;
  opacity: 0.5;
  filter: alpha(opacity=50);
  transition: opacity 0.3s ease;
  cursor: pointer;
  transform: scale(0.75);
}
#menu-nav ul li.has-subpages:hover:before {
  opacity: 1;
  filter: alpha(opacity=100);
}
#menu-nav ul li.has-subpages.active:before {
  background-position: -27px 0;
}
#menu-nav ul li.active ul, #menu-nav ul li:hover ul {
  max-height: 1000px;
  padding-bottom: 15px;
}
#menu-nav ul li a {
  display: block;
  color: white;
  font-size: 2.3rem;
  color: white !important;
}
#menu-nav ul li a.active {
  font-weight: bold;
}
#menu-nav ul li ul {
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding-bottom 0.3s ease;
  padding-bottom: 0;
}
#menu-nav ul li ul li {
  padding: 0;
  line-height: 1.35;
}
#menu-nav ul li ul li:first-child {
  padding-top: 1em;
}
#menu-nav ul li ul a {
  font-size: 1.9rem;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#page-header-desktop {
  position: fixed;
  z-index: 10000;
  top: var(--sticky-nav-top-height);
  left: 5%;
  display: none;
  background-color: var(--color-white);
  padding: 16px 0 0;
  height: var(--sticky-nav-desktop-height);
}
@media (min-width: 1000px) {
  #page-header-desktop {
    display: block;
    border-top: solid 1px rgb(224, 230, 223);
    height: calc(var(--sticky-nav-desktop-height) - 1px);
  }
  #page-header-desktop:after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1333333333), transparent);
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }
  body.-scrolled-down #page-header-desktop:after {
    opacity: 1;
  }
}
@media (min-width: 1750px) {
  #page-header-desktop {
    left: calc((100% - 1560px) / 2);
  }
}
#page-header-desktop li {
  display: block;
  vertical-align: top;
  margin: 0 16px;
}
@media (min-width: 1000px) {
  #page-header-desktop nav > ul {
    display: flex;
    flex-wrap: wrap;
    padding-left: 64px;
  }
}
#page-header-desktop nav > ul > li {
  white-space: nowrap;
  padding-bottom: 16px;
}

#page-header-images {
  background: rgb(240, 240, 240);
}
@media (max-width: 1000px) {
  #page-header-images {
    z-index: 10;
  }
}
#page-header-images .slideshow-item {
  background-position: center;
  background-size: cover;
}
#page-header-images .slideshow-item--all, #page-header-images .slideshow-item--non-mobile {
  height: 320px;
}
@media (max-width: 767px) {
  #page-header-images .slideshow-item--all, #page-header-images .slideshow-item--non-mobile {
    height: 200px;
  }
}
@media (max-width: 767px) {
  #page-header-images .slideshow-item--non-mobile {
    display: none;
  }
}
@media (min-width: 768px) {
  #page-header-images .slideshow-item--mobile {
    display: none;
  }
}
#page-header-images .slideshow-item--mobile img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 640px) {
  #page-header-images .slideshow-prev {
    display: none;
  }
}
#page-header-images h1 {
  color: white;
  padding: 15px;
  position: absolute;
  z-index: 1000;
  bottom: 0;
  left: 8%;
}
@media (max-width: 640px) {
  #page-header-images h1 {
    left: 10px;
  }
}

#page-header-intranet-nav ul {
  padding: 16px;
  display: flex;
}
#page-header-intranet-nav ul li:not(:last-child) {
  margin-right: 2em;
}

#page-header-title h1 {
  color: white;
  padding: 15px;
  padding-left: 80px;
}
@media (max-width: 640px) {
  #page-header-title h1 {
    padding-left: 17px;
  }
}
@media (min-width: 640px) and (max-width: 1000px) {
  #page-header-title h1 {
    padding-left: 50px;
  }
}

#page-header-top {
  position: fixed;
  z-index: 10000;
  height: var(--sticky-nav-top-height);
  top: 0;
  background-color: var(--color-white);
}
@media (min-width: 640px) {
  #page-header-top {
    left: 3%;
  }
}
@media (max-width: 999px) {
  #page-header-top {
    z-index: 20;
  }
  #page-header-top:after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 10px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1333333333), transparent);
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }
  body.-scrolled-down #page-header-top:after {
    opacity: 1;
  }
}
@media (min-width: 1000px) {
  #page-header-top {
    left: 5%;
  }
}
@media (min-width: 1750px) {
  #page-header-top {
    left: calc((100% - 1560px) / 2);
  }
}

#user-interface {
  position: absolute;
  z-index: 2;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  display: flex;
  align-items: center;
}
#user-interface #language-menu {
  display: flex;
}
#user-interface #language-menu li {
  display: block;
  height: 20px;
}
#user-interface #language-menu li:not(:first-child) {
  border-left: solid 1.5px rgb(50, 50, 50);
  padding-left: 10px;
  margin-left: 10px;
}
#user-interface #language-menu li a {
  display: block;
  color: rgb(50, 50, 50);
  line-height: 20px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: Arial, sans-serif !important;
  opacity: 1 !important;
}
#user-interface #language-menu li a:hover {
  color: var(--color-3);
}
#user-interface #menu-icon,
#user-interface #search-icon {
  cursor: pointer;
  transition: opacity 0.3s ease;
  margin-left: 10px;
  opacity: 1 !important;
}
#user-interface #search-icon svg {
  height: 24px;
}
#user-interface #search-icon svg circle,
#user-interface #search-icon svg line {
  transition: stroke 0.35s ease-out;
}
@media (pointer: fine) {
  #user-interface #search-icon svg:hover line,
  #user-interface #search-icon svg:hover circle {
    stroke: var(--color-3) !important;
  }
}
#user-interface #menu-icon svg {
  width: 21px;
  height: auto;
}
#user-interface #menu-icon svg line {
  transition: transform 0.35s ease-out, stroke 0.35s ease-out;
}
@media (pointer: fine) {
  #user-interface #menu-icon:hover line {
    stroke: var(--color-3) !important;
  }
  #user-interface #menu-icon:hover line:last-child {
    transform: scaleX(2);
  }
}

#page-header {
  position: relative;
  z-index: 2;
  padding-top: var(--sticky-nav-height);
}
#page-header ul {
  list-style: none;
}

@media (max-width: 999px) {
  #footer-sitemap {
    overflow-x: hidden !important;
  }
}
@media (min-width: 1000px) {
  #footer-sitemap {
    background: #fcfefc;
    background: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
    background: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
    background: -o-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
    background: -ms-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#eeeeee",GradientType=0 );
  }
}
#footer-sitemap nav {
  position: relative;
}
@media (max-width: 999px) {
  #footer-sitemap nav {
    position: relative;
    width: 100vw !important;
  }
}
@media (min-width: 640px) and (max-width: 999px) {
  #footer-sitemap nav {
    margin: 0 0 0 -34px;
  }
}
@media (min-width: 1000px) {
  #footer-sitemap nav {
    padding: 40px 0 0;
    background: none;
  }
}
@media (max-width: 999px) {
  #footer-sitemap ul li {
    position: relative;
    padding: 13px 0 0 50px;
    background: #fcfefc;
    min-height: 40px;
    max-height: 40px;
    background: -moz-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ffffff), color-stop(100%, #eeeeee));
    background: -webkit-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
    background: -o-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
    background: -ms-linear-gradient(top, #ffffff 0%, #eeeeee 100%);
    background: linear-gradient(to bottom, #ffffff 0%, #eeeeee 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#ffffff", endColorstr="#eeeeee",GradientType=0 );
    -webkit-transition: max-height 1s ease;
    -moz-transition: max-height 1s ease;
    -o-transition: max-height 1s ease;
    -ms-transition: max-height 1s ease;
    transition: max-height 1s ease;
    margin-bottom: 3px;
    overflow: hidden;
    cursor: pointer;
  }
}
@media (min-width: 1000px) {
  #footer-sitemap ul li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 20%;
    padding: 0 16px 40px;
  }
}
@media (max-width: 999px) {
  #footer-sitemap ul li.active, #footer-sitemap ul li:hover {
    max-height: 500px;
  }
}
@media (max-width: 999px) {
  #footer-sitemap ul li.has-subpages:before {
    content: "";
    position: absolute;
    left: 12px;
    top: 16px;
    width: 27px;
    height: 14px;
    background: url(../../Images/menu-accordion.png) no-repeat 0 -14px;
    cursor: pointer;
  }
}
@media (max-width: 999px) {
  #footer-sitemap ul li.has-subpages.active:before {
    background-position: 0 0;
  }
}
#footer-sitemap ul a {
  font-weight: bold;
}
@media (max-width: 999px) {
  #footer-sitemap ul ul {
    position: relative;
    padding: 16px 0;
  }
}
@media (max-width: 999px) {
  #footer-sitemap ul ul li {
    padding: 0;
    min-height: 0px;
    max-height: 100px;
    background: none;
    cursor: default;
  }
  #footer-sitemap ul ul li:before {
    display: none;
  }
}
@media (min-width: 1000px) {
  #footer-sitemap ul ul li {
    display: block;
    width: 100%;
    padding: 0;
  }
}
@media (max-width: 999px) {
  #footer-sitemap ul ul a {
    display: block;
    font-weight: normal;
    padding: 4px 0;
  }
}
@media (min-width: 1000px) {
  #footer-sitemap ul ul a {
    display: block;
    padding: 0;
    font-weight: normal;
  }
}

#footer-socials {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 999px) {
  #footer-socials {
    background-color: white;
    padding: 0 50px 25px 0;
  }
}
@media (min-width: 1000px) {
  #footer-socials {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: auto;
    z-index: 3;
    padding: 0 70px 37px 0;
  }
}
@media (min-width: 1750px) {
  #footer-socials {
    right: calc((100% - 1560px) / 2);
  }
}
#page-header #footer-socials {
  display: none !important;
}
#footer-socials li {
  list-style: none;
  vertical-align: top;
}
#footer-socials li:not(:first-of-type) {
  padding-left: 1.5rem;
}
#footer-socials .channel {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  text-indent: -9999px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 26px;
}
#footer-socials .channel:before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  top: -1px;
  left: 0;
}
#footer-socials .channel.Facebook {
  background-image: url(../../Icons/Facebook-Frontend.svg);
}
#footer-socials .channel.Twitter {
  background-image: url(../../Icons/Twitter-Frontend.svg);
}
#footer-socials .channel.Google {
  background-image: url(../../Icons/Google-Frontend.svg);
}
#footer-socials .channel.Instagram {
  background-image: url(../../Icons/Instagram-Frontend.svg);
}
#footer-socials .channel.Xing {
  background-image: url(../../Icons/Xing-Frontend.svg);
}
#footer-socials .channel.LinkedIn {
  background-image: url(../../Icons/LinkedIn-Frontend.svg);
}
#footer-socials .channel.YouTube {
  background-image: url(../../Icons/YouTube-Frontend.svg);
}
#footer-socials .channel span {
  display: none !important;
}

#footer-nav {
  position: relative;
  z-index: 2;
}
#footer-nav ul {
  padding: 40px 16px;
}
#footer-nav li {
  display: inline-block;
  margin: 0 15px 0 0;
}

#page-footer {
  position: relative;
  z-index: 1;
}
#page-footer ul {
  list-style: none;
}

.article__media {
  --columns: 1;
  padding-bottom: 16px;
}
@media (min-width: 768px) {
  .article__media {
    --columns: 3;
  }
}
@media (min-width: 1280px) {
  .article__media {
    --columns: 4;
  }
}
@media (min-width: 1440px) {
  .article__media {
    --columns: 5;
  }
}
@media (min-width: 1680px) {
  .article__media {
    --columns: 6;
  }
}
@media (min-width: 1920px) {
  .article__media {
    --columns: 8;
  }
}
@media (max-width: 767px) {
  #detailview .article__media {
    margin-top: 24px;
  }
}
@media (min-width: 768px) {
  #detailview .article__media {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 24px;
  }
}
#detailview .article__media[data-images="1"] {
  --columns: 1.6;
}
@media (min-width: 768px) {
  #detailview .article__media__image {
    flex: 1 0 calc((100% - (var(--columns) - 1) * 10px) / var(--columns));
    max-width: calc((100% - (var(--columns) - 1) * 10px) / var(--columns));
  }
  #detailview .article__media__image img {
    width: 100%;
  }
  #detailview .article__media__image:last-child {
    margin-right: auto;
  }
}
@media (min-width: 1680px) {
  #detailview .article__media__image {
    flex-grow: 1;
    max-width: unset;
  }
}
.article__media__image {
  position: relative;
}
.article__media__image__caption, .article__media__image__image {
  display: block;
}
.article__media__image + .image {
  border-left: solid 15px white;
}
@media (max-width: 767px) {
  .article__media__image + .image {
    border-left: none;
    margin-top: 10px;
  }
}
.article__media__image__image {
  position: relative;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .article__media__image__image {
    max-width: 100%;
    height: auto;
  }
}
.article__media__image__caption {
  margin-top: 1.5rem;
  font-size: 0.85em;
}
@media (max-width: 767px) {
  .article__media__image__caption {
    margin-top: 10px;
  }
}
.article__media .slider__navigation {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.article__media .slider__navigation__item {
  overflow: hidden;
  width: 20px;
  height: 20px;
  text-indent: 1000em;
  background-color: var(--color-1);
  border-radius: 10px;
  margin: 0 5px;
}
.article__media .slider__navigation__item:before {
  content: unset;
}
.article__media .slider__navigation__item--current {
  background-color: var(--color-3);
}

.lightbox__set-control {
  text-indent: 1000em;
  overflow: hidden;
}
.lightbox__set-control:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: url(../../Icons/Arrow.svg) no-repeat center;
  background-size: 40px auto;
}
.lightbox__set-control--previous:before {
  transform: scaleX(-1);
}
.lightbox__close-button {
  color: white !important;
}

#detailview {
  padding: 0 0 50px;
}
@media (max-width: 767px) {
  #detailview {
    padding: 0 10px 34px;
  }
}
@media (max-width: 767px) {
  #detailview > div {
    display: flex;
    flex-direction: column;
  }
}
#detailview .button {
  margin-top: 30px;
}
#detailview .article__short {
  font-weight: bold;
}

main form[action*=tx_form_formframework]:not([class]) {
  margin-bottom: 100px;
}
main form[action*=tx_form_formframework]:not([class]) .form-label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.5em;
}
main form[action*=tx_form_formframework]:not([class]) .form-label .required {
  color: red;
}
main form[action*=tx_form_formframework]:not([class]) input,
main form[action*=tx_form_formframework]:not([class]) select,
main form[action*=tx_form_formframework]:not([class]) textarea {
  border: solid 1px gray;
  padding: 10px;
  margin-bottom: 1.5em !important;
}
main form[action*=tx_form_formframework]:not([class]) .form-text {
  font-size: 12px;
  font-style: italic;
  margin-bottom: 1.5em;
}
main form[action*=tx_form_formframework]:not([class]) [type=submit] {
  color: white;
  background-color: rgb(152, 205, 1);
  border: none;
  padding: 10px;
}
main form[action*=tx_form_formframework]:not([class]) .form-check input {
  margin-right: 0.5em;
}

.image-gallery {
  position: relative;
  margin: 0 0 20px;
}

.image-gallery header,
.image-gallery-text {
  padding: 0 11px;
}

.image-gallery-item {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 20px;
  padding: 0 11px;
  overflow: hidden;
  text-align: center;
}
.image-gallery-item[href$=".pdf"] .thumbnail {
  border: solid 1px #aaa;
}

.image-gallery-item div.thumbnail {
  position: relative;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.image-gallery-item img.thumbnail {
  width: 100%;
  position: relative;
  height: auto !important;
}

@media all and (max-width: 720px) {
  .image-gallery .image-gallery-item {
    display: block;
    width: 100% !important;
  }
  .image-gallery div.thumbnail {
    min-height: 30vh;
  }
}
@media all and (min-width: 721px) {
  .image-gallery-item div.thumbnail {
    position: relative;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }
  .image-gallery.cols-2 div.thumbnail {
    min-height: 22vw;
  }
  .image-gallery.cols-3 div.thumbnail {
    min-height: 15vw;
  }
  .image-gallery.cols-4 div.thumbnail {
    min-height: 11vw;
  }
  .image-gallery.cols-5 div.thumbnail {
    min-height: 8vw;
  }
}
form[action*=tx_felogin] {
  margin-bottom: 3em;
}
form[action*=tx_felogin] legend {
  display: none;
}
form[action*=tx_felogin] div {
  display: block;
  margin-bottom: 1em;
}
form[action*=tx_felogin] label {
  font-weight: bold;
}
form[action*=tx_felogin] input:not(.button) {
  border: solid 1px lightgray;
  padding: 5px 10px;
}

form[action*=tx_felogin][action*=login] label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 325px;
}

form[action*=tx_felogin][action*=changePassword] label,
form[action*=tx_felogin][action*=recovery] label {
  display: block;
}
form[action*=tx_felogin][action*=changePassword] label input,
form[action*=tx_felogin][action*=recovery] label input {
  margin-top: 0.5em;
}

sup,
sub {
  font-size: 1rem;
}

main {
  display: block;
  overflow: hidden;
}

.clearer {
  position: relative;
  clear: both !important;
  float: none !important;
}

hr.clearer {
  margin: 0 0 45px -85px;
  width: 100vw !important;
}

h1 {
  font-size: 28px;
  font-size: 2.8rem;
}

h2 {
  font-size: 28px;
  font-size: 2.8rem;
  padding-bottom: 15px;
}

p, h3 {
  padding-bottom: 15px;
}

td, th {
  padding: 5px;
}

i {
  color: inherit;
  font-size: inherit;
}

/* @group transitions */
a {
  -webkit-transition: color 0.3s ease;
  -moz-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  -ms-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

/* @end transitions */
/* @group #menu-mobile */
/* @end #menu-mobile */
/* @group #page-header */
#logo {
  display: block;
  position: relative;
  z-index: 1;
  float: left;
  height: 100%;
  padding-left: 16px;
}

#logo img {
  height: 100%;
  width: auto !important;
}

/* @end #page-header */
/* @group #page-body */
.article-group {
  padding-bottom: 0 !important;
  margin-bottom: 40px;
}

.article-group-slider {
  /* if this is missing, the articles in the slideshow will be cut off at the bottom */
  box-sizing: content-box;
  padding-bottom: 70px;
}

.article-group-header {
  position: relative;
  color: white;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 12px 15px;
  margin-bottom: 30px;
  height: 40px;
}

.article-group-header a {
  color: inherit !important;
  /*text-decoration: underline;*/
}

article .article-number {
  position: relative;
  margin: 0 0 1rem;
  padding: 2px 4px;
  border-radius: 3px;
  display: inline-block;
}

article ul {
  list-style: none;
  padding-bottom: 15px;
}

article ol {
  padding-bottom: 15px;
}

article ol li {
  margin-left: 20px;
}

article ul li {
  position: relative;
  padding-left: 14px;
}

article ul li:before {
  content: "";
  position: absolute;
  height: 6px;
  width: 6px;
  left: 0;
  top: 5px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -o-border-radius: 10px;
  -ms-border-radius: 10px;
  border-radius: 10px;
}

.button {
  position: relative;
  width: 66.66%;
  display: inline-block;
  vertical-align: top;
  height: 40px;
  line-height: 40px;
  color: white;
  background-position: right center;
  background-repeat: no-repeat;
  -webkit-background-size: auto 40px;
  -moz-background-size: auto 40px;
  -o-background-size: auto 40px;
  -ms-background-size: auto 40px;
  background-size: auto 40px;
  -webkit-transition: background-color 0.3s;
  -moz-transition: background-color 0.3s;
  -o-transition: background-color 0.3s;
  -ms-transition: background-color 0.3s;
  transition: background-color 0.3s;
  padding: 0 15px;
}

.button.full {
  display: block;
  width: 100%;
  max-width: 100%;
}

.button--type-3 {
  background-image: url(../../Images/button-external.png);
}

.button--type-1,
.button--type-4 {
  background-image: url(../../Images/button-internal.png);
}

.button--type-2 {
  background-image: url(../../Images/button-file.png);
}

.button--type-back {
  background-image: url(../../Images/button-back.png);
  background-position: 0 center;
  text-align: right;
  margin-right: 50px;
}

.button--type-back,
.button--type-back + .button {
  display: inline-block;
  max-width: calc(49% - 25px);
}

.share-button {
  width: 100%;
  display: block;
  height: 40px;
  cursor: pointer;
  background: rgb(180, 180, 180) url(../../Images/share.png) no-repeat center center;
  background-size: auto 40px;
}

.button + .share-button {
  width: 32.5%;
  display: inline-block;
  padding-left: 3px;
  vertical-align: top;
  float: right;
}

.share-options {
  background: rgb(180, 180, 180);
  height: 0;
  overflow: hidden;
  transition: height 0.5s ease;
}

.share-options .shariff a {
  all: unset !important;
}

.share-options ul {
  padding-top: 11px;
  cursor: pointer !important;
}

.share-options li:before {
  display: none;
}

.share-options a {
  display: block;
  vertical-align: top;
  width: 40px;
  height: 40px;
  overflow: hidden;
  text-indent: -99999em;
  -webkit-transition: background-color 0.3s ease;
  -moz-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  -ms-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.share-options.visible {
  height: 50px;
}

.related {
  position: relative;
  padding-top: 15px;
}

.related a {
  display: block;
}

.related a:before {
  content: "> ";
}

#category-title {
  padding-left: 16px;
  padding-bottom: 16px;
  font-size: 3.4rem;
}

.image__caption,
.image__caption i,
.image__caption em {
  font-size: 1.2rem;
}

.image__caption i,
.image__caption em {
  font-style: italic;
}

.tile {
  position: relative;
  overflow: hidden;
}

.column.tile {
  padding-bottom: 32px;
}

.tile-inner {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.tile:last-of-type {
  margin-bottom: 32px;
}

.tile-cover,
.tile-back {
  padding: 16px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  background-size: cover;
  -webkit-transition: top 1s ease;
  -moz-transition: top 1s ease;
  -o-transition: top 1s ease;
  -ms-transition: top 1s ease;
  transition: top 1s ease;
}

.tile-back {
  top: -100%;
}

.tile-cover {
  top: 0;
  z-index: 10;
}

.tile:hover .tile-cover {
  top: 100%;
}

.tile:hover .tile-back {
  top: 0;
}

.content-element.table {
  padding: 0 11px 40px;
}

/* @end #page-body */
/* @group #page-footer */
#footer-breadcrumb {
  height: 50px;
  line-height: 50px;
  color: white;
}

#footer-breadcrumb span {
  display: inline-block;
  color: white;
  padding-left: 16px;
}

/* @end #page-footer */
/* @group #share */
#share,
p.message {
  position: relative;
  width: 90%;
  margin: 20px auto;
  padding-bottom: 0;
}

#share input,
#share textarea {
  position: relative;
  width: 100%;
  display: block;
  border: solid 1px #ccc;
  margin: 5px 0 0;
  padding: 5px;
  font-family: Arial, sans-serif;
}

#share .invalid input,
#share .invalid textarea {
  background: red;
  color: white;
}

#share textarea {
  min-width: 250px;
  min-height: 100px;
}

#share button[type=submit] {
  background-color: rgb(29, 73, 120);
  cursor: pointer;
  color: white;
  border: none;
  padding: 5px 15px;
  margin-top: 5px;
}

/* @end #share */
/* @group Category Selection */
.tx-wwpreset-selectCategory {
  border: solid 1px #ccc;
  padding: 6px 30px 6px 6px;
}

article,
.content-element,
.article-group {
  -webkit-transition: opacity 0.5s linear;
  -moz-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear;
}

.fade {
  opacity: 0.25;
}

.article-group article {
  opacity: 1 !important;
}

/* @end Faded Elements */
/* @group Sitemap */
#sitemap ul ul {
  padding-left: 25px;
}

#sitemap .top {
  font-weight: bold;
}

#sitemap li:not(.sub) {
  padding-bottom: 25px;
}

/* @end Sitemap */
/* @group Simplified grid styles */
.column {
  min-height: 10px;
  vertical-align: top;
  padding: 0 16px 40px;
  float: none !important;
}

.column img {
  width: 100%;
  height: auto;
}

/* @end Simplified grid styles */
/* large */
@media screen and (min-width: 1000px) {
  .column[class*=large] {
    display: inline-block;
  }
  .column.large-1 {
    width: 32.9%;
  }
  .column.large-2 {
    width: 66%;
  }
  .column.large-3 {
    display: block;
    width: 100%;
  }
}
/* medium */
@media screen and (min-width: 640px) and (max-width: 1000px) {
  #menu-desktop {
    display: none;
  }
  .column[class*=medium] {
    display: inline-block;
    padding: 0 17px 50px;
  }
  .column.medium-1 {
    width: 33.3%;
  }
  .column.medium-2 {
    width: 66.6%;
  }
  .column.medium-3 {
    display: block;
    width: 100%;
  }
}
/* small */
@media screen and (max-width: 640px) {
  hr.clearer {
    margin-left: 0;
  }
  #logo {
    padding-left: 0;
  }
  #user-interface {
    right: 10px !important;
  }
  #user-interface * {
    display: inline-block;
    vertical-align: middle;
  }
  #menu-desktop {
    display: none;
  }
  .column[class*=small] {
    display: inline-block;
    margin-top: 0em;
    margin-bottom: 0em;
    padding: 0 10px 50px;
  }
  .column.small-1 {
    width: 33.3%;
  }
  .column.small-2 {
    width: 66.6%;
  }
  .column.small-3 {
    display: block;
    width: 100%;
  }
  .content-element.table {
    padding: 0 5px 45px;
  }
}
/* Medium + Small */
@media screen and (max-width: 1000px) {
  div.div {
    display: none;
  }
  #user-interface {
    position: absolute;
    z-index: 10;
    height: 100%;
    right: 34px;
    padding-top: 10px;
    padding-left: 10px;
  }
  #language-menu {
    padding-right: 10px;
  }
}
/* Very small -> no space for the language icon */
@media screen and (max-width: 400px) {
  #language-menu {
    padding-left: 0;
    background: none !important;
  }
}
/* @end Media queries */
/**
 * 2020-05-23
 * Article groups need some space in between on mobile devices
 */
@media screen and (max-width: 768px) {
  .article-group + .article-group {
    margin-top: 25px;
  }
}
/**
 * 2023-03
 * TYPO3 Updates
 */
.article__date + .article__categories:before {
  content: " · ";
}

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