/*
 Theme Name:   Novatec Theme
 Description:  Novatec WordPress Theme
 Author:	     NEWWW.MEDIA
 Author URI:   https://newwww.media
 Version:      1.0.0
 Text Domain:  novatec

*/
/**	____________________________________________________________
 *
 *	INHALTE
 *
 *
 *	01 — BASICS
 *	02 — TYPO, SCHRIFT, FARBEN, ICONS & IMG SETTINGS
 *	03 — GRID
 *	04 — HEADER, FOOTER & MENÜS
 *	05 — UX ELEMENTE
 *	06 — SEITEN
 *	07 — BLÖCKE
 *	08 — RESPONSIVE
 *
 *	____________________________________________________________
*/

/**
 *	01 — BASICS
 *	Basiselemente
 *	____________________________________________________________
*/
*,
:before,
:after {
  box-sizing: border-box;
}
html {
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  position: relative;
  margin: 0;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  background-color: var(--mintweiss);
}
a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: color 0.3s ease;
}

a,
a:active,
a:hover {
  text-decoration: none;
  outline: 0;
  outline-width: 0;
}

a:hover {
  color: var(--blau);
}
.bg-blau a:hover {
  color: var(--dunkelblau);
}
ul:not(.menu) li a {
  /* color: var(--blau); */
  /* text-decoration: underline; */
  font-weight: 500;
}
ul:not(.menu):not(.teaser-list-ux):not(.downloads-list) li a::after {
  /* content: "  ›"; */
  content: "  »";
}
:focus {
  outline: none;
}
svg {
  transform: translate(0, 0);
  line-height: 1em;
}
img,
svg,
video {
  display: block;
  border: 0 none;
  max-width: 100%;
  height: auto;
}
/* Safari Fix */
@media screen and (-webkit-min-device-pixel-ratio: 0) {
  _::-webkit-full-page-media,
  _:future,
  :root,
  img {
    align-self: center;
  }
}
::-moz-selection {
  color: var(--dunkelblau);
  background: var(--gelb);
}
::selection {
  color: var(--dunkelblau);
  background: var(--gelb);
}

/**
 *	02 — TYPO, SCHRIFT, FARBEN, ICONS & IMG SETTINGS
 *	Globale Einstellungen für Farben, Schrift, Icons und Bilder
 *	____________________________________________________________
*/

/* SCHRIFT */
/* poppins-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/poppins-v24-latin-regular.woff2") format("woff2");
}
/* poppins-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/poppins-v24-latin-500.woff2") format("woff2");
}
/* poppins-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/poppins-v24-latin-600.woff2") format("woff2");
}
/* poppins-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/poppins-v24-latin-700.woff2") format("woff2");
}

:root {
  --font-body: "Poppins", sans-serif;
}
body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.5em;
  color: var(--dunkelblau);
}

/* Headings */

/* Global Settings */

h0,
h1,
h2,
h3,
h4,
h5,
.f-h0,
.f-h1,
.f-h2,
.f-h3,
.f-h4,
.f-h5 {
  margin: 0.5em 0em 0.5em 0em;
  font-weight: 500;
  line-height: 1.125em;
  font-family: var(--font-body);
}

h0:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
.f-h0:first-child,
.f-h1:first-child,
.f-h2:first-child,
.f-h3:first-child,
.f-h4:first-child {
  margin-top: 0;
}
h0:first-child,
h1:last-child,
h2:last-child,
h3:last-child,
h4:last-child,
.f-h0:first-child,
.f-h1:last-child,
.f-h2:last-child,
.f-h3:last-child,
.f-h4:last-child {
  margin-bottom: 0;
}

/* Individual Settings */

/* h0, .f-h0 {
}
h1, .f-h1 {
}
h2, .f-h2 {
}
h3, .f-h3 {
} */

/* Size Settings */

:root {
  --body-l: 16; /* px */
  --body-s: 13;

  --h1-l: 5.125; /* em */
  --h1-s: 3;

  --h1: 5.125;
  --h2: 2.625;
  --h3: 2;
  --h4: 1.5;
  --h5: 1.125;

  --rate: calc((var(--h1-l) - 1) / (var(--h1-s) - 1));
}

body {
  font-size: calc(
    1px * var(--body-s) + (var(--body-l) - var(--body-s)) *
      ((100vw - 320px) / 1120)
  );
}
:root {
  --v-h1: calc(
    ((1 + ((var(--h1) - 1) / var(--rate))) * var(--body-s) * 1px) +
      (
        var(--h1) * var(--body-l) -
          ((1 + ((var(--h1) - 1) / var(--rate))) * var(--body-s))
      ) *
      ((100vw - 320px) / 1120)
  );
  --v-h2: calc(
    ((1 + ((var(--h2) - 1) / var(--rate))) * var(--body-s) * 1px) +
      (
        var(--h2) * var(--body-l) -
          ((1 + ((var(--h2) - 1) / var(--rate))) * var(--body-s))
      ) *
      ((100vw - 320px) / 1120)
  );
  --v-h3: calc(
    ((1 + ((var(--h3) - 1) / var(--rate))) * var(--body-s) * 1px) +
      (
        var(--h3) * var(--body-l) -
          ((1 + ((var(--h3) - 1) / var(--rate))) * var(--body-s))
      ) *
      ((100vw - 320px) / 1120)
  );
  --v-h4: calc(
    ((1 + ((var(--h4) - 1) / var(--rate))) * var(--body-s) * 1px) +
      (
        var(--h4) * var(--body-l) -
          ((1 + ((var(--h4) - 1) / var(--rate))) * var(--body-s))
      ) *
      ((100vw - 320px) / 1120)
  );
  --v-h5: calc(
    ((1 + ((var(--h5) - 1) / var(--rate))) * var(--body-s) * 1px) +
      (
        var(--h5) * var(--body-l) -
          ((1 + ((var(--h5) - 1) / var(--rate))) * var(--body-s))
      ) *
      ((100vw - 320px) / 1120)
  );
}

@media screen and (min-width: 1440px) {
  body {
    font-size: calc(var(--body-l) * 1px);
  }
  :root {
    --v-h1: calc(var(--h1) * 1em);
    --v-h2: calc(var(--h2) * 1em);
    --v-h3: calc(var(--h3) * 1em);
    --v-h4: calc(var(--h4) * 1em);
    --v-h5: calc(var(--h5) * 1em);
  }
}

h1,
.h1 {
  font-size: var(--v-h1);
}
h2,
.h2 {
  font-size: var(--v-h2);
}
h3,
.h3 {
  font-size: var(--v-h3);
}
h4,
.h4 {
  font-size: var(--v-h4);
}
h5,
.h5 {
  font-size: var(--v-h5);
}
h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-weight: 500;
}
.headline-wrapper,
.row.headline-wrapper {
  flex-direction: column;
}
.dachzeile {
  margin-bottom: 0.5em;
  font-weight: 500;
}
.dachzeile + .ueberschrift {
  margin-top: 0px;
}
/* Paragraphs */

p {
  margin: 0 0 1.4em;
}
.p {
  font-size: 1em;
}
/* Text Farben */

.f-c-dunkelblau {
  color: var(--dunkelblau);
}
.f-c-blau {
  color: var(--blau);
}
.f-c-weiss {
  color: var(--weiss);
}
.f-c-gelb {
  color: var(--gelb);
}

/* Sonstiges */

p:last-child,
ul:last-child,
li:last-child,
ol:last-child {
  margin-bottom: 0;
}

b,
strong,
.bold {
  font-weight: 700;
}

ul,
ol {
  margin: 0 0 0.5em;
  padding: 0;
  list-style: none;
}
ul:not(.list-clear):not(.list):not(.menu):not(.teaser-list-ux):not(
    .liste-spalte
  ):not(.brlbs-cmpnt-consent-list)
  li {
  position: relative;
  margin-bottom: 0.75em;
  padding: 0px 0px 0px 15px;
}
ul:not(.list-clear):not(.list):not(.menu):not(.teaser-list-ux):not(
    .liste-spalte
  ):not(.brlbs-cmpnt-consent-list)
  li::after {
  content: "•";
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 1.5em;
}
.text-center {
  text-align: center;
}
/*--- FARBEN ---*/

/* CD Farben */

:root {
  --dunkelblau: #1d4056;
  --blau: #1498d3;
  --hellblau: #e9f5fb;
  --gelb: #f6f930;
  --weiss: #ffffff;
}
/*-- Hintergrundfarben --*/

.bg-dunkelblau {
  background-color: var(--dunkelblau);
  color: var(--weiss);
}
.bg-blau {
  background-color: var(--blau);
  color: #fff;
}
.bg-gelb {
  background-color: var(--gelb);
}
.bg-hellblau {
  background-color: var(--hellblau);
}
/*  SVG */

/* SVG Farben */

svg.fill {
  fill: var(--dunkelblau);
}

.fill.opt-color-white {
  fill: var(--weiss);
}
.fill.opt-color-black {
  fill: var(--dunkelblau);
}

.stroke.opt-color-white {
  stroke: var(--weiss);
}
.stroke.opt-color-black {
  stroke: var(--dunkelblau);
}

/* SVG Formen */

.stroke {
  fill: none;
  stroke-miterlimit: 0;
  stroke-width: 1px;
}
/* BUTTONS & LINKS */

/*-- Browser Fix --*/

a,
.button:focus,
button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus {
  outline: none;
}
button {
  font-size: inherit;
  font-weight: 400;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
button::-moz-focus-inner {
  border: 0;
  outline: none;
}

/*-- Std. --*/
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 20px;
  font-weight: 500;
  transition:
    color 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  width: fit-content;
  border-radius: 80px;
  min-width: calc(var(--4em) * 2);
  cursor: pointer;
}

/*-- Größe --*/
.btn.mittel {
  padding: 10px 30px;
  min-height: 60px;
}
.btn.gross {
  padding: 10px 40px;
  min-height: 80px;
}
.btn.br-10 {
  border-radius: 10px;
}
/*-- Icons --*/
.btn-icon path {
  transition: stroke 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
/*-- Colors --*/

/* dunkelblau */
.btn.dunkelblau {
  color: var(--weiss);
  background-color: var(--dunkelblau);
}
.btn.dunkelblau path {
  stroke: var(--weiss);
}
.btn.dunkelblau:is(:hover, :focus-visible),
.btn-text:hover .btn.dunkelblau {
  background-color: var(--blau);
}

/* blau */
.btn.blau {
  color: var(--weiss);
  background-color: var(--blau);
}
.btn.blau path {
  stroke: var(--weiss);
}
.btn.blau:is(:hover, :focus-visible),
.btn-text:hover .btn.blau {
  color: var(--dunkelblau);
  background-color: var(--hellblau);
}
.btn.blau:is(:hover, :focus-visible) path,
.btn-text:hover .btn.blau path {
  stroke: var(--dunkelblau);
}

/* gelb */
.btn.gelb {
  color: var(--dunkelblau);
  background-color: var(--gelb);
}
.btn.gelb path {
  stroke: var(--dunkelblau);
}
.btn.gelb:is(:hover, :focus-visible),
.btn-text:hover .btn.gelb {
  background-color: var(--hellblau);
}

/* outline weiss */
.btn.weiss.outline {
  border: 1px solid #fff;
  background-color: transparent;
}
.btn.weiss.outline:is(:hover, :focus-visible),
.btn-text:hover .btn.weiss.outline {
  border: 1px solid #fff;
  background-color: #fff;
  color: var(--dunkelblau);
}
.btn.weiss.outline:is(:hover, :focus-visible) path,
.btn-text:hover .btn.weiss.outline path {
  stroke: var(--dunkelblau);
}
/*-- Buttons Barrierefrei --*/
.btn:focus-visible {
  outline: 2px solid var(--dunkelblau);
  outline-offset: 3px;
}

/* Text Button */

.btn-text {
  display: inline-flex;
  align-items: center;
  gap: var(--1em);
  width: fit-content;
  font-weight: 500;
}

.btn-text .btn-icon {
  margin: 0px;
}

.btn-rund {
  border-radius: 50%;
  padding: 0px;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
/*-- Grid --*/

.btn.center {
  margin-left: auto;
  margin-right: auto;
}
[style*="text-align: center;"] + .btn {
  display: flex;
  margin-left: auto;
  margin-right: auto;
}
p + .btn {
  margin-top: var(--2em);
}

/*-- Icons --*/
.btn-icon {
  margin-left: var(--1em);
  /* max-height: 14px;
  max-width: 14px; */
}
.btn-icon.right {
  margin-left: unset;
  margin-right: var(--1em);
}
/*-- IMGs --*/
/* Image Crop */

.img-crop img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.img-crop-9-16 img {
  aspect-ratio: 9 / 16;
}
.img-crop-2-3 img,
.img-crop-2-3 video {
  aspect-ratio: 2 / 3;
}
.img-crop-3-4 img,
.img-crop-3-4 video {
  aspect-ratio: 3 / 4;
}
.img-crop-1-1 img,
.img-crop-1-1 video {
  aspect-ratio: 1 / 1;
}
.img-crop-4-3 img,
.img-crop-4-3 video {
  aspect-ratio: 4 / 3;
}
.img-crop-3-2 img,
.img-crop-3-2 video {
  aspect-ratio: 3 / 2;
}
.img-crop-16-9 img,
.img-crop-16-9 video {
  aspect-ratio: 16 / 9;
}
.img-crop-2-1 img,
.img-crop-2-1 video {
  aspect-ratio: 2 / 1;
}
.img-crop-3-1 img,
.img-crop-3-1 video {
  aspect-ratio: 3 / 1;
}

/* Image Hover Zoom */
.img-hover-inner {
  overflow: hidden;
}

.img-hover-inner img {
  transform: scale(1);
  transform-origin: center;
  transition: transform 0.3s;
}

.img-hover:hover .img-hover-inner img {
  transform: scale(1.025);
}

/* border-radius */
.br-10 {
  border-radius: 10px;
}
.br-20 {
  border-radius: 20px;
}
.br-30 {
  border-radius: 30px;
}
/**
 *	03 — GRID
 *	Flexbox, Abstände
 *	____________________________________________________________
*/

#main {
  max-width: 2560px;
  margin: auto;
}

/*-- Units --*/
:root {
  /* Std. Einheit */
  --1em: 10px;
  --0-25em: calc(var(--1em) * 0.25);
  --0-5em: calc(var(--1em) * 0.5);
  --1-5em: calc(var(--1em) * 1.5);
  --2em: calc(var(--1em) * 2);
  --3em: calc(var(--1em) * 3);
  --4em: calc(var(--1em) * 4);
  --5em: calc(var(--1em) * 5);
  --6em: calc(var(--1em) * 6);
  --7em: calc(var(--1em) * 7);
  --8em: calc(var(--1em) * 8);
  --9em: calc(var(--1em) * 9);
  --10em: calc(var(--1em) * 10);
  --11em: calc(var(--1em) * 11);
  --12em: calc(var(--1em) * 12);
  --18em: calc(var(--1em) * 18);
}

@media screen and (min-width: 1080px) {
  :root {
    --1em: 1.042vw;
  }
}

@media screen and (min-width: 1440px) {
  :root {
    --1em: 15px;
  }
}
@media screen and (min-width: 1080px) {
  .row {
    display: flex;
    flex-direction: row;
  }
  .col {
    display: flex;
    flex-direction: column;
    flex: 1;
  }
}
/*-- Abstände --*/
.opt-gap-top-0 {
  padding-top: 0px;
}
.opt-gap-top-1 {
  padding-top: var(--4em);
}
.opt-gap-top-2 {
  padding-top: var(--8em);
}
.opt-gap-top-3 {
  padding-top: var(--18em);
}
.opt-gap-bottom-0 {
  padding-bottom: var(--1em);
}
.opt-gap-bottom-1 {
  padding-bottom: var(--4em);
}
.opt-gap-bottom-2 {
  padding-bottom: var(--8em);
}
.opt-gap-bottom-3 {
  padding-bottom: var(--18em);
}

/* Wrapper */
.wrapper,
.box-wrapper {
  width: 100%;
  margin: 0 auto;
  padding-left: var(--1em);
  padding-right: var(--1em);
}
.box-wrapper-1 {
  padding: var(--1em);
}
.box-wrapper-2 {
  padding: var(--2em);
}
.pad-top-bottom-2 {
  padding-top: var(--2em);
  padding-bottom: var(--2em);
}
.pad-top-bottom-4 {
  padding-top: var(--4em);
  padding-bottom: var(--4em);
}
.wrapper-2048 {
  max-width: calc(2048px + var(--2em));
}
.wrapper-1920 {
  max-width: calc(1920px + var(--2em));
}
.wrapper-1800 {
  max-width: calc(1800px + var(--2em));
}
.wrapper-1440 {
  max-width: calc(1440px + var(--2em));
}
.wrapper-1200 {
  max-width: calc(1200px + var(--2em));
}
.wrapper-1080 {
  max-width: calc(1080px + var(--2em));
}
.wrapper-960 {
  max-width: calc(960px + var(--2em));
}
.wrapper-840 {
  max-width: calc(860px + var(--2em));
}
.wrapper-720 {
  max-width: calc(720px + var(--2em));
}
.wrapper-480 {
  max-width: calc(480px + var(--2em));
}

.wrapper-p50 {
  max-width: 50%;
  margin: 0 auto;
}
.wrapper-left {
  margin-left: 0;
}
.wrapper-right {
  margin-right: 0;
}

/* -- Padding & Margin --*/
.no-padding {
  padding-left: 0;
  padding-right: 0;
}
.no-pad-top-bottom {
  padding-top: 0;
  padding-bottom: 0;
}
.gap-1 {
  gap: var(--1em);
}
.gap-2 {
  gap: var(--2em);
}
.mw-480 {
  max-width: calc(var(--1em) * 32);
}
.mw-600 {
  max-width: calc(var(--1em) * 40);
}
.mw-720 {
  max-width: calc(var(--1em) * 48);
}
.mw-840 {
  max-width: calc(var(--1em) * 56);
}
.mw-p50 {
  max-width: 50%;
}
.sticky {
  position: sticky;
  top: calc(60px + var(--4em));
}

.mb-1 {
  margin-bottom: var(--1em);
}
.mb-2 {
  margin-bottom: var(--2em);
}
.mb-3 {
  margin-bottom: var(--3em);
}
.mb-4 {
  margin-bottom: var(--4em);
}
.mb-5 {
  margin-bottom: var(--5em);
}
.mb-6 {
  margin-bottom: var(--6em);
}
.mb-7 {
  margin-bottom: var(--7em);
}
.mb-8 {
  margin-bottom: var(--8em);
}
.mt-1 {
  margin-top: var(--1em);
}
.mt-2 {
  margin-top: var(--2em);
}
.mt-3 {
  margin-top: var(--3em);
}
.mt-4 {
  margin-top: var(--4em);
}
.mt-5 {
  margin-top: var(--5em);
}
.mt-6 {
  margin-top: var(--6em);
}

/**
 *	04 — HEADER, FOOTER & NAVI
 *	Header, Footer, Layer, Meüs, etc.
 *	____________________________________________________________
*/

/* HEADER */

.main-header {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 2;
  width: 100%;
  padding: var(--1em) var(--6em);
  transform: translateY(0%);
  transition: transform 0.2s;
}
.main-bar {
  position: relative;
  z-index: 3;
  display: flex;
  width: 100%;
}

.main-header.nav-up:not(.menu-open) {
  transform: translateY(-100%);
}

.opener {
  cursor: pointer;
}
/* NAVIGATION / MENU */
.top-bar {
  z-index: 10;
  width: 100%;
  position: fixed;
  top: var(--1em);

  transform: translateY(0);
  transition: transform 0.35s ease;
  will-change: transform;
}

.top-bar.nav-down {
  transform: translateY(0);
}

.top-bar.nav-up {
  transform: translateY(calc(-100% - var(--1em)));
}
.top-bar-wrapper {
  width: calc(100% - var(--2em));
  height: 60px;
  margin: auto;
  display: flex;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px) saturate(180%);
  -webkit-backdrop-filter: blur(8px) saturate(180%);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 0px 0px 20px;
}
#logo {
  max-width: 174px;
}
#top-bar-menu {
  display: flex;
  gap: var(--3em);
}
.top-bar-menu-wrapper {
  padding: 0px var(--3em);
}
#top-bar-menu li.current_page_item {
  font-weight: 600;
}
.nav-button-wrapper {
  display: flex;
}
/* BURGER BUTTON */
.menu-button {
  align-items: center;
  justify-content: center;
  width: 60px;
  cursor: pointer;
  opacity: 1;
  transition:
    transform 0s 0s,
    opacity 0.3s;
  height: 60px;
  z-index: 10;
  max-width: 60px;
  background: var(--dunkelblau);
  display: none;
  border-radius: 0px 10px 10px 0px;
}
.menu-button .move {
  transform-origin: center center;
}
.menu-button .hide-01 {
  transform-origin: center left;
}
.menu-button .hide-02 {
  transform-origin: center right;
}
.menu-button .move,
.menu-button.aktiv .hide {
  transition: transform 0.3s;
}
.menu-button .hide,
.menu-button.aktiv .move {
  transition: transform 0.3s 0.3s;
}
.menu-button.aktiv .hide {
  transform: scaleX(0);
}
.menu-button.aktiv .move-01 {
  transform: rotate(135deg);
}
.menu-button.aktiv .move-02 {
  transform: rotate(225deg);
}
.menu-button.hide {
  opacity: 0;
  transform: translateY(-100%);
  transition:
    transform 0s 0.3s,
    opacity 0.3s;
}
.menu-button rect {
  fill: var(--weiss);
}

/* MOBILE MENU */
#mobile-menu {
  font-size: var(--v-h4);
  font-weight: 500;
}
#mobile-menu li {
  margin-bottom: var(--1-5em);
}
/* LAYER */
.moving-layer {
  position: fixed;
  top: 0px;
  right: 0px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  width: 420px;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.9);
  transition: transform 0.4s;
}
.moving-layer.active {
  transform: translateX(0%);
}

.moving-layer-content {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--2em);
}

/* Menü Overlay */

.menu-overlay {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 3;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.333);
  opacity: 0;
  transform: translateY(-100%);
  transition:
    transform 0s 0.8s,
    opacity 0.5s;
}
.menu-overlay.active {
  opacity: 1;
  transform: translateY(0%);
  transition:
    transform 0s,
    opacity 0.5s;
}

/* FOOTER */
#kontakt {
  max-width: 2560px;
  margin: auto;
}
.main-footer .wrapper {
  padding: 0px var(--1em) var(--1em) var(--1em);
}

.logo-footer {
  height: auto;
  width: 100%;
  max-width: 40px;
  margin-bottom: var(--2em);
}
.footer-spalten {
  justify-content: space-between;
  margin-top: calc(var(--2em) + 40px);
}
.main-footer .menu {
  line-height: 2em;
}
#footermenue-03 {
  display: flex;
  gap: var(--1-5em);
  justify-content: center;
  margin-bottom: var(--3em);
}
.infografik {
  max-width: 160px;
}
.logo-hintergrund {
  margin-top: var(--6em);
  width: 100%;
}
footer .row.row-02 {
  position: absolute;
  bottom: var(--4em);
}
/* fixierter Karriere-Button */
.fixed-career-btn {
  position: fixed;
  bottom: 0px;
  right: var(--1em);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: var(--1em);
  padding: 12px 20px;
  background-color: var(--gelb);
  color: var(--dunkelblau);
  border-radius: 10px 10px 0px 0px;
  transform: translateY(10px);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.4s ease,
    visibility 0.4s ease;
  height: 70px;
  padding: 0px var(--2em);
}

.fixed-career-btn.is-hidden {
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
}

.fixed-career-btn:hover {
  transform: translateY(0px);
  color: var(--dunkelblau);
}
/**
 *	05 — UX ELEMENTE
 *	Layer, Popups und weitere UX Elemente
 *	____________________________________________________________
*/
/* FLUENT FORMS / Formulare */
.ff-default .ff-el-form-control {
  background: var(--hellblau);
  font-family: unset;
  color: unset;
  border-color: var(--hellblau);
}
.fluentform .ff-el-group.mb-3 {
  margin-bottom: var(--3em);
}
.ff-default textarea {
  min-height: calc(var(--12em));
  line-height: 1.5em !important;
  color: unset !important;
}
.ff-default .ff-el-form-control:focus {
  background-color: #fff;
  border-color: var(--blau);
  color: var(--blau);
}
.fluentform .ff-el-form-control::placeholder {
  color: var(--dunkelblau);
  opacity: 0.5;
}
.ff-btn.ff-btn-submit.ff-btn-md.btn.blau.mittel.ff_btn_style {
  background-color: var(--blau);
  border-radius: 30px;
  height: 60px;
  display: inline-flex;
  gap: var(--1em);
}
.ff-btn.ff-btn-submit.ff-btn-md.btn.blau.mittel.ff_btn_style:hover {
  background-color: var(--hellblau);
  color: var(--dunkelblau);
  opacity: 1;
}

.ff-btn.ff-btn-submit.ff-btn-md.btn.blau.mittel.ff_btn_style path {
  stroke: var(--weiss);
  stroke-width: 1.7px;
}

.ff-btn.ff-btn-submit.ff-btn-md.btn.blau.mittel.ff_btn_style:hover:hover path {
  stroke: var(--dunkelblau);
}
.ff-message-success {
  box-shadow: unset;
  background: var(--hellblau);
  border-radius: 10px;
  border: 1px solid var(--blau);
}
/* POPUP */

.popup-spacer {
  position: relative;
}
.popup {
  position: fixed;
  left: 0px;
  top: 0px;
  z-index: 3;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.popup.active {
  opacity: 1;
  pointer-events: all;
}
.popup-wrapper {
  width: 100%;
  height: 100%;
  padding: var(--1em);
}
.popup-wrapper.center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-section {
  padding: var(--2em) 0px;
}
.popup-trigger {
  cursor: pointer;
}
.popup-closer {
  position: absolute;
  right: var(--1em);
  top: var(--1em);
  z-index: 1;
  cursor: pointer;
}

/* FORMS FRAMEWORK */
input,
textarea,
select,
option,
hr,
blockquote,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: medium none;
  filter: none;
  font-family: inherit;
}

::placeholder {
  line-height: 1.5em;
  font-weight: 400;
  color: var(--dunkelblau);
  opacity: 0.5;
}
/* Inputs & Textarea Base */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea {
  width: 100%;
  margin: 0;
  padding: 0 20px;
  border: none;
  border-color: var(--hellblau);
  border-radius: 10px;
  background: var(--hellblau);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.5em;
  font-family: unset;
  color: var(--dunkelblau);
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"] {
  height: 60px;
}

textarea {
  min-height: calc(var(--12em));
  padding: var(--1em);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus {
  background: var(--hellblau);
  border-color: var(--hellblau);
  outline: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px var(--hellblau) inset !important;
  -webkit-text-fill-color: var(--dunkelblau) !important;
}

input:-moz-autofill,
textarea:-moz-autofill {
  background-color: var(--hellblau) !important;
  color: var(--dunkelblau) !important;
}
/* Custom Checkbox */
input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--blau);
  border-radius: 4px;
  background: var(--hellblau);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-right: 8px !important;
}

input[type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid var(--weiss);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

input[type="checkbox"]:focus {
  outline: none;
}
input[type="checkbox"]:active,
input[type="checkbox"]:checked {
  background: var(--blau);
}
/* Borlabs Fix */
body div.brlbs-cmpnt-container [type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--blau);
  border-radius: 4px;
  background: var(--hellblau);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-right: 8px !important;
}

body div.brlbs-cmpnt-container [type="checkbox"]:checked::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1px;
  width: 6px;
  height: 12px;
  border: solid var(--dunkelblau);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
/* Custom Radio */

input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--blau);
  border-radius: 50%;
  outline: none;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-right: 8px !important;
  background: var(--hellblau);
}

input[type="radio"]:checked {
  border-color: var(--blau);
}

input[type="radio"]:checked::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 8px;
  height: 8px;
  background: var(--dunkelblau);
  border-radius: 50%;
}
/**
 *	06 — SECTIONS & SEITEN
 *	Startseite, Unterseiten, Blog, Singles
 *	____________________________________________________________
*/

/* HOME */

/* BLOG */
.block.block-blog-hero {
  margin-top: calc(60px + var(--4em));
}

.blog-hero-slider-wrap {
  background: var(--dunkelblau);
  overflow: hidden;
}

/* SINGLE */
.blog-header-content {
  max-width: 1080px;
  margin: auto;
}
.blog-header-content {
  max-width: 1080px;
  margin: var(--6em) auto;
}
.btn-back-to-blog {
  margin: var(--6em) auto;
}

.blog-slider-grid {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
}

.blog-slider-img-wrap {
  overflow: hidden;
  display: flex;
}

.blog-slider-img-wrap .swiper {
  width: 100%;
  height: 100%;
}

.blog-slider-img-wrap .swiper-wrapper,
.blog-slider-img-wrap .swiper-slide {
  height: 100%;
}

.sw-btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-prev.sw-btn {
  left: var(--1em);
}

.swiper-next.sw-btn {
  right: var(--1em);
}

.blog-slider-text-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-slider-text-wrap .swiper {
  height: 100%;
  width: 100%;
}

.blog-slider-text-wrap .swiper-slide {
  display: flex;
  height: 100%;
}

.blog-slider-text-wrap .sw-pag-1 {
  position: absolute;
  bottom: var(--1em);
  left: 0px;
  right: 0px;
  margin: auto;
}

.blog-slider-text-wrap .sw-pag-1 .swiper-custom-nav {
  margin-left: var(--4em);
}

.blog-slider-text-wrap .sw-pag-1 .swiper-pagination {
  padding-left: 0px;
}

@media (min-width: 992px) {
  .blog-slider-grid {
    grid-template-columns: 60% 40%;
  }
}

.blog-slider-content {
  padding: var(--4em);
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}

.blog-slider-img {
  width: 100%;
  height: 100%;
}

.blog-slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.meta-info {
  color: var(--blau);
}

.meta-info + .h2 {
  margin-top: 0px;
}
@media (min-width: 1300px) {
  .blog-hero-slider-wrap {
    height: 600px;
    max-height: 600px;
  }

  .blog-slider-grid {
    grid-template-columns: 60% 40%;
    height: 600px;
    max-height: 600px;
  }

  .blog-slider-img-wrap,
  .blog-slider-text-wrap {
    height: 100%;
    max-height: 600px;
    overflow: hidden;
  }

  .blog-slider-text-wrap .swiper,
  .blog-slider-img-wrap .swiper {
    height: 100%;
  }
  .blog-slider-content {
    height: 100%;
    max-height: 600px;
    box-sizing: border-box;
    justify-content: center;
  }
}
@media (max-width: 1080px) {
  .blog-slider-grid {
    display: flex;
    flex-direction: column;
  }

  .blog-hero-slider-wrap,
  .blog-slider-grid,
  .blog-slider-img-wrap,
  .blog-slider-text-wrap {
    height: auto;
    max-height: none;
  }

  .blog-slider-img {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .blog-slider-text-wrap .swiper,
  .blog-slider-text-wrap .swiper-slide {
    height: auto;
  }

  .blog-slider-content {
    height: auto;
  }

  .blog-slider-content {
    padding-bottom: calc(var(--2em) + 40px);
  }
}
/* Blog Feed */
.blog-feed-list {
  display: flex;
  flex-direction: column;
  gap: var(--4em);
}

.blog-feed-item:last-child {
  border-bottom: 0;
}

.blog-feed-grid {
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}

@media (min-width: 768px) {
  .blog-feed-grid {
    display: grid;
    grid-template-columns: 1fr minmax(auto, 540px);
    align-items: center;
    gap: 4rem;
  }
}
/* 
.blog-feed-img {
  width: 100%;
  max-width: 540px; 
  height: auto;
  aspect-ratio: 16 / 9; 
  overflow: hidden;
}

.blog-feed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
} */
.blog-feed-img {
  max-width: 540px;
  height: auto;
}
.blog-feed-item:hover .blog-feed-img img {
  transform: scale(1.04);
}

.blog-pagination {
  display: flex;
  justify-content: center;
  gap: var(--1em);
  align-items: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--dunkelblau, #1d4056);
  text-decoration: none;
  background: var(--hellblau);
}

.blog-pagination .page-numbers.current {
  background-color: var(--gelb, #fff000);
  color: var(--dunkelblau, #1d4056);
}

.blog-pagination .page-numbers:hover:not(.current) {
  background-color: var(--gelb);
}

/**
 *	07 — BLÖCKE
 *	Module, bzw. WordPress Blöcke
 *	____________________________________________________________
*/

/* ALLG. */

/* Swiper */

.swiper.sw-fade {
  width: 100% !important;
  max-width: 100% !important;
  overflow: hidden !important;
  box-sizing: border-box;
}

.swiper.sw-fade .swiper-wrapper {
  width: 100% !important;
  transform: none !important;
}

.swiper.sw-fade .swiper-slide {
  width: 100% !important;
  box-sizing: border-box;
}

.sw-wrapper-fix {
  width: 100%;
  min-width: 100%;
}
.slide-video {
  pointer-events: none;
}
.sw-pag-1 {
  padding-top: var(--2em);
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  margin: auto;
  z-index: 2;
}
.sw-pag-1 .swiper-custom-nav {
  display: flex;
  justify-content: center;
  margin: auto;
  width: fit-content !important;
  transform: scaleX(1);
  opacity: 1;
}
.sw-pag-1 .swiper-custom-nav.is-inview {
  width: fit-content !important;
  transform: scaleX(1);
  opacity: 1;
}
.swiper-play-pause {
  border: 0px;
  height: 40px;
  width: 40px;
  border-radius: 20px;
  margin-left: var(--1-2em);
  cursor: pointer;
}
.icon-play path,
.icon-pause path {
  fill: var(--gelb);
}
.sw-pag-1 .swiper-pagination {
  height: 40px;
  width: fit-content !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border-radius: 20px;
  position: relative;
  top: unset !important;
  bottom: unset !important;
}

.sw-pag-1 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  transition: all 0.3s ease;
  opacity: 1;
}

.sw-pag-1 .swiper-pagination-bullet-active {
  width: 48px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

.sw-pag-1 .swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: var(--progress, 0%);
  height: 100%;
  background-color: var(--gelb);
  border-radius: 4px;
  transition: width 0.1s linear;
}
.sw-pag-1.blau .swiper-pagination-bullet-active::before {
  background-color: var(--blau);
}
.sw-pag-1.blau .swiper-pagination-bullet {
  background-color: var(--hellblau);
}
.swiper.sw-fade .swiper-slide {
  transition-duration: 500ms !important;
  transition-property: opacity, visibility !important;
}
.swiper-nav.swiper-button-disabled {
  opacity: 0.2;
}
/* Block Wrapper */
.block {
  width: 100%;
}

/* BLOCK: Hero Startseite */
.block-hero-startseite {
  height: 100vh;
  height: 100dvh;
  position: relative;
  padding-bottom: 0px !important;
  margin-bottom: var(--1em);
  z-index: 2;
}
.block-hero-startseite .sw-master-wrapper,
.block-hero-startseite .sw-wrapper-fix,
.block-hero-startseite .swiper,
.block-hero-startseite .swiper-wrapper,
.block-hero-startseite .swiper-slide {
  height: 100%;
}

.block-hero-startseite .slide-image,
.block-hero-startseite .slide-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.block-hero-startseite .hero-slider::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    0deg,
    rgba(29, 64, 86, 0.75) 0%,
    rgba(29, 64, 86, 0) 33%
  );
  z-index: 2;
  pointer-events: none;
}
.hero-text {
  position: absolute;
  bottom: var(--3em);
  z-index: 1;
  left: var(--3em);
  color: #fff;
}
.teaser-wrapper {
  flex-direction: row;
  gap: var(--1em);
  width: fit-content;
  position: absolute;
  bottom: var(--2em);
  z-index: 1;
  right: var(--1em);
}
.teaser-box {
  position: relative;
  overflow: hidden;
  max-width: 300px;
}
.teaser-box .img-hover-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(29, 64, 86, 0.75) 0%,
    rgba(29, 64, 86, 0) 65.75%
  );
  z-index: 1;
}
.teaser-box h3 {
  position: absolute;
  z-index: 10;
  top: var(--1em);
  left: var(--1em);
  margin: 0px;
  color: #fff;
  font-size: 1em;
  font-weight: 500;
}

/* BLOCK: Hero Hauptseite */
.block-intro-hauptseite {
  margin-top: calc(60px + var(--4em));
}
.block-intro-hauptseite .wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.hero-media {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  background: var(--hellblau);
  margin-top: var(--1em);
  position: relative;
}
.hero-media .hero-img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  object-position: center;
}
.breadcrumbs {
  display: flex;
  gap: var(--1em);
  justify-content: center;
  min-height: 40px;
  align-items: center;
  padding: 10px;
}
.block-intro-hauptseite .col-01 .ueberschrift {
  max-width: 830px;
  margin-right: var(--5em);
}

.block-intro-hauptseite .col-02 {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  justify-content: flex-end;
  gap: var(--2em);
}
.block-intro-hauptseite .col-02 p {
  max-width: 720px;
  margin: 0px;
}
#next-section {
  margin-left: auto;
  cursor: pointer;
}
/* BLOCK: Hero Jobs */
.block-hero-job .col-01 .ueberschrift {
  hyphens: auto;
}

.hero-job-buttons {
  position: absolute;
  bottom: 0px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: var(--1em);
}
.job-kontakt {
  display: flex;
  gap: var(--1em);
}
.single-jobs .hero-media::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(
    0deg,
    rgba(29, 64, 86, 0.75) 0%,
    rgba(29, 64, 86, 0) 33%
  );
  z-index: 0;
}

/* BLOCK: Intro */

.block-intro .box {
  background-image: url("img/keyvisual-bg.svg");
  background-repeat: no-repeat;
  background-size: contain;
  padding-top: var(--10em);
  padding-bottom: var(--10em);
}
.button-wrapper {
  display: flex;
  gap: var(--1em);
  margin-top: var(--4em);
  flex-wrap: wrap;
}
.intro-text {
  margin-top: var(--12em);
  max-width: 540px;
}
.headline-container {
  max-width: 540px;
}

/* BLOCK: Teaser Liste */
.teaser-list-swiper {
  width: 100%;
  overflow: hidden;
}
.teaser-list-content {
  min-width: 0;
}
.teaser-list-grid {
  gap: var(--1em);
}
.teaser-list-grid ul li {
  border-bottom: 1px solid rgba(20, 152, 211, 0.25);
}
.teaser-list-grid li.active {
  background: var(--hellblau);
}
.teaser-liste-titel {
  padding: var(--1-5em) var(--3em);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.teaser-swiper .img-hover-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(29, 64, 86, 0.75) 0%,
    rgba(29, 64, 86, 0) 33%
  );
  z-index: 1;
}
.teaser-slide-trigger {
  position: absolute;
  z-index: 1;
  color: var(--weiss);
  left: var(--2em);
  top: var(--2em);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - var(--4em));
  gap: var(--2em);
  flex-wrap: wrap;
}
.teaser-slide-trigger h3 {
  margin: 0px;
}
/* BLOCK: Logo-Ticker */

.block-logo-ticker {
  overflow: hidden;
  width: 100%;
}

.logo-ticker {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  white-space: nowrap;
}

.logo-ticker-track {
  display: flex;
  width: max-content;
  /* animation: logo-ticker-scroll 25s linear infinite; */
  animation: logo-ticker-scroll var(--ticker-speed, 25s) linear infinite;
  will-change: transform;
}

.logo-ticker:hover .logo-ticker-track {
  animation-play-state: paused;
}

.logo-ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-ticker-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 var(--6em);
  height: 95px;
  width: 210px;
}

.logo-ticker-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 70px;
  max-width: 190px;
}

@keyframes logo-ticker-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .logo-ticker {
    padding: 15px 0;
  }
  .logo-ticker-item {
    margin: 0 25px;
    height: 50px;
    width: 110px;
  }
  .logo-ticker-img {
    max-height: 38px;
    max-width: 100px;
  }
}
/* BLOCK: Bild & Text */

.block-bild-text {
  position: relative;
}
.block-bild-text .wrapper {
  z-index: 1;
  position: relative;
}
.bt-content-wrapper {
  padding: var(--4em);
}
.block-bild-text .row-01 {
  margin-bottom: var(--6em);
}
.bt-content {
  flex-direction: column;
}
.bt-content .ueberschrift {
  max-width: 800px;
}
.bt-text {
  max-width: 660px;
}
.block-bild-text .row-02 {
  gap: var(--1em);
}
.valign-top {
  justify-content: flex-start;
}
.valign-center {
  display: flex;
  justify-content: center;
}
.valign-bottom {
  justify-content: flex-end;
}
.order-2 {
  flex-direction: row-reverse;
}

/* BLOCK: Blog Teaser */

.teaser-box-content {
  width: 66.666666%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.teaser-box-content .headline-wrapper {
  margin-bottom: var(--3em);
}
.teaser-icon {
  height: 100%;
  width: 100%;
  max-width: 60px;
}
.teaser-box-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  width: 33%;
}
.teaser-box-links {
  display: flex;
  flex-direction: revert;
  justify-content: space-between;
}
.teaser-box-links .button-wrapper {
  margin: 0px;
}
.teaser-box-rechts {
  position: relative;
  aspect-ratio: 16 / 9;
}
.blog-teaser-header {
  position: absolute;
  z-index: 2;
  left: var(--2em);
  top: var(--2em);
  color: #fff;
}

.blog-teaser-top-link {
  display: inline-flex;
  align-items: center;
  gap: var(--1em);
  width: fit-content;
  text-decoration: none;
}
.blog-teaser-top-link .btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.blog-slide-meta-title .blog-title {
  margin-top: 0px;
}
.blog-teaser-top-link .ueberschrift {
  margin: 0;
  line-height: 1;
}
.blog-slide-meta-title {
  max-width: 580px;
}
.block-blog-teaser .sw-master-wrapper,
.block-blog-teaser .swiper,
.block-blog-teaser .blog-slide-inner {
  height: 100%;
  width: 100%;
}
.blog-slide-inner {
  position: relative;
  width: 100%;
  /* min-height: calc(100cqw * (9 / 16)); */
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-slide-content {
  position: absolute;
  z-index: 11;
  bottom: var(--3em);
  left: var(--2em);
  padding-right: var(--2em);
  display: flex;
  gap: var(--2em);
  align-items: flex-end;
  justify-content: space-between;
  width: calc(100% - var(--2em));
}
.blog-slide-image {
  position: relative;
  width: 100%;
  height: 100%;
}
.blog-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.block-blog-teaser .sw-pag-1 {
  padding-top: unset;
}
.blog-slide-image::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(29, 64, 86, 0.75) 0%,
    rgba(29, 64, 86, 0) 33%
  );
  z-index: 1;
}
.blog-slide-image::after {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(
    0deg,
    rgba(29, 64, 86, 0.75) 0%,
    rgba(29, 64, 86, 0) 33%
  );
  z-index: 1;
}
.block-blog-teaser .sw-pag-1 .swiper-custom-nav {
  margin-left: var(--0-5em);
}
.blog-slide-action {
  min-width: 160px;
}

/* BLOCK: Call-To-Action CTA */
.cta-box {
  display: flex;
  justify-content: space-between;
  gap: var(--2em);
}
.cta-links {
  display: flex;
  flex-direction: row;
  gap: var(--4em);
  flex-basis: fit-content;
}
.cta-profil {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.profil-bild-wrap {
  width: 100%;
  max-width: 200px;
  height: auto;
  max-height: 200px;
  border-radius: 200px;
  overflow: hidden;
}
.profile-name {
  text-align: center;
}
.cta-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 660px;
}
.cta-kontakt-info {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: var(--1em);
  margin-bottom: var(--2em);
  align-items: flex-end;
}
.cta-kontakt-link {
  display: inline-block;
  line-height: 1em;
}
.cta-rechts {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-self: stretch;
  height: auto;
}
.cta-rechts .button-wrapper {
  justify-content: flex-end;
  margin-top: unset;
}

/* BLOCK: Team Liste */
.team-main-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--dunkelblau, #1d2b3a);
  margin-bottom: 2.5rem;
}

.team-group {
  margin-bottom: var(--3em);
}
.team-group-title {
  border-bottom: 1px solid rgba(20, 152, 211, 0.25);
  padding-bottom: var(--2em);
  margin-bottom: var(--4em);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 2.5rem 3.75rem;
}

.team-card {
  flex: 0 0 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.team-avatar-wrapper {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 5px solid #e9f5fb;
  .text-col-wrapper {
    gap: var(--3em);
  }
  overflow: hidden;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  transform-origin: center center;
}

.team-name {
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
  font-size: 1em;
}

/* RESPONSIVE (Mobil & Tablet Anpassungen) */
/* @media (max-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(4, 1fr); 
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr); 
    gap: 2rem 1rem;
  }

  .team-avatar-wrapper {
    width: 110px;
    height: 110px;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr); 
  }
} */
/* BLOCK: FAQ */
.block-faq .col-01 .sticky {
  max-width: 780px;
}
.block-faq .bg {
  padding-top: var(--6em);
  padding-bottom: var(--6em);
}

/* BLOCK: Headline */
.headline-wrapper.text-center {
  margin: auto;
}
.headline-wrapper.text-center h1,
.headline-wrapper.text-center h2,
.headline-wrapper.text-center h3 {
  max-width: 1320px;
}
.headline-wrapper.text-left h1 {
  max-width: 1200px;
}
.headline-wrapper.text-left h2 {
  max-width: 960px;
}
.headline-wrapper.text-left .h3 {
  max-width: 720px;
}
/* AKKORDEON / AUFKLAPPTEXTE */
#faq p.h3 {
  font-size: calc(var(--v-p) + 0.6em);
}

.akk {
  background: var(--weiss);
  border-radius: 10px;
  cursor: pointer;
  margin-bottom: var(--1em);
  color: var(--dunkelblau);
}
.akk h3 {
  margin: 0px;
}

.akk-trigger:not(.btn) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: var(--1-5em);
  border-radius: 10px;
  margin: 0px;
  text-align: left;
  color: var(--dunkelblau);
  background: none;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  font-weight: 500;
}

.akk-trigger:focus-visible {
  outline: 2px solid var(--blau);
  outline-offset: 3px;
}

/* Icons */
.akk-icon .akk-icon-close {
  display: none;
}
.akk-trigger.active .akk-icon .akk-icon-close {
  display: block;
}
.akk-trigger.active .akk-icon .akk-icon-open {
  display: none;
}

/* Inhalt */
.akk-content {
  padding: 0px var(--1-5em) var(--1-5em);
  display: block; /* SEO + no-JS fallback */
}
.akk-content p {
  max-width: 720px;
}
/* Nur mit JS → geschlossen */
body.js .akk-content[hidden] {
  display: none !important;
}

/* BLOCK: Text */
.block-text .headline-wrapper {
  max-width: 960px;
}
.text-col-wrapper {
  gap: var(--3em);
}
.text-col-wrapper .col {
  max-width: 720px;
}

/* BLOCK: Teaser Grid */
.teaser-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5rem 5rem;
}
.teaser-grid-wrapper.teaser-grid-2-cols {
  grid-template-columns: repeat(2, 1fr);
}
.teaser-grid-item {
  min-width: 0;
}
.teaser-grid-item:hover .img-hover-inner img {
  transform: scale(1.025);
}
/* BLOCK: Google Maps */
.block-google-maps .row-01 {
  display: flex;
  align-items: stretch;
}

.block-google-maps .bt-media {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: relative;
}
.block-google-maps #karte {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: 100%;
  min-height: 0;
  position: relative;
}

.block-google-maps #karte > div {
  height: 100% !important;
}
.map-controls {
  position: absolute;
  bottom: var(--2em);
  left: var(--2em);
  width: calc(100% - var(--4em));
  display: flex;
  gap: var(--1em);
}
.adresse {
  display: none;
}

.google-maps-btn {
  margin-left: auto;
}
.aktiv.map-button {
  background: var(--blau);
}
/* Borlabs Platzhalter für Google Maps */
.brlbs-cmpnt-container[data-borlabs-cookie-content-blocker-id="google-maps"] {
  aspect-ratio: 16 / 9;
}
.platzhalter-google-maps {
  display: flex;
  flex-direction: column;
  height: 100% !important;
  position: relative;
  justify-content: flex-end;
  padding: var(--1em) !important;
  background: url(img/google-maps-consent-bg.jpg);
  background-size: cover;
  background-position: center;
}
.platzhalter-google-maps p {
  max-width: 800px;
  margin-left: auto !important;
  margin-right: auto !important;
  text-align: center;
  margin-bottom: var(--1em) !important;
}
.platzhalter-google-maps .btn {
  min-height: 40px;
  padding: 10px 20px;
  color: #fff !important;
  font-size: 1em !important;
}

/* BLOCK: Liste */
body .brlbs-cmpnt-container.brlbs-cmpnt-content-blocker a.btn.mittel.blau {
  width: fit-content;
  margin: auto;
  color: #fff;
}

.block-liste .row-01 {
  max-width: 915px;
}

/* LAYOUT CONTAINER */
.liste-columns-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.liste-col {
  display: flex;
  flex-direction: column;
  gap: var(--2em, 2em);
  flex: 1;
  max-width: 915px;
}

/* ÜBERSCHRIFTEN */
.spalte-ueberschrift {
  margin: 0;
  padding-bottom: 0;
  font-size: 1.5rem;
  font-weight: bold;
}

/* LISTEN-EINTRÄGE */
.liste-item {
  border-bottom: rgba(20, 152, 211, 0.25) 1px solid;
  padding: var(--1-5em) 0px;
  display: flex;
  align-items: flex-start;
  gap: var(--1em);
}

.liste-col .liste-item:last-child {
  border-bottom: 0px;
  padding-bottom: 0;
}

.liste-content {
  flex: 1;
  min-width: 0;
}

.liste-titel {
  color: var(--dunkelblau, #1d4056);
  font-weight: 500;
  margin: 0 0 0.25em 0;
}

.liste-text p {
  margin: 0;
}

.liste-text p + p {
  margin-top: 0.5em;
}

.liste-number {
  font-weight: 700;
  color: var(--blau);
  flex-shrink: 0;
  font-size: var(--v-h4);
  line-height: 1.2em;
}

.liste-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--blau, #1498d3);
  margin-top: 7px;
}

/* DESKTOP ANSICHT */
.liste-columns-container {
  flex-direction: row;
  gap: var(--4em, 4em);
}

.liste-col {
  min-width: 0;
}

/* BLOCK: Video */
.video-wrapper {
  width: 100%;
  margin: 0 auto;
}
.block-video .headline-wrapper {
  margin: auto;
}
.video-responsive {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}

.video-responsive iframe,
.video-responsive object,
.video-responsive embed,
.video-responsive video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}
/* borlabs Video Platzhalter */
body .brlbs-cmpnt-container.brlbs-cmpnt-content-blocker a.btn.dunkelblau {
  width: fit-content;
  margin: auto;
  color: #fff;
  padding: 10px 20px;
}
body
  .brlbs-cmpnt-container.brlbs-cmpnt-content-blocker
  .brlbs-cmpnt-cb-buttons {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
/* BLOCK: Kontaktformular */
.kontakt-head .text {
  max-width: 720px;
}

/* BLOCK: Jobs Liste */
.jobs-preview-stack {
  position: relative;
}

.jobs-slide-card {
  display: block;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition:
    opacity 0.35s ease,
    visibility 0.35s ease;
  pointer-events: none;
}

.jobs-slide-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.jobs-slide-card .img-hover-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(29, 64, 86, 0.75) 0%,
    rgba(29, 64, 86, 0) 33%
  );
  z-index: 1;
}
/* LAYOUT SWITCHER (Bild Links / Rechts) */
@media (min-width: 992px) {
  .teaser-list-grid.image-left .col-01 {
    order: 2;
  }
  .teaser-list-grid.image-left .col-02 {
    order: 1;
  }
}

/* BLOCK: Zitate Slider */
.zitat-slide-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 960px;
  margin: auto;
  gap: var(--4em);
}
.zitat-bild-wrap {
  width: 100%;
  max-width: 240px;
}
.zitat-img {
  max-width: 240px;
  border-radius: 240px;
}
.zitat-text {
  font-size: var(--v-h4);
  line-height: var(--v-h4);
}
.sw-master-wrapper {
  position: relative;
}
.block-zitate-slider .sw-master-wrapper {
  padding-bottom: 80px;
}
/* BLOCK: Downloads Liste */
.block-downloads .sticky {
  max-width: 660px;
}
.downloads-list.list-clear {
  border-bottom: 1px solid rgba(20, 152, 211, 0.25);
}
.download-item {
  height: 60px;
  width: 100%;
  display: inline-flex;
  border-top: 1px solid rgba(20, 152, 211, 0.25);
  align-items: center;
  padding: 0px var(--2em);
  font-size: var(--v-h4);
  font-weight: 500;
  justify-content: space-between;
  margin: 0px;
}
.download-item:hover {
  background: var(--hellblau);
}

/* BLOCK: Security-Check */

/* --- BASE STYLES --- */
.block-security-check {
  font-family: inherit;
  color: var(--dunkelblau);
}

/* --- STEPPER NAVIGATION --- */
.stepper-wrapper {
  width: 100%;
}

.stepper-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
}

.stepper-bar::before,
.stepper-bar::after,
.step-item::before,
.step-item::after {
  content: none !important;
  display: none !important;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
}

.step-svg-icon {
  width: 24px;
  height: 24.32px;
  color: #b0b8c1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- VERBINDUNGSLINIEN ZWISCHEN DEN ICONS --- */
.step-line {
  display: block;
  flex: 1 1 auto;
  height: 2px;
  background-color: #e4e7ed;
  margin-top: 11px;
  margin-left: 12px;
  margin-right: 12px;
  position: relative;
  z-index: 1;
  transition: background-color 0.3s ease;
}

.step-label {
  margin-top: var(--2em);
  color: #b0b8c1;
  text-align: center;
  white-space: nowrap;
}
.step-label strong {
  font-weight: 700;
}

/* --- AKTIVER / ABGESCHLOSSENER ZUSTAND --- */

.step-item.active .step-svg-icon,
.step-item.completed .step-svg-icon {
  color: #1d4056;
}

.step-item.completed .step-svg-icon svg path,
.step-item.active .step-svg-icon svg path {
  fill: #1d4056;
}

.step-item.active .step-label,
.step-item.completed .step-label {
  color: #1d4056;
}

.step-line.active {
  background-color: #1498d3;
}

/* --- STEPPER TOGGLE & ANIMATION --- */

.step-content {
  display: none;
  /* max-width: 800px; */
  margin: 0 auto;
  width: 100%;
}

.step-content.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.step-inner-wrapper {
  margin: auto;
  width: fit-content;
}
.step-content[data-step="4"] .step-inner-wrapper {
  margin-bottom: var(--4em);
}

.step-content label {
  line-height: 1em;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  margin-bottom: var(--1em);
}
.question-block {
  margin-bottom: var(--3em);
}

/* --- BUTTON ALIGNMENT --- */
.step-btn-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: var(--4em) 0;
  padding-top: 20px;
}

.btn-next,
.btn-submit-eval {
  margin-left: auto;
}

/* --- BAROMETER RING & LEAD BOX --- */
.barometer-wrapper {
  margin-bottom: 50px;
}

.barometer-circle {
  width: 220px;
  height: 220px;
  margin: 0 auto var(--3em);
  position: relative;
}
.circular-chart {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.circle-bg {
  fill: none;
  stroke: #e2e8f0;
  stroke-width: 3.8;
}

.circle {
  fill: none;
  stroke-width: 3.8;
  stroke-linecap: round;
  stroke: var(--blau);
  transition: stroke-dasharray 1s ease;
}

#result-status-title {
  font-weight: 700;
  color: var(--dunkelblau);
  margin-bottom: var(--2em);
}
.static-copy {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.6;
}
/* --- LEAD FORMULAR BOX --- */
.lead-form-box {
  background-color: var(--dunkelblau);
  color: #ffffff;
  padding: var(--2em);
  max-width: 960px;
  margin: 0 auto;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.btn-lead-submit {
  width: 100%;
  margin-top: var(--2em);
}

.barometer-svg {
  display: block;
  margin: 0 auto 20px auto;
}

#barometer-ring {
  transition: stroke-dasharray 1.5s ease-in-out;
}

/* --- VALIDATION --- */
.validation-error {
  background-color: var(--hellblau);
  padding: 12px 16px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease-in-out;
}

.error-text-msg {
  display: block;
  margin: var(--1em);
  font-size: 13px;
  font-weight: 600;
  color: #dc2626;
}
#lead-form-response p {
  background: var(--blau);
  height: 60px;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: 500;
  color: #fff !important;
}
/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .stepper-navigation {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }
  .stepper-navigation::before {
    display: none;
  }
}
.cta-form-benefits li {
  font-weight: 500;
  margin-bottom: var(--0-5em);
  font-size: var(--v-h5);
}

/* BLOCK: BLOG: Text */
.blog-text-content h2,
.blog-text-content h3 {
  margin-top: 5rem;
  margin-bottom: 2rem;
}
/* BLOCK: BLOG: Zitat */
.blog-zitat-content {
  font-size: var(--v-h4);
  line-height: 1.225em;
  border-left: 3px solid var(--blau);
  padding: var(--1em) 0px var(--1em) var(--2em);
  margin: var(--1em) 0px;
}
/* BLOCK: Bild & Text Slider */
.block-bild-text-slider .wrapper {
  padding-top: 50px;
}
.block-bild-text-slider {
  position: relative;
  overflow: hidden;
}

.block-bild-text-slider::after {
  content: "";
  display: block;
  width: 250px;
  height: 100%;

  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    var(--weiss, #ffffff) 100%
  );
  z-index: 1;
  pointer-events: none;
  position: absolute;
  top: 0;

  right: calc((100% - 100vw) / 2);
}
.block-bild-text-slider::before {
  content: "";
  display: block;
  width: 250px;
  height: 100%;
  background: linear-gradient(
    to left,

    rgba(255, 255, 255, 0) 0%,
    var(--weiss, #ffffff) 100%
  );
  z-index: 1;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: calc((100% - 100vw) / 2);
}
.block-bild-text-slider .sw-master-wrapper {
  position: relative;
}
.swiper-nav-wrapper-top .swiper-nav {
  position: unset;
  transform: unset;
}
.block-bild-text-slider .swiper-nav-wrapper-top {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  transform: translateY(calc(-1.2 * var(--6em)));
}
.block-bild-text-slider.slide-text {
  color: var(--dunkelblau);
}

.block-bild-text-slider .swiper.sw-bild-text {
  overflow: visible !important;
}

.block-bild-text-slider .swiper.sw-bild-text .swiper-slide {
  width: calc(50% - 15px);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .block-bild-text-slider .swiper.sw-bild-text .swiper-slide {
    width: 85%;
  }
}

.block-bild-text-slider
  .swiper.sw-bild-text
  .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) {
  opacity: 0.4;
  transition: opacity 0.35s ease;
}

.block-bild-text-slider .swiper.sw-bild-text .swiper-slide.swiper-slide-active,
.block-bild-text-slider .swiper.sw-bild-text .swiper-slide.swiper-slide-next {
  opacity: 1;
  transition: opacity 0.35s ease;
}

.block-bild-text-slider .slider-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  min-height: 50px;
}

.block-bild-text-slider .slide-content.text {
  border-right: 1px solid var(--blau);
  padding-right: 45px;
}
.block-bild-text-slider .swiper-slide:last-of-type .slide-content {
  border: 0px !important;
}
/**
 *	08 — RESPONSIVE
 *	Anpassung des Layouts für mobile Geräte
 *	____________________________________________________________
*/
@media screen and (max-height: 800px) {
}
@media screen and (min-width: 2048px) {
  /* Units */

  :root {
    /* Höhe */
    --1eh: 512px;
  }
}

@media screen and (max-width: 2010px) {
  .teaser-grid-content {
    padding-left: var(--2em);
    padding-right: var(--2em);
  }
}
@media screen and (max-width: 1660px) {
}
@media screen and (max-width: 1440px) {
  /* HEADER */
  .top-bar-menu-wrapper {
    display: none;
  }
  body .menu-button {
    display: flex !important;
  }
  .btn.mittel.btn-kontakt.br-10 {
    border-radius: 10px 0px 0px 10px;
    height: 60px;
  }
  .block-hero-startseite h1 {
    font-size: calc(var(--v-h1) - 1em);
  }
  .blog-slide-content {
    bottom: var(--4em);
    padding-right: var(--1em);
  }
  .sidebar-menu {
    padding-top: 80px;
  }
  .teaser-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
  }
  .cta-links {
    gap: var(--2em);
  }
  /* Bild & text Slider */
  .block-bild-text-slider::before,
  .block-bild-text-slider::after {
    width: var(--4em);
  }
}

@media screen and (max-width: 1320px) {
  .meta-info + .h2 {
    font-size: var(--v-h3);
  }
  .blog-slider-content {
    padding: var(--2em);
  }
  .cta-box {
    flex-direction: column;
  }
}

@media screen and (max-width: 1240px) {
  .block-hero-startseite h1 {
    font-size: var(--v-h1);
  }
  .col-02.col.teaser-wrapper {
    display: none;
  }
  .hero-media {
    aspect-ratio: 16 / 9;
  }
  /* Security */
  .stepper-wrapper {
    display: none;
  }
  #security-check-form {
    margin-top: var(--8em);
  }

  .liste-columns-container {
    flex-direction: column;
    gap: 0px;
  }
  .liste-col .liste-item:last-child {
    border-bottom: rgba(20, 152, 211, 0.25) 1px solid;
    padding-bottom: var(--1-5em);
  }
  .liste-col .spalte-ueberschrift {
    margin-top: var(--6em);
  }
  .liste-icon {
    margin-top: 4px;
  }
  .block-zitate-slider .swiper-prev.sw-btn,
  .block-zitate-slider .swiper-next.sw-btn {
    top: unset;
    transform: unset;
    bottom: 0px;
    z-index: 2;
  }
}

@media screen and (max-width: 1180px) {
  .block-bild-text-slider::before,
  .block-bild-text-slider::after {
    display: none;
  }
}
@media screen and (max-width: 1080px) {
  /* Allgemein */
  .btn.mittel {
    padding: 0 25px;
    height: 50px;
  }
  .btn.gross {
    padding: 0 30px;
    height: 60px;
  }
  /* Hero Hauptseite */
  .block-intro-hauptseite .ueberschrift {
    margin-bottom: var(--4em);
  }
  /* Intro */
  .block-intro .box {
    background-size: cover;
    background-position: left center;
  }
  .intro-text {
    margin-top: var(--4em);
    max-width: 540px;
  }
  /* Teaser Liste */
  .teaser-list-content {
    margin-top: var(--7em);
  }
  .teaser-list-content .img-crop-1-1 img {
    aspect-ratio: 16 / 9;
  }
  /* Teaser Box */
  .teaser-box-links {
    margin-bottom: var(--1em);
  }
  /* Text Spalten */
  .text-col-wrapper {
    gap: var(--3em);
    display: flex;
    flex-direction: column;
  }
  /* Call-To-Action */
  .cta-rechts .button-wrapper {
    justify-content: flex-end;
    margin-top: unset;
    margin-top: var(--3em);
  }
  /* Teaser Grid */
  .teaser-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 3rem;
  }
  /* Bild & Text */
  .block-bild-text .row-02 {
    gap: var(--1em);
    display: flex;
    flex-direction: column;
  }
  /* BLOG */
  .blog-slider-content {
    padding-bottom: calc(var(--2em) + 40px);
  }
  .block-faq .akk-wrapper {
    margin-top: var(--8em);
  }
  /* Footer */
  .footer-spalten {
    display: flex;
    justify-content: space-between;
    margin-top: var(--8em);
    margin-bottom: var(--8em);
  }
}

@media screen and (max-width: 960px) {
  .team-card {
    flex: 0 0 120px;
  }
  .team-avatar-wrapper {
    width: 120px;
    height: 120px;
  }
  .team-grid {
    gap: 3.7vw;
  }
  .blog-feed-grid {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 0;
  }
  .blog-feed-content.box-wrapper-2 {
    max-width: 540px;
  }
}
@media screen and (max-width: 840px) {
  .cta-box {
    flex-direction: column;
    gap: var(--5em);
  }
  .form-row {
    display: flex;
    flex-direction: column;
  }
  .list-clear.cta-form-benefits.mt-5 {
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .hero-job-buttons {
    padding: var(--1em);
    flex-direction: column;
    gap: var(--1em);
  }
}

@media screen and (max-width: 660px) {
  .top-bar-wrapper {
    gap: var(--2em);
  }
  #logo {
    max-width: 174px;
    width: 100%;
  }
  h1,
  .h1 {
    font-size: var(--v-h1);
    font-size: calc(var(--v-h1) - 0.7em);
  }
  .footer-spalten {
    flex-direction: column;
    gap: var(--3em);
  }
  .footer-spalte {
    width: fit-content;
  }
  .logo-footer {
    position: absolute;
    left: var(--3em);
  }
  .logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-spalten {
    flex-direction: column;
    gap: var(--3em);
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  footer .row.row-02 {
    position: relative;
    bottom: unset;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .footer-box .btn.weiss.mittel.outline.mt-2 {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-spalte {
    text-align: center;
  }
  .teaser-list-grid ul li {
    padding: var(--1-5em) var(--1-5em);
  }

  .team-card {
    flex: 0 0 100px;
  }
  .team-avatar-wrapper {
    width: 100px;
    height: 100px;
  }
  .hero-media {
    height: 240px;
  }
  .single-jobs .hero-media {
    height: unset;
    aspect-ratio: 4 / 3;
  }
  /* Google Maps */
  .block-google-maps #karte {
    min-height: 400px;
  }
  .map-controls {
    position: absolute;
    bottom: var(--1em);
    left: var(--1em);
    width: calc(100% - var(--4em));
    display: flex;
    gap: var(--1em);
    flex-direction: column;
  }
  .google-maps-btn {
    margin-left: unset;
  }
  /* Teaser Grid */
  .teaser-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem 3rem;
  }
}
@media screen and (max-width: 540px) {
  .moving-layer {
    width: 100%;
  }
  .moving-layer-content {
    padding: var(--4em);
  }
  #mobile-menu {
    font-size: var(--v-h3);
  }
  #mobile-menu li {
    margin-bottom: var(--3em);
  }
  .job-kontakt {
    flex-direction: column;
  }
  .zitat-slide-inner {
    flex-direction: column;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .crop-3-1,
  .crop-4-1 {
    aspect-ratio: 2 / 1;
  }
}

/** IE FIXES **/
@media screen\0, screen\9 {
  h1,
  h2,
  h3,
  p {
    width: 100%;
  }
  img {
    flex-shrink: 0;
  }
}
