/* Inner Styles */

/* ///////////////////// */

/* -------------- */
/* SETUP */
/* DESKTOP */
/* MINI-DESKTOP */
/* TABLET */
/* MOBILE */
/* MINI-MOBILE */
/* SPECIAL BREAKPOINTS */
/* -------------- */

/* DESKTOP //////////////////////////////////////////////////////////////// */
/*
01. Inner Content
02. Components
*/

/*
-----------------------------------------------------------------------------

01. Inner Content

-----------------------------------------------------------------------------
*/

/* COOKIE BANNER REINFORCEMENT *******************************************************************************/

/*--- Closed State */

.cookie-banner.closed {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.cookie-banner.extended .cookie-main-wrap {
  display: none;
}

.cookie-banner.extended .cookie-settings-wrap {
  display: block;
}

/*--- Cookie Banner - Settings Wrap */

.cookie-banner .cookie-settings-wrap {
  display: none;
  overflow: hidden;
  position: absolute;
  height: 100%;
}

/*  INFOBOX LANDING PAGE *******************************************************************************/
.infobox-wrap {
  position: fixed;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  z-index: 200;
  overflow: visible;
}

.infobox-wrap .dashicons-solid-custom-arrow-right3 {
  font-size: 1.7rem;
  color: var(--color__light);
  position: absolute;
  left: 7rem;
  bottom: 1.5rem;
  cursor: pointer;
}

.infobox-wrap .infobox__inner {
  --box-height: 22em;
  --box-width: calc(var(--box-height) * 1.6);
  background-color: var(--color__accent);
  min-height: var(--box-height);
  width: var(--box-width);

  display: -webkit-box;

  display: -ms-flexbox;

  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  text-align: right;
  position: relative;
}

.infobox-wrap .infobox__inner * {
  color: var(--color__light);
}

.infobox-message {
  max-width: 55%;
}

/* POSTS *******************************************************************************/

/****** Post grid */

.post-grid .covered-image-wrap span {
  position: absolute;
  bottom: 2em;
  left: 2em;
  margin: 0;
}

/* SINGLE POST *******************************************************************************/

/* GENERAL FORM STYLES *******************************************************************************/

/****** Labels */

.form-wrap span.label {
  margin-bottom: 0.35em;
  display: inline-block;
  font-size: var(--fsize__p);
}

/****** Input fields  */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
.field-wrap.dropdown select,
textarea {
  font-size: var(--fsize__p);
  border: var(--border__regular);
  padding: 0.6em;
  border-radius: 0;
  margin-bottom: 0;
  background: var(--color__light);
  color: var(--color__primary);
}

.search-form input[type="search"] {
  -moz-appearance: none;
  /* older firefox */
  -webkit-appearance: none;
  /* safari, chrome, edge and ie mobile */
  appearance: none;
  /* rest */
  border-radius: var(--radius__regular);
  margin-bottom: 0;
  background: var(--color__light);
}

input,
select,
textarea {
  color: var(--color__primary);
  width: 100%;
}

textarea {
  line-height: 1.5625em;
  max-height: 20em;
  margin: 0em;
  resize: none;
}

textarea:focus,
input:focus {
  color: var(--color__primary);
  outline: none;
}

.field-wrap input[type="submit"]:focus {
  background: var(--color__light);
  color: var(--color__primary);
  border: 0.0625rem solid var(--color__primary);
}

::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color__primary);
  opacity: 1;
  /* Firefox */
}

::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color__primary);
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color__primary);
  opacity: 1;
  /* Firefox */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color__primary);
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--color__primary);
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--color__primary);
}

/****** Captcha */

/****** math captcha */
.form-wrap .img-puzzle {
  position: relative;
  display: inline-block;
  height: 0.9em;
  -webkit-transform: translateY(0.1em);
  transform: translateY(0.1em);
  /* vertical alignment */
}

.form-wrap .img-puzzle img {
  height: 100%;
}

/****** hide google recaptcha */
.grecaptcha-badge {
  display: none;
}

/****** Submit button */

input[type="submit"],
.field-wrap input[type="submit"] {
  float: right;
  font-size: var(--fsize__p);
  background: var(--color__primary);
  color: var(--color__light);
  border-radius: var(--radius__regular);
  padding: 0.3em 1em 0.35em;
  border: 0;
  margin-top: 1em;
  display: inline-block;
  cursor: pointer;
  width: auto;
}

/****** error handling */

.form-wrap .error-msg {
  display: block;
  color: var(--color__primary);
  font-size: var(--fsize__p);
  margin-top: 0.2em;
}

.form-wrap input.has-error {
  border-color: var(--color__primary);
}

.form-wrap .error-msg:empty {
  display: none;
}

/****** success handling */

form.submitted {
  display: none;
}

/* PASSWORD FORM STYLES *******************************************************************************/

.post-password-form p:nth-of-type(1) {
  display: none;
}

span.custom-password-message {
  display: block;
  margin: auto;
  max-width: 10em;
  padding: 0.125em;
  border-radius: var(--radius__regular);
  background: rgba(255, 255, 255, 0.17);
  color: var(--color__primary);
}

.post-password-form label {
  font-size: 0rem;
}

.post-password-form label input {
  font-size: 1.875rem;
  padding: 0.25em 0.9375em;
  text-align: center;
}

.post-password-required input[type="submit"] {
  position: relative;
  float: unset;
  margin: 1.5625em auto;
  display: block;
}

/* IMPRINT + DATA PRIVACY *******************************************************************************/

/* 404 *******************************************************************************/

.error-404 {
  text-align: center;
}

.error-404 h1 {
  font-size: 20vw;
  margin: 0;
}

/*
-----------------------------------------------------------------------------

02. Components

-----------------------------------------------------------------------------
*/

/****** Layout */

.content-wrap [class*="block--"] {
  /* max-width: var(--innerwrap__width); */
  /* padding: 0 var(--innerwrap__px); */
  margin: 0;
}

.content-wrap [class*="block--"].full {
  max-width: 100%;
}

.content-wrap [class*="block--"].half {
  max-width: 50%;
}

.content-wrap [class*="block--"].pxy0 {
  padding: 0;
}

.content-wrap [class*="block--"].px0 {
  padding-left: 0;
  padding-right: 0;
}

/****** Image */

.content-wrap .block--single-image img {
  min-width: 100%;
}

/****** Text & Text and Image */

.content-wrap .block--text p:first-child,
.content-wrap .block--text_and_image p:first-child {
  margin-top: 0;
}

.content-wrap .block--text p:last-child,
.content-wrap .block--text_and_image p:last-child {
  margin-bottom: 0;
}

/****** Text and Image */

.content-wrap .block--text_and_image .box-text--right {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

/****** Buttons */

.content-wrap [class*="block--"].block--buttons {
  margin-top: -0.5em;
}

.content-wrap .block--buttons > * {
  display: inline-block;
  margin-right: 0.5em;
  margin-top: 0.5em;
}

/****** Timetable */

.content-wrap .block--timetable {
  position: relative;
}

.content-wrap .block--timetable a:hover {
  color: var(--color__primary);
}

.content-wrap .block--timetable::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 5rem;
  background: var(--color__light);
  background: -webkit-linear-gradient(
    left,
    var(--color__light) 25%,
    var(--color__light) 100%
  );
  background: linear-gradient(
    90deg,
    var(--color__light) 25%,
    var(--color__light) 100%
  );
  pointer-events: none;
}

/*--- Block Table - Horizonzal Overflow Wrapper */

.content-wrap .block--timetable .overflow-wrap {
  position: relative;
  overflow-x: scroll;
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.content-wrap .block--timetable .overflow-wrap::-webkit-scrollbar {
  display: none;
}

.content-wrap .block--timetable table {
  min-width: 20rem;
}

.content-wrap .block--timetable table tr {
  border-bottom: 0.025rem solid var(--color__primary);
}

.content-wrap .block--timetable table tr:last-child {
  border-bottom: 0;
}

.content-wrap .block--timetable table td,
.content-wrap .block--timetable table th,
.content-wrap .block--timetable table p {
  font-size: var(--fsize__p);
  font-weight: 400;
  text-align: left;
  padding: 0.75rem 1.75rem;
}

.content-wrap .block--timetable table th {
  border-bottom: 0.025rem solid var(--color__primary);
  background-color: var(--color__light);
}

.content-wrap .block--timetable table td {
  max-width: 19rem;
  vertical-align: baseline;
}

.content-wrap .block--timetable table td:first-child,
.content-wrap .block--timetable table th:first-child {
  padding-left: 0.75rem;
}

.content-wrap .block--timetable table td:last-child,
.content-wrap .block--timetable table th:last-child {
  padding-right: 0.75rem;
}

/****** Gallery slider, splide*/
:root {
  --slider-img-height: 35rem;
  --slider-slide-height: calc(var(--slider-img-height) + 4rem);
  --slider-caption-height: 5rem;
}

.block--gallery-slider .splide__track {
  width: calc(100% + var(--innerwrap__px));
}

.home .block--gallery-slider {
  overflow: hidden;
}

.home .block--gallery-slider .splide__track {
  width: calc(100% + (var(--innerwrap__px) * 2));
}

.block--gallery-slider .splide__slide img {
  height: var(--slider-img-height);
}

.block--gallery-slider .splide__slide {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.block--gallery-slider .splide__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

/* --- Gallery Slider Lightbox */

.block--gallery-slider .lightbox__splide {
  z-index: 999;
  position: fixed;
  top: unset;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.block--gallery-slider .lightbox__splide .splide--default-lightbox {
  position: relative;
  width: 100%;
  height: auto;
  padding: 0;
}

.block--gallery-slider .lightbox__splide .lightbox__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color__secondary);
  opacity: 0.99;
}

.block--gallery-slider .lightbox__splide .lightbox__close {
  position: absolute;
  top: 0;
  right: 0;
  margin: 1.75em 1.875em;
  cursor: pointer;
}

.block--gallery-slider .lightbox__splide .lightbox__inner {
  width: 100%;
  height: 100%;
  padding: 1.25em;
  max-width: 86rem;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  align-items: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

.block--gallery-slider .lightbox__splide .splide__list {
  align-items: center;
}

.block--gallery-slider .lightbox__splide .splide__slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.block--gallery-slider .splide--default-lightbox .splide__track,
.content-wrap
  .block--gallery-slider
  .splide--default-lightbox
  .splide__slide
  img {
  height: 100%;
  max-width: 100%;
}

.block--gallery-slider .lightbox__splide .lightbox__inner img {
  width: 100%;
  height: auto;
  max-height: 90vh;
  object-fit: cover;
  -o-object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

/* --- Splide Lightbox - Navigation */

.block--gallery-slider .lightbox__splide .splide__nav {
  position: absolute;
  top: 50%;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.block--gallery-slider .lightbox__splide .nav-button {
  position: relative;
  font-size: var(--isize__regular);
  padding: 0.5em;
  color: var(--color__primary);
  cursor: pointer;
  pointer-events: all;
}

/******* Contact Form */

.content-wrap .block--form .form-wrap .field-wrap {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  -ms-grid-column: auto;
  grid-column-start: auto;
  -ms-grid-column-span: 12;
  grid-column-end: span 12;
}

.content-wrap .block--form .option-wrap span,
.content-wrap .block--form span.label {
  font-family: "Arial", sans-serif;
  font-weight: 400;
  font-size: var(--fsize__p);
  line-height: 1.5em;
  letter-spacing: 0.02em;
  color: var(--color__primary);
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  width: 100%;
}

.content-wrap .block--form .grid-wrap {
  gap: 1em;
}

/* --- Radio & Checkbox */

.content-wrap .block--form .form-wrap .field-wrap.radio,
.content-wrap .block--form .form-wrap .field-wrap.checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-grid-column-span: 6;
  grid-column-end: span 6;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.content-wrap .block--form .form-wrap .field-wrap.radio label,
.content-wrap .block--form .form-wrap .field-wrap.checkbox label {
  margin-right: 0.5em;
}

.content-wrap .block--form .form-wrap .field-wrap.radio .option-wrap,
.content-wrap .block--form .form-wrap .field-wrap.checkbox .option-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 1em;
}

.content-wrap .block--form .form-wrap .field-wrap.radio .option-wrap input,
.content-wrap .block--form .form-wrap .field-wrap.checkbox .option-wrap input {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 0.5em;
}

.content-wrap .block--form .form-wrap .success-wrap {
  padding: 2em;
}

/******* Quote Slider */
/* using similar layout as the gallery, except inner wrap */

.splide-quote .splide__track {
  overflow: visible;
}

.quote-slider__logo {
  height: 5rem;
}

.quote-slider__logo img {
  -o-object-position: left bottom;
  object-position: left bottom;
}

.splide-quote p {
  color: var(--color__light);
}

.splide-quote .splide__arrows {
  position: absolute;
  left: 0;
  top: 100%;
  width: 5em;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.splide-quote-arrow {
  background-color: transparent;
  position: relative;
}

.splide-quote .splide__arrow--prev,
.splide-quote .splide__arrow--next {
  right: unset;
  left: unset;
}

.splide-quote-arrow svg {
  fill: var(--color__light);
  height: 1.8em;
  width: 1.8em;
}

/****** Contact persons */

.content-wrap .block--contact-person {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.content-wrap .block--contact-person .grid-wrap .grid-wrap .box:first-of-type {
  padding-left: 0;
}

/****** Video iframe */

.video-wrap iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/****** Accordion & mixitup filters */

.content-wrap .block--accordion {
  margin-bottom: 0;
}

.content-wrap .block--accordion + .block--accordion {
  margin-top: 0;
}

.content-wrap .block--accordion .accordion-content__inner [class*="block--"] {
  margin-top: 0;
  padding: 0;
}

.accordion-content p:last-child {
  padding-bottom: 1.5em;
  margin-bottom: 0;
}

.content-wrap
  .block--accordion
  .accordion-content__inner
  [class*="block--"]:last-child {
  padding-bottom: 0;
  margin-bottom: 1.75em;
}

.content-wrap
  .block--accordion
  .accordion-content__inner
  [class*="block--"]:last-child
  p {
  margin-bottom: 0;
  padding-bottom: 0;
}

.accordion-wrap {
  padding: 0;
}

.accordion-trigger {
  padding: 1.5625em 5.5em 1.5625em 1.75em;
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.7em;
}

.accordion-trigger--contact {
  padding-top: 1em;
  padding-bottom: 1em;
}

.accordion-trigger::after {
  font-family: "Custom Dashicons Backendbranding";
  content: "\ecab";
  display: inline-block;
  position: relative;
  font-size: 1.5rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
  -webkit-transition: transform 0.3s ease;
}

.accordion-trigger.open::after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.accordion-trigger h3 {
  margin: 0;
}

.accordion-content {
  padding: 0 1.75em;
}

.accordion-content h3 {
  font-size: var(--fsize__p);
}

.mixitup-container fieldset {
  display: inline-block;
  border: 0;
  margin: 0;
  padding: 0;
  position: relative;
}

.mixitup-container .filter-trigger {
  background-color: var(--color__secondary--dark);
  color: var(--color__primary);
}

.mixitup-container .filter-trigger.mixitup-control-active {
  background-color: var(--color__primary);
  color: var(--color__light);
}

.mixitup-container input[type="text"] {
  border: 0;
  background: var(--color__secondary--dark);
  -webkit-clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 0.8em),
    calc(100% - 1.3em) 100%,
    0 100%
  );
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 0.8em),
    calc(100% - 1.3em) 100%,
    0 100%
  );
}

.mixitup-container .search-wrap::after {
  content: "\eab8";
  font-family: "Custom Dashicons Backendbranding";
  font-size: var(--fsize__p);
  position: absolute;
  left: 1.3em;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mixitup-container .search-wrap input[type="text"] {
  padding: 0.5em 1.5em 0.5em 2.5em;
}

/****** facts and figures */
.facts-figures {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 6em;
}

.figure-block {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 calc(50% - 10rem);
  flex: 1 1 calc(50% - 10rem);
  max-width: 50%;
  min-width: 30%;
}

.figure-value,
.figure-symbol {
  font-size: calc(var(--fsize__h1) * 1.5);
  letter-spacing: -0.05em;
  line-height: 1em;
}

.figure-title {
  color: var(--color__secondary--dark);
  display: block;
}

/****** PAGE LAYOUTS *******************************************************************************/

.location-img-wrap {
  position: relative;
}

.location-img {
  position: absolute;
  top: 0;
  left: 0;

  transform: translateY(-20%);
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
}

/* downloads */
.block--downloads .bricklayer-column-sizer {
  width: 50%;
}

.block--downloads .bricklayer-column {
  padding-left: 1rem;
  padding-right: 1rem;
}

/****** CPT *******************************************************************************/

/* video previews, referenzen */
.video-wrap video {
  /* prevents small gap underneath */
  display: block;
}

.video-wrap video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 100%;
}

/* HEADER SCENE COMPONENTS *******************************************************************************/

[class*="header--"],
[class*="banner--"] {
  position: relative;
}

.header__inner {
  position: relative;
  width: 100%;
  height: auto;
  margin: auto;
  padding: 1.5em 2em;
}

/****** BG-Image | header--bg-img */

.header--bg-img .img-wrap {
  height: 40rem;
  width: 100%;
  position: relative;
}

.header--bg-img .header__inner {
  padding-top: 0;
  padding-bottom: 0;
}

.header--bg-img .covered-image-wrap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/****** Text with BG-Image | header--text-bg-img */

.header--text-bg-img .header__inner {
  background: transparent;
  min-height: 30rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header--text-bg-img h1.title {
  z-index: 1;
  position: relative;
  margin: 0;
}

.header--text-bg-img .covered-image-wrap,
.banner--text-bg-img .covered-image-wrap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

body.bg--primary .header--text h1,
body.bg--primary .header--text h4 {
  color: var(--color__light);
}

/****** Text with BG-Video | header--text-bg-video */
.header--text-bg-video {
  height: 100vh;
  width: 100%;
}

.header--text-bg-video .header__inner {
  background: -webkit-linear-gradient(
    top,
    rgba(9, 48, 64, 0) 0%,
    rgba(9, 48, 64, 0) 52%,
    rgb(9 48 64 / 90%) 83%,
    rgb(9 48 64) 92%,
    rgba(9, 48, 64, 1) 100%
  );
  background: linear-gradient(
    to bottom,
    rgba(9, 48, 64, 0) 0%,
    rgba(9, 48, 64, 0) 52%,
    rgb(9 48 64 / 90%) 83%,
    rgb(9 48 64) 92%,
    rgba(9, 48, 64, 1) 100%
  );
  padding-bottom: 3em;
  padding-left: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  height: 100%;
  width: 100%;
  z-index: 1;
}

.header--text-bg-video .video-wrap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

.header--text-bg-video .video-wrap video {
  width: 100%;
  height: auto;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/****** full height header--cpt-leistungen */
.header--cpt-leistungen .header__inner {
  height: 100%;
  max-height: calc(100dvh - 6rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: var(--innerwrap__py);
  overflow: hidden;
}

/* .header--cpt-leistungen .grid-wrap,
.header--cpt-leistungen .box:last-child {
  max-height: 100%;
  height: 100%;
} */

/****** Banner with BG-Image | banner--text-bg-img */
.banner--text-bg-img {
  height: 65vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-left: calc(8.3% + 2em);
  padding-bottom: 5vh;
}

.banner--text-bg-img .banner__inner {
  display: inline-block;
  z-index: 1;
  width: auto;
  height: auto;
  position: relative;
  max-width: 35%;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
}

.banner--text-bg-img .banner__inner .button {
  background-color: var(--color__secondary--dark);
}

/* MINI-DESKTOP //////////////////////////////////////////////////////////////// */
/*
01. Inner Content
02. Components
*/

@media only screen and (max-width: 80em) {
  .location-img {
    -webkit-transform: none;
    transform: none;

    position: relative;
  }
}

/* TABLET //////////////////////////////////////////////////////////////// */
/*
01. Inner Content
02. Components
*/

@media only screen and (max-width: 55em) {
  /*
  -----------------------------------------------------------------------------

  01. Inner Content

  -----------------------------------------------------------------------------
  */

  .infobox-wrap {
    top: 0;
    bottom: unset;
    width: 100%;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%) !important;
    clip-path: polygon(0 0, 100% 0, 100% 100%) !important;
  }

  .infobox-wrap .infobox__inner {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
  }

  .infobox-wrap .dashicons-solid-custom-arrow-right3 {
    top: 1em;
    left: 20%;
    bottom: unset;
  }

  .infobox-message {
    max-width: 45%;
  }

  /* SINGLE POST *******************************************************************************/

  /*  IMPRINT + DATA PRIVACY *******************************************************************************/

  /*
  -----------------------------------------------------------------------------

  02. Components

  -----------------------------------------------------------------------------
  */

  /****** Layout */

  .content-wrap [class*="block--"] {
    margin: 2em auto;
  }

  /****** Text and Image */

  .content-wrap .block--text_and_image .box-text {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .content-wrap [class*="block--"].half {
    max-width: 100%;
  }

  /****** Gallery slider */
  /* .content-wrap .slider-wrap .swiper-slide .img-fill {
    height: 62vw;
  } */

  /* HEADER SCENE COMPONENTS *******************************************************************************/

  /****** BG-Image | header--bg-img */

  .header--bg-img .img-wrap {
    height: 20rem;
    width: 100%;
  }

  /****** Text with BG-Video | header--text-bg-video */
  .header--text-bg-video {
    height: calc(100svh - 6rem);
    height: calc(100dvh - 6rem);
  }

  /****** Text with BG-Image | header--text-bg-img */

  .header--text-bg-img .sec-wrap__inner {
    min-height: 20rem;
  }

  /***** Banner */
  .banner--text-bg-img {
    height: 40vh;
  }

  .banner--text-bg-img .banner__inner {
    max-width: 60%;
  }

  .facts-figures {
    gap: 4em;
  }

  .figure-value,
  .figure-symbol {
    font-size: var(--fsize__h1);
  }
}

/* MOBILE //////////////////////////////////////////////////////////////// */
/*
01. Inner Content
02. Components
*/

@media only screen and (max-width: 36em) {
  /*
  -----------------------------------------------------------------------------

  01. Inner Content

  -----------------------------------------------------------------------------
  */

  :root {
    --slider-img-height: 25rem;
  }

  .infobox-wrap .infobox__inner {
    --box-height: 29em;
  }

  /* SINGLE POST *******************************************************************************/

  /*  IMPRINT + DATA PRIVACY *******************************************************************************/

  /*
  -----------------------------------------------------------------------------

  02. Components

  -----------------------------------------------------------------------------
  */

  /****** Gallery slider */

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 1rem;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 1rem;
  }

  .slider-lightbox-wrap .img-fill {
    max-width: 90%;
  }

  .slider-lightbox-wrap .swiper-button-prev,
  .slider-lightbox-wrap .swiper-rtl .swiper-button-next {
    left: 2.5rem;
  }

  .slider-lightbox-wrap .swiper-button-next,
  .slider-lightbox-wrap .swiper-rtl .swiper-button-prev {
    right: 2.5rem;
  }

  /****** Quote Slider */

  .content-wrap .block--quote-slider .slider::after {
    right: 0;
    font-size: 15rem;
  }

  .content-wrap .block--quote-slider .quote-wrap__inner {
    width: 100%;
  }

  .content-wrap .block--quote-slider .box-portrait .covered-image-wrap {
    min-height: 62vw;
  }

  .content-wrap .block--quote-slider .quote-wrap::after {
    font-size: 15rem;
    -webkit-transform: translate3d(2rem, 4rem, 0);
    transform: translate3d(2rem, 4rem, 0);
  }

  /****** Accordion */

  .accordion-trigger {
    padding: 1em 3.25em 1em 1.25em;
  }

  .accordion-trigger::after {
    font-family: "Icons Base";
    content: "\0045";
    position: absolute;
    right: 0.85em;
    top: 51%;
    font-size: min(1.85rem, 7vw);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .accordion-content {
    padding: 0 1.25em;
  }

  .accordion-content p:last-child {
    padding-bottom: 1.25em;
  }

  .content-wrap
    .block--accordion
    .accordion-content__inner
    [class*="block--"]:last-child {
    margin-bottom: 1.25em;
  }

  /****** posts */
  .post-grid .covered-image-wrap span {
    bottom: 1em;
    left: 1em;
    scale: 0.7;
    -webkit-transform-origin: left;
    transform-origin: left;
  }

  /* leistungen cpt  */
  .single-leistungen .text-leistungen .box p:last-child {
    margin-bottom: 0;
  }

  /***** Banner */
  .banner--text-bg-img {
    height: 30vh;
    padding-left: 2em;
    padding-bottom: 4em;
  }

  .banner--text-bg-img .banner__inner {
    max-width: 70%;
  }

  /* Facts & Figures */
  .facts-figures {
    gap: 2em;
  }

  .figure-value,
  .figure-symbol {
    font-size: var(--fsize__h1);
  }

  /* downloads */
  .block--downloads .bricklayer-column-sizer {
    width: 100%;
  }
}

/* MINI-MOBILE //////////////////////////////////////////////////////////////// */
/*
01. Inner Content
02. Components
*/

@media only screen and (max-width: 27em) {
  /*
  -----------------------------------------------------------------------------

  01. Inner Content

  -----------------------------------------------------------------------------
  */

  /* SINGLE POST *******************************************************************************/

  /*  IMPRINT + DATA PRIVACY *******************************************************************************/

  /*
  -----------------------------------------------------------------------------

  02. Components

  -----------------------------------------------------------------------------
  */
}

/* SPECIAL BREAKPOINTS //////////////////////////////////////////////////////// */
