/* Inner Styles */

/* ///////////////////// */

/* -------------- */
/* SETUP */
/* DESKTOP */
/* MINI-DESKTOP */
/* TABLET */
/* MOBILE */
/* MINI-MOBILE */
/* SPECIAL BREAKPOINTS */
/* -------------- */

/* DESKTOP //////////////////////////////////////////////////////////////// */
/*
01. Inner Content
02. Components
*/

/*
-----------------------------------------------------------------------------

01. Inner Content

-----------------------------------------------------------------------------
*/

/* COOKIE BANNER */
.cookie-banner.closed {
  /* bugfix: prevent flickering – other styles defined in deferred cookie.css file */
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ANIMATIONS */

.box--reveal {
  /* opacity: 0; /* prevent flickering */
  visibility: hidden;
}

/* nice slide animation */
.box--slide-up {
  position: relative;
  overflow: hidden;
  /* This will keep the pseudo-element within the box */
  border: var(--brandBorder);
  border-color: rgba(255, 255, 255, 1);
}

.box--slide-up .bg {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: -1;
  /* This places the background behind the content of the div */
}

/* HERO SCENE */

.sec-wrap.hero-scene .hero-img-wrap {
  position: absolute;
  /* background: var(--color_blue); */
  width: 50%;
  right: 0;
  height: calc(100% + var(--nav_height));
  top: calc(-1 * var(--nav_height));
  display: flex;
  flex-direction: column;
  opacity: 0;
  --pseudoOpacity: 1;
}

.sec-wrap.hero-scene .hero-img-wrap::before {
  /* make logo claim more readable */
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.57) 0%,
    rgba(255, 255, 255, 0.32) 17%,
    rgba(255, 255, 255, 0.02) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  z-index: 2;
  opacity: var(--pseudoOpacity);
}

.sec-wrap.hero-scene .hero-img-wrap::after {
  /* make contact button more readable */
  content: "";
  position: absolute;
  pointer-events: none;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    195deg,
    rgba(0, 94, 170, 0.47) 0%,
    rgba(0, 94, 170, 0.27) 17%,
    rgba(0, 94, 170, 0.02) 50%,
    rgba(0, 94, 170, 0) 100%
  );
  z-index: 1;
  opacity: var(--pseudoOpacity);
}

/* --- Reveal Hero Imgs Overlays */

.sec-wrap.hero-scene .hero-img-wrap .reveal-overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color_white);
  transform: scaleY(0);
}

/**/

.sec-wrap.hero-scene .hero-img-wrap .covered-image-wrap {
  flex-basis: 50%;
}

/* SPECIAL BREAKPOINTS */
@media only screen and (min-width: 125em) {
  /* special case for wide screens */
  .sec-wrap.hero-scene .hero-img-wrap {
    flex-direction: row;
    opacity: 1;
  }

  .sec-wrap.hero-scene .hero-img-wrap {
    --pseudoOpacity: 0;
  }

  .sec-wrap.hero-scene .hero-img-wrap img {
    visibility: hidden;
  }
}

/**/

/* DEPRECATED
.hero-img-wrap .slider,
.hero-img-wrap .swiper-wrap,
.hero-img-wrap .swiper-wrap .swiper-slide,
.hero-img-wrap .swiper-wrap .swiper-slide .overed-image-wrap {
  height: 100%;
}

.hero-img-wrap .swiper-wrap,
.hero-img-wrap .swiper-wrap .swiper-slide { 
  transition-timing-function: cubic-bezier(0.65,0.05,0.36,1);
 } 
*/

.sec-wrap.hero-scene .claim-wrap {
  width: 50%;
  padding-right: 3rem;
  margin-bottom: 3rem;
}

.sec-wrap.hero-scene .sec-wrap__inner {
  padding-top: 1em;
  padding-bottom: 4em;
}

/* Flashnews */
.sec-wrap.flashnews .sec-wrap__inner > h3:first-of-type {
  margin-top: 1.5rem;
}

/* CTA Wrap */

.sec-wrap.teaser-wrap .cta-wrap {
  position: relative;
  transform: translateY(50%);
  margin-top: -3em;
  margin-bottom: 5em;
}

/*
.sec-wrap.teaser-wrap .flex-wrap {
  margin-left: -3vw;
  margin-right: -3vw;
  width: calc(100% + 6vw);
}
 .sec-wrap.teaser-wrap .flex-wrap .box {
	padding-left: 3vw;
	padding-right: 3vw; 
} */

.sec-wrap.teaser-wrap .flex-wrap > * + * {
  padding-left: min(3vw, 7rem);
}

.sec-wrap.teaser-wrap .reveal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color_blue);
  transform: scaleY(0);
}

.sec-wrap.teaser-wrap .reveal-text {
  opacity: 0;
}

.sec-wrap.teaser-wrap .cta-wrap .cta {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--color_blue);
  border: var(--brandBorder);
  background: var(--color_white);
  width: 100%;
  height: 100%;
  transition: all 0.2s cubic-bezier(0.77, 0, 0.18, 1);
  overflow: hidden;
}

.sec-wrap.teaser-wrap .cta-wrap .cta::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color_blue);
  top: 0;
  left: 0;
  transform: translateY(100%);
  z-index: -1;
  transition: all 0.2s cubic-bezier(0.77, 0, 0.18, 1);
}

.sec-wrap.teaser-wrap .cta-wrap .cta:hover::after {
  transform: translateY(0%);
}

.sec-wrap.teaser-wrap .cta-wrap .cta:hover {
  transform: translateY(0%);
  border-color: var(--color_white);
}

.sec-wrap.teaser-wrap .cta-wrap .cta span {
  display: inline-block;
  font-size: min(var(--fsize_h3), 2.4vw);
  -webkit-hyphens: manual;
  -ms-hyphens: manual;
  hyphens: manual;
  padding: 0.5em 1em;
  text-align: center;
  transition: all 0.2s ease;
}

.sec-wrap.teaser-wrap .cta-wrap .cta:hover span {
  color: var(--color_white);
}

/* POSTS *******************************************************************************/

/****** Post grid */

.post-grid .covered-image-wrap {
  height: 15.5em;
}

/* SINGLE POST *******************************************************************************/

/* GENERAL FORM STYLES *******************************************************************************/

.field-wrap {
  display: block;
  width: 100%;
}

/****** Labels */

.field-wrap span.label {
  display: inline-block;
  width: 100%;
  color: var(--color_blueOpac);

  font-family: "Euclid Square", sans-serif;
  font-weight: 500;
  font-size: var(--fsize_p);
  line-height: 1.45;
  letter-spacing: 0em;
  margin: 1em 0 0.25em 0;
}

/****** 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 {
  border: var(--brandBorder);
  border-color: transparent;
  padding: 0.75em;
  border-radius: 0;
  max-width: 35em;
  background: var(--color_lightBlue);
  color: var(--color_blue);

  font-family: "Euclid Square", sans-serif;
  font-weight: 500;
  font-size: var(--fsize_p);
  line-height: 1.45;
  letter-spacing: 0em;
  transition: border-color 0.1s ease;
}

.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(--borderRadius_regular);
  margin-bottom: 0;
  background: var(--color_white);
}

input,
select,
textarea {
  color: var(--color_blue);
  width: 100%;
}

textarea {
  max-width: 35em;
  background: var(--color_lightBlue);
  padding: 0.75em;
  max-height: 25rem;
  border: var(--brandBorder);
  border-color: transparent;
  border-radius: 0;
  margin: 0em;

  font-family: "Euclid Square", sans-serif;
  font-weight: 500;
  font-size: var(--fsize_p);
  line-height: 1.45;
  letter-spacing: 0em;
  color: var(--color_blue);
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}

textarea:focus,
input:focus {
  border-color: var(--color_blue);
}

::-webkit-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color_blue);
  opacity: 1;
  /* Firefox */
}

::-moz-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color_blue);
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color_blue);
  opacity: 1;
  /* Firefox */
}

::-ms-input-placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color_blue);
  opacity: 1;
  /* Firefox */
}

::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: var(--color_blue);
  opacity: 1;
  /* Firefox */
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: var(--color_blue);
}

::-ms-input-placeholder {
  /* Microsoft Edge */
  color: var(--color_blue);
}

/****** Submit button */

button[type="submit"],
input[type="submit"],
.field-wrap input[type="submit"] {
  position: relative;
  font-family: "Euclid Square", sans-serif;
  font-weight: 700;
  font-size: var(--fsize_nav);
  line-height: 1.45;
  letter-spacing: 0em;
  background: var(--color_white);
  color: var(--color_blue);
  padding: 0.5em 0.8125em;
  border: var(--brandBorder);
  margin-top: 1.25em;
  margin-bottom: 3em;
  display: inline-block;
  cursor: pointer;
  width: auto;
  z-index: 2;
  overflow: hidden;
  transition: all 0.2s ease;
}

button[type="submit"]::after,
input[type="submit"]::after,
.field-wrap input[type="submit"]::after {
  content: "";
  position: absolute;
  width: 101%;
  height: 101%;
  /* 101 for optical correction */
  top: 0;
  left: 0;
  background: var(--color_blue);
  transform: translateY(100%);
  z-index: -1;
  transition: all 0.2s cubic-bezier(0.77, 0, 0.18, 1);
}

button[type="submit"]:hover::after,
input[type="submit"]:hover::after,
.field-wrap input[type="submit"]:hover::after {
  transform: translateY(0%);
}

button[type="submit"]:hover,
input[type="submit"]:hover,
.field-wrap input[type="submit"]:hover {
  color: var(--color_white);
}

/****** error handling */

.form-wrap .error-msg {
  display: block;
  color: var(--color_red);
  font-size: var(--fsize_s);
  margin-top: 0.2em;
}

.form-wrap p.error-msg {
  font-size: var(--fsize_p);
  margin-top: 2em;
}

.form-wrap input.has-error,
.form-wrap textarea.has-error {
  border-color: var(--color_red);
}

/****** success handling */

form.submitted {
  display: none;
}

/****** hide google recaptcha */

/**/

p.captcha-info,
p.captcha-info a {
  opacity: 0.75;
}

.grecaptcha-badge {
  display: none !important;
}

/* 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(--borderRadius_regular);
  background: rgba(255, 255, 255, 0.17);
  color: var(--color_blue);
}

.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 *******************************************************************************/

p a[href^="mailto:"],
p a[href^="tel:"] {
  text-decoration: none;
}

p a[href^="mailto:"]:hover,
p a[href^="tel:"]:hover {
  text-decoration: underline;
}

/* 404 *******************************************************************************/

.error-404 * {
  text-align: center;
  color: var(--color_white);
}

.error-404 h1 {
  font-size: 15vw;
  margin: 0.25em 0 0 0;
}

/*
-----------------------------------------------------------------------------

02. Components

-----------------------------------------------------------------------------
*/

/****** Layout */

.content-wrap [class*="block--"] {
  max-width: 86em;
  padding: 0 2em;
  margin: 3em auto;
}

.content-wrap [class*="block--"].full {
  max-width: 100%;
}

.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 {
  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_lightgreen);
}

.content-wrap .block--timetable::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 5rem;
  /* background: rgb(174,197,252);
  background: linear-gradient(90deg, rgba(174,197,252,0) 0%, rgba(174,197,252,1) 100%); */
  background: #dadcf9;
  background: linear-gradient(90deg, #dadcf900 25%, #dadcf9 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_blue);
}

.content-wrap .block--timetable table tr:last-child {
  border-bottom: 0;
}

/*
.content-wrap .block--timetable table tr:nth-child(odd) {
   background-color: var(--color_grey); 
}
*/

.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: 500;
  text-align: left;
  padding: 0.75rem 1.75rem;
}

.content-wrap .block--timetable table th {
  border-bottom: 0.025rem solid var(--color_blue);
  background-color: var(--color_white);
}

.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 */
.slider-wrap {
  position: relative;
  padding: 0;
}

.slider-wrap .slider {
  overflow: hidden;
}

.slider-wrap .swiper-slide {
  cursor: pointer;
}

.slider-wrap .swiper-slide .img-fill {
  height: 38em;
  overflow: hidden;
  text-align: center;
  float: left;
  width: 100%;
  display: block;
  position: relative;
  background: var(--color_lightGrey);
  transform: translate3d(0, 0, 0);
}

.slider-wrap.small .swiper-slide .img-fill {
  height: 24em;
}

.slider-wrap .swiper-slide .img-fill img {
  position: absolute;
  height: 100%;
  top: 50%;
  left: 50%;
  max-width: none !important;
  transform: translate(-50%, -50%);
}

.slider-wrap .swiper-slide .caption,
.slider-wrap .slider-lightbox .caption {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 1em;
  text-align: left;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 2rem;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 2rem;
}

/*--- slider lightbox */

.slider-wrap .slider-lightbox {
  overflow: hidden;
}

.slider-lightbox-wrap {
  z-index: 99999;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  background: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease-out;
}

.slider-lightbox-wrap.active {
  visibility: visible;
  pointer-events: all;
}

.slider-lightbox-wrap-close {
  z-index: 99;
  position: absolute;
  width: 3rem;
  height: 3rem;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 1rem;
  top: 1rem;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.slider-lightbox-wrap-close:focus {
  outline: none;
}

.slider-lightbox-wrap-close:before,
.slider-lightbox-wrap-close:after {
  content: "";
  position: absolute;
  left: 0.5rem;
  display: block;
  width: 2rem;
  height: 0;
  transform: rotate(45deg);
  transform-origin: center;
  border-bottom: 0.225rem solid var(--color_blue);
}

.slider-lightbox-wrap-close:after {
  transform: rotate(-45deg);
}

.slider-lightbox-wrap .slider-wrap {
  position: absolute;
  width: min(90rem, 100vw);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.slider-lightbox-wrap .swiper-slide .img-fill {
  max-width: 100%;
  margin: auto;
  display: flex;
  justify-content: center;
  max-height: calc(var(--vh, 1vh) * 75);
  height: calc(var(--vh, 1vh) * 75);
  transform: translate3d(0, 0, 0);
  background: var(--color_white);
}

.slider-lightbox-wrap .img-fill img {
  -o-object-fit: contain;
  object-fit: contain;
  height: 100%;
  width: 100%;
  transform: translate3d(0, 0, 0);
}

.slider-lightbox-wrap .swiper-button-prev,
.slider-lightbox-wrap .swiper-rtl .swiper-button-next {
  left: 2rem;
  right: auto;
}

.slider-lightbox-wrap .swiper-button-next,
.slider-lightbox-wrap .swiper-rtl .swiper-button-prev {
  right: 2rem;
  left: auto;
}

/******* Contact Form */

.content-wrap .block--form .form-wrap .field-wrap {
  flex-basis: 100%;
  max-width: 100%;
  grid-column-start: auto;
  grid-column-end: span 12;
}

.content-wrap .block--form .form-wrap .field-wrap span.label {
  font-family: "Euclid Square", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color_blue);
  -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: flex;
  flex-wrap: wrap;
  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: flex;
  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 */

.content-wrap .block--quote-slider .quote-wrap__inner blockquote {
  margin: 0;
}

.content-wrap .block--quote-slider .swiper-wrap.disabled {
  transform: translate3d(0, 0, 0) !important;
}

.content-wrap .block--quote-slider .quote-wrap {
  min-height: 6.25em;
  padding: 2.5em 5em;
  position: relative;
}

.content-wrap .block--quote-slider .slider {
  padding-top: 3em;
  margin-top: -3em;
}

.content-wrap .block--quote-slider .quote-wrap::after {
  content: '"';
  position: absolute;
  z-index: 1;
  font-style: italic;
  right: 0;
  top: 0;
  font-size: 20rem;
  width: 10rem;
  height: 10rem;
  transform: translate3d(0, 4rem, 0);
  pointer-events: none;
}

.content-wrap .block--quote-slider .quote-wrap__inner {
  width: min(25rem, 95%);
}

.content-wrap .block--quote-slider .quote-wrap p {
  margin-top: 0;
}

.content-wrap .block--quote-slider .box-portrait {
  width: 100%;
}

.content-wrap .block--quote-slider .box-portrait .covered-image-wrap {
  min-height: 25em;
}

.content-wrap .block--quote-slider .box-portrait ~ .box-quote .quote-wrap {
  min-height: 25em;
}

.content-wrap .block--quote-slider .box:nth-of-type(1) {
  padding-right: 0;
  margin: 0 auto;
}

.content-wrap .block--quote-slider .box:nth-of-type(2) {
  padding-left: 0;
}

.content-wrap .block--quote-slider .box--middleHeight .quote-wrap {
  min-height: 25em;
}

.content-wrap .block--quote-slider .box--middleHeight.box-quote {
  margin-bottom: 0;
}

/****** Contact persons */

.content-wrap .block--contact-person {
  position: relative;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.content-wrap .block--contact-person::after {
  content: "";
  position: absolute;
  z-index: -1;
  transform: translate3d(0, 0, 0);
  /* fallback to prevent display glitches */
  background: #ececec;
  left: -50vw;
  top: 0;
  width: 200vw;
  height: 100%;
}

.content-wrap .block--contact-person .portrait-box {
  height: 15rem;
}

.content-wrap .block--contact-person .grid-wrap .grid-wrap .box:first-of-type {
  padding-left: 0;
}

/****** Team */

.content-wrap .block--team .covered-image-wrap.portrait-box {
  height: 20rem;
}

/****** Video iframe */

.video-wrap {
  width: 100%;
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
}

.video-wrap iframe {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

/****** Accordion */

.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 {
  border: var(--border_regular);
  padding: 0;
}

.accordion-trigger {
  padding: 1.5625em 5.5em 1.5625em 1.75em;
  position: relative;
  cursor: pointer;
}

.accordion-trigger::after {
  font-family: "Icons Base";
  content: "\0045";
  position: absolute;
  right: 1.25em;
  top: 51%;
  font-size: 1.875rem;
  transform: translateY(-50%);
}

.accordion-trigger.open::after {
  content: "\0048";
}

.accordion-trigger h3 {
  margin: 0;
}

.accordion-content {
  max-height: 0;
  padding: 0 1.75em;
  overflow: hidden;
  transition: all 0.3s ease-out;
}

/* HEADER SCENE COMPONENTS *******************************************************************************/

.header__inner {
  position: relative;
  width: 100%;
  height: auto;
  max-width: 86em;
  margin: auto;
  padding: 5em 2em;
}

/****** BG-Image | header--bg-img */

.header--bg-img .img-wrap {
  height: 30rem;
  width: 100%;
}

.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: flex;
  align-items: center;
}

.header--text-bg-img h1.title {
  z-index: 1;
  position: relative;
  margin: 0;
}

.header--text-bg-img .covered-image-wrap {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

/* SPECIAL SECTIONS */

/* services */

.sec-wrap.services-wrap .service-teaser {
  border: var(--brandBorder);
  border-color: var(--color_lightBlue);
  transition: all 0.2s ease;
}

.sec-wrap.services-wrap .service-teaser:hover {
  border: var(--brandBorder);
}

.sec-wrap.services-wrap .service-teaser:hover .link--arrow-right::after {
  transform: translateX(0.35em);
}

.service-teaser__inner {
  height: 100%;
}

/**/

.sec-wrap.subservice-wrap .sec-wrap__inner {
  display: flex;
  justify-content: center;
}

.sec-wrap.subservice-wrap .subservice-banner,
.sec-wrap.subservice-wrap .subservice {
  display: inline-block;
}

.sec-wrap.subservice-wrap .subservice {
  display: inline-flex;
  align-items: center;
}

/* special case */
.subservice-wrap.service--immo .subservice {
  max-width: 12em;
}

.sec-wrap.subservice-wrap .subservice .svc {
  display: inline-block;
  max-width: 14em;
  text-align: left;
  line-height: 1.125;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

.sec-wrap.subservice-wrap .subservice .icon::before {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  margin-right: 1em;
  background: url("/wp-content/themes/oho/media/no-index/icons/check.svg")
    no-repeat center center;
  background-size: 100%;
  /* optical correction */
  /* transform: translateY(-0.1em); */
}

/**/

.sec-wrap.contact-person-wrap .covered-image-wrap {
  height: 28rem;
}

.sec-wrap.contact-person-wrap .custom-grid-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  -moz-column-gap: 4em;
  column-gap: 4em;
  row-gap: 0em;
  grid-auto-flow: row;
  grid-template-areas:
    "area_1 area_2"
    "area_1 area_3";
}

.sec-wrap.contact-person-wrap .grid-area--1 {
  grid-area: area_1;
}

.sec-wrap.contact-person-wrap .grid-area--2 {
  grid-area: area_2;
}

.sec-wrap.contact-person-wrap .grid-area--3 {
  grid-area: area_3;
}

/* company – persons */
.sec-wrap.person-wrap .person-box {
  text-align: left;
}

.sec-wrap.contact-person-wrap .employee__details,
.sec-wrap.person-wrap .employee__details {
  max-width: 16em;
}

.sec-wrap.person-wrap .person-box .covered-image-wrap {
  position: relative;
  height: min(22vw, 28rem);
}

/* --- reveal overlay person image */

.sec-wrap.person-wrap .person-box .reveal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color_white);
  transform: scaleY(0);
}

.sec-wrap.person-wrap .person-box .reveal-text {
  opacity: 0;
}

/**/

.sec-wrap.person-wrap .person-box .mail-link.shortened {
  text-decoration: underline;
}

/* company – history */

:root {
  --history_item_spacing: 2em;
}

.sec-wrap.history-wrap .history-item {
  padding: 2.25em 1.75em 2.25em 2.25em;
  width: calc((100% / 2) - var(--history_item_spacing));
  margin: var(--history_item_spacing) auto calc(var(--history_item_spacing) * 2)
    auto;
}

.sec-wrap.history-wrap .history-item:nth-of-type(3n + 2) {
  margin-left: 0;
}

.sec-wrap.history-wrap .history-item:nth-of-type(3n + 3) {
  margin-right: 0;
  margin-top: calc(var(--history_item_spacing) * -5);
}

/* references */

.sec-wrap.references .reference-item {
  border: var(--brandBorder);
  margin-bottom: 4em;
}

.sec-wrap.references .swiper-box {
  padding-left: 0;
  padding-right: 3vw;
}

.sec-wrap.references .info-box {
  padding: 1.5em 3vw;
}

.sec-wrap.references .info-box .facts-table td {
  padding-right: 1.5em;

  font-family: "Euclid Square", sans-serif;
  font-weight: 500;
  font-size: var(--fsize_p);
  line-height: 1.45;
  letter-spacing: 0em;
  color: var(--color_blue);
  -webkit-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
  vertical-align: top;
}

.sec-wrap.references .info-box .facts-table td.cat {
  font-weight: 700;
}

/**/

.sec-wrap.references .reference-item .wip-indicator {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.8125em 1em;
  color: var(--color_white);
  background: var(--color_blue);
  text-transform: uppercase;
  font-size: var(--fsize_s);
  font-weight: 700;
  user-select: none;
  pointer-events: none;
}

/**/

.sec-wrap.references .reference-item:nth-child(even) .flex-wrap {
  flex-direction: row-reverse;
}

.sec-wrap.references .reference-item:nth-child(even) .flex-wrap .swiper-box {
  padding-left: 3vw;
  padding-right: 0;
}

.sec-wrap.references .reference-item:nth-child(even) .wip-indicator {
  left: auto;
  right: 0;
}

/**/

.sec-wrap.references .reference-item .slider-wrap,
.sec-wrap.references .reference-item .slider {
  height: 100%;
}

.sec-wrap.references
  .reference-item
  .slider-wrap
  .swiper-slide
  .covered-image-wrap {
  min-height: clamp(22rem, 24vw, 28rem);
}

/* locations page */

.map-layer-container {
  position: relative;
  width: 100%;
}

.swiss-map svg.canonica-lotti-swiss-map {
  z-index: 1;
}

.swiss-map svg.canonica-lotti-swiss-map .location {
  display: none;
}

.sec-wrap.swiss-map .location-signet {
  position: absolute;
  transform: translate(-50%, -50%);
  transform-origin: center;
  transition: all 0.2s ease-out;
  z-index: 2;
  width: 6%;
  cursor: pointer;
  opacity: 0;
}

.sec-wrap.swiss-map .location-signet[data-location="frenkendorf"] {
  left: 39%;
  top: 16.65%;
  animation-delay: 0.1s;
}

.sec-wrap.swiss-map .location-signet[data-location="volketswil"] {
  left: 59.7%;
  top: 21%;
  animation-delay: 0.3s;
}

.sec-wrap.swiss-map .location-signet[data-location="thalwil"] {
  left: 58.7%;
  top: 26.75%;
  animation-delay: 0.3s;
}

.sec-wrap.swiss-map .location-signet[data-location="sarnen"] {
  left: 49.5%;
  top: 45.5%;
  animation-delay: 0.5s;
}

.sec-wrap.swiss-map .location-signet[data-location="schwanden"] {
  left: 46.3%;
  top: 52.5%;
  animation-delay: 0.7s;
}

.sec-wrap.swiss-map .location-signet svg {
  border: min(0.25vw, 4px) solid var(--color_white);
}

.address-popup {
  position: absolute;
  width: 18.5rem;
  height: auto;
  padding: 0.4rem 1.6em;
  z-index: 5;
  border: var(--brandBorder);
  background: var(--color_white);
  pointer-events: none;
  user-select: none;
  opacity: 0;
  transition: all 0.2s ease-out;
}

.address-popup.visible {
  opacity: 1;
  pointer-events: all;
}

.address-popup[data-location="frenkendorf"] {
  left: auto;
  right: 57.4%;
  top: 20.75%;
}

.address-popup[data-location="volketswil"] {
  left: 56.75%;
  right: auto;
  top: 25%;
}

.address-popup[data-location="thalwil"] {
  left: 55.625%;
  right: auto;
  top: 30%;
}

.address-popup[data-location="sarnen"] {
  left: 54.25%;
  right: auto;
  top: 42.25%;
}

.address-popup[data-location="schwanden"] {
  left: auto;
  right: 50.1%;
  top: 56.5%;
}

.address-popup .close-trigger {
  display: inline-block;
  position: absolute;
  color: var(--color_blue);
  cursor: pointer;
  right: 0em;
  top: 0em;
  padding: 0.85em 1em;
  margin: 0;
  font-size: 1rem;
}

/* jobs (Overview Page) */

.sec-wrap.jobs-wrap .job-teaser {
  border: var(--brandBorder);
  border-color: var(--color_lightBlue);
  transition: all 0.2s ease;
}

.sec-wrap.jobs-wrap .job-teaser:hover {
  border: var(--brandBorder);
}

.sec-wrap.jobs-wrap .job-teaser .title {
  display: inline-block;
  width: 100%;
  hyphens: auto;
}

.sec-wrap.jobs-wrap .job-teaser .percent {
  margin-top: 0.25em;
  display: inline-block;
}

.sec-wrap.jobs-wrap .job-teaser:hover .link--arrow-right::after {
  transform: translateX(0.35em);
}

.job-teaser__inner {
  height: 100%;
}

.sec-wrap.jobs-wrap .grid-wrap.justify-center {
  display: block;
}

.sec-wrap.jobs-wrap .grid-wrap.justify-center .box {
  margin: 0 auto;
  width: 50%;
}

/* jobs (single CPT) */

.sec-wrap.single-job .title,
.sec-wrap.single-job .percent {
  display: inline-block;
  width: 100%;
  hyphens: auto;
}

.sec-wrap.single-job .job-description ul,
.sec-wrap.single-job .job-description ol,
.sec-wrap.single-job .job-description p {
  margin-top: 0;
}

.sec-wrap.single-job .job-description p.section-title {
  margin-bottom: 0;
}

/* contact page */

.map-container #gmap {
  height: clamp(32rem, 25vw, 38rem);
  width: 100%;
  position: relative;
}

.contact-wrap .title {
  max-width: 10em;
  margin-left: auto;
  margin-right: auto;
}

/* MINI-DESKTOP //////////////////////////////////////////////////////////////// */
/*
01. Inner Content
02. Components
*/

@media only screen and (max-width: 86em) {
  /*
  -----------------------------------------------------------------------------

  01. Inner Content

  -----------------------------------------------------------------------------
  */

  /* hero scene */
  .sec-wrap.hero-scene .claim-wrap {
    padding-right: 5rem;
  }

  .sec-wrap.hero-scene .claim-wrap .claim {
    -webkit-hyphens: manual;
    -ms-hyphens: manual;
    hyphens: manual;
  }

  /* SPECIAL BREAKPOINT */
  @media only screen and (max-width: 70em) {
    /* HERO SCENE */
    .sec-wrap.hero-scene .hero-img-wrap {
      position: relative;
      width: 100%;
      height: 50vw;
      flex-direction: row;
    }

    .sec-wrap.hero-scene .sec-wrap__inner {
      padding-top: 0;
      padding-bottom: 3rem;
    }

    .sec-wrap.hero-scene .claim-wrap {
      width: 85%;
    }

    .sec-wrap.hero-scene .claim-wrap .claim {
      margin-top: 0;
    }

    /* CTA Wrap */

    .sec-wrap.teaser-wrap .cta-wrap {
      position: relative;
      transform: translateY(50%);
      margin-top: -3em;
      margin-bottom: 3em;
    }

    .sec-wrap.teaser-wrap .flex-wrap {
      margin-left: -1.5vw;
      margin-right: -1.5vw;
      width: calc(100% + 3vw);
    }

    .sec-wrap.teaser-wrap .flex-wrap .box {
      padding-left: 1.5vw;
      padding-right: 1.5vw;
    }

    /* references */

    .sec-wrap.references .swiper-box {
      padding-right: 1.5vw;
    }

    .sec-wrap.references .info-box {
      padding: 1.5em 1.5em 1.5em 1.5vw;
    }

    .sec-wrap.references .info-box .facts-table td {
      padding-right: 1.5em;
    }

    /**/

    .sec-wrap.references
      .reference-item:nth-child(even)
      .flex-wrap
      .swiper-box {
      padding-left: 1.5vw;
      padding-right: 0;
    }

    .sec-wrap.references .reference-item:nth-child(even) .flex-wrap .info-box {
      padding: 1.5em 1.5vw 1.5em 1.5em;
    }
  }

  /* company – persons */
  .sec-wrap.person-wrap .person-box .covered-image-wrap {
    height: 30vw;
  }

  /* company – history */
  :root {
    --history_item_spacing: 1.5em;
  }

  /* references */
  .sec-wrap.references .reference-item br.insignificant {
    display: none;
  }

  /* locations page */

  .address-overview .sec-wrap__inner {
    max-width: 55rem;
  }

  /* jobs (Overview Page) */

  .sec-wrap.jobs-wrap .grid-wrap.justify-center .box {
    width: 75%;
  }

  /* contact page */
  .form-wrap .field-wrap {
    max-width: 35em;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

/* TABLET //////////////////////////////////////////////////////////////// */
/*
01. Inner Content
02. Components
*/

@media only screen and (max-width: 55em) {
  /*
    -----------------------------------------------------------------------------

    01. Inner Content

    -----------------------------------------------------------------------------
    */

  /* HERO SCENE */

  .sec-wrap.hero-scene .claim-wrap {
    width: 100%;
  }

  /* CTA Wrap */

  .temp-placeholder {
    display: none;
  }

  .sec-wrap.teaser-wrap .cta-wrap.flex-wrap {
    transform: translateY(0%);
    width: 100%;
    max-width: 32em;
    margin: auto;
    padding-bottom: 4rem;
  }

  .sec-wrap.teaser-wrap .flex-wrap .box {
    padding: 0 1em;
    margin: 1em 0;
  }

  .sec-wrap.teaser-wrap .reveal-overlay {
    background-color: var(--color_white);
  }

  .sec-wrap.teaser-wrap .cta-wrap .cta {
    color: var(--color_white);
    border: var(--brandBorder);
    border-color: var(--color_white);
    background: var(--color_blue);
    height: 3.5em;
  }

  .sec-wrap.teaser-wrap .cta-wrap .cta span {
    font-size: max(var(--fsize_p), 2.75vw);
  }

  .sec-wrap.teaser-wrap .cta-wrap .cta:hover span {
    color: var(--color_blue);
  }

  .sec-wrap.teaser-wrap .cta-wrap .cta::after {
    background: var(--color_white);
  }

  /* company – persons */
  .sec-wrap.person-wrap .person-box .covered-image-wrap {
    height: 50vw;
  }

  /* company – history */

  .sec-wrap.history-wrap .history-item {
    padding: 1.75em 1.25em 1.75em 1.75em;
    width: max(61.8%, 23rem);
    max-width: 100%;
  }

  /* reset */

  .sec-wrap.history-wrap .history-item:nth-of-type(3n + 2),
  .sec-wrap.history-wrap .history-item:nth-of-type(3n + 3) {
    margin: var(--history_item_spacing) auto
      calc(var(--history_item_spacing) * 2) auto;
  }

  .sec-wrap.history-wrap .history-item:nth-of-type(2n) {
    margin-left: 0;
  }

  .sec-wrap.history-wrap .history-item:nth-of-type(4n) {
    margin-left: auto;
    margin-right: 0;
  }

  /* references */
  .sec-wrap.references .reference-item:nth-child(odd) .flex-wrap .swiper-box,
  .sec-wrap.references .reference-item:nth-child(even) .flex-wrap .swiper-box {
    /* reset */
    padding-left: 0;
    padding-right: 0;
  }

  .sec-wrap.references .reference-item:nth-child(odd) .flex-wrap .info-box,
  .sec-wrap.references .reference-item:nth-child(even) .flex-wrap .info-box {
    padding: 1.5em 2em;
  }

  .sec-wrap.references .reference-item:nth-child(even) .wip-indicator {
    left: 0;
    right: auto;
  }

  .swiper-button-prev {
    left: calc(0.7em + 2rem);
  }

  .swiper-button-next {
    right: calc(0.7em + 2rem);
  }

  /**/
  .sec-wrap.references
    .reference-item
    .slider-wrap
    .swiper-slide
    .covered-image-wrap {
    min-height: min(50vw, 27em);
  }

  /* locations page */
  .sec-wrap.swiss-map .location-signet {
    width: 10%;
  }

  .sec-wrap.swiss-map .location-signet svg {
    border: min(0.4vw, 3px) solid var(--color_white);
  }

  /*** location correction to prevent overlapping */
  .sec-wrap.swiss-map .location-signet[data-location="sarnen"] {
    top: 43%;
  }

  .sec-wrap.swiss-map .location-signet[data-location="schwanden"] {
    top: 53%;
  }

  .sec-wrap.swiss-map .location-signet[data-location="thalwil"] {
    top: 30%;
  }

  .address-popup[data-location="frenkendorf"],
  .address-popup[data-location="volketswil"],
  .address-popup[data-location="thalwil"],
  .address-popup[data-location="sarnen"],
  .address-popup[data-location="schwanden"] {
    left: 50%;
    right: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  /* services */

  .sec-wrap.contact-person-wrap .covered-image-wrap {
    height: 48vw;
  }

  @media only screen and (max-width: 42em) {
    /* SPECIAL BREAKPOINT */
    .sec-wrap.contact-person-wrap .covered-image-wrap {
      height: calc(38vw * 1.1);
    }
  }

  .sec-wrap.contact-person-wrap .custom-grid-wrap {
    -moz-column-gap: 2em;
    column-gap: 2em;
  }

  /* jobs (Overview Page) */

  .sec-wrap.jobs-wrap .grid-wrap.justify-center .box {
    width: 100%;
  }

  /* contact page */
  .map-container #gmap {
    height: max(50vw, 20rem);
  }

  .form-wrap .title,
  .form-wrap .field-wrap {
    margin-left: 0;
  }

  /*
  -----------------------------------------------------------------------------

  02. Components

  -----------------------------------------------------------------------------
  */

  /****** Layout */

  .content-wrap [class*="block--"] {
    margin: 2em auto;
  }

  /****** Text and Image */

  .content-wrap .block--text_and_image .box-text {
    order: 1;
  }

  /****** Gallery slider */

  .content-wrap .slider-wrap .swiper-slide .img-fill,
  .content-wrap .slider-wrap.small .swiper-slide .img-fill {
    height: 62vw;
  }

  /****** Quote Slider */

  .content-wrap .block--quote-slider .slider {
    padding-top: 5em;
  }

  .content-wrap .block--quote-slider .box-portrait ~ .box-quote .quote-wrap {
    min-height: auto;
  }

  /* HEADER SCENE COMPONENTS *******************************************************************************/

  /****** BG-Image | header--bg-img */

  .header--bg-img .img-wrap {
    height: 20rem;
    width: 100%;
  }

  /****** Text with BG-Image | header--text-bg-img */

  .header--text-bg-img .sec-wrap__inner {
    min-height: 20rem;
  }
}

/* MOBILE //////////////////////////////////////////////////////////////// */
/*
01. Inner Content
02. Components
*/

@media only screen and (max-width: 36em) {
  /*
  -----------------------------------------------------------------------------

  01. Inner Content

  -----------------------------------------------------------------------------
  */

  /* HERO SCENE */

  .sec-wrap.hero-scene .claim-wrap {
    padding-right: 0;
    margin-bottom: 1rem;
  }

  /* CTA WRAP */

  .sec-wrap.teaser-wrap .cta-wrap.flex-wrap {
    width: calc(100% + 2em);
    max-width: none;
    margin-left: -1em;
    margin-right: -1em;
  }

  /* references */

  .sec-wrap.references .info-box .facts-table tr {
    display: block;
    margin-top: 1em;
  }

  .sec-wrap.references .info-box .facts-table td {
    display: block;
    padding-right: 0;
  }

  /*  services */
  .sec-wrap.subservice-wrap .subservice .svc {
    max-width: 100%;
  }

  .sec-wrap.contact-person-wrap .custom-grid-wrap {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    -moz-column-gap: 0em;
    column-gap: 0em;
    row-gap: 1em;
    grid-template-areas:
      "area_2"
      "area_1"
      "area_3";
  }

  .sec-wrap.contact-person-wrap .custom-grid-wrap .grid-area--2 {
    text-align: center;
  }

  .sec-wrap.contact-person-wrap .covered-image-wrap {
    height: min(27em, 100vw);
    max-width: 22em;
  }

  .sec-wrap.contact-person-wrap .covered-image-wrap,
  .sec-wrap.contact-person-wrap .custom-grid-wrap .grid-area--3 {
    margin-left: auto;
    margin-right: auto;
  }

  /* company – history */
  :root {
    --history_item_spacing: 1em;
  }

  /* locations page */
  .map-layer-container {
    width: 120%;
    margin-left: -10%;
  }

  /*
  -----------------------------------------------------------------------------

  02. Components

  -----------------------------------------------------------------------------
  */

  /****** Gallery slider */

  /* .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 1rem;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 1rem;
  } */

  /****** 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 {
    padding: 2em 3em;
  }

  .content-wrap .block--quote-slider .quote-wrap::after {
    font-size: 15rem;
    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);
    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;
  }
}

/* MINI-MOBILE //////////////////////////////////////////////////////////////// */
/*
01. Inner Content
02. Components
*/

@media only screen and (max-width: 27em) {
  /*
  -----------------------------------------------------------------------------

  01. Inner Content

  -----------------------------------------------------------------------------
  */

  /* HERO SCENE */

  .sec-wrap.hero-scene .hero-img-wrap {
    height: max(100vw, 24em);
    flex-direction: column;
  }

  /* CTA Wrap */

  .sec-wrap.teaser-wrap .cta-wrap.flex-wrap {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .sec-wrap.teaser-wrap .flex-wrap .box {
    margin: 0.75em 0;
    padding: 0;
  }

  .sec-wrap.teaser-wrap .cta-wrap .cta {
    height: 3em;
  }

  /*  services */
  .sec-wrap.contact-person-wrap .custom-grid-wrap .grid-area--2 {
    text-align: left;
  }

  .sec-wrap.contact-person-wrap .covered-image-wrap,
  .sec-wrap.contact-person-wrap .custom-grid-wrap .grid-area--3 {
    margin-left: 0;
  }

  /* company – persons */
  .sec-wrap.person-wrap .person-box .covered-image-wrap {
    height: 100vw;
  }

  /* company – history */

  .sec-wrap.history-wrap .history-item {
    padding: 1.75em 1.25em 1.75em 1.75em;
    width: 100%;
  }

  /* locations page */
  .map-layer-container {
    width: 150%;
    margin-left: -25%;
  }

  .address-popup {
    width: min(100%, 18.5rem);
  }

  /*
  -----------------------------------------------------------------------------

  02. Components

  -----------------------------------------------------------------------------
  */

  /* Swiper */

  .swiper-button-prev {
    left: 0.7em;
  }

  .swiper-button-next {
    right: 0.7em;
  }
}

/* SPECIAL BREAKPOINTS //////////////////////////////////////////////////////// */
