@charset "UTF-8";
:root {
  --swiper-navigation-color: rgb(187, 215, 84);
}

:root {
  --color-black: rgb(0, 0, 0);
  --color-white: rgb(255, 255, 255);
  --color-green: rgb(9, 122, 59);
  --color-light-green: rgb(187, 215, 84);
  --color-light-gray: rgb(222, 222, 222);
  --color-dark-gray: rgb(93, 93, 93);
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

.fg--black {
  --font-color: rgb(0, 0, 0);
}

.bg--black {
  background-color: rgb(0, 0, 0);
}

.fg--white {
  --font-color: rgb(255, 255, 255);
}

.bg--white {
  background-color: rgb(255, 255, 255);
}

.fg--green {
  --font-color: rgb(9, 122, 59);
}

.bg--green {
  background-color: rgb(9, 122, 59);
}

.fg--light-green {
  --font-color: rgb(187, 215, 84);
}

.bg--light-green {
  background-color: rgb(187, 215, 84);
}

.fg--light-gray {
  --font-color: rgb(222, 222, 222);
}

.bg--light-gray {
  background-color: rgb(222, 222, 222);
}

.fg--dark-gray {
  --font-color: rgb(93, 93, 93);
}

.bg--dark-gray {
  background-color: rgb(93, 93, 93);
}

section {
  padding: 3rem 7.5px;
}
@media (min-width: 576px) {
  section {
    padding: 4rem 7.5px;
  }
}
@media (min-width: 768px) {
  section {
    padding: 6rem 7.5px;
  }
}
@media (min-width: 992px) {
  section {
    padding: 10rem 7.5px;
  }
}

.bg--black {
  color: rgb(255, 255, 255);
}

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

.site-content {
  background-color: rgb(0, 0, 0);
  background-image: url("/wp-content/themes/contact-theme/assets/images/pattern-reticle-dark.svg");
  background-position: left top;
  background-repeat: repeat;
  background-size: 251px 286px;
}

.bg--black {
  background-color: transparent;
}

/* Basiswerte (anpassbar) */
:root {
  --imgAnim-dur: .8s;
  --imgAnim-ease: cubic-bezier(.22,.61,.36,1);
  --imgAnim-scale: 1.08; /* Start-Zoom (größer = stärker) */
  --imgAnim-blur: 10px; /* Start-Weichzeichner */
}

/* Nur Wrapper, die wir initialisiert haben, bekommen die Transition */
.image-animation.animate-init img {
  transform: scale(var(--imgAnim-scale));
  filter: blur(var(--imgAnim-blur));
  transition: transform var(--imgAnim-dur) var(--imgAnim-ease), filter var(--imgAnim-dur) var(--imgAnim-ease);
  will-change: transform, filter;
}

/* Sobald im Viewport: zoomt zurück und wird scharf */
.image-animation.animate-init.is-inview img {
  transform: scale(1);
  filter: blur(0);
}

/* Respektiere Nutzer, die reduzierte Animation wünschen */
@media (prefers-reduced-motion: reduce) {
  .image-animation.animate-init img,
  .image-animation.animate-init.is-inview img {
    transition: none;
    transform: none;
    filter: none;
  }
}
.wpml-ls-statics-footer {
  display: none;
}

@font-face {
  font-family: "Raleway";
  src: url("/wp-content/themes/contact-theme/assets/fonts/raleway.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/wp-content/themes/contact-theme/assets/fonts/lato-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Lato";
  src: url("/wp-content/themes/contact-theme/assets/fonts/lato-light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-family: Lato;
  --font-family-fallback: Arial, Roboto, sans-serif;
  --font-size: 1.6rem;
  --font-weight: 300;
  --line-height: 1.2;
  --letter-spacing: 0rem;
  --text-transform: none;
  --font-color: rgb(0, 0, 0);
  --background-color: rgb(255, 255, 255);
  --margin-bottom: 0;
}

body {
  font-family: "Lato", Arial, Roboto, sans-serif;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  text-transform: none;
  word-wrap: break-word;
  color: var(--font-color);
  background-color: rgb(255, 255, 255);
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.2;
  text-transform: none;
  margin-bottom: 0;
}

p {
  margin: 0 0 2.4rem 0;
}

.h1 {
  font-family: "Raleway", sans-serif;
  font-size: 3.7rem;
  font-weight: 700;
  margin-bottom: 4rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .h1 {
    font-size: 5rem;
    margin-bottom: 5rem;
  }
}
@media (min-width: 1200px) {
  .h1 {
    font-size: 7rem;
    margin-bottom: 6rem;
  }
}

.h2 {
  position: relative;
  font-family: "Raleway", sans-serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .h2 {
    font-size: 3.6rem;
    margin-bottom: 3.5rem;
  }
}
@media (min-width: 1200px) {
  .h2 {
    font-size: 4rem;
    margin-bottom: 4rem;
  }
}
.h2.bordered {
  padding: 2rem;
  display: inline-block;
}
@media (min-width: 768px) {
  .h2.bordered {
    padding: 4rem;
    margin-left: -4rem;
    margin-right: -4rem;
  }
}
@media (min-width: 992px) {
  .h2.bordered {
    padding: 5rem;
    margin-left: -4rem;
    margin-right: -4rem;
  }
}
.h2.bordered::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background-image: url("/wp-content/themes/contact-theme//assets/images/border-top-left.svg"), url("/wp-content/themes/contact-theme//assets/images/border-top-right.svg");
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
}
.h2.bordered::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background-image: url("/wp-content/themes/contact-theme//assets/images/border-bottom-left.svg"), url("/wp-content/themes/contact-theme//assets/images/border-bottom-right.svg");
  background-position: left bottom, right bottom;
  background-repeat: no-repeat, no-repeat;
}

.h3 {
  font-family: "Lato", sans-serif;
  font-size: 2.6rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .h3 {
    font-size: 2.8rem;
    margin-bottom: 0.8rem;
  }
}
@media (min-width: 1200px) {
  .h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
}

.h4 {
  font-weight: bold;
  text-transform: uppercase;
}

a {
  text-decoration: none;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.site-content a:not(.jobteaser-link, .link-button) {
  position: relative;
  color: inherit;
}
.site-content a:not(.jobteaser-link, .link-button)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  transform: translateX(-50%) scaleX(1);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.site-content a:not(.jobteaser-link, .link-button):hover {
  color: inherit;
}
.site-content a:not(.jobteaser-link, .link-button):hover::after {
  background-color: currentColor;
  transform: translateX(-50%) scaleX(0);
}

.link-button {
  position: relative;
  display: inline-block;
  width: max-content;
  text-transform: uppercase;
  overflow: hidden;
  padding: 1rem 10rem 1rem 2rem;
  border: 1px solid transparent;
  /* --- Sliding-Door: von der Mitte nach außen --- */
  /* Ein einzelner Gradient, zentriert, wächst in der Breite von 0% -> 100% */
  background-image: linear-gradient(0deg, var(--slide-color) 0 100%);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 0% 100%;
  transition: background-size 0.45s cubic-bezier(0.2, 0.6, 0.2, 1), color 0.2s ease, border-color 0.2s ease;
  /* Pfeil rechts – blockiert Hover NICHT */
}
.link-button::after {
  content: "";
  position: absolute;
  top: 30%;
  right: 0;
  width: 3rem;
  height: 40%;
  pointer-events: none; /* wichtig! */
  /* Optional: Pfeil über Mask färben, so folgt er currentColor */
  background-color: currentColor;
  -webkit-mask: url("/wp-content/themes/contact-theme//assets/images/arrow-small.svg") no-repeat center/contain;
  mask: url("/wp-content/themes/contact-theme//assets/images/arrow-small.svg") no-repeat center/contain;
}
.link-button {
  /* --- Varianten -------------------------------------------------------- */
}
.link-button.green {
  --base-bg: rgb(9, 122, 59);
  --base-fg: rgb(255, 255, 255);
  --slide-color: rgb(187, 215, 84); /* “Tür”-Farbe */
  --hover-fg: rgb(0, 0, 0); /* bessere Lesbarkeit auf light-green */
  background-color: var(--base-bg);
  color: var(--base-fg);
  border-color: transparent;
}
.link-button.green:hover, .link-button.green:focus-visible {
  background-size: 100% 100%;
  color: var(--hover-fg);
  border-color: transparent;
}
.link-button.black {
  --base-bg: rgb(0, 0, 0);
  --base-fg: rgb(222, 222, 222);
  --slide-color: rgb(222, 222, 222);
  --hover-fg: rgb(0, 0, 0);
  background-color: var(--base-bg);
  color: var(--base-fg);
  border-color: rgb(222, 222, 222);
}
.link-button.black:hover, .link-button.black:focus-visible {
  background-size: 100% 100%;
  color: var(--hover-fg);
  border-color: rgb(222, 222, 222);
}
.link-button {
  /* Focus sichtbar lassen */
}
.link-button:focus-visible {
  outline: 2px dashed currentColor;
  outline-offset: 2px;
}
.link-button {
  /* Bewegungen für Nutzer mit reduzierter Animation abschwächen */
}
@media (prefers-reduced-motion: reduce) {
  .link-button {
    transition: none;
  }
  .link-button:hover, .link-button:focus-visible {
    background-size: 100% 100%;
  }
}

.contact-person-item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem;
  background-color: rgb(0, 0, 0);
  border-radius: 2.5rem;
  border: 2px solid rgb(187, 215, 84);
  height: 100%;
}
.contact-person-item .image-container {
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  overflow: hidden;
  height: clamp(12rem, 60vw, 36rem);
}
@media (min-width: 576px) {
  .contact-person-item .image-container {
    height: clamp(12rem, 28vw, 36rem);
  }
}
.contact-person-item .image-container {
  flex: 0 0 auto;
}
.contact-person-item .image-container::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: var(--hover-img);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  opacity: 0;
  transition: opacity 0.35s ease-in-out;
}
.contact-person-item:hover .image-container::after {
  opacity: 1;
}
.contact-person-item .text-container {
  margin-top: auto;
}
.contact-person-item .h2 {
  color: rgb(187, 215, 84);
  margin-bottom: 1rem;
}
.contact-person-item .contact-person-position {
  color: rgb(187, 215, 84);
  font-weight: 300;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgb(0, 0, 0);
  padding: 2rem;
  z-index: 1000;
}
.site-header .navbar-brand {
  width: 209px;
  height: auto;
}

.navbar-toggler-icon {
  filter: invert(1);
  width: 2.2em;
  height: 2.2em;
}

.navbar-nav {
  align-items: center;
  gap: 6rem;
}

.nav-item .nav-link {
  font-weight: 400;
  color: rgb(222, 222, 222);
  text-transform: uppercase;
}
.nav-item .nav-link:hover {
  color: rgb(187, 215, 84);
}
.nav-item.active .nav-link {
  color: rgb(187, 215, 84);
  text-decoration: none;
}

.shop-link {
  position: relative;
  display: inline-flex;
  background-color: rgb(255, 255, 255);
  padding: 8px;
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.shop-link .nav-link {
  color: rgb(0, 0, 0);
}
.shop-link .nav-link:hover {
  color: rgb(0, 0, 0);
}

.event-module {
  background-color: rgb(255, 255, 255);
  background-repeat: no-repeat;
  background-position: right bottom -20%;
  background-size: 60vw;
}
@media (min-width: 576px) {
  .event-module {
    background-size: 50vw;
  }
}
@media (min-width: 768px) {
  .event-module {
    background-size: 50vw;
  }
}
@media (min-width: 992px) {
  .event-module {
    background-size: 50vw;
  }
}
@media (min-width: 1200px) {
  .event-module {
    background-position: right bottom -30%;
    background-size: 40vw;
  }
}
@media (min-width: 1400px) {
  .event-module {
    background-position: right bottom -50%;
    background-size: 40vw;
  }
}
.event-module .event-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 5rem;
}
.event-module .event-container .event-header {
  display: grid;
  gap: 1rem;
}
.event-module .event-container .event-header .event-title, .event-module .event-container .event-header .event-date {
  background-color: rgb(0, 0, 0);
  padding: 0.75rem 1.5rem;
}
.event-module .event-container .event-header .event-title .h3, .event-module .event-container .event-header .event-date .h3 {
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .event-module .event-container .event-header {
    grid-template-columns: 150px 1fr;
  }
}
.event-module .event-container .event-body {
  margin-top: 1.5rem;
  padding: 0 1.5rem;
}
@media (min-width: 768px) {
  .event-module .event-container .event-body {
    padding-left: calc(150px + 1rem + 1.5rem);
  }
}

.image-module {
  background-color: rgb(255, 255, 255);
  padding: 0;
  overflow: hidden;
}
.image-module img {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease-out, transform 2s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: opacity, transform;
}
.image-module.is-inview img {
  opacity: 1;
  transform: scale(1);
}

.hero-video-module {
  padding: 0;
}
.hero-video-module video {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  max-height: 100vh;
}
.hero-video-module .text-container {
  padding-top: 1rem;
  text-shadow: 1px 1px 2px rgb(0, 0, 0);
}
@media (min-width: 576px) {
  .hero-video-module .text-container {
    padding-top: 0;
    top: calc(126px + 1.5rem);
    max-width: 80%;
    position: absolute;
  }
}
@media (min-width: 768px) {
  .hero-video-module .text-container {
    top: 30%;
    max-width: 80%;
  }
}
@media (min-width: 992px) {
  .hero-video-module .text-container {
    top: 30%;
    max-width: 35%;
    text-shadow: none;
  }
}
.hero-video-module .text-container .h1 {
  color: rgb(255, 255, 255);
}
.hero-video-module .text-container {
  color: rgb(255, 255, 255);
}

.video-container-module {
  background-color: rgb(255, 255, 255);
  position: relative;
  padding: 0 7.5px 10rem 7.5px;
}
.video-container-module .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container-module .video-wrapper iframe, .video-container-module .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-container-module .text-container {
  margin-top: 2rem;
  padding: 0 1.5rem;
}

.video-container-module + .career-image-module {
  padding-top: 0;
}

.career-image-module {
  background-color: rgb(255, 255, 255);
}
.career-image-module .image-wrapper {
  display: grid;
  gap: 3rem;
}
.career-image-module .image-wrapper .text-container {
  margin-top: 1rem;
  padding: 0 1.5rem;
}
@media (min-width: 992px) {
  .career-image-module .image-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 8rem;
  }
}

.video-container-module + .career-image-module {
  padding-top: 0;
}

.image-text-module {
  background-color: rgb(255, 255, 255);
}
.image-text-module.bg--black {
  background-color: transparent;
}
.image-text-module .image-wrapper {
  margin-bottom: 3rem;
}
@media (min-width: 992px) {
  .image-text-module .image-wrapper {
    margin-bottom: 0;
  }
}
.image-text-module.image-text-module--limited-imagesize .image-wrapper img {
  max-width: 50vw;
}
@media (min-width: 768px) {
  .image-text-module.image-text-module--limited-imagesize .image-wrapper img {
    max-width: 30vw;
  }
}
@media (min-width: 992px) {
  .image-text-module.image-text-module--limited-imagesize .image-wrapper img {
    max-width: 20vw;
  }
}
@media (min-width: 1200px) {
  .image-text-module.image-text-module--limited-imagesize .image-wrapper img {
    max-width: 16vw;
  }
}

.gallery-module .swiper-wrapper {
  align-items: center;
}
.gallery-module .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-module .swiper-slide img {
  /* Fixe Grundhöhe für *den sichtbaren Bereich* */
  height: clamp(220px, 45vh, 420px);
  width: 100%;
  object-fit: contain;
  /* Bild darf innen nicht verzerren */
  object-position: center;
  /* dein Effekt */
  transform: scale(0.5);
  transition: transform 1s ease-in-out;
}
.gallery-module .swiper-slide-fully-visible img {
  transform: scale(0.75);
}
.gallery-module .swiper-slide-active img {
  transform: scale(1);
}

.accordion-module {
  background-color: rgb(255, 255, 255);
}
.accordion-module .accordion-item {
  border: none;
  border-radius: 0;
  margin-top: 4rem;
}
.accordion-module .accordion-button {
  display: block;
  padding: 0;
  background-color: rgb(0, 0, 0);
  box-shadow: none;
  border-radius: 0 !important;
}
.accordion-module .accordion-button:not(.collapsed) .accordion-text {
  display: none;
}
.accordion-module .accordion-button .h3 {
  color: rgb(255, 255, 255);
  padding: 1rem 5rem 1rem 1rem;
  text-transform: uppercase;
}
.accordion-module .accordion-button .accordion-headline {
  position: relative;
}
.accordion-module .accordion-button .accordion-headline::after {
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: linear-gradient(to right, transparent 9px, #fff 9px, #fff 11px, transparent 11px), linear-gradient(to bottom, transparent 9px, #fff 9px, #fff 11px, transparent 11px);
  transition: transform 0.3s ease;
}
.accordion-module .accordion-button .accordion-text {
  color: rgb(0, 0, 0);
  background-color: rgb(255, 255, 255);
  font-size: 1.6rem;
  padding: 1rem;
  font-weight: 300;
}
.accordion-module .accordion-button:not(.collapsed) .accordion-headline::after {
  transform: translateY(-50%) rotate(180deg);
  background: linear-gradient(to bottom, transparent 9px, #fff 9px, #fff 11px, transparent 11px);
}

.accordion-module + .accordion-module {
  padding-top: 0;
}

.contact-person-module {
  background-color: rgb(255, 255, 255);
}
.contact-person-module.bg--black {
  background-color: transparent;
}
.contact-person-module .contact-person-column-pics {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .contact-person-module .contact-person-column-pics {
    margin-bottom: 0;
  }
}
.contact-person-module .headline-container {
  margin-bottom: 8rem;
}
.contact-person-module .information-container {
  display: inline-flex;
  flex-direction: column;
  gap: 5rem;
  position: relative;
  padding: 4rem;
  margin: 2rem 0 0 0;
}
@media (min-width: 768px) {
  .contact-person-module .information-container {
    margin: 4rem 0 0 4rem;
  }
}
.contact-person-module .information-container .info-phone,
.contact-person-module .information-container .info-mail {
  white-space: normal;
  word-break: break-word;
}
.contact-person-module .information-container .info-phone span,
.contact-person-module .information-container .info-mail span {
  overflow-wrap: anywhere;
}
.contact-person-module .information-container .info-phone span a::after,
.contact-person-module .information-container .info-mail span a::after {
  display: none;
}
.contact-person-module .information-container .info-phone::before {
  content: "T ";
  white-space: nowrap;
}
.contact-person-module .information-container .info-mail::before {
  content: "E ";
  white-space: nowrap;
}
.contact-person-module .information-container::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background-image: url("/wp-content/themes/contact-theme//assets/images/border-top-left.svg"), url("/wp-content/themes/contact-theme//assets/images/border-top-right.svg");
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
}
.contact-person-module .information-container::after {
  position: absolute;
  bottom: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background-image: url("/wp-content/themes/contact-theme//assets/images/border-bottom-left.svg"), url("/wp-content/themes/contact-theme//assets/images/border-bottom-right.svg");
  background-position: left bottom, right bottom;
  background-repeat: no-repeat, no-repeat;
}
.contact-person-module .information-container .info-name, .contact-person-module .information-container .info-phone, .contact-person-module .information-container .info-mail {
  text-transform: uppercase;
  line-height: 1.4;
}
.contact-person-module .information-container .info-name {
  font-weight: 400;
}
.contact-person-module .information-container .info-phone span, .contact-person-module .information-container .info-mail span {
  margin-left: 1rem;
}

html[lang=en] .info-phone::before {
  content: "P "; /* Phone */
}

.status-display-module {
  background-color: rgb(255, 255, 255);
}
.status-display-module.bg--black {
  background-color: transparent;
}
.status-display-module .status-display-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2rem;
  justify-items: center;
}
.status-display-module .status-display-container .status-display-item:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}
.status-display-module .status-display-container .status-display-item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}
.status-display-module .status-display-container .status-display-item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}
@media (min-width: 768px) {
  .status-display-module .status-display-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: unset;
    gap: 15rem;
  }
}
.status-display-module .status-display-item {
  position: relative;
  display: inline-block;
  width: max-content;
  padding: 4rem 2rem;
  text-transform: uppercase;
}
.status-display-module .status-display-item:first-of-type::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 75%;
  height: 30px;
  background-image: url("/wp-content/themes/contact-theme//assets/images/border-top-left.svg"), url("/wp-content/themes/contact-theme//assets/images/border-top-right.svg");
  background-position: left top, right top;
  background-repeat: no-repeat, no-repeat;
}
.status-display-module .status-display-item:first-of-type::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 75%;
  height: 30px;
  background-image: url("/wp-content/themes/contact-theme//assets/images/border-bottom-left.svg"), url("/wp-content/themes/contact-theme//assets/images/border-bottom-right.svg");
  background-position: left bottom, right bottom;
  background-repeat: no-repeat, no-repeat;
}
@media (min-width: 768px) {
  .status-display-module .status-display-item:first-of-type {
    width: unset;
  }
}
.status-display-module .status-display-item .status-display-headline {
  font-weight: 400;
}

.footer {
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  padding: 2rem 7.5px;
  font-weight: 400;
}
.footer .link-container ul {
  list-style: none;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 3rem;
  margin: 0;
  padding: 0;
}
.footer .link-container ul li {
  position: relative;
}
.footer .link-container ul li a {
  color: rgb(255, 255, 255);
}
.footer .link-container ul li:not(:first-of-type)::after {
  content: "|";
  position: absolute;
  left: -1.5rem;
  color: rgb(255, 255, 255);
}
@media (min-width: 768px) {
  .footer .link-container ul {
    justify-content: end;
  }
}
.footer p {
  margin-bottom: 0;
}

.hero-slider-module {
  background-color: rgb(255, 255, 255);
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 60vw;
  animation: hero-badge-float 5s ease-in-out infinite;
}
@media (min-width: 576px) {
  .hero-slider-module {
    background-size: 50vw;
  }
}
@media (min-width: 768px) {
  .hero-slider-module {
    background-size: 50vw;
  }
}
@media (min-width: 992px) {
  .hero-slider-module {
    background-size: 50vw;
  }
}
@media (min-width: 1200px) {
  .hero-slider-module {
    background-size: contain;
  }
}
.hero-slider-module .hero-slider-txt,
.hero-slider-module .hero-slider-pic {
  opacity: 0;
  transform: translateY(10px);
}
.hero-slider-module.hero-anim-active .hero-slider-txt {
  animation: heroSlideInLeft 0.6s ease-out forwards;
}
.hero-slider-module.hero-anim-active .hero-slider-pic {
  animation: heroImgPop 0.7s 0.15s ease-out forwards;
}

@keyframes hero-badge-float {
  0%, 100% {
    /* Ausgangspunkt: ganz unten */
    background-position: right bottom;
  }
  50% {
    /* nur nach unten verschieben */
    background-position: right calc(100% + 10px);
  }
}
/* Text von links / leicht hoch */
@keyframes heroSlideInLeft {
  from {
    opacity: 0;
    transform: translate(-20px, 10px);
  }
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/* Bild leicht skalieren + einblenden */
@keyframes heroImgPop {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-slider-module {
    animation: none;
  }
  .hero-slider-module .hero-slider-txt,
  .hero-slider-module .hero-slider-pic {
    opacity: 1;
    transform: none;
    animation: none;
  }
}
.image-text-animated-module {
  /* Feintuning zentral steuerbar */
  --ita-duration: 1.3s; /* 1.2–1.6s je nach Geschmack */
  --ita-ease: cubic-bezier(.05, .85, .1, 1); /* schnell -> stark gebremst am Ende */
  --ita-offset: 140%; /* Start weiter unten (120–160%) */
  --ita-target-opacity: 0.8; /* End-Deckkraft des Vordergrundbilds */
  position: relative;
  z-index: 0; /* eigener Stacking-Context */
  isolation: isolate; /* kapselt alle z-index-Kinder in dieser Section */
  overflow: hidden; /* alles außerhalb der Section-Kante wird abgeschnitten */
  min-height: 400px;
}
.image-text-animated-module .background-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* optional: keine Klicks abfangen */
}
.image-text-animated-module .background-image-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.image-text-animated-module .background-image-static img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-text-animated-module .background-image-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  /* Startzustand: weiter unten + transparent */
  transform: translate3d(0, var(--ita-offset), 0);
  opacity: 0;
  will-change: transform, opacity;
  /* EINZIGE Transition: transform (mit starker Brake) + Opacity */
  transition: transform var(--ita-duration) var(--ita-ease), opacity calc(var(--ita-duration) * 0.7) ease-out;
}
.image-text-animated-module .background-image-animated img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.image-text-animated-module .background-image-animated.animate-in {
  transform: translate3d(0, 0, 0);
  opacity: var(--ita-target-opacity);
}
.image-text-animated-module .container {
  position: relative;
  z-index: 5;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .image-text-animated-module .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.image-text-animated-module .container .streamer-row {
  margin-top: 5rem;
}
.image-text-animated-module .container .streamer-row img {
  width: auto;
}
.image-text-animated-module {
  /* nur Opacity blenden */
}
.image-text-animated-module [data-animate=fadein] {
  opacity: 0;
  transition: opacity 900ms ease-out; /* gern 400–900ms testen */
}
.image-text-animated-module [data-animate=fadein].is-visible {
  opacity: 1;
}
.image-text-animated-module {
  /* Reduced Motion: sofort sichtbar */
}
@media (prefers-reduced-motion: reduce) {
  .image-text-animated-module [data-animate=fadein] {
    transition: none !important;
    opacity: 1 !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .image-text-animated-module .background-image-animated {
    transition: none !important;
    transform: none !important;
    opacity: var(--ita-target-opacity) !important;
  }
}
@media (max-width: 991.98px) {
  .image-text-animated-module .image-text-animated-txt-col {
    position: relative;
    text-shadow: 1px 1px 8px rgb(0, 0, 0);
  }
  .image-text-animated-module .image-text-animated-txt-col::before {
    content: "";
    position: absolute;
    top: 0;
    left: -4rem;
    right: -4rem;
    height: 100%;
    z-index: -1;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
  }
  .image-text-animated-module.bg--black .image-text-animated-txt-col::before {
    background: rgba(0, 0, 0, 0.2);
  }
}
@media (max-width: 767.98px) {
  .image-text-animated-module .image-text-animated-txt-col::before {
    left: -2rem;
    right: -2rem;
  }
}

.text-module:not(.bg--black) {
  background-color: rgb(255, 255, 255);
}

#teildesteams {
  padding-bottom: 0;
}

.info-module .info-box {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 1.6rem;
}
.info-module .info-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  text-align: right;
  color: rgb(93, 93, 93);
}
.info-module h5.info-number {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .info-module h5.info-number {
    font-size: 12.5rem;
  }
}
.info-module p.info-label {
  margin-top: 6px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.info-module .info-arrow {
  display: flex;
  align-items: flex-end;
}
.info-module .info-arrow svg {
  width: 100px;
  height: 100px;
}
@media (min-width: 768px) {
  .info-module .info-arrow svg {
    width: 177px;
    height: 177px;
  }
}

.logo-slider-module .logo-slider-label {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 2rem;
}
.logo-slider-module .logo-slider-label img {
  width: auto;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.logo-slider-module .logo-slider-col .swiper .swiper-wrapper {
  align-items: center;
}
.logo-slider-module .logo-slider-col .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-slider-module .logo-slider-col .swiper .swiper-wrapper .swiper-slide img {
  max-height: 100%;
  width: auto;
}
.logo-slider-module .logo-slider-col .swiper-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-top: 5rem;
}
.logo-slider-module .logo-slider-col .swiper-button-prev,
.logo-slider-module .logo-slider-col .swiper-button-next {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.jobteaser-module {
  color: rgb(93, 93, 93);
  padding-top: 0;
  padding-bottom: 5rem;
}
.jobteaser-module a {
  color: rgb(93, 93, 93);
}
.jobteaser-module .jobteaser-box {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 1.6rem;
  padding-top: 150px;
  background-image: url("/wp-content/themes/contact-theme//assets/images/pattern-barrier-tape.svg");
  background-size: auto 113px;
  background-repeat: repeat-x;
  background-position: top;
}
@media (min-width: 576px) {
  .jobteaser-module .jobteaser-box {
    flex-direction: row;
    align-items: center;
  }
}

.key-facts-animated-module {
  /* Feintuning zentral steuerbar */
  --ita-duration: 1.3s; /* 1.2–1.6s je nach Geschmack */
  --ita-ease: cubic-bezier(.05, .85, .1, 1); /* schnell -> stark gebremst am Ende */
  --ita-offset: 140%; /* Start weiter unten (120–160%) */
  --ita-target-opacity: 0.8; /* End-Deckkraft des Vordergrundbilds */
  padding-bottom: 14rem;
  position: relative;
  z-index: 0; /* eigener Stacking-Context */
  isolation: isolate; /* kapselt alle z-index-Kinder in dieser Section */
  overflow: hidden; /* alles außerhalb der Section-Kante wird abgeschnitten */
  min-height: 400px;
}
.key-facts-animated-module .background-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none; /* keine Klicks abfangen */
}
.key-facts-animated-module .background-image-static {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: 5rem;
  bottom: 5rem;
  height: calc(100% - 10rem);
  z-index: 1;
}
.key-facts-animated-module .background-image-static img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.key-facts-animated-module .background-image-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: 5rem;
  bottom: 5rem;
  height: calc(100% - 10rem);
  z-index: 2;
  /* Startzustand: weiter unten + transparent */
  transform: translate3d(0, var(--ita-offset), 0);
  opacity: 0;
  will-change: transform, opacity;
  /* Transition: transform (mit Brake) + Opacity */
  transition: transform var(--ita-duration) var(--ita-ease), opacity calc(var(--ita-duration) * 0.7) ease-out;
}
.key-facts-animated-module .background-image-animated img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.key-facts-animated-module .background-image-animated {
  /* Aktiviert durch .animate-in */
}
.key-facts-animated-module .background-image-animated.animate-in {
  transform: translate3d(0, 0, 0);
  opacity: var(--ita-target-opacity);
}
.key-facts-animated-module .container {
  position: relative;
  z-index: 5;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media (min-width: 992px) {
  .key-facts-animated-module .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.key-facts-animated-module {
  /* Fade-in Animation */
}
.key-facts-animated-module [data-animate=fadein] {
  opacity: 0;
  transition: opacity 900ms ease-out;
}
.key-facts-animated-module [data-animate=fadein].is-visible {
  opacity: 1;
}
.key-facts-animated-module {
  /* Reduced Motion */
}
@media (prefers-reduced-motion: reduce) {
  .key-facts-animated-module [data-animate=fadein] {
    transition: none !important;
    opacity: 1 !important;
  }
  .key-facts-animated-module .background-image-animated {
    transition: none !important;
    transform: none !important;
    opacity: var(--ita-target-opacity) !important;
  }
}
.key-facts-animated-module .row--key-facts {
  align-items: stretch;
  margin-top: 5rem;
}
@media (max-width: 575.98px) {
  .key-facts-animated-module .row--key-facts {
    background: linear-gradient(rgb(255, 255, 255) 0 0) top/calc(100% - 15px) 25px no-repeat;
    padding-top: 35px;
  }
}
.key-facts-animated-module .row--key-facts:first-of-type {
  margin-top: 10rem;
}
.key-facts-animated-module .row--key-facts .key-facts-headline {
  display: flex;
  align-items: center;
}
.key-facts-animated-module .row--key-facts .key-facts-headline .h3 {
  text-transform: uppercase;
}
@media (min-width: 576px) {
  .key-facts-animated-module .row--key-facts .key-facts-text > p:first-child {
    position: relative;
    background: linear-gradient(rgb(255, 255, 255) 0 0) top/100% 25px no-repeat;
    padding-top: 30px;
  }
}
.key-facts-animated-module .row--key-facts .key-facts-label {
  margin-top: 0;
}
.key-facts-animated-module .row--key-facts .key-facts-label .key-facts-label-inner {
  --tri: 25px;
  --gap: 8px;
  position: relative;
  background: transparent;
  padding: 0 0 0 calc(var(--tri) + var(--gap));
}
.key-facts-animated-module .row--key-facts .key-facts-label .key-facts-label-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--tri);
  height: var(--tri);
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.key-facts-animated-module .row--key-facts .key-facts-label .key-facts-label-inner .h2 {
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 0;
}
.key-facts-animated-module .row--key-facts .key-facts-label .key-facts-label-inner .h3 {
  font-size: 1.8rem;
  text-transform: uppercase;
}
.key-facts-animated-module .row--key-facts-foto {
  margin-top: 5rem;
}
@media (min-width: 1200px) {
  .key-facts-animated-module .row--key-facts-foto {
    margin-top: 3rem;
  }
}

/* ============================================================
   Parallax-Variante (.animated-bg-parallax)
   ============================================================ */
.animated-bg-parallax .background-image-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  top: 5rem;
  bottom: 5rem;
  height: calc(100% - 10rem);
  z-index: 2;
  /* Keine Slide-Up-Transition, JS steuert direkt transform */
  transition: none !important;
  will-change: transform;
  opacity: var(--ita-target-opacity, 0.8);
  transform: translate3d(0, 0, 0);
  pointer-events: none;
}
.animated-bg-parallax .background-image-animated img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (prefers-reduced-motion: reduce) {
  .animated-bg-parallax .background-image-animated {
    transform: none !important;
    transition: none !important;
  }
}

/* ===========================================
   DICE PORTAL MODULE (Final)
   - Start p=0: Overlay fullscreen (unter Header)
   - Ende p=1: target-scale Zoom (default 5x), dann freigegeben
   - Bi-directional, kein Looping, mobile-robust, POI-Fokus
   - Text wurde entfernt (separates Text-Modul)
=========================================== */
.dice-portal-module {
  position: relative;
  height: 100svh; /* svh = mobile-safe */
  background: #000; /* Außenflächen immer schwarz */
  overflow: hidden;
  /* Vom JS gesetzt (Fallback 0) */
  --sticky-top: 0px;
  --p: 0;
  --bgCoverScale: 1;
  --bgOffsetX: 0px;
  --bgOffsetY: 0px;
  --target-scale: 5; /* auf 4 ändern, wenn gewünscht */
  /* Overlay-Fade Tweak-Variablen (früher hart verdrahtet)
     - Alt: start=0.85, span=0.12 */
  --overlay-fade-start: 0.85;
  --overlay-fade-span: 0.12;
  /* ========== BG (unter dem Loch) ========== */
}
.dice-portal-module .dice-portal__bgwrap {
  position: fixed;
  left: 0;
  top: var(--sticky-top);
  width: 100vw;
  height: calc(100svh - var(--sticky-top)); /* svh statt vh */
  display: grid;
  place-items: center;
  z-index: 1;
  pointer-events: none;
  background: #000; /* nie weißer Balken dahinter */
}
.dice-portal-module .dice-portal__bg {
  display: block;
  width: 100%;
  height: auto; /* proportional */
  max-width: none;
  transform-origin: 50% 50%;
  /* POI-Fokus: X/Y-Offset + Cover-Scale (per JS gesetzt) */
  transform: translate(var(--bgOffsetX, 0px), var(--bgOffsetY, 0px)) scale(var(--bgCoverScale));
  will-change: transform;
  backface-visibility: hidden; /* iOS Glättung */
  -webkit-font-smoothing: antialiased;
}
.dice-portal-module {
  /* ========== OVERLAY (Würfel) ========== */
}
.dice-portal-module .dice-portal__overlay {
  position: fixed;
  left: 0;
  top: var(--sticky-top);
  width: 100vw;
  height: calc(100svh - var(--sticky-top)); /* svh statt vh */
  z-index: 2;
  pointer-events: none;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover; /* garantiert Fullscreen-Abdeckung */
  object-position: center;
  transform-origin: 50% 50%;
  transform: scale(calc(1 + (var(--target-scale, 5) - 1) * var(--p))) translateY(-1px); /* 1 → target */
  will-change: transform, opacity;
  /* kleiner Fade am Ende – tweakbar via Variablen */
  opacity: calc(1 - clamp(0, (var(--p) - var(--overlay-fade-start)) / var(--overlay-fade-span), 1));
  transition: opacity 0.2s linear;
  visibility: visible; /* kann bei 'overlay-inactive' versteckt werden */
}
.dice-portal-module {
  /* ===== Nach der Sequenz: freigeben ===== */
}
.dice-portal-module.is-finished .dice-portal__bgwrap,
.dice-portal-module.is-finished .dice-portal__overlay {
  position: static;
  width: 100%;
  height: auto;
  transform: none;
  opacity: 1;
  pointer-events: auto;
}
.dice-portal-module.is-finished .dice-portal__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.dice-portal-module {
  /* Overlay deaktivieren (sichtbar freigeben, aber reversen später erlauben) */
}
.dice-portal-module.overlay-inactive .dice-portal__overlay {
  opacity: 0 !important;
  visibility: hidden;
}
.dice-portal-module {
  /* Motion-Reduce */
}
@media (prefers-reduced-motion: reduce) {
  .dice-portal-module .dice-portal__overlay {
    transform: none;
    opacity: 0;
  }
}

/* Während Sequenz: Seite nicht scrollen / kein Bounce */
.body-locked {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

/* (Kein Text-Block mehr hier – Text ist in separatem Modul)
   Mobile Typo bleibt dort. */
.text-imagetext-module {
  background-color: rgb(255, 255, 255);
  background-image: url("/wp-content/themes/contact-theme/assets/images/pattern-reticle-light.svg");
  background-position: left top;
  background-repeat: repeat;
  background-size: 251px 286px;
}
.text-imagetext-module.bg--black {
  background-color: transparent;
}
.text-imagetext-module .text-imagetext-right .text-container {
  background-image: url("/wp-content/themes/contact-theme/assets/images/pattern-green-stripes.svg");
  background-repeat: repeat-x;
  background-position: bottom left;
  background-size: auto 66px;
  padding-bottom: 66px;
}
.text-imagetext-module .image-wrapper {
  display: inline-block;
  width: 100%;
  position: relative;
  margin-bottom: 3rem;
}
.text-imagetext-module .image-wrapper::after {
  content: "";
  display: block;
  height: 66px;
  background: url("/wp-content/themes/contact-theme/assets/images/pattern-green-stripes.svg") repeat-x center top;
}

.team-slider-module {
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
}
.team-slider-module .headline-container {
  margin-bottom: 8rem;
}
.team-slider-module .team-slider-col .swiper {
  width: 100%;
}
.team-slider-module .team-slider-col .swiper .swiper-wrapper {
  align-items: stretch;
}
.team-slider-module .team-slider-col .swiper .swiper-wrapper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}
.team-slider-module .team-slider-col .swiper .swiper-wrapper .swiper-slide img {
  max-height: 100%;
  width: auto;
}
.team-slider-module .team-slider-col .swiper-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-top: 5rem;
}
.team-slider-module .team-slider-col .swiper-button-prev,
.team-slider-module .team-slider-col .swiper-button-next {
  position: static !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  left: auto !important;
  transform: none !important;
  margin: 0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.team-slider-module .contact-person-item {
  overflow: hidden;
  width: 100%;
}

@media (min-width: 768px) {
  .benefits-module .text-container {
    padding-right: 2rem;
  }
}

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