@charset "UTF-8";
:root {
  --project-dark: #1d1d1b;
  --project-light: #fff;
  --site-header-bg: white;
  --navbar-toggler-bg: #fff;
  --burger-color: #000;
  --main-nav-classic-bg: white;
  --main-nav-classic-mobile-bordercolor: transparent;
  --h6-font-size: 1rem;
  --display-font-weight: 400;
  --headings-font-weight: 600;
  --lead-font-size: 1.3rem;
  --lead-line-height: 1.4;
  --dm-body-font-size: 1rem;
  --dm-body-font-family: "Plus Jakarta Sans";
  --dm-body-font-weight: 300;
  --dm-body-line-height: 1.4;
  --dm-light-rgb: 248, 248,248;
  --headings-line-height: 1.2;
  --box-shadow: 0.25rem 0.25rem 0.75rem rgba(29, 29, 27, 0.15);
  --box-shadow-sm: 0.25rem .25rem .25rem rgba(29, 29, 27, 0.1);
  --box-shadow-lg: 0.25rem 0.5rem 1.5rem rgba(29, 29, 27, 0.15);
  --box-shadow-inset: inset 0 1px 2px rgba(0 0 0, .95);
  --menu-height: 100px;
  --footer-menu-linkcolor: white;
  --floor-blaugruen: #0091af;
  --floor-schwarz: #000;
  --floor-weiss: #fff;
  --floor-gelb: #ffeb00;
  --floor-mint: #46f5b9;
  --floor-hellblau: #1ec8e6;
  --floor-hellgrau: #f8f8f8;
  --floor-blaugruen-lighter1: #0091AF;
  --floor-blaugruen-lighter2: #33A7BF;
  --floor-blaugruen-lighter3: #66BDCF;
  --floor-blaugruen-lighter4: #99D3DF;
  --floor-blaugruen-lighter5: #CCE9EF;
  --floor-blaugruen-lighter6: #E5F4F7;
  --site-header-bg-dark: var(--project-dark);
  --site-footer-bg: var(--floor-blaugruen);
  --footer-link-hover-color: var(--floor-blaugruen-lighter4);
  --accordion-header-background-color: white;
  --accordion-header-active-background-color: white;
  --accordion-header-color: var(--floor-schwarz);
  --accordion-background-color: white;
  --accordion-button-padding: 15px 20px;
  --accordion-body-padding: 0 20px;
}

/* ------------------------------------------------- */
/* ==from https://codepen.io/jakob-e/pen/doMoML       */
/* ------------------------------------------------- */
/* ------------- */
/* ==end         */
/* ------------- */
/* custom mixin to replace a defined fill color with another one */
/* ---------------- */
/* Popup animations */
/* ---------------- */
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* Popup einblenden */
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

/* Popup Overlay ausblenden */
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

/* Popup ausblenden */
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

/* plus-jakarta-sans-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 300;
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-300.eot"); /* IE9 Compat Modes */
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-300.eot?#iefix") format("embedded-opentype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-300.woff2") format("woff2"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-300.woff") format("woff"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-300.ttf") format("truetype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-300.svg#PlusJakartaSans") format("svg"); /* Legacy iOS */
}
/* plus-jakarta-sans-300italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: italic;
  font-weight: 300;
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-300italic.eot"); /* IE9 Compat Modes */
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-300italic.eot?#iefix") format("embedded-opentype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-300italic.woff2") format("woff2"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-300italic.woff") format("woff"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-300italic.ttf") format("truetype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-300italic.svg#PlusJakartaSans") format("svg"); /* Legacy iOS */
}
/* plus-jakarta-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 400;
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-regular.eot"); /* IE9 Compat Modes */
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-regular.eot?#iefix") format("embedded-opentype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-regular.woff2") format("woff2"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-regular.woff") format("woff"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-regular.ttf") format("truetype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-regular.svg#PlusJakartaSans") format("svg"); /* Legacy iOS */
}
/* plus-jakarta-sans-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: italic;
  font-weight: 400;
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-italic.eot"); /* IE9 Compat Modes */
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-italic.eot?#iefix") format("embedded-opentype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-italic.woff2") format("woff2"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-italic.woff") format("woff"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-italic.ttf") format("truetype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-italic.svg#PlusJakartaSans") format("svg"); /* Legacy iOS */
}
/* plus-jakarta-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 500;
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-500.eot"); /* IE9 Compat Modes */
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-500.eot?#iefix") format("embedded-opentype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-500.woff2") format("woff2"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-500.woff") format("woff"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-500.ttf") format("truetype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-500.svg#PlusJakartaSans") format("svg"); /* Legacy iOS */
}
/* plus-jakarta-sans-500italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: italic;
  font-weight: 500;
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-500italic.eot"); /* IE9 Compat Modes */
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-500italic.eot?#iefix") format("embedded-opentype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-500italic.woff2") format("woff2"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-500italic.woff") format("woff"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-500italic.ttf") format("truetype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-500italic.svg#PlusJakartaSans") format("svg"); /* Legacy iOS */
}
/* plus-jakarta-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 600;
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-600.eot"); /* IE9 Compat Modes */
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-600.eot?#iefix") format("embedded-opentype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-600.woff2") format("woff2"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-600.woff") format("woff"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-600.ttf") format("truetype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-600.svg#PlusJakartaSans") format("svg"); /* Legacy iOS */
}
/* plus-jakarta-sans-600italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: italic;
  font-weight: 600;
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-600italic.eot"); /* IE9 Compat Modes */
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-600italic.eot?#iefix") format("embedded-opentype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-600italic.woff2") format("woff2"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-600italic.woff") format("woff"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-600italic.ttf") format("truetype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-600italic.svg#PlusJakartaSans") format("svg"); /* Legacy iOS */
}
/* plus-jakarta-sans-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: normal;
  font-weight: 700;
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-700.eot"); /* IE9 Compat Modes */
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-700.eot?#iefix") format("embedded-opentype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-700.woff2") format("woff2"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-700.woff") format("woff"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-700.ttf") format("truetype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-700.svg#PlusJakartaSans") format("svg"); /* Legacy iOS */
}
/* plus-jakarta-sans-700italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Plus Jakarta Sans";
  font-style: italic;
  font-weight: 700;
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-700italic.eot"); /* IE9 Compat Modes */
  src: url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-700italic.eot?#iefix") format("embedded-opentype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-700italic.woff2") format("woff2"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-700italic.woff") format("woff"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-700italic.ttf") format("truetype"), url("fonts/PlusJakartaSans/plus-jakarta-sans-v3-latin-700italic.svg#PlusJakartaSans") format("svg"); /* Legacy iOS */
}
form a {
  color: #000 !important;
}
form input, form textarea {
  font-weight: bold;
  padding: 0.75rem 1rem;
  margin: 0.5rem 0;
  border-radius: unset;
  border: 2px solid #000;
}
form input::placeholder, form textarea::placeholder {
  text-transform: uppercase;
  letter-spacing: 1px;
}
form input:focus, form textarea:focus {
  outline: none;
  box-shadow: unset;
}
form label {
  width: 100%;
  max-width: 42rem;
}
form input[type=text], form input[type=email], form input[type=tel] {
  width: 100%;
}
form input[type=submit] {
  letter-spacing: 0.5px !important;
}
form textarea {
  width: 100%;
}
form .btn.btn-outline-primary {
  background: #fff;
  text-transform: uppercase;
  font-weight: bold;
  padding: 0.75rem 4rem;
  border: 2px solid #000;
  transition: all 0.3s ease;
  letter-spacing: 0.2rem !important;
  border-radius: unset;
  color: #000;
}
form .btn.btn-outline-primary:disabled {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 1;
  color: #666;
  border-color: #666;
}
form .btn.btn-outline-primary:hover {
  background-color: var(--floor-weiss);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}
form .wpcf7-acceptance {
  letter-spacing: 1px;
  display: block;
}
form .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
  position: relative;
}
form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  display: none;
}
form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] + span {
  display: block;
  font-weight: bold;
  text-transform: uppercase;
  padding-left: 3.5rem;
}
form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] + span:before {
  content: "";
  display: inline-block;
  width: auto;
  height: 100%;
  max-height: 2.8rem;
  top: 0;
  bottom: 0;
  margin: auto;
  aspect-ratio: 1/1;
  border: 2px solid #000;
  position: absolute;
  background: #fff;
  left: 0;
}
form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] + span:after {
  content: "";
  position: absolute;
  display: none;
  left: 1rem;
  top: 0.3rem;
  width: 0.8rem;
  height: 1.8rem;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + span:before {
  background-color: #000;
  color: #fff;
}
form .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked + span:after {
  display: block;
}
form #interests {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form #interests .wpcf7-list-item {
  flex-grow: 1;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
form #interests input[type=checkbox] {
  display: none;
}
form #interests input[type=checkbox] + span {
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.5rem;
  border: 2px solid #000;
  padding: 0.75rem 2rem;
  color: #000;
  font-weight: bold;
}
form #interests input[type=checkbox]:checked + span {
  background-color: #000;
  color: #fff;
}

.section-lines-bottom {
  background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' width='939.1px' height='40px' viewBox='0 0 939.1 40' style='enable-background:new 0 0 939.1 40;' xml:space='preserve'%3E%3Cg id='Ebene_1'%3E%3Cg%3E%3Cpolygon points='285.8,0 262.6,40 284.4,40 307.4,0 '/%3E%3Cpolygon points='367.4,0 344.2,40 366,40 389.2,0 '/%3E%3Cpolygon points='326.6,0 303.4,40 325.2,40 348.2,0 '/%3E%3Cpolygon points='245,0 221.8,40 243.6,40 266.6,0'/%3E%3Cpolygon points='408.2,0 385.2,40 406.8,40 430,0 '/%3E%3Cpolygon points='204,0 181,40 202.8,40 225.8,0 '/%3E%3Cpolygon points='81.6,0 58.6,40 80.2,40 103.4,0	'/%3E%3Cpolygon points='40.8,0 17.8,40 39.4,40 62.6,0 '/%3E%3Cpolygon points='0,0 0,0 0,37.5 21.6,0 '/%3E%3Cpolygon points='163.2,0 140.2,40 162,40 185,0	'/%3E%3Cpolygon points='122.4,0 99.4,40 121,40 144.2,0 '/%3E%3Cpolygon points='449,0 426,40 447.6,40 470.8,0 '/%3E%3Cpolygon points='489.8,0 466.8,40 488.4,40 511.6,0 '/%3E%3Cpolygon points='857.2,0 834.2,40 856,40 879,0 '/%3E%3Cpolygon points='816.4,0 793.4,40 815,40 838.2,0 '/%3E%3Cpolygon points='898.2,0 875,40 896.8,40 919.8,0 '/%3E%3Cpolygon points='775.6,0 752.6,40 774.2,40 797.4,0 '/%3E%3Cpolygon points='939.1,0 939,0 915.8,40 937.6,40 939.1,37.5 '/%3E%3Cpolygon points='653.2,0 630,40 651.8,40 674.8,0 '/%3E%3Cpolygon points='734.8,0 711.8,40 733.4,40 756.6,0 '/%3E%3Cpolygon points='612.4,0 589.2,40 611,40 634,0 '/%3E%3Cpolygon points='571.6,0 548.4,40 570.2,40 593.2,0 '/%3E%3Cpolygon points='694,0 670.8,40 692.6,40 715.8,0 '/%3E%3Cpolygon points='530.6,0 507.6,40 529.4,40 552.4,0 '/%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  background-repeat: repeat-x;
}

.col-striped {
  background: repeating-linear-gradient(-60deg, transparent 0, var(--floor-schwarz) 1px, var(--floor-schwarz) 60px, transparent 21px, transparent 100px);
  position: absolute;
  bottom: 0;
  height: 250px;
  width: 50%;
  content: "";
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .col-striped {
    height: 170px;
  }
}
@media (max-width: 991.98px) {
  .col-striped {
    height: 100px;
  }
}

#mainheader {
  position: relative;
  height: 810px;
  display: flex;
  flex-direction: column-reverse;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: 50%;
}
#mainheader:has(video), #mainheader:has(img) {
  position: relative;
  padding: 0;
  height: auto;
}
#mainheader:has(video) .mainheader-img-container, #mainheader:has(img) .mainheader-img-container {
  display: block;
  position: absolute;
  padding-left: 12px;
}
#mainheader img {
  aspect-ratio: 16/9;
  object-position: center;
  object-fit: cover;
}
#mainheader.container-fluid {
  height: auto;
}
#mainheader.container-fluid img {
  aspect-ratio: 16/7;
}
@media (min-width: 1200px) {
  #mainheader.container-fluid img {
    aspect-ratio: 16/6.875;
  }
}
#mainheader.container-fluid video {
  aspect-ratio: 16/7;
}
#mainheader.container-fluid img, #mainheader.container-fluid video {
  object-position: center;
  object-fit: cover;
}
#mainheader .mainheader-video-container {
  aspect-ratio: 16/9;
  display: block;
  position: relative;
  -o-object-fit: contain;
}
#mainheader .mainheader-img-container {
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  bottom: 0;
  text-align: right;
}
#mainheader .mainheader-img-container svg {
  width: 600px;
}
#mainheader .mainheader-img-container .mainheader-headline {
  text-align: left !important;
  font-size: 8rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  position: absolute;
  text-align: center;
  bottom: 0;
  word-wrap: break-word;
  line-height: 1.2;
}

@media (max-width: 1199.98px) {
  #mainheader {
    height: 300px;
  }
  #mainheader .mainheader-img-container .mainheader-headline {
    font-size: 5rem;
  }
}
@media (max-width: 991.98px) {
  #mainheader {
    height: 200px;
  }
  #mainheader .mainheader-img-container .mainheader-headline {
    font-size: 3rem;
  }
}
.page-id-21 #mainheader {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 39.7 39.7' style='enable-background:new 0 0 39.7 39.7;' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%23fff366' d='M19.4,5.9c-7.8,0-14.2,6.4-14.2,14.2s6.3,14.2,14.2,14.2s14.2-6.4,14.2-14.2S27.2,5.9,19.4,5.9z M19.4,32.4c-6.8,0-12.3-5.5-12.3-12.3S12.6,7.8,19.4,7.8s12.3,5.5,12.3,12.3S26.1,32.4,19.4,32.4z' /%3E%3Cpolygon fill='%23fff366' class='f7-seven' points='22.6,15.7 15.6,27.8 17.9,27.8 24.9,15.6 24.9,13.6 13.8,13.6 13.8,15.5 22.7,15.5' /%3E%3C/g%3E%3C/svg%3E");
  background-position: bottom 150px right 0px;
  background-color: var(--floor-gelb);
}
@media (max-width: 1199.98px) {
  .page-id-21 #mainheader {
    background-position: top right;
  }
}
.page-id-21 #mainheader .mainheader-img-container .mainheader-headline {
  left: 0;
  right: 0;
  bottom: 222px;
}
@media (max-width: 1199.98px) {
  .page-id-21 #mainheader .mainheader-img-container .mainheader-headline {
    bottom: 92px;
  }
}
@media (max-width: 991.98px) {
  .page-id-21 #mainheader .mainheader-img-container .mainheader-headline {
    bottom: 40px;
  }
}

.page-id-23 .col-striped {
  width: 33%;
  z-index: 1;
}
.page-id-23 #mainheader {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 39.7 39.7' style='enable-background:new 0 0 39.7 39.7;' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%2376f8cb' d='M19.4,5.9c-7.8,0-14.2,6.4-14.2,14.2s6.3,14.2,14.2,14.2s14.2-6.4,14.2-14.2S27.2,5.9,19.4,5.9z M19.4,32.4c-6.8,0-12.3-5.5-12.3-12.3S12.6,7.8,19.4,7.8s12.3,5.5,12.3,12.3S26.1,32.4,19.4,32.4z' /%3E%3Cpolygon fill='%2376f8cb' class='f7-seven' points='22.6,15.7 15.6,27.8 17.9,27.8 24.9,15.6 24.9,13.6 13.8,13.6 13.8,15.5 22.7,15.5' /%3E%3C/g%3E%3C/svg%3E");
  background-color: var(--floor-mint);
  background-position: top 150px right 250px;
  background-size: 30%;
  margin-bottom: -5rem;
}
@media (max-width: 991.98px) {
  .page-id-23 #mainheader {
    margin-bottom: 3rem;
  }
}
.page-id-23 #mainheader .mainheader-img-container .mainheader-headline {
  right: 0;
  margin-bottom: 3.5rem;
  padding-right: 4rem;
}

@media (min-width: 1200px) {
  .blog .col-striped {
    height: 480px;
  }
}
.blog #mainheader {
  position: relative;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 39.7 39.7' style='enable-background:new 0 0 39.7 39.7;' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%234cd3eb' d='M19.4,5.9c-7.8,0-14.2,6.4-14.2,14.2s6.3,14.2,14.2,14.2s14.2-6.4,14.2-14.2S27.2,5.9,19.4,5.9z M19.4,32.4c-6.8,0-12.3-5.5-12.3-12.3S12.6,7.8,19.4,7.8s12.3,5.5,12.3,12.3S26.1,32.4,19.4,32.4z' /%3E%3Cpolygon fill='%234cd3eb' class='f7-seven' points='22.6,15.7 15.6,27.8 17.9,27.8 24.9,15.6 24.9,13.6 13.8,13.6 13.8,15.5 22.7,15.5' /%3E%3C/g%3E%3C/svg%3E");
  background-color: var(--floor-hellblau);
  background-position: top 40px right -10px;
  background-size: 40%;
  margin-bottom: 0;
}
@media (min-width: 1200px) {
  .blog #mainheader {
    background-position: top 320px right 100px;
  }
}
.blog #mainheader .mainheader-img-container .mainheader-headline {
  display: table;
  text-align: left;
  top: 0;
  bottom: 33%;
  margin: auto 5rem;
}
@media (max-width: 1399.98px) {
  .blog #mainheader .mainheader-img-container .mainheader-headline {
    bottom: 3rem;
    margin-left: 2rem;
  }
}

.page-id-25 .floor7-stripe {
  margin-bottom: 5rem;
}
.page-id-25 .floor7-stripe .col-striped {
  width: 33%;
  height: 420px;
  margin-bottom: -5rem;
}
.page-id-25 #mainheader {
  background-color: var(--floor-weiss);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 39.7 39.7' style='enable-background:new 0 0 39.7 39.7;' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%23f2f2f2' d='M19.4,5.9c-7.8,0-14.2,6.4-14.2,14.2s6.3,14.2,14.2,14.2s14.2-6.4,14.2-14.2S27.2,5.9,19.4,5.9z M19.4,32.4c-6.8,0-12.3-5.5-12.3-12.3S12.6,7.8,19.4,7.8s12.3,5.5,12.3,12.3S26.1,32.4,19.4,32.4z' /%3E%3Cpolygon fill='%23f2f2f2' class='f7-seven' points='22.6,15.7 15.6,27.8 17.9,27.8 24.9,15.6 24.9,13.6 13.8,13.6 13.8,15.5 22.7,15.5' /%3E%3C/g%3E%3C/svg%3E");
  background-position: top 70px right 350px;
  background-size: 40%;
}
.page-id-25 #mainheader .mainheader-img-container .mainheader-headline {
  color: var(--floor-schwarz);
  text-align: left;
  margin-bottom: 5rem;
  margin-left: 5rem;
  margin-right: 5rem;
}
@media (max-width: 991.98px) {
  .page-id-25 #mainheader .mainheader-img-container .mainheader-headline {
    margin-left: 2rem;
    margin-bottom: 3rem;
  }
}

.page-id-27 #mainheader {
  background-color: var(--floor-schwarz);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 39.7 39.7' style='enable-background:new 0 0 39.7 39.7;' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%23404040' d='M19.4,5.9c-7.8,0-14.2,6.4-14.2,14.2s6.3,14.2,14.2,14.2s14.2-6.4,14.2-14.2S27.2,5.9,19.4,5.9z M19.4,32.4c-6.8,0-12.3-5.5-12.3-12.3S12.6,7.8,19.4,7.8s12.3,5.5,12.3,12.3S26.1,32.4,19.4,32.4z' /%3E%3Cpolygon fill='%23404040' class='f7-seven' points='22.6,15.7 15.6,27.8 17.9,27.8 24.9,15.6 24.9,13.6 13.8,13.6 13.8,15.5 22.7,15.5' /%3E%3C/g%3E%3C/svg%3E");
  background-position: top 150px left 0;
}
.page-id-27 #mainheader .mainheader-img-container .mainheader-headline {
  right: 3rem;
  bottom: 28rem;
}
@media (max-width: 1199.98px) {
  .page-id-27 #mainheader .mainheader-img-container .mainheader-headline {
    bottom: 2rem;
  }
}

.single-dmwpproducts h1 {
  word-break: break-word;
  hyphens: auto;
}

.product {
  position: relative;
}
.product .product__inner-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.product .product-content {
  position: absolute;
  margin: auto;
  display: flex;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 1rem;
}
.product .product-content > .btn {
  word-break: break-word;
  hyphens: auto;
  padding: 0.5rem 1rem !important;
  margin: auto;
  letter-spacing: 0.1em !important;
  font-size: 0.85em !important;
}
@media (min-width: 576px) {
  .product .product-content > .btn {
    font-size: 1em !important;
  }
}
.product img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  object-position: center;
}

.product-categories-block {
  padding-left: 0;
  padding-right: 0;
}
.product-categories-block .product {
  overflow: hidden;
}
.product-categories-block .product img {
  transition: transform 0.2s ease;
  transform-origin: center center;
}
.product-categories-block .product:hover img {
  transform: scale(1.15);
}

.product-post-block {
  width: auto;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 1200px) {
  .product-post-block {
    margin-top: 100px !important;
    padding-bottom: 30px;
  }
}
.product-post-block.is-style-hr .col:nth-child(3n+2) {
  margin-top: -80px;
  display: block !important;
}
@media (max-width: 1199px) {
  .product-post-block.is-style-hr .col:nth-child(3n+2) {
    margin-top: var(--dm-gutter-y);
    display: flex !important;
  }
}
.product-post-block .product {
  background: #0091AF;
}
.product-post-block .product.bg-floor-blaugruen {
  background: var(--floor-blaugruen);
}
.product-post-block .product.bg-floor-schwarz {
  background: var(--floor-schwarz);
}
.product-post-block .product.bg-floor-weiss {
  background: var(--floor-weiss);
}
.product-post-block .product.bg-floor-gelb {
  background: var(--floor-gelb);
}
.product-post-block .product.bg-floor-mint {
  background: var(--floor-mint);
}
.product-post-block .product.bg-floor-hellblau {
  background: var(--floor-hellblau);
}
.product-post-block .product.bg-floor-hellgrau {
  background: var(--floor-hellgrau);
}
.product-post-block .product img {
  aspect-ratio: 5/6;
}
.product-post-block .product:hover .product-image {
  opacity: 0.35;
}
.product-post-block .product:hover .product-content:after {
  display: none;
}
.product-post-block .product:hover .product-content .product-content__excerpt {
  visibility: visible;
  opacity: 1;
  max-height: 50px;
}
.product-post-block .product:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 40%);
}
.product-post-block .product .product-content .product-content__excerpt {
  padding-bottom: 2px;
  margin-top: 1rem;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, max-height 0.5s;
  max-height: 0;
}
.product-post-block .product .product-content .product-content__excerpt .excerpt-link {
  margin-bottom: 0;
  border-bottom: 2px solid white;
  text-transform: uppercase;
  font-weight: 700;
}
.product-post-block .product .product-content .product-content__inner {
  z-index: 1;
  padding: 1rem;
  margin-top: auto;
}
.product-post-block .product .product-content .product-content__inner * {
  color: white;
}
.product-post-block .product .product-content .product-content__inner h3 {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 0.25rem !important;
}
.product-post-block .product .product-content .product-content__inner h2 {
  font-size: 1.55rem;
  font-weight: 700;
  margin-bottom: 0;
  word-break: break-word;
  hyphens: auto;
}
@media (min-width: 425px) {
  .product-post-block .product .product-content .product-content__inner h2 {
    font-size: 1.75rem;
  }
}

.floor-team-block {
  overflow-x: hidden;
}

.team-container .team-container__content {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.team-container .team-container__content .card-title {
  text-transform: uppercase;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.team-container .team-container__content .card-text {
  font-size: 0.875rem;
}
.team-container .team-container__image {
  overflow: hidden;
}
.team-container .team-container__image img {
  transition: transform 0.2s ease;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: cover;
  transform-origin: center center;
}
.team-container .team-container__image:hover img {
  transform: scale(1.15);
}

@media (min-width: 768px) {
  .tagcloud__filter-wrapper {
    width: auto;
    margin-left: -25px;
    margin-right: -25px;
  }
}
@media (min-width: 992px) {
  .tagcloud__filter-wrapper {
    width: auto;
    margin-left: -115px;
    margin-right: -115px;
  }
}
.tagcloud__filter-wrapper .btn.btn-outline-primary {
  letter-spacing: 0.1em !important;
}
.tagcloud__filter-wrapper .btn.btn-outline-primary.active {
  background-color: #000;
  color: #fff;
}

.tagcloud__content-wrapper {
  /*border: 1px solid green;*/
}
.tagcloud__content-wrapper .tagcloud__content-inner {
  min-height: 23rem;
  display: none;
}
@media (min-width: 1200px) {
  .tagcloud__content-wrapper .tagcloud__content-inner {
    min-height: 28rem;
  }
}
.tagcloud__content-wrapper .tagcloud__content-inner.active {
  display: flex;
}
.tagcloud__content-wrapper .tagcloud__content {
  /*border: 1px solid blue;*/
  margin: auto 0;
  justify-content: center;
}
.tagcloud__content-wrapper .tagcloud__content p {
  max-width: 25rem;
}
.tagcloud__content-wrapper .tagcloud__image {
  /*border: 1px solid orange;*/
  display: inline-flex;
  justify-content: center;
}
.tagcloud__content-wrapper .tagcloud__image img {
  /*border: 1px solid red;*/
  max-height: 21rem;
  margin: auto;
  width: auto;
  max-width: 100%;
}
@media (min-width: 1200px) {
  .tagcloud__content-wrapper .tagcloud__image img {
    max-height: 25rem;
  }
}

.dmindwpmaster-accordion.has-following-accordion {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 0;
  padding-top: 0;
}
.dmindwpmaster-accordion.accordion {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-bottom: 0;
  padding-top: 0;
}
.dmindwpmaster-accordion .accordion-item {
  border: 0;
}
.dmindwpmaster-accordion .accordion-item .accordion-header {
  border: 2px solid black;
  margin-bottom: 15px;
}
.dmindwpmaster-accordion .accordion-item .accordion-header .accordion-button {
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.dmindwpmaster-accordion .accordion-item .accordion-header .accordion-button:after {
  background-image: url("img/minus.svg") !important;
}
.dmindwpmaster-accordion .accordion-item .accordion-header .accordion-button.collapsed:after {
  background-image: url("img/plus.svg") !important;
}
.dmindwpmaster-accordion .accordion-item .accordion-body {
  padding-bottom: 20px;
}

.paket {
  display: flex;
  width: 100%;
  margin-bottom: 2rem;
}

.paket__inner {
  background-color: var(--floor-hellgrau);
  display: grid; /* feste Zeilen für Bild, Content, Footer */
  grid-template-rows: var(--paket-image-height, 220px) var(--paket-content-height, 260px) auto;
  width: 100%;
  height: 100%;
}
@media (min-width: 1200px) {
  .paket__inner {
    grid-template-rows: var(--paket-image-height, 300px) var(--paket-content-height, 260px) auto;
  }
}

.paket-image {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  /* optionaler Abstand zum Content */
  margin-bottom: 0.5rem;
}
.paket-image img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain; /* verhindert Zuschnitt, hält Proportionen */
}

.paket-content {
  overflow: visible; /* vollständigen Content anzeigen, kein Scrollen */
  padding: 2rem 1rem 3rem 1rem;
}
.paket-content .text-primary {
  margin-bottom: 1rem;
  color: var(--floor-blaugruen) !important;
  letter-spacing: 0.07em;
}
.paket-content h3 {
  margin-bottom: 1.25rem !important;
}
.paket-content .paket-content__excerpt p {
  line-height: 1.6em;
}

body .page-content .paket-details {
  padding: 3rem 0 0 0;
}
body .page-content .paket-details__inner {
  display: flex;
  flex-direction: column;
  border-top: 3px solid var(--floor-schwarz);
  border-bottom: 3px solid var(--floor-schwarz);
}
body .page-content .paket-details__headline {
  padding: 0.5rem 0;
  text-transform: uppercase;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.07em;
}
body .page-content .paket-details__headline .paket-dropdown:before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  background: url("../assets/img/chevron-right.svg") no-repeat center/contain;
  transition: background-image 0.2s ease;
  transform: rotate(90deg);
}
body .page-content .paket-details .paket-details__inner[open] summary .paket-dropdown:before {
  background-image: url("../assets/img/plus.svg");
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
}
body .page-content .paket-details__content {
  padding-top: 1rem;
}
body .page-content .paket-details__content ul {
  margin-left: 1.65rem;
  margin-right: 0;
  width: auto;
}
body .page-content .paket-details__content li {
  font-size: var(--dm-body-font-size);
  font-weight: var(--dm-body-font-weight);
  line-height: var(--dm-body-line-height);
  position: relative;
  border-bottom: unset;
  padding: 0 0 1rem 0;
}
body .page-content .paket-details__content li:before {
  content: url("../assets/img/packet-check.svg");
  position: absolute;
  right: calc(100% + 10px);
  top: -7px;
}
body .page-content .paket-details__content li.optional:before {
  content: url("../assets/img/packet-plus.svg");
  right: calc(100% + 17px);
  top: 0;
}

/* Wenn irgendein Paket geöffnet ist, nur bei den anderen Paketen den oberen Abstand der Details erhöhen */
/* entfernte :has()-Logik */
/* Footer immer am unteren Rand der Karte */
.paket-footer {
  display: block;
  padding: 0 1rem 1rem 1rem;
  /* Footer bleibt in der dritten Grid-Zeile, kein Overlay */
  margin-bottom: 2rem;
}
.paket-footer .paket-price {
  margin-top: auto; /* schiebt Preis & folgenden CTA ans Footer-Ende */
  overflow: visible;
  display: flex;
  justify-content: flex-end;
  position: relative;
  margin: 3rem -1.25rem 3rem 0;
}
.paket-footer .paket-price__inner {
  z-index: 1;
  box-shadow: -0.25rem 0.25rem 0.75rem rgba(29, 29, 27, 0.15);
  position: relative;
  display: flex;
  color: var(--floor-schwarz);
  background-color: var(--floor-gelb);
  font-size: 3rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  /* Optional: feine Feinanpassungen für große Screens */
}
.paket-footer .paket-price__inner span {
  font-size: 1.8rem;
  padding-right: 1rem;
}
.paket-footer .paket-price__inner:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: -44px; /* Breite des Wimpels */
  width: 44px;
  height: 100%;
  background: var(--floor-gelb);
  /* linke Außenkante: (0 0) -> (30% 100%) erzeugt die Schräge von oben links nach unten rechts */
  clip-path: polygon(0 0, 100% 0, 100% 100%, 70% 100%);
  box-shadow: -0.25rem 0.25rem 0.75rem rgba(29, 29, 27, 0.15);
}
@media (min-width: 1200px) {
  .paket-footer .paket-price__inner:before {
    left: -43px;
    width: 44px;
  }
}

[id^=popup-paket-form-] {
  z-index: 999;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 92, 184, 0.5) !important;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
[id^=popup-paket-form-].is-open {
  height: 100%;
  align-content: center;
  display: flex !important;
  z-index: 9999;
}
[id^=popup-paket-form-][aria-hidden=true] {
  display: none !important;
}
[id^=popup-paket-form-][aria-hidden=false] {
  display: flex !important;
}
[id^=popup-paket-form-] .popup__inner {
  margin: auto;
  background: #fff;
  padding: 2rem 2rem 1rem 2rem;
  border-radius: 8px;
  max-width: 1100px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 0 2rem rgba(29, 29, 27, 0.25);
  position: relative;
  background-size: 45% !important;
  background-position: 80% 65% !important;
}
[id^=popup-paket-form-] .popup__inner label {
  max-width: unset;
}
[id^=popup-paket-form-] .popup__close {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  background: none;
  border: none;
  font-size: 3rem;
  cursor: pointer;
  z-index: 10;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Plus als X rotiert (SVG aus plus.svg): */
  background-repeat: no-repeat;
  background-size: 60% 60%;
  background-position: center;
  color: #000;
  /* Für besseres Klickgefühl:
  transition: background-color .2s;
  &:hover {
      background-color: rgba(0,0,0,0.08);
  }
  */
  /* Screenreader-X fallback */
}
[id^=popup-paket-form-] .popup__close::after {
  content: "×";
  display: inline-block;
  opacity: 1;
  position: absolute;
}

@media (max-width: 767.98px) {
  .home .f7-top-video,
  .home .wp-block-video {
    margin-left: -12px;
    margin-right: -12px;
  }
}
@media (min-width: 992px) {
  .home .f7-top-video,
  .home .wp-block-video {
    margin-left: -115px;
    margin-right: -115px;
  }
}
.home .page-content {
  margin-top: 0;
}
.home .f7-top-video {
  position: relative;
}
.home .f7-top-video::before {
  content: url("/wp-content/uploads/2023/02/F7_Logo_schwarz.svg");
  width: 450px;
  max-width: 100%;
  display: inline-block;
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media (max-width: 1199.98px) {
  .home .f7-top-video::before {
    width: 320px;
  }
}
@media (max-width: 767.98px) {
  .home .f7-top-video::before {
    width: 260px;
  }
}

#header + .breadcrumb-container {
  margin-top: var(--menu-height) !important;
}

#header {
  background-color: white;
  z-index: 3;
}

@media (max-width: 1199.98px) {
  #header .navbar {
    padding-top: 0;
    padding-bottom: 0;
  }
  #header .navbar-brand {
    padding-right: 0;
  }
  #header .navbar-brand svg {
    height: 24px;
  }
  #header #main-menu ul li a {
    font-weight: bold;
    padding: 0.5rem 1rem;
    color: var(--floor-schwarz);
  }
  #header #main-menu ul li:first-child {
    background: var(--floor-blaugruen);
  }
  #header #main-menu ul li:first-child a {
    color: var(--floor-weiss);
  }
  #header #main-menu ul li:nth-child(2) {
    background: var(--floor-gelb);
  }
  #header #main-menu ul li:nth-child(3) {
    background: var(--floor-mint);
  }
  #header #main-menu ul li:nth-child(4) {
    background: var(--floor-hellblau);
  }
  #header #main-menu ul li:nth-child(5) {
    background: var(--floor-weiss);
  }
  #header #main-menu ul li:nth-child(6) {
    background: var(--floor-schwarz);
  }
  #header #main-menu ul li:nth-child(6) a {
    color: var(--floor-weiss);
  }
}
@media (min-width: 1200px) {
  #header #main-nav-classic > .container {
    position: relative;
  }
  #header #main-menu {
    position: absolute;
    right: 0;
    z-index: 10;
    overflow: hidden;
    height: 280px;
    width: 60vw;
    line-height: 1.6;
  }
  #header .navbar-brand {
    z-index: 100;
  }
  #header .navbar-brand svg {
    height: 30px;
  }
  #header .navbar {
    padding-top: 0;
  }
  #header .navbar-nav > li {
    transform: rotate(-60deg);
    margin-left: -200px;
    margin-right: -128px;
    width: 425px;
  }
  #header .navbar-nav > li.current_page_item a, #header .navbar-nav > li.current-menu-item a {
    text-decoration: underline;
    text-decoration-thickness: 3px;
  }
  #header .navbar-nav > li.current_page_item.no-text-decoration a, #header .navbar-nav > li.current-menu-item.no-text-decoration a {
    text-decoration: none;
  }
  #header .navbar-nav > li.current_page_item.no-text-decoration a:hover, #header .navbar-nav > li.current-menu-item.no-text-decoration a:hover {
    text-decoration: underline;
    text-decoration-thickness: 3px;
  }
  #header .navbar-nav > li a {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 80px;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
  }
  #header .navbar-nav > li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 3px;
  }
  #header .navbar-nav > li:first-child {
    background: var(--floor-blaugruen);
  }
  #header .navbar-nav > li:first-child a {
    color: var(--floor-weiss);
  }
  #header .navbar-nav > li:nth-child(2) {
    background: var(--floor-gelb);
  }
  #header .navbar-nav > li:nth-child(3) {
    background: var(--floor-mint);
  }
  #header .navbar-nav > li:nth-child(4) {
    background: var(--floor-hellblau);
  }
  #header .navbar-nav > li:nth-child(5) {
    background: var(--floor-weiss);
  }
  #header .navbar-nav > li:nth-child(6) {
    background: var(--floor-schwarz);
  }
  #header .navbar-nav > li:nth-child(6) a {
    color: var(--floor-weiss);
  }
  #header .navbar-nav .nav-link {
    color: black;
  }
}
.blog-container .badge {
  position: absolute;
  top: -1rem;
  z-index: 100;
  right: 10px;
  padding: 0;
  /* background-color: yellow;
   color: black;
   padding: 4px 8px;
   text-align: center;
   border-radius: 0;
   width: 50px;
   height: 20px;
   transform: rotate(270deg);*/
}
.blog-container .badge img {
  width: 80px;
}
.blog-container .card {
  background-color: var(--floor-hellgrau);
  align-items: stretch;
  border-radius: 0;
  border: none;
}
.blog-container .card .card-horizontal {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
  height: 100%;
  align-items: stretch;
}
.blog-container .card .card-text {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
  padding-bottom: 15px;
  height: 100%;
}
.blog-container .card .card-img-top {
  border-radius: 0;
  object-fit: cover;
}
.blog-container .card .card-body {
  height: 100%;
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
  padding-top: 25px;
  min-height: 8.3rem;
}
.blog-container .card .card-body .card-date {
  color: var(--floor-blaugruen);
  font-weight: 600;
}
.blog-container .card .card-body .card-title {
  margin-bottom: 0;
}
.blog-container .card .card-body .card-title a {
  color: black;
  text-decoration: none;
  font-size: var(--h4-font-size);
}
.blog-container .card .card-button {
  padding-left: 25px !important;
  padding-right: 25px !important;
  text-align: center;
  padding-bottom: 2rem !important;
}
.blog-container .card .card-button .btn-outline-primary {
  padding: 0.5rem 2rem;
}
.blog-container .pagination {
  margin-top: 5rem;
}
.blog-container .pagination .btn.btn-outline-primary.next, .blog-container .pagination .btn.btn-outline-primary.prev {
  display: flex;
  width: auto;
}

.popup {
  position: fixed;
  background: rgba(255, 255, 255, 0.95);
  height: 0;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  z-index: -1;
}
.popup.animated {
  padding: 12px;
  height: 100%;
  display: flex;
  z-index: 200;
}
@media (min-width: 768px) {
  .popup.animated {
    padding: 2rem;
  }
}
.popup .popup__inner {
  z-index: 2;
  padding: 20px 20px;
  height: auto;
  max-width: 60rem;
  width: 100%;
  margin: auto;
  display: block;
  position: relative;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.25);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.25);
  background-image: url("../assets/img/absperrband.svg");
  background-repeat: no-repeat;
  background-position: -80px -100px, 100% 100%;
  background-size: cover;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  outline: 0;
}
@media (min-width: 768px) {
  .popup .popup__inner {
    padding: 4rem 6rem 2rem 6rem;
  }
}
@media (min-width: 768px) {
  .popup .popup__inner {
    background-position: -180px -120px, 100% 100%;
    background-size: 100% calc(100% + 120px);
  }
}
.popup .popup__inner .popup__close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
.popup .popup-body {
  position: relative;
  padding: 0 15px;
}
.popup .popup-body h2 {
  margin-bottom: 30px;
}
.popup .popup-body .btn {
  margin-top: 20px;
}

html {
  display: block;
  overflow-x: hidden;
}

body {
  display: block;
  position: relative;
  overflow-x: hidden;
}
body a, body a:hover {
  text-underline-offset: 3px;
}
body #main-nav-classic .navbar-brand {
  padding: 18px 15px 18px 0;
}
body .page-content {
  margin-bottom: 8rem;
  margin-top: 8rem;
}
@media (max-width: 991.98px) {
  body .page-content {
    margin-top: 3rem;
  }
}
@media (min-width: 992px) {
  body .page-content {
    padding-left: 115px;
    padding-right: 115px;
  }
}
body .page-content h1, body .page-content h2, body .page-content h3 {
  margin-bottom: 1.4rem;
}
@media (max-width: 1199.98px) {
  body .page-content h1 {
    font-size: 1.8rem;
  }
  body .page-content h2 {
    font-size: 1.5rem;
  }
}
body .page-content h6 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
body .page-content h6.is-style-underline {
  width: auto;
  display: inline-block;
  padding-bottom: 0.5rem !important;
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  border-bottom: 6px solid var(--floor-schwarz);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
body .page-content a {
  color: var(--floor-blaugruen);
}
body .page-content a:hover {
  color: var(--floor-schwarz);
}
body .page-content a.wp-element-button {
  color: var(--floor-weiss);
}
body .page-content .floor-spacer-block {
  height: 30px;
}
@media (max-width: 991.98px) {
  body .page-content .floor-spacer-block {
    height: 10px;
  }
}
body .page-content ul {
  list-style: none;
}
@media (min-width: 992px) {
  body .page-content ul {
    width: 66%;
    margin: 0 auto;
  }
}
@media (max-width: 991.98px) {
  body .page-content ul {
    word-wrap: break-word;
  }
}
body .page-content ul li {
  font-size: var(--h2-font-size);
  font-weight: var(--headings-font-weight);
  line-height: var(--headings-line-height);
  margin: 0.5rem 0 1rem 0;
  padding-bottom: 1rem;
  border-bottom: 3px solid var(--floor-blaugruen-lighter6);
}
@media (max-width: 991.98px) {
  body .page-content .btn-item {
    display: block !important;
    margin-top: 1.5rem;
  }
}
body .page-content .btn.btn-outline-primary {
  color: var(--project-dark);
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-weight: var(--headings-font-weight);
  padding: 0.5rem 3rem;
  border-width: 2px;
  border-radius: 0;
  border-color: var(--project-dark);
  background-color: var(--floor-weiss);
}
@media (max-width: 991.98px) {
  body .page-content .btn.btn-outline-primary {
    padding: 0.5rem 1rem;
    width: 100%;
    max-width: 300px;
  }
}
body .page-content .btn:hover {
  background-color: var(--floor-weiss);
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}
body .page-content .btn-check:focus + .btn-outline-primary, body .page-content .btn-outline-primary:focus {
  box-shadow: unset;
}
body .page-content .f7-wide-content {
  margin-left: -12px;
  margin-right: -12px;
}
@media (min-width: 768px) {
  body .page-content .f7-wide-content {
    width: auto;
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  body .page-content .f7-wide-content {
    width: auto;
    margin-left: -115px;
    margin-right: -115px;
  }
}
@media (min-width: 1200px) {
  body .page-content .wp-block-columns.is-layout-flex {
    column-gap: 100px;
  }
}
@media (min-width: 992px) {
  body .page-content .wp-block-columns.jobd .is-vertically-aligned-top {
    margin-top: -100px;
  }
  body .page-content .wp-block-columns.jobd .is-vertically-aligned-bottom {
    margin-bottom: -22px;
  }
}
@media (max-width: 1199.98px) {
  body .page-content .wp-block-columns.jobd .is-vertically-aligned-bottom a {
    color: black;
  }
}
body .page-content .wp-block-columns.is-style-slashed {
  background: linear-gradient(-60deg, white 10% 55%, var(--floor-blaugruen) 55% 62%, white 62%);
  padding: 0;
}
@media (max-width: 1199.98px) {
  body .page-content .wp-block-columns.is-style-slashed {
    flex-wrap: wrap !important;
  }
}
body .page-content .is-style-underline {
  padding-bottom: 30px;
  margin-bottom: 0;
  border-bottom: 15px solid var(--floor-schwarz);
}
@media (max-width: 1199.98px) {
  body .page-content h1, body .page-content h2, body .page-content h3, body .page-content h4, body .page-content h5 {
    word-break: break-word;
  }
}
body strong {
  font-weight: 600;
}
body .fullboxedwidth {
  display: block !important;
}
body .fullboxedwidth.has-x-large-font-size {
  font-size: 1.65rem !important;
}
@media (min-width: 576px) {
  body .fullboxedwidth.has-x-large-font-size {
    font-size: 2.25rem !important;
  }
}
@media (min-width: 768px) {
  body .fullboxedwidth.has-x-large-font-size {
    font-size: 3.15rem !important;
  }
}
@media (min-width: 992px) {
  body .fullboxedwidth.has-x-large-font-size {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 1200px) {
  body .fullboxedwidth.has-x-large-font-size {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 992px) {
  body .fullboxedwidth {
    margin-left: -115px;
    margin-right: -115px;
  }
}
@media (max-width: 1399.98px) {
  body .fullboxedwidth.has-x-large-font-size {
    word-break: break-word;
  }
}
body .fullwidth {
  width: 100vw;
  position: relative;
  margin-left: -50vw;
  left: 50%;
  background-color: #FFF;
}
body .fullwidth > .container {
  padding-left: 12px;
  padding-right: 12px;
}
@media (min-width: 1200px) {
  body .fullwidth > .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 1199.98px) {
  body .fullwidth {
    margin-bottom: 2rem !important;
  }
}
body .fullwidth.has-image {
  background-color: transparent;
}
body .fullwidth.standortkarte {
  padding-top: 15rem !important;
  padding-bottom: 15rem !important;
}
body .floor-x {
  margin: 0 auto;
}
@media (max-width: 1199.98px) {
  body .floor-x {
    width: 100%;
  }
}
body .floor-x figure {
  text-align: center;
  margin-bottom: 2.5rem;
}
body .floor-x figure img {
  width: auto;
}
body .has-x-large-font-size {
  word-wrap: break-word;
  display: inline-flex;
  font-size: 3.6rem !important;
}
@media (min-width: 576px) {
  body .has-x-large-font-size {
    font-size: 4.25rem !important;
  }
}
@media (min-width: 768px) {
  body .has-x-large-font-size {
    font-size: 4.5rem !important;
  }
}
@media (min-width: 992px) {
  body .has-x-large-font-size {
    font-size: 4.75rem !important;
  }
}
@media (min-width: 1200px) {
  body .has-x-large-font-size {
    font-size: 5rem !important;
  }
}
@media (min-width: 1400px) {
  body .has-x-large-font-size {
    display: block;
    font-size: 6.25rem !important;
  }
}
@media (max-width: 991.98px) {
  body .has-medium-font-size {
    font-size: 1.5rem !important;
    word-wrap: break-word;
  }
  body .has-large-font-size {
    font-size: 2rem !important;
    word-wrap: break-word;
  }
}
body .floor-anchor-block {
  text-transform: uppercase;
  padding-bottom: 10px;
  display: inline-block;
  border-bottom: 10px solid var(--floor-schwarz);
  letter-spacing: 3px;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  body .floor-anchor-block {
    margin-left: -115px;
  }
}
@media (max-width: 991.98px) {
  body .floor-anchor-block {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}
body .h-projekte {
  height: 500px;
  background: rgb(0, 150, 169);
  background: linear-gradient(90deg, rgb(0, 150, 169) 0%, rgb(250, 231, 0) 35%, rgb(0, 167, 235) 100%);
}
@media (min-width: 768px) {
  body .h-projekte .floor-anchor-block {
    margin-left: -22px;
  }
}
body .w404 {
  margin-top: 8rem !important;
}
body .w404 .error-404-digit {
  padding: 0 25px;
  background-color: transparent;
  border: 5px solid var(--floor-blaugruen);
  color: var(--floor-blaugruen);
  margin-right: 1rem;
}
body .floor-stripes-block {
  margin-bottom: -8rem;
  text-align: right;
  overflow: hidden;
  margin-right: -12px;
}
@media (min-width: 576px) {
  body .floor-stripes-block {
    overflow: auto;
    margin-right: 0;
  }
}
body .floor-stripes-block svg {
  width: 455px;
  height: 230px;
}
@media (max-width: 991.98px) {
  body .wp-block-media-text {
    grid-template-columns: 100% !important;
  }
  body .wp-block-media-text .wp-block-media-text__content {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }
  body .wp-block-media-text .wp-block-media-text__media {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
}
body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
  margin-top: 15px;
  padding: 0;
}
@media (min-width: 768px) {
  body .wp-block-media-text.has-media-on-the-right .wp-block-media-text__content {
    padding-left: 0;
    padding-right: 6rem;
  }
}

.single-post date {
  color: #0091AF;
  text-transform: uppercase;
}
.single-post h1 {
  margin-top: 2rem;
  font-size: 4em;
  min-width: 70%;
  max-width: 40rem;
}
.single-post .post-featured-image {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
}
.single-post .breadcrumb-container {
  display: none;
}

.f7referenz {
  align-items: center;
}
.f7referenz .col .col-inner img {
  max-width: 100%;
}

.gallery__item {
  position: relative;
  overflow: hidden;
}
.gallery__item a img, .gallery__item a svg {
  transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}
.gallery__item a img:hover, .gallery__item a svg:hover {
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

#BorlabsCookieBoxWidget svg {
  color: var(--floor-blaugruen-lighter2);
}

/*
.wp-block-embed__wrapper,
.wp-block-video {
  overflow: hidden;
  padding-top: 56.25%;
  position: relative;
  .BorlabsCookie {
    margin-top: -56.25%;
  }
  iframe,
  video {
    border: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
*/
.f7circle {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 39.7 39.7' style='enable-background:new 0 0 39.7 39.7;' xml:space='preserve'%3E%3Cg%3E%3Cpath fill='%23F2F2F2' d='M19.4,5.9c-7.8,0-14.2,6.4-14.2,14.2s6.3,14.2,14.2,14.2s14.2-6.4,14.2-14.2S27.2,5.9,19.4,5.9z M19.4,32.4c-6.8,0-12.3-5.5-12.3-12.3S12.6,7.8,19.4,7.8s12.3,5.5,12.3,12.3S26.1,32.4,19.4,32.4z' /%3E%3Cpolygon fill='%23F2F2F2' class='f7-seven' points='22.6,15.7 15.6,27.8 17.9,27.8 24.9,15.6 24.9,13.6 13.8,13.6 13.8,15.5 22.7,15.5' /%3E%3C/g%3E%3C/svg%3E");
  background-position: bottom 80px right 0;
  background-repeat: no-repeat;
  margin-top: -130px;
  z-index: -1;
}
@media (max-width: 1199.98px) {
  .f7circle {
    background-position: top right;
  }
}
.f7circle img {
  display: inline-block;
  margin-top: 100px;
}

.wpcf7 form .wpcf7-response-output {
  border-color: unset;
  border: unset;
  font-size: 1.5rem;
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}

.absperrband, .absperrband-md {
  background-image: url("../assets/img/absperrband.svg");
  background-repeat: no-repeat;
  display: flex !important;
  padding-bottom: 60px;
  padding-top: 60px;
  background-size: contain;
  background-position: left center;
}
.absperrbandh2, .absperrband-mdh2 {
  font-size: 2.75rem !important;
}
@media (min-width: 576px) {
  .absperrbandh2, .absperrband-mdh2 {
    font-size: 4rem !important;
  }
}
@media (min-width: 768px) {
  .absperrband, .absperrband-md {
    padding-bottom: 180px;
    padding-top: 90px;
    background-position: center;
  }
}

.absperrband-md {
  background-size: 80%;
  background-position: center 40%;
}

.seven-icon:after {
  background-image: url("../assets/img/7icon.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.container-width-75.seven-icon:after {
  display: none;
}
@media (min-width: 992px) {
  .container-width-75.seven-icon:after {
    content: "";
    display: block;
    z-index: 2;
    position: absolute;
    width: 100%;
    height: 300px;
    top: 40%;
    left: 75%;
  }
}
@media (min-width: 1200px) {
  .container-width-75.seven-icon:after {
    top: 25%;
    height: 340px;
  }
}
@media (min-width: 1400px) {
  .container-width-75.seven-icon:after {
    height: 365px;
  }
}

.container-width-75.absperrband {
  padding-top: 80px;
  padding-bottom: 60px;
  background-size: contain;
}
@media (min-width: 992px) {
  .container-width-75.absperrband {
    padding-top: 120px;
    padding-bottom: 140px;
  }
}

.move-top {
  position: relative;
}
@media (min-width: 768px) {
  .move-top {
    top: -200px;
  }
}

.wp-block-image figcaption {
  position: static;
  padding: 1.5rem 1rem;
  display: block;
  width: 100%;
  text-align: center;
}

.single-referenzen .breadcrumb-container {
  display: none;
}
.single-referenzen .f7featuredlogo {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 160px;
  padding-bottom: 6rem;
  text-align: center;
}
.single-referenzen .f7featuredlogo img {
  max-width: 100%;
  height: auto;
}
@media (max-width: 1199.98px) {
  .single-referenzen .f7featuredlogo {
    margin-top: 0;
    padding-bottom: 2rem;
  }
}
.single-referenzen.postid-182 .f7featuredlogo img {
  width: 400px;
}

footer a:hover {
  color: var(--footer-link-hover-color);
}
footer a:hover path {
  fill: var(--footer-link-hover-color) !important;
}
footer a svg {
  width: 30px;
  height: 30px;
}
footer .menu-footer-menu-container {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
footer .menu-footer-menu-container a {
  font-weight: 500;
}
@media (min-width: 768px) {
  footer .menu-footer-menu-container .list-group-item {
    padding: 0;
  }
  footer .menu-footer-menu-container .list-group-item a {
    margin: 0 10px;
    display: inline-block;
  }
  footer .menu-footer-menu-container li + li::before {
    content: "/";
    color: white;
  }
}