html,
#html-body {
  background: #f6f6f6;
  font-family: Montserrat;
  /* Einheitliche Typografie: gleiche Größe = gleiches leading/tracking (em skaliert mit font-size) */
  --lh-hero: 1.07;
  --lh-display: 1.1;
  --lh-subhead: 1.2;
  --lh-body: 1.3;
  --lh-label: 1.3;
  --lh-label-wide: 1.4;
  --tr-tight: -0.02em;
  --tr-body: -0.01em;
  --tr-label: 0.04em;
  --tr-label-wide: 0.1em;
}
.ex-navigation-container {
  z-index: 2000;
  position: fixed;
  top: 0;
  left: 0;
  height: 92px;
  align-items: center;
}
.ex-header-headline {
  margin-bottom: 40px;
  color: #fff;
  font-family: Montserrat;
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-hero); /* 49.545px */
  letter-spacing: var(--tr-tight);
}

.ex-logo-header {
  mix-blend-mode: difference;
  position: fixed;
  left: 40px;
  top: 32px;
  z-index: 100000000;
}

.ex-navigation-inner-container {
  height: 60px;
  background: white;
  padding: 0 40px;
  border-radius: 35px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.ex-navigation-inner-item {
  color: var(--3, #1d1d1b);
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-body);
}
.ex-navigation-language-switcher {
  color: #c8c8c8;

  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-body);
}
.ex-leistung-list-item {
  background: white;
  border-radius: 14px;
  max-width: calc(50% - 8px);
  width: 100%;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 200px;
  margin-bottom: 16px;
  position: relative;
}
.ex-leistung-list-item:nth-last-child(-n + 2) {
  margin-bottom: 0;
}
.ex-leistung-list-item.ex-leistung-list-item--wide {
  max-width: 100%;
}

.ex-showcase-slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: 36px;
  color: var(--main-color, #93130a);
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-body);
}
.ex-showcase-slider-number {
  flex: 0 0 auto;
}
.ex-showcase-slider-range {
  position: relative;
  flex: 1 1 auto;
  width: auto;
  min-width: 0;
  height: 4px;
  margin: 0 16px;
  background: rgba(200, 200, 200, 0.45);
}

.ex-leistung-list-item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-radius: 12px; /* optional */
  padding: 16px 20px;
  background: #fff; /* Start: weiß */
  cursor: pointer;
}

/* Bild-Layer unten drunter */
.ex-leistung-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;

  /* Start: komplett weggeclippt von UNTEN (bottom = 100%) */
  clip-path: inset(100% 0 0 0);
  transition: clip-path 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: clip-path;
}

.ex-leistung-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text immer oben */
.ex-leistung-list-number,
.ex-leistung-list-name {
  position: relative;
  z-index: 2;
  color: #111; /* auf weiß lesbar */
  transition: color 0.35s ease; /* optional, falls du invertieren willst */
}

/* Hover: Bild fährt von UNTEN nach OBEN rein (bottom 100% -> 0%) */
.ex-leistung-list-item:hover .ex-leistung-bg,
.ex-leistung-list-item:focus-visible .ex-leistung-bg {
  clip-path: inset(0 0 0 0);
}

/* Optional: Text auf dem Bild invertieren */
.ex-leistung-list-item:hover .ex-leistung-list-number,
.ex-leistung-list-item:hover .ex-leistung-list-name,
.ex-leistung-list-item:focus-visible .ex-leistung-list-number,
.ex-leistung-list-item:focus-visible .ex-leistung-list-name {
  color: #fff;
}

/* Fallback ohne clip-path */
@supports not (clip-path: inset(10% 0 0 0)) {
  .ex-leistung-bg {
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
  }
  .ex-leistung-list-item:hover .ex-leistung-bg {
    transform: translateY(0%);
  }
}

.ex-navigation-menu-icon {
  position: absolute;
  width: 24px;
  height: 24px;
  right: 18px;
  top: 18px;
  cursor: pointer;
}
.ex-navigation-menu-icon .menu-line {
  transition:
    transform 0.28s ease,
    opacity 0.2s ease;
  transform-box: fill-box;
  transform-origin: center;
}
.ex-navigation-menu-icon.is-open .menu-line-top {
  transform: translateY(6px) rotate(45deg);
}
.ex-navigation-menu-icon.is-open .menu-line-middle {
  opacity: 0;
}
.ex-navigation-menu-icon.is-open .menu-line-bottom {
  transform: translateY(-6px) rotate(-45deg);
}
.ex-navigation-container {
  z-index: 10000;
}

.ex-navigation-menu-container {
  width: 60px;
  height: 60px;
  border-radius: 30px;
  background: #ffffff;
  position: fixed;
  right: 16px;
  top: 16px;
}
.ex-navigation-menu-container {
  max-width: 405px;
  z-index: 1000; /* über Backdrop */
}
.ex-navigation-menu-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge (Chromium), Opera */
}

.ex-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(127, 127, 127, 0.7);
  opacity: 0; /* startet unsichtbar */
  pointer-events: none; /* erst bei Öffnung klickbar */
  z-index: 999; /* unter dem Menü-Container */
}
.ex-navigation-menu-inner-container {
  display: none;
  width: calc(100% - 80px);
  margin: 0 40px;
  height: 100%;
  padding: 76px 0;

  flex-direction: column;
  justify-content: space-between;
  overflow: scroll;
}

.ex-navigation-menu-inner-container {
  /* Scrollbar aktiv */
  overflow-y: auto;
  max-height: 100vh;

  /* Scrollbar verstecken – Webkit (Chrome, Safari, Edge) */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE/Edge */
}

.ex-navigation-menu-inner-container::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

[data-splittext] {
  opacity: 0;
}

.split-line {
  overflow: hidden;
}
.split-line.iflex {
  display: inline-flex !important;
  align-items: center;
}
.ex-navigation-menu-inner-lower-button img {
  padding-left: 10px;
}
.ex-career-list details {
  margin-bottom: 20px;
}

.ex-career-list-name:hover {
  color: #040508;
  cursor: pointer;
}
.ex-career-list-name:hover .ex-career-list-gender {
  color: #040508;
}
.ex-career-list-name {
  color: #040508;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
  position: relative;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.ex-career-arrow {
  display: block;
  width: 100%;
  height: 100%;
  transform: translateY(0%); /* komplett nach oben raus */
  transition: transform 0.35s ease; /* smooth animiert */
}
details.open .ex-career-list-name {
  color: #040508;
}

.ex-career-list-gender {
  color: var(--Light-Grey, #c8c8c8);
  leading-trim: both;
  text-edge: cap;
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-body);
  letter-spacing: var(--tr-body);
}
.ex-navigation-menu-item {
  height: 31px;
  color: #040508;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-subhead); /* 31.2px */
  letter-spacing: var(--tr-tight);
  margin-bottom: 16px;
  display: block;
}
.ex-navigation-menu-item.smaller-margin {
  margin-bottom: 8px;
}
.ex-navigation-menu-inner-middle {
  margin-top: 15px;
}
.ex-navigation-menu-spacer {
  height: 24px;
}
.ex-navigation-menu-item.smaller {
  font-size: 16px;
  font-weight: 400;
  height: auto;
}
.ex-navigation-menu-inner-middle-line {
  height: 1px;
  width: 100%;
  background: #c8c8c8;
}
.ex-navigation-menu-inner-lower {
  padding-top: 24px;
}
.ex-navigation-menu-inner-lower-button {
  display: flex;
  justify-content: space-between;
  opacity: 0;
}
.ex-navigation-menu-inner-middle-item {
  padding-top: 24px;
  padding-bottom: 24px;
  color: var(--040508, #040508);
  font-family: "Montserrat";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-label-wide); /* 142.857% */
  letter-spacing: var(--tr-label-wide);
  text-transform: uppercase;
}

.ex-showcase-slider-thumb.dragging {
  cursor: grabbing;
}

/* Slides übereinander stapeln; nur aktives sichtbar */
.ex-showcase-slider {
  position: relative;
}
.ex-showcase-slider-item {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.ex-showcase-slider-item.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ex-showcase-slider-thumb {
  position: absolute;
  top: 0;
  left: 0;
  height: 10px;
  width: var(--ex-thumb-width, 33%);
  background: var(--main-color, #93130a);
  border-radius: 10px;
  transform: translateY(-25%);
  cursor: grab;
  touch-action: none;
}
.ex-showcase-slider-thumb:focus-visible {
  outline: 2px solid var(--main-color, #93130a);
  outline-offset: 4px;
}
.ex-small-detail-text {
  color: #818283;

  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-body); /* 27px */
  letter-spacing: var(--tr-body);
}
.ex-leistung-list-number {
  color: #d8d8d8;
  font-variant-numeric: lining-nums tabular-nums;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display); /* 120% */
  letter-spacing: var(--tr-tight);
}
.ex-leistung-list-name {
  color: #040508;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-subhead); /* 31.2px */
  letter-spacing: var(--tr-tight);
}
.ex-leistungen-list-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.ex-navigation-language-switcher .active {
  color: var(--main-color, #93130a);
}
.ex-navigation-language-switcher {
  display: none;
}
.ex-header-bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-bottom: 52px;
  z-index: 100;
}
.ibmplexmono {
  font-family: "Montserrat";
}
.ex-leistung-main-text {
  color: #818283;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-body); /*  */
  letter-spacing: var(--tr-body);
  margin-bottom: 0;
}
.ex-header-project-button.text-dark {
  color: #1e2631;
}
.ex-header-bottom-bar {
  opacity: 0;
  transform: translateY(6px);
  pointer-events: none;
}
.site-hero {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0 */
  height: 100vh;
  z-index: 10; /* Header-Ebene */
  pointer-events: auto; /* Header bleibt bedienbar, solange Content nicht drüber liegt */
}

.site-content {
  position: relative;
  z-index: 20; /* ÜBER dem Header */
  margin-top: 100vh; /* Startet genau unter dem fixen Header */
  background: #f6f6f6; /* wichtig, damit es den Header „überdeckt“ */
}
.ex-header-bottom-bar {
  border-radius: 16px;
  /* height: 70px; */
  background: white;
  box-shadow:
    0 8px 18px -6px rgba(10, 29, 44, 0.04),
    0 12px 42px -4px rgba(10, 29, 44, 0.08);
}
.ex-bottom-bar-contact {
  height: 100%;
  background: var(--main-color, #93130a);
  padding: 8px 16px;
  color: #fff;
  font-family: "Montserrat";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-body);
  letter-spacing: var(--tr-body);
  border-radius: 12px;
}
#html-body strong {
  font-weight: 500;
}

/* Sichtbar-Status */
.ex-header-bottom-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ex-navigation-container,
.ex-logo-header {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.ex-navigation-container:not(.is-visible),
.ex-logo-header:not(.is-visible) {
  opacity: 0;
  visibility: hidden;
}

.ex-bottom-name {
  color: var(--d-9-d-9-d-9, #fff);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-label-wide); /* 142.857% */
  letter-spacing: var(--tr-label-wide);
  text-transform: uppercase;
}
.ex-project-showcase-headline {
  color: var(--1, #fff);
  leading-trim: both;

  text-edge: cap;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display);
  margin-bottom: 16px;
  letter-spacing: var(--tr-tight);
}
.ex-project-details-container {
  position: absolute;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.ex-project-details-container.ex-project-details-container--flex-bottom {
  position: relative;
  bottom: auto;
  flex-shrink: 0;
}
.ex-header-project-button img {
  margin-right: 24px;
}
.ex-header-project-button {
  display: flex;
  align-items: center;
  color: #fff;

  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-subhead); /* 31.2px */
  letter-spacing: var(--tr-tight);
}
.ex-contact-headline {
  color: #1d1d1b;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
  margin-bottom: 32px;
}
.ex-leistung-main-container {
  padding: 24px;
  background: #fff;
  border-radius: 14px;
}
.ex-leistung-main-headline {
  color: #1e2631;
  font-family: Montserrat;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display); /* 120% */
  letter-spacing: var(--tr-tight);
  max-width: 80%;
}
.ex-headline {
  color: #1d1d1b;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
}
.ex-headline.leistung-headline {
  margin-top: 31px;
}
.ex-footer-address {
  color: var(--d-9-d-9-d-9, #fff);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-label-wide);
  letter-spacing: var(--tr-label-wide);
  text-transform: uppercase;
  padding-bottom: 62px;
  border-bottom: 1px solid white;
}
.ex-footer-opening-times {
  padding-top: 62px;
  padding-bottom: 62px;
  color: var(--d-9-d-9-d-9, #fff);
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-label-wide); /* 142.857% */
  letter-spacing: var(--tr-label-wide);
  text-transform: uppercase;
  border-bottom: 1px solid white;
}
.inactive-top-jobs {
  color: #c8c8c8 !important;
}
.ex-footer-section {
  width: 100%;
  /*height: 100vh;*/
  overflow: visible;
}
.footer-main-content {
  padding-top: 44px;
  position: relative;
}
/* Fullscreen-Footer nur ab 2xl: Content darf mobil mitwachsen und gescrollt werden */
@media (min-width: 1536px) {
  .ex-footer-section {
    overflow: hidden;
  }
  .footer-main-content {
    position: absolute;
    inset: 0;
  }
  .shader-canvas-wrap {
    height: 100%;
  }
}
.fx-item {
  position: relative;
  overflow: hidden;
  display: inline-block;
  cursor: pointer;
}
.fx-item span {
  display: inline-block;
  will-change: transform;
}
.fx-item.hovered span {
  pointer-events: none;
}

.fx-hidden {
  position: absolute;
  left: 0;
  bottom: 100%;
  pointer-events: none;
}
.shader-canvas-wrap {
  width: 100%;
  height: auto;
  min-height: 100%;
  position: relative;
}
.ex-footer-menu-item {
  width: 100%;
  display: flex;
  align-items: center;
  color: #fff;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-body); /* 26px */
  letter-spacing: var(--tr-body);
  margin-bottom: 16px;
}
.ex-footer-menu-item img {
  margin-right: 16px;
  height: 32px;
}
#shader-canvas {
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.ex-headline-topline {
  color: #1d1d1b;
  font-family: "Montserrat";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-label); /* 20.8px */
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  position: relative;
}
.ex-headline-topline:has(img) {
  color: #1d1d1b;
}
.ex-headline-topline {
  color: var(--main-color);
}

.ex-headline-topline:has(~ svg),
.ex-headline-topline:has(svg ~ *) {
  color: var(--main-color);
}

.ex-headline-topline:has(svg) {
  color: #1d1d1b;
}

.ex-contact-checkbox {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  aspect-ratio: 1 / 1;
}

.ex-contact-checkbox-text {
  color: #818283;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-body); /* 20.8px */
  letter-spacing: var(--tr-body);
}
.ex-footer-reminder-text {
  color: #818283;
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-label); /* 15.6px */
  letter-spacing: var(--tr-label);
}
.ex-contact-text {
  color: #818283;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-body); /* 20.8px */
  letter-spacing: var(--tr-body);
  margin-bottom: 48px;
}
.ex-highlighted-sub-page-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ex-highlighted-sub-page-name {
  color: var(--3, #1d1d1b);
  leading-trim: both;

  text-edge: cap;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
}
.ex-highlighted-sub-page-image {
  aspect-ratio: 425 / 384;
  position: relative;
}
[data-underline] {
  position: relative;
  display: inline-block;
}

[data-underline] .underline-line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px; /* kannst du ändern */
  width: 100%;
  transform-origin: left center;
  pointer-events: none;
}

.ex-header-project-location {
  color: var(--d-9-d-9-d-9, #fff);
  text-align: right;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-label-wide);
  letter-spacing: var(--tr-label-wide);
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.footer-info {
  border-top: 1px solid #c8c8c8;
}
.swiper-pagination {
  opacity: 0;
}
.privacywire {
  display: none !important;
}
.ex-reference-detail-headline {
  color: #1d1d1b;
  leading-trim: both;

  text-edge: cap;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
}
.ex-impressions-text {
  color: #1e2631;

  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-subhead);
  letter-spacing: var(--tr-tight);
  padding-top: 16px;
  padding-bottom: 56px;
}
.ex-reference {
  margin-bottom: 8px;
  border-radius: 30px;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .ex-impressions-right {
    margin-top: -200px;
  }
  .ex-impressions-middle {
    margin-top: 50px;
  }
}
.ex-impressions-inner {
  border-radius: 24px;
  overflow: hidden;
}
.ex-about-us-button-text {
  color: #1e2631;

  font-family: Montserrat;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-subhead);
  letter-spacing: var(--tr-tight);
}
.ex-about-us-button-image {
  width: 72px;
  height: 72px;
  margin-right: 24px;
}
.ex-about-us-button-container {
  display: flex;
  align-items: center;
}

.ex-project-showcase-text {
  color: var(--1, #fff);
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-subhead); /* 31.2px */
  letter-spacing: var(--tr-tight);
}
.ex-header-controls-bottom-container {
  background: #fff;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 19px;
  position: relative;
}
#prevSlide {
  transform: rotate(180deg) !important;
}
.ex-header-controls-text {
  color: var(--main-color, #93130a);
  text-align: center;
  font-family: "Montserrat";
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: var(--lh-label-wide);
  letter-spacing: var(--tr-label-wide);
  text-transform: uppercase;
  margin: 0 16px;
}
.ex-header-controls.prev {
  transform: rotate(180deg);
  position: absolute;
  left: 24px;
}
.ex-intro-text {
  color: var(--3, #1d1d1b);
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
}
.ex-intro-word {
  display: inline-block;
  white-space: nowrap;
}
.ex-intro-word--break {
  display: inline;
  white-space: normal;
  -webkit-hyphens: auto;
  hyphens: auto;
  overflow-wrap: anywhere;
}
.ex-header-controls.next {
  position: absolute;
  right: 24px;
}

.ex-headline-smaller {
  color: #1e2631;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display); /* 120% */
  letter-spacing: var(--tr-tight);
}
.ex-about-text {
  color: #818283;
  font-family: Montserrat;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-body); /* 26px */
  letter-spacing: var(--tr-body);
}
.ex-highlighted-sub-page-link-text {
  color: #1e2631;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-subhead); /* 31.2px */
  letter-spacing: var(--tr-tight);
}
.ex-highlighted-sub-page {
  border-bottom: 1px solid #c8c8c8;
}
.ex-highlighted-sub-page:last-of-type {
  border-bottom: none;
}
.ex-footer-links-text {
  color: var(--d-9-d-9-d-9, #fff);
  text-align: right;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-label-wide); /* 142.857% */
  letter-spacing: var(--tr-label-wide);
  text-transform: uppercase;
}
.ex-footer-links-logo {
  width: 12px;
}
.ex-leistungen-element-headline {
  color: #1d1d1b;
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
  margin-bottom: 32px;
}
.topline-white {
  color: white;
}
.ex-headline-topline.topline-white {
  color: white;
}
.ex-summary-name {
  color: var(--Light-Grey, #c8c8c8);
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}
.ex-ansprechpartner-subline {
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-label); /* 15.6px */
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  margin-bottom: 32px;
}
.ex-leistungen-element-text {
  color: #818283;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-body); /* 20.8px */
  letter-spacing: var(--tr-body);
}
.ex-acc-body-button {
  color: #1e2631;
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-subhead); /* 31.2px */
  letter-spacing: var(--tr-tight);
}
.ex-acc-body-text {
  color: #818283;
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-body); /* 20.8px */
  letter-spacing: var(--tr-body);
}
.ex-lehre-cards-container {
  width: 100%;
  height: 600px;
  background: linear-gradient(
    77deg,
    #080203 0.76%,
    #080203 18.3%,
    #a5171a 40.11%,
    #fe6244 60.97%,
    #fe8155 79.46%,
    #ffbc90 99.37%
  );
  border-radius: 24px;
}
.ex-slider-partners-container {
  padding-top: 40px;
}
.ex-partner-container {
  width: 110px;
  height: 100px;
  background: #ffffff;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}
.ex-partner-container .glyph {
  max-width: 80px;
  width: 100%;
}
.ex-person-name {
  color: #1e2631;
  font-family: Montserrat;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
}
.ex-person-title {
  color: #1e2631;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-body);
  letter-spacing: var(--tr-body);
  margin-top: 12px;
}
.ex-person-contact-data {
  color: #818283;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-body); /* 21px */
  letter-spacing: var(--tr-body);
  margin-top: 12px;
}
.ex-person-contact-data span {
  color: var(--main-color, #93130a);
  width: 30px;
  display: inline-block;
  font-weight: 600;
}
.ex-slider-year {
  color: var(--main-color, #93130a);
}
.ex-team-header-image {
  border-radius: 24px;
  aspect-ratio: 1 / 1;
  height: auto;
}
@media (min-width: 1024px) {
  .ex-team-header-image {
    aspect-ratio: 1360 / 634;
  }
}
.ex-anspruch-card {
  background: #fff;
  padding: 37px 44px 23px 24px;
  border-radius: 14px;
}
.ex-anspruch-card-icon {
  width: 54px;
  margin-bottom: 47px;
}
.ex-anspruch-card-title {
  color: var(--040508, #040508);
  font-family: Montserrat;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-subhead);
  letter-spacing: var(--tr-tight);
  margin-bottom: 11px;
}
.ex-career-text-top {
  color: var(--d-9-d-9-d-9, #fff);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-label); /* 15.6px */
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  margin-bottom: 29px;
}

.ex-career-text-bottom {
  color: var(--d-9-d-9-d-9, #fff);
  leading-trim: both;
  text-edge: cap;
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
}
.ex-career-text-container {
  border-radius: 24px;
  padding: 130px 20px 55px 20px;
  background: linear-gradient(
    77deg,
    #080203 0.76%,
    #080203 18.3%,
    #a5171a 40.11%,
    #fe6244 60.97%,
    #fe8155 79.46%,
    #ffbc90 99.37%
  );
}

.ex-anspruch-card-text {
  color: #818283;
  font-family: Montserrat;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-body); /* 21px */
  letter-spacing: var(--tr-body);
}

.ex-impressions-text span {
  color: var(--01-Elektro-Installation, #93130a);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-label); /* 20.8px */
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
}

.ex-footer-links-main {
  color: var(--d-9-d-9-d-9, #fff);
  font-family: Montserrat;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-body); /* 26px */
  letter-spacing: var(--tr-body);
  margin-top: 62px;
}
.ex-footer-links-main:last-child {
  margin-top: 20px;
}
.ex-footer-address a {
  color: white;
  text-decoration: none;
}
.ex-impressum > p:first-child {
  color: var(--main-color, #93130a);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  margin: 0 0 40px;
}
.ex-impressum > h1 {
  color: var(--main-color, #93130a);
  font-family: Montserrat;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display);
  letter-spacing: var(--tr-tight);
  margin: 0 0 80px;
}
.ex-impressum > h2 {
  color: var(--main-color, #93130a);
  font-family: Montserrat;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-label);
  letter-spacing: var(--tr-label);
  text-transform: uppercase;
  margin: 48px 0 8px;
}
.ex-impressum > h1 + h2 {
  margin-top: 0;
}
.ex-impressum > p {
  color: #818283;
  font-family: Montserrat;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--lh-body);
  letter-spacing: var(--tr-body);
  margin: 0;
}
.ex-impressum a {
  color: inherit;
  text-decoration: none;
}
.ex-impressum a:hover {
  text-decoration: underline;
}
.ex-reference-detail-headline-smaller {
  color: #1e2631;
  font-family: Montserrat;
  font-size: 32px;
  font-style: normal;
  font-weight: 500;
  line-height: var(--lh-display); /* 120% */
  letter-spacing: var(--tr-tight);
}

.ex-contact-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.ex-toast-root {
  position: fixed;
  z-index: 100000;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: min(480px, calc(100vw - 32px));
  width: max-content;
}

.ex-toast {
  padding: 16px 24px;
  border-radius: 14px;
  background: var(--main-color, #93130a);
  color: #fff;
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: var(--lh-body);
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.ex-toast--visible {
  opacity: 1;
  transform: translateY(0);
}
