@charset "UTF-8";
/* inter-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: "Inter";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/inter-v20-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-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: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-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: "Inter";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/inter-v20-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-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: "Inter";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/inter-v20-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-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: "Inter";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/inter-v20-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-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: "Inter";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/inter-v20-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-800 - 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: "Inter";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/inter-v20-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* inter-900 - 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: "Inter";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/inter-v20-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

html, body {
  font-size: 16px;
  -webkit-hyphens: none;
          hyphens: none;
  min-height: 100vh;
}

* {
  line-height: calc(1em + 0.8rem);
  -webkit-hyphens: none;
          hyphens: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  -webkit-hyphens: none;
          hyphens: none;
}

h1 {
  font-size: 2.5rem;
  color: var(--rot);
  text-transform: uppercase;
  font-weight: 300;
  padding-bottom: 0;
  margin-bottom: 0;
}

h2 {
  font-size: 2.5rem;
  color: var(--grau);
  font-weight: 300;
  margin-top: 0rem;
  padding-top: 0;
  margin-top: 0;
}

h3 {
  font-size: 1.875rem;
  line-height: 2.3rem;
  font-weight: 300;
  margin-top: 2rem;
  color: var(--rot);
}

.txt-color-gruen {
  color: var(--gruen-navi);
}

.txt-color-white, .txt-color-weiss {
  color: white !important;
}

.txt-color-red {
  color: var(--rot);
}

p, li {
  overflow-wrap: break-word;
  -webkit-hyphens: none;
          hyphens: none;
  color: var(--rost);
  font-size: 1.5625rem;
  line-height: 1.9rem;
}

p.big {
  font-size: 1.875rem;
  line-height: 2.3rem;
}

#wrapper {
  min-height: 100vh;
  width: 100vw;
  overflow-x: hidden;
  position: relative;
}

::-moz-selection {
  color: rgb(255, 255, 255);
  background: #9b9b9b;
}

::selection {
  color: rgb(255, 255, 255);
  background: #9b9b9b;
}

/* Basis Styling */
#hamburger {
  z-index: 100;
  transform: scale(1.1);
}

.hamburger-icon-container {
  height: 1.7em;
  width: 1.7em;
  position: relative;
  cursor: pointer;
  background: none;
  border: 0px solid currentColor;
  border-radius: 3px;
}

.hamburger-icon,
.hamburger-icon:before,
.hamburger-icon:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 1.7em;
  background: #3C3D3E;
  transition: all 0.2s ease;
}

.hamburger-icon {
  top: 0.75em;
}

.hamburger-icon:before {
  top: -0.55em;
}

.hamburger-icon:after {
  top: 0.55em;
}

.hamburger-active .hamburger-icon {
  background: transparent;
  transform: rotate(-135deg);
}

.hamburger-active .hamburger-icon:before,
.hamburger-active .hamburger-icon:after {
  top: 0;
}

.hamburger-active .hamburger-icon:before {
  transform: rotate(90deg);
}

@media only screen and (max-width: 962px) {
  #hamburger {
    transform: scale(1);
  }
}
#header {
  padding: 0 0;
  z-index: 300;
  position: fixed;
  width: 100vw;
  background-color: #fff;
  box-shadow: 0px 4px 8px -1px #000000;
}
#header .inside {
  max-width: var(--max-width-header);
  margin: 0 auto;
}

.header-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto auto;
  align-items: center;
  padding-top: 1rem;
  max-width: 1920px;
  padding-left: 2rem;
  padding-right: 2rem;
}

/* Logo Section - 2 columns */
.header-logo {
  grid-column: 1/4;
  grid-row: span 4;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#btn_nav {
  display: none;
}

#topNav {
  grid-column: 5/-1;
  grid-row: 3/4;
}
#topNav ul li.submenu {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.contact,
.btn-gedenkportal {
  grid-column: 9/-1;
  grid-row: 1/2;
  font-family: var(--font-family);
  font-size: 1.5625rem;
  font-weight: bold;
  text-align: center;
  font-size: 1.875rem;
  justify-self: flex-end;
  cursor: pointer;
}
.contact a,
.btn-gedenkportal a {
  text-decoration: none;
  color: var(--rot);
  font-size: 1.25rem;
  font-weight: 200;
  position: relative;
  top: -1.5rem;
}
.contact #cT,
.btn-gedenkportal #cT {
  display: inline-block;
  text-align: right;
}
.contact #cT .callTel,
.btn-gedenkportal #cT .callTel {
  display: flex;
  align-items: center;
  font-size: 1.875rem;
  margin-bottom: 0;
  padding-bottom: 0;
  margin-top: 0;
}
.contact #cT .callTel:before,
.btn-gedenkportal #cT .callTel:before {
  content: url(../hg/24_hoerer.png);
  display: block;
  width: 56px;
  height: 56px;
  margin-bottom: 0.25rem;
  padding-right: 4rem;
}
.contact p,
.btn-gedenkportal p {
  text-transform: uppercase;
  line-height: 0;
}

.btn-gedenkportal {
  grid-column: 9/11;
  font-family: var(--font-family);
}

.header-logo h1 {
  font-size: 2.25rem;
  font-weight: bold;
  letter-spacing: 0.1875rem;
  color: white;
  margin-bottom: 0.125rem;
}

.header-logo p {
  font-size: 0.875rem;
  color: white;
  letter-spacing: 0.0625rem;
}

/* Contact Locations - 6 columns (3 locations x 2 columns each) */
.contact-location {
  grid-column: span 2;
}

.contact-location h3 {
  font-size: 0.8125rem;
  font-weight: normal;
  color: #2d9b8e;
  margin-bottom: 0;
  margin-top: 0;
}

.contact-location a {
  color: #2d9b8e;
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: bold;
  display: block;
}

.contact-location a:hover {
  text-decoration: underline;
}

/* Navigation Links - 4 columns */
.header-nav {
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  align-items: flex-start;
}

.header-nav a {
  color: #2d9b8e;
  text-decoration: none;
  font-size: 1.3rem;
  font-weight: 900;
  transition: color 0.3s;
}

.header-nav a:hover {
  color: #3dbaa8;
  text-decoration: underline;
}

/* Menu Icon - Mobile */
.menu-icon {
  display: flex;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 5px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3125rem;
  grid-column: span 1;
  grid-column: 12/13;
}

.menu-icon span {
  width: 1.5625rem;
  height: 0.1875rem;
  background-color: #2d9b8e;
  border-radius: 2px;
  display: block;
}

.btnTop a {
  text-decoration: none;
  color: #000;
}

/* Responsive Design */
@media (max-width: 450px) {
  .btn-gedenkportal p.btnTop {
    line-height: 1.7rem;
  }
  .contact p,
  .btn-gedenkportal p.btnTop {
    font-size: 1.5rem;
  }
}
footer {
  background: var(--lila);
  font-family: var(--font-family);
  color: #fff;
  --font-size: 1.2rem;
}
footer .inside {
  padding: 0 2rem;
}
footer .inside h1,
footer .inside h2,
footer .inside h3 {
  color: white;
}

#footerH {
  max-width: var(--footer-max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(5, auto);
  font-size: var(--font-size);
}

/* Logo Section - 3 columns */
.footer-logo {
  grid-column: 5/8;
  grid-row: 1/2;
  justify-self: center;
  margin-bottom: 5rem;
}

.location {
  grid-column: 2/span 2;
  grid-row: 2/3;
  margin-bottom: 1rem;
}
.location.center {
  grid-column: 4/span 3;
}
.location.right {
  grid-column: 8/span 3;
}

.footer-links {
  grid-column: 1/-1;
  grid-row: 4/5;
  display: flex;
  justify-content: space-between;
  padding-top: 2rem;
}
.footer-links a {
  display: block;
  color: var(--rot) !important;
  line-height: 1.2rem;
  font-size: 2.2rem;
}

.location {
  color: var(--rot);
}
.location span {
  display: block;
  line-height: 1.5rem;
}

#gh-text {
  grid-column: 1/-1;
  grid-row: 3/4;
  color: #000;
  text-align: center;
}

/* Locations Grid - Each location takes 3 columns */
.location-icon {
  display: inline-block;
  margin-right: 0.5rem;
}

.location h3 {
  font-size: 1.5rem;
  margin-bottom: 0.025rem;
  font-weight: 600;
}

.location p {
  margin-bottom: 0;
  margin-top: 0;
  font-size: var(--font-size);
}

.location a {
  color: white;
  text-decoration: none;
  font-size: var(--font-size);
  font-weight: bold;
  display: block;
}

.location a:hover {
  text-decoration: underline;
}

.footer-links a, .footer-links-re a {
  color: var(--gruen-txt);
  text-decoration: none;
  font-size: var(--font-size);
  line-height: 1.8rem;
}

.footer-links a:hover, .footer-links-re a:hover {
  text-decoration: underline;
}

/* Email Section - Full width grid */
.contact-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.875rem;
  margin-bottom: 2.5rem;
}

.email-link {
  grid-column: span 6;
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  flex-direction: column;
}

.email-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.125rem;
  height: 3.125rem;
  border-radius: 50%;
  font-size: 1.5rem;
}

.email-link a {
  color: white;
  text-decoration: underline;
  font-size: 1.5rem;
  font-weight: 900;
}

/* Bottom Section with Grid */
.footer-bottom {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.875rem;
  align-items: center;
}

.gender-note {
  grid-column: span 2;
  font-size: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 400;
  display: inline-block;
}

.gender-note:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.certifications {
  grid-column: 7/-1;
  display: flex;
  gap: 1.875rem;
  align-items: center;
  flex-wrap: wrap;
}

.cert-logo {
  height: 5rem;
  padding: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icon {
  width: 3.75rem;
  height: 3.75rem;
  background: #1877f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.875rem;
  font-weight: bold;
  text-decoration: none;
}

/* Responsive Grid */
@media (max-width: 90px) {
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(4, auto);
    font-size: 1.875rem;
  }
  .footer-grid .footer-logo {
    grid-column: 5/9;
    grid-row: 1/2;
    justify-self: center;
  }
  .footer-grid .footer-logo img {
    margin-bottom: 2rem;
  }
  .footer-grid .location {
    grid-column: 1/6;
    grid-row: 3/4;
  }
  .footer-grid .footer-links {
    grid-column: 8/-1;
    grid-row: 3/4;
    justify-self: end;
    color: var(--rot);
  }
  .footer-grid .footer-links a {
    color: var(--rot);
  }
}
@media (max-width: 840px) {
  .locationF {
    display: block;
  }
}
@media (max-width: 68px) {
  .footer-logo,
  .emergency-contact,
  .location,
  .footer-links {
    grid-column: span 12;
  }
  .emergency-contact {
    text-align: left;
    align-items: flex-start;
  }
  .email-link {
    grid-column: span 12;
  }
  .gender-note {
    grid-column: span 12;
  }
  .certifications {
    grid-column: span 12;
  }
  .footer-grid {
    align-items: center;
  }
  .footer-grid .location {
    display: grid;
    grid-column: 1/8;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto;
    padding: 1rem;
  }
  .footer-grid .location h3 {
    margin-top: 0rem;
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .footer-grid .location p {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .footer-grid .location a {
    grid-column: 3/5;
    grid-row: 1/2;
    margin-top: 0rem;
    line-height: 3rem;
  }
  .footer-grid .footer-logo {
    grid-column: 4/10;
  }
}
@media (max-width: 50px) {
  .footer-grid {
    align-items: center;
  }
  .footer-grid .location {
    display: grid;
    grid-column: 1/-1;
    grid-row: 2/3;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto auto;
    padding: 1rem;
    justify-self: center;
    text-align: center;
  }
  .footer-grid .location h3 {
    margin-top: 0rem;
    grid-column: 1/3;
    grid-row: 1/2;
  }
  .footer-grid .location p {
    grid-column: 1/3;
    grid-row: 2/3;
  }
  .footer-grid .location a {
    grid-column: 3/5;
    grid-row: 1/2;
    margin-top: 0rem;
    line-height: 3rem;
  }
  .footer-grid .footer-logo {
    grid-column: 3/11;
  }
  .footer-grid .footer-links {
    grid-column: 1/-1;
    justify-self: center;
    margin-bottom: 2rem;
  }
}
/* Basis Styling */
.hamburger-icon-container {
  height: 1.7em;
  width: 1.7em;
  position: relative;
  cursor: pointer;
  border-radius: 3px;
}
.hamburger-icon-container.white .hamburger-icon,
.hamburger-icon-container.white .hamburger-icon:before,
.hamburger-icon-container.white .hamburger-icon:after {
  background: #fff !important;
}

.hamburger-icon,
.hamburger-icon:before,
.hamburger-icon:after {
  content: "";
  position: absolute;
  height: 3px;
  width: 1.7em;
  background: #000;
  transition: all 0.2s ease;
}

.hamburger-icon {
  top: 0.75em;
}

.hamburger-icon:before {
  top: -0.55em;
}

#hamburger {
  cursor: pointer;
}
#hamburger img {
  max-height: 50px;
}

.hamburger-icon:after {
  top: 0.55em;
} 
:root {
  --navwidth: 100vw;
  --navheight: 100vh;
  --active: #fff;
  --font: "Quattrocento Sans";
}

.closePP {
  display: flex;
  align-items: center;
}

#left {
  width: var(--navwidth);
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  overflow-y: auto;
  background: #000;
  z-index: 20000;
  margin-left: 0;
  transform-origin: center top;
  opacity: 0;
  display: none;
  transition: all 0.3s ease-in-out;
}
#left #navigation {
  display: flex;
  flex-direction: column;
  height: 100vh;
  justify-content: center;
}
#left #navigation #navHolder {
  width: 100vw;
  gap: 1rem;
  overflow: scroll;
}
#left #navigation #navHolder .row {
  width: 100%;
}
#left #navigation #navHolder .row .level_1 {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  padding-bottom: 10rem;
  padding-left: 15vw;
  height: 70vh;
}
#left #navigation #navHolder .row .level_1 li.submenu {
  display: grid;
  grid-template-columns: 30% 70%;
  position: relative;
}
#left #navigation #navHolder .row .level_1 li.submenu:hover .level_2 {
  opacity: 1;
  visibility: visible;
  transform: translateX(0px);
  transition: all 0.5s ease-in-out;
}
#left #navigation #navHolder .row .level_1 li.submenu:hover .level_2 a,
#left #navigation #navHolder .row .level_1 li.submenu:hover .level_2 strong {
  color: #fff;
  background-color: transparent;
  line-height: 3rem;
}
#left #navigation #navHolder .row .level_1 > li {
  position: relative;
  z-index: 20;
}
#left #navigation #navHolder .row .level_1 > li.active {
  border-left: 3px solid var(--lila);
}
#left #navigation #navHolder .row .level_1 > li a,
#left #navigation #navHolder .row .level_1 > li strong {
  color: #f3ecdf;
  font-size: 2.8rem;
  font-weight: bold;
  padding: 0.5rem 0.5rem;
  display: inline-block;
  text-decoration: none;
  position: relative;
  font-style: normal;
  font-family: var(--font);
  text-transform: uppercase;
}
#left #navigation #navHolder .row .level_1 > li a.active,
#left #navigation #navHolder .row .level_1 > li strong.active {
  color: var(--lila);
}
#left #navigation #navHolder .row .level_1 > li strong {
  color: var(--rose);
  cursor: pointer;
}
#left #navigation #navHolder .row .level_1 > li strong.active, #left #navigation #navHolder .row .level_1 > li strong.trail {
  color: #fff !important;
}
#left #navigation #navHolder .row .level_1 > li .level_2 {
  list-style: none !important;
  margin-left: 0;
  padding-left: 10px;
  z-index: 1000;
  opacity: 0;
  position: absolute;
  left: 39%;
}
#left #navigation #navHolder .row .level_1 > li .level_2 li {
  list-style: none !important;
  padding: 0.5rem 0;
}
#left #navigation #navHolder .row .level_1 > li .level_2 li a,
#left #navigation #navHolder .row .level_1 > li .level_2 li strong {
  color: #fff;
  font-size: 2.5rem;
  font-weight: bold;
  padding: 0;
  line-height: 3.9rem;
  font-family: var(--font);
  text-transform: uppercase;
}
#left #navigation #navHolder .row .level_1 > li .level_2 li a:hover,
#left #navigation #navHolder .row .level_1 > li .level_2 li strong:hover {
  color: var(--lila) !important;
}
#left #navigation #navHolder .row .level_1 > li .level_2 li strong.active {
  color: var(--lila) !important;
}
#left #navigation #navHolder .row .level_1 > li .level_2 li.active strong.active {
  color: var(--lila) !important;
}
#left #navigation #navHolder .row .level_1 > li .level_2 strong {
  color: #3f3d3b !important;
  font-weight: 400;
}
#left #navigation #navHolder .row .level_1 > li:hover {
  z-index: 2000000;
}
#left #navigation #navHolder .row .level_1 > li strong.trail.hide + .level_2 {
  visibility: hidden;
  opacity: 0;
  transform: translateX(50px);
}
#left #navigation #navHolder .row .level_1 > li:hover a,
#left #navigation #navHolder .row .level_1 > li:hover strong {
  color: var(--lila);
  background: #fff !important;
}
#left #navigation #navHolder .row .level_1 > li:hover .level_2 a,
#left #navigation #navHolder .row .level_1 > li:hover .level_2 strong {
  background-color: transparent !important;
}
#left #navigation #navHolder .row.first {
  text-align: right;
  position: relative;
  grid-row: 1/2;
  background-color: #fff;
}
#left #navigation #navHolder .row.first #btn_close {
  position: absolute;
  top: 1rem;
  right: 10%;
  cursor: pointer;
  color: #fff;
}
#left #navigation #navHolder .row.second {
  grid-row: 2/3;
  position: relative;
  background-color: var(--gruen-navi);
  padding: 5rem 2rem;
}
#left #navigation #navHolder .row.second .head {
  font-size: 1.4rem;
  line-height: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 2rem;
  text-transform: uppercase;
  font-family: var(--font);
  text-transform: none;
  text-decoration: none;
}
#left #navigation #navHolder .row.second .head a {
  color: #fff;
  text-decoration: none;
  line-height: 1.5rem !important;
}
#left #navigation #navHolder .row.second .item a {
  font-weight: normal;
  text-transform: none;
  color: var(--rot);
  text-decoration: none;
  font-size: 1.4rem;
  display: block;
  line-height: 2rem;
  margin-bottom: 2rem;
}
#left #navigation #navHolder .row.second .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0 auto;
  max-width: 1200px;
}
#left #navigation #navHolder .row.second .grid .one {
  grid-column: 1/2;
}
#left #navigation #navHolder .row.second .grid .two {
  grid-column: 2/3;
}
#left #navigation #navHolder .row.second .grid .three {
  grid-column: 3/4;
}
#left #navigation #navHolder .row.second .grid .four {
  grid-column: 4/5;
}
#left #navigation #navHolder .row.second .grid .five {
  grid-column: 5/6;
}
#left #navigation #navHolder .row.second #btn_close {
  position: absolute;
  top: 1rem;
  right: 0;
  cursor: pointer;
}
#left strong.kontakthead,
#left a.kontakthead {
  display: none !important;
}
#left nav.mod_navigation.block {
  overflow: visible !important;
}

body.showNavP #left {
  transform: translateY(0);
  display: block;
  /* animate opacity/visibility instead of snapping */
  animation: showLeft 600ms ease-in-out forwards;
}

/* Entrance animation for #left
   - element defaults to display:none & opacity:0
   - stays invisible (opacity:0) until 50%, then fades to opacity:1 by 100%
   - visibility is switched so element can be revealed without display:none blocking the animation
*/
@keyframes showLeft {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
  }
  49% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
/* Exit animation (reverse) */
@keyframes hideLeft {
  0% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
  }
}
/* Utility class to trigger the same animation when needed */
#left.animate {
  display: block;
  animation: showLeft 600ms ease-in-out forwards;
}

/* Class applied to run the hide animation before actually hiding */
#left.animating-out {
  display: block; /* keep visible while animating */
  animation: hideLeft 400ms ease-in-out forwards !important;
  pointer-events: none;
}

#left #navigation #navHolder .row .level_1 > li.active:hover strong {
  color: var(--lila) !important;
}

.kontakthead li a,
.kontakthead li strong {
  color: #fff;
  font-size: 1rem !important;
  font-weight: 600 !important;
  padding: 1rem 0.5rem;
  display: block;
  text-decoration: none;
  position: relative;
  text-transform: uppercase;
  font-family: "Libre Bodoni";
}
.kontakthead li a.active,
.kontakthead li strong.active {
  color: var(--active);
}

.hamburger-active #left {
  transform: translateX(0px);
}

@media only screen and (max-width: 1310px) {
  #left #navigation #navHolder .row .level_1 li.submenu {
    display: grid;
    grid-template-columns: 100%;
    position: relative;
  }
  #left #navigation #navHolder .row .level_1 > li .level_2 {
    list-style: none !important;
    margin-left: 0;
    padding-left: 3rem;
    z-index: 1000;
    opacity: 1;
    position: static;
  }
  #left #navigation #navHolder .row .level_1 > li .level_2 li a, #left #navigation #navHolder .row .level_1 > li .level_2 li strong {
    color: #fff;
    font-size: 1.5rem;
    font-weight: bold;
    padding: 0;
    line-height: 1.9rem;
    font-family: var(--font);
    text-transform: uppercase;
  }
}
@media only screen and (max-width: 760px) {
  #left #navigation #navHolder .column .level_1 li a,
  #left #navigation #navHolder .column .level_1 li strong {
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
  }
  #left #navigation #navHolder .column .level_1 li .level_2 {
    list-style: none !important;
    position: static;
    margin-left: 0;
    top: 0;
    z-index: 100000000;
    opacity: 1;
    transition: transform 0.2s;
    transform: translateX(0);
  }
  .mod_navigation {
    margin-top: 0rem;
  }
  #left #navigation .level_1 li.submenu {
    flex: 0 0 48%;
  }
  #left #navigation #navHolder {
    gap: 0%;
  }
  #left #navigation #navHolder .row .level_1 li a,
  #left #navigation #navHolder .row .level_1 li strong {
    font-size: 2.8rem;
  }
}
@media only screen and (max-width: 500px) {
  #left #navigation .level_1 li.submenu {
    flex: 0 0 100%;
  }
  #left #navigation .level_1 {
    padding-left: 0;
  }
  #left #navigation .level_1 li {
    text-align: left !important;
  }
  #left #navigation .level_1 li a,
  #left #navigation .level_1 li strong {
    text-align: left !important;
  }
  #left #navigation #navHolder .row .level_1 {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
    padding-bottom: 10rem;
    padding-left: 3rem;
  }
}
#kontakt .formbody {
  padding: 2rem;
}

#kontakt .formbody .flexform {
  display: flex;
}

#kontakt .formbody .flexform .column {
  flex: 0 0 50%;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#kontakt .formbody .flexform .column input,
#kontakt .formbody .flexform .column textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 5px;
  margin-bottom: 0;
  border: 0;
}

#kontakt .formbody .flexform .column textarea {
  height: 100%;
}

#kontakt fieldset {
  border: 0;
}

#kontakt .explanation,
#kontakt label {
  color: var(--gelb);
  font-weight: 500;
}

#ctrl_112 {
  border: 0 !important;
}

#kontakt button {
  background-color: var(--lila);
  color: white;
  border: 0;
  padding: 1rem;
  display: table;
  margin: 0 auto;
}

#kontakt .widget {
  display: flex;
  flex-direction: column;
  margin-right: 2rem;
  margin-top: 2rem;
}

#kontakt .widget-submit {
  margin-top: 2rem;
  margin-right: 0;
}

#kontakt .flexrow {
  margin-top: 0;
}

#kontakt h2 {
  margin-top: 3rem;
  /* text-transform: uppercase;
  font-size:1.5rem;
  font-weight: 500; */
}

#kontakt .flexrow .widget {
  flex: 0 0 50%;
}

#ctrl_113 {
  font-size: 1.5rem;
}

#ctrl_26 {
  background-color: var(--lila) !important;
}

#ctrl_113 {
  background-color: var(--rot) !important;
  color: #fff !important;
  margin: 0 auto;
}

.widget-submit {
  text-align: center;
}

.flexrow .widget {
  width: calc(100% - 2rem);
  max-width: 100%;
}

@media only screen and (max-width: 550px) {
  #kontakt .formbody .flexform {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
  }
} 
:root {
  --top: -280px;
  --bottom: -280px;
  --right: -580px;
  --left: -580px;
  --bottom-r: 10%;
  --top-r: -10%;
  --bottom-text: -380px;
}

#outer-wrap {
  /* position: relative; */
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  margin: 0;
  padding: 0;
}

#wrapperstart {
  grid-column: 1/2;
  grid-row: 1/3;
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #f2f2f2;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  display: flex !important;
  transition: all 2.5s ease-in-out;
  opacity: 1;
  z-index: 50;
}
#wrapperstart.wrapper-hide {
  opacity: 0;
}

.bgimages {
  width: 100vw;
  height: 100vh;
}

#bg-images-1 {
  grid-column: 1/2;
  grid-row: 1/3;
  background-image: url("../hamm/imagestart/start1.jpg");
  background-size: cover;
  background-position: center bottom;
  z-index: 30;
  transition: all 2.5s ease-in-out;
  opacity: 1;
}
#bg-images-1.hide {
  opacity: 0;
}

#bg-images-2 {
  grid-column: 1/2;
  grid-row: 1/3;
  background-image: url("../hamm/imagestart/start2.jpg");
  background-size: cover;
  z-index: 20;
  transition: all 2.5s ease-in-out;
  opacity: 1;
}
#bg-images-2.hide {
  opacity: 0;
}

#bg-images-3 {
  grid-column: 1/2;
  grid-row: 1/3;
  background-image: url("../hamm/imagestart/start3.jpg");
  background-size: cover;
  z-index: 10;
}

.bluete {
  position: absolute;
  transition: all 2.5s ease-in-out;
}

#igelb-1,
#igelb-2,
#igelb-3,
#igelb-4,
#igelb-5 {
  transform-origin: center bottom;
  transform-origin: center center;
  left: 50%;
}

#igruen-1,
#igruen-2,
#igruen-3,
#igruen-4,
#igruen-5,
#igruen-6 {
  transform-origin: center center;
  left: 50%;
}

/* ########TOP######## */
#igruen-1 {
  transform: translateX(-100%) rotate(180deg) scale(1.3);
  z-index: 1;
}
#igruen-1.bluete-rotate {
  transform: translate(-100%, var(--top-r)) rotate(180deg) scale(0.7);
}

#igruen-2 {
  transform: translateX(-50%) rotate(180deg) scale(1.3);
  z-index: 1;
}
#igruen-2.bluete-rotate {
  transform: translate(-50%, var(--top-r)) rotate(180deg) scale(0.7);
}

#igelb-1 {
  transform: translateX(0%) rotate(180deg) scale(1.3);
}
#igelb-1.bluete-rotate {
  transform: translate(0%, var(--top-r)) rotate(180deg) scale(0.7);
}

/* ############################# */
/* ####BOTTOM */
#igelb-2 {
  transform: translateX(-100%) rotate(0deg) scale(1.3);
}
#igelb-2.bluete-rotate {
  transform: translate(-100%, var(--bottom-r)) rotate(0deg) scale(0.7);
}

#igruen-3 {
  transform: translateX(-50%) rotate(0deg) scale(1.3);
  z-index: 1;
}
#igruen-3.bluete-rotate {
  transform: translate(-50%, var(--bottom-r)) rotate(0deg) scale(0.7);
}

#igelb-3 {
  transform: translateX(0%) rotate(0deg) scale(1.3);
}
#igelb-3.bluete-rotate {
  transform: translate(0%, var(--bottom-r)) rotate(0deg) scale(0.7);
}

/* #################### */
/* ####LEFT RIGHT */
#igelb-right {
  position: absolute;
  transform: translateY(-50%) rotate(-90deg) scale(1.3);
  right: var(--right);
  left: auto;
  top: 50%;
}
#igelb-right.bluete-rotate {
  transform: translateY(-50%) rotate(-90deg) scale(0.7);
}

.iright {
  top: var(--top);
  transform-origin: center center;
}

#igruen-left {
  position: absolute;
  transform-origin: center center;
  transform: translateY(-50%) rotate(90deg) scale(1.3);
  left: var(--left);
  right: auto;
  top: 50%;
}
#igruen-left.bluete-rotate {
  transform: translateY(-50%) rotate(90deg) scale(0.7);
}

.ileft {
  left: var(--left);
  transform-origin: center center;
}

/* ########################### */
.itop {
  top: var(--top);
  transform: translateX(-50%) rotate(180deg) scale(1.3);
}

.ibottom {
  top: auto;
  bottom: var(--bottom);
  transform: translateX(-50%) rotate(0deg) scale(1.3);
}

#logostart {
  transform-origin: center center;
  transform: scale(0.5);
  margin-top: 10rem;
  transition: all 2.5s ease-in-out;
}
#logostart.start {
  transform: scale(1);
}

#teasertext {
  z-index: 2;
  margin-top: 2rem;
}

.teaserslide {
  margin-top: 2rem;
  z-index: 31;
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  align-items: flex-end;
  opacity: 1;
  transition: all 0.8s ease-in-out;
}
.teaserslide h1 {
  font-family: "Poppins";
  font-size: 10rem;
  color: #fff;
  position: absolute;
  transform: translateX(-100%);
  transition: all 1.5s ease-out;
  opacity: 1;
  padding-left: 2rem;
  padding-bottom: 3rem;
}
.teaserslide.show h1 {
  transform: translateX(0%);
}
.teaserslide.hide h1 {
  opacity: 0;
}

#arrow {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  opacity: 0;
  transform: scale(0);
  animation-iteration-count: 1;
}
#arrow.show {
  opacity: 1;
  animation: arrow-in 0.8s;
  animation-iteration-count: 1;
  transform: scale(1);
}

@keyframes arrow-in {
  /* You could think of as "step 1" */
  0% {
    transform: scale(0);
  }
  /* You could think of as "step 2" */
  80% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
@media only screen and (max-width: 670px) {
  .teaserslide h1 {
    font-size: 8rem !important;
  }
  img#teasertext {
    max-width: 70%;
  }
  #bg-images-1 {
    grid-column: 1/2;
    grid-row: 1/3;
    background-image: url("../hamm/imagestart/start1-kl.jpg");
    background-size: cover;
    background-position: center bottom;
    z-index: 30;
    transition: all 2.5s ease-in-out;
    opacity: 1;
  }
  #bg-images-1.hide {
    opacity: 0;
  }
  #bg-images-2 {
    grid-column: 1/2;
    grid-row: 1/3;
    background-image: url("../hamm/imagestart/start2-kl.jpg");
    background-size: cover;
    z-index: 20;
    transition: all 2.5s ease-in-out;
    opacity: 1;
  }
  #bg-images-2.hide {
    opacity: 0;
  }
  #bg-images-3 {
    grid-column: 1/2;
    grid-row: 1/3;
    background-image: url("../hamm/imagestart/start3-kl.jpg");
    background-size: cover;
    z-index: 10;
    background-position-x: center;
  }
  #article-1330 .w100 {
    grid-column: 2/12 !important;
  }
}
@media only screen and (max-width: 470px) {
  .teaserslide h1 {
    font-size: 5rem !important;
  }
  img#teasertext {
    max-width: 70%;
  }
  .haenger-left-2::after {
    display: none;
  }
}

.col-span-3 {
  grid-column: span 3;
}

.col-span-4 {
  grid-column: span 4;
}

.col-span-6 {
  grid-column: span 6;
}

.col-span-7 {
  grid-column: span 7;
}

.col-span-8 {
  grid-column: span 8;
}

.col-span-12 {
  grid-column: span 12;
}

.g-right {
  text-align: right;
}

.g-c-center {
  text-align: right;
  justify-self: center;
}

.grid-c-bottom {
  align-self: end;
}

.grid-c-6-center {
  grid-column: 3/span 7;
}

.grid-c-1-6 {
  grid-column: 1/span 7;
}

.grid-c-2-6 {
  grid-column: 2/span 7;
}

.grid-c-2-12 {
  grid-column: 2/12;
}

.grid-c-2-5 {
  grid-column: 2/span 5;
}

.grid-c-3-11 {
  grid-column: 3/11;
}

.grid-c-1-12 {
  grid-column: 1/span 12;
}

.grid-c-1-9 {
  grid-column: 1/span 9;
}

.grid-c-6-12 {
  grid-column: 6/span 7;
}

.grid-c-7-center {
  grid-column: 3/span 7;
}

.c-v-center {
  align-self: center;
}

.grid-1-10 {
  grid-column: 1/11;
}

.column-1-6 {
  grid-column: 1/7;
}

.column-7-13 {
  grid-column: 7/13;
}

.column-1-13 {
  grid-column: 1/13;
}

.row-1-2 {
  grid-row: 1/3;
}

.row-3 {
  grid-template-rows: repeat(3, auto);
}
.row-3 .inside-grid {
  padding-top: 0rem !important;
}
.row-3 .inside-grid .grid-text {
  grid-column: 7/-1;
  grid-row: 1/4;
  text-align: right;
  padding-top: 7rem;
}
.row-3 .inside-grid .imageCenterLeft {
  grid-column: 4/9;
  grid-row: 1/4;
  z-index: 0;
}
.row-3 .inside-grid .imageRehm {
  grid-column: 1/8;
  grid-row: 1/4;
  z-index: 1;
}

#article-3587 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

#article-3589 .inside-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding-top: 0;
}
#article-3589 .inside-grid .video {
  grid-column: 1/-1;
  align-self: center;
  padding: 0 2rem;
}

#article-3588 .inside-grid, #article-3590 .inside-grid, #article-3591 .inside-grid {
  display: grid;
  margin-top: 0;
  padding-top: 0;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto auto auto auto auto;
  gap: 0;
}
#article-3588 .inside-grid .c-g11, #article-3590 .inside-grid .c-g11, #article-3591 .inside-grid .c-g11 {
  grid-column: 1/7;
  grid-row: 1/3;
}
#article-3588 .inside-grid .c-g22, #article-3590 .inside-grid .c-g22, #article-3591 .inside-grid .c-g22 {
  grid-column: 1/-1;
  grid-row: 2/6;
}
#article-3588 .inside-grid .c-g33, #article-3590 .inside-grid .c-g33, #article-3591 .inside-grid .c-g33 {
  grid-column: 9/-1;
  grid-row: 4/6;
}
#article-3588 .inside-grid .c-g44, #article-3590 .inside-grid .c-g44, #article-3591 .inside-grid .c-g44 {
  margin-top: 5rem;
  grid-column: 1/-1;
  grid-row: 6/7;
}

#article-3591 video {
  width: 100%;
  height: auto;
}

.g11 {
  grid-column: 1/7;
}

.g22 {
  grid-column: 7/12;
  align-self: center;
  justify-self: center;
  padding: 0 2rem;
}
.g22 .rte {
  text-align: right;
}
.g22 img {
  margin-right: 0;
  margin-left: auto;
}

.rsts-skin-default .rsts-prev,
.rsts-skin-default .rsts-next,
.rsts-skin-default .rsts-video-play,
.rsts-skin-default .rsts-video-stop,
.rsts-skin-default .rsts-thumbs-prev,
.rsts-skin-default .rsts-thumbs-next {
  position: absolute;
  right: -10%;
  top: 50%;
  left: auto;
  overflow: hidden;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 3px;
  outline: none;
  line-height: 0;
  text-align: center;
  text-decoration: none;
  text-indent: -9999px;
  background-clip: padding-box;
  background-image: url("../hg/next.png"); /* ← Ihr lokales Bild */
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.1);
  background-position: 50% 50%;
  transition: opacity 0.05s linear;
  background-repeat: no-repeat;
}

.rsts-skin-default .rsts-prev {
  background-image: url("../hg/prev.png");
  left: -10% !important;
  right: auto;
  top: 50%;
}

:root {
  --padding-inline: 3rem;
  --font-family: "Inter";
  --max-width-main: 1255px;
  --max-width-main-full: 1980px;
  --max-width-team: 1700px;
  --footer-max-width: 1365px;
  --max-width-header: 1400px;
  --mw-small: 1200px;
  --hgrau: #EBEDEA;
  --hrot: #C78B84;
  --rot: #97271B;
  --lila: #F5EEEC;
  --lachs: #F5EEEC;
  --lachs-rgba: rgba(245, 238, 236, 1);
  --lachs-rgba-0: rgba(245, 238, 236, 0);
  --txt-color: #464646;
  --hg-grau: #EDEDED;
  --padding-section: 5rem 0rem 3rem 0;
  --padding-kasten: 2rem;
}

* {
  font-family: var(--font-family);
}

html,
body {
  font-family: var(--font-family);
}

html {
  font-size: 16px;
  animation: fadeInAnimation ease 3s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
  color: var(--txt-color);
  font-family: var(--font-family);
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
}

body {
  background-color: var(--site-bg);
  width: 100vw;
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-hyphens: none;
          hyphens: none;
}
body.hamburger-active #navigation-table {
  transform: translateY(0px);
}
body.hamburger-active #header #headerImage #logo {
  transform: scale(0);
  transform: translate(-50%, -100%);
}

.callTel {
  color: var(--rot);
  font-weight: 300;
}

#startVideo {
  margin: 0 auto;
  display: block;
  max-width: 100%;
  height: auto;
}
#startVideo video {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.btn_weiter {
  background-color: #fff;
  color: var(--txt-color);
  border: 1px solid var(--rot);
  padding: 0.3rem 1rem;
  display: table;
  font-size: 1.5625rem;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}
.btn_weiter:hover {
  background-color: var(--rot);
  color: #fff;
}

.align-right {
  text-align: right;
  margin-right: 0;
  margin-left: auto;
}

#main > .inside > section:first-child {
  padding-top: 10rem;
}

.w70 {
  width: 70%;
}

.w80 {
  width: 80%;
}

.overlayHolder a {
  color: #fff !important;
}

.v-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

#kontakt label {
  font-size: 1.5rem !important;
  font-weight: 100 !important;
}

.flexrow {
  display: flex;
}
.flexrow.center {
  justify-content: space-evenly;
}

#btn_toTop {
  position: fixed;
  bottom: 0;
  right: 2rem;
  z-index: 200;
  opacity: 0;
  transition: opacity 0.5s ease-in;
  cursor: pointer;
}
#btn_toTop.show {
  opacity: 1;
  transition: opacity 0.5s ease-in;
}

section {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}
section.grid12 {
  overflow: visible;
  padding-top: 0;
  margin-bottom: 0;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
section.grid12.team-image-left, section.grid12.team-image-right {
  margin-top: 12rem;
  margin-bottom: 12rem;
}
section.grid12.team-image-left .inside-grid, section.grid12.team-image-right .inside-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(8, auto);
  max-width: var(--max-width-team);
  margin: 0 auto;
  overflow: visible;
}
section.grid12.team-image-left.team-image-left .content-image, section.grid12.team-image-right.team-image-left .content-image {
  grid-column: 1/5;
  grid-row: 1/8;
  justify-content: flex-start;
}
section.grid12.team-image-left.team-image-left .content-image img, section.grid12.team-image-right.team-image-left .content-image img {
  margin-top: -5rem;
}
section.grid12.team-image-left.team-image-left .content-text, section.grid12.team-image-right.team-image-left .content-text {
  grid-column: 4/11;
  grid-row: 1/9;
}
section.grid12.team-image-left.team-image-left .zitatH, section.grid12.team-image-right.team-image-left .zitatH {
  grid-column: 2/9;
  grid-row: 5/span 2;
  position: relative;
}
section.grid12.team-image-left.team-image-left .zitatH .zitat, section.grid12.team-image-right.team-image-left .zitatH .zitat {
  position: absolute;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 3rem;
  max-width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
  text-align: center;
}
section.grid12.team-image-left.team-image-left .zitatH .zitat p, section.grid12.team-image-right.team-image-left .zitatH .zitat p {
  color: var(--rot);
}
section.grid12.team-image-left.team-image-right .content-image, section.grid12.team-image-right.team-image-right .content-image {
  grid-column: 9/13;
  grid-row: 1/8;
  justify-content: flex-end;
}
section.grid12.team-image-left.team-image-right .content-image img, section.grid12.team-image-right.team-image-right .content-image img {
  margin-top: -5rem;
}
section.grid12.team-image-left.team-image-right .content-text, section.grid12.team-image-right.team-image-right .content-text {
  grid-column: 4/10;
  grid-row: 1/9;
}
section.grid12.team-image-left.team-image-right .zitatH, section.grid12.team-image-right.team-image-right .zitatH {
  grid-column: 2/9;
  grid-row: 5/span 2;
  position: relative;
}
section.grid12.team-image-left.team-image-right .zitatH .zitat, section.grid12.team-image-right.team-image-right .zitatH .zitat {
  position: absolute;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 3rem;
  max-width: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
  text-align: center;
}
section.grid12.team-image-left.team-image-right .zitatH .zitat p, section.grid12.team-image-right.team-image-right .zitatH .zitat p {
  color: var(--rot);
}
section.grid12 .inside-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  max-width: var(--max-width-main);
  margin: 0 auto;
}
section.grid12.edge {
  max-width: var(--max-width-main-full);
  /* VARIANTE A: 60% Text (900px) | 40% Bild (600px) */
  /* VARIANTE B: 40% Text (600px) | 60% Bild (900px) */
}
section.grid12.edge .inside-grid {
  max-width: var(--max-width-main-full);
  display: grid;
  /* 
         The "Magic" Grid:
         Col 1: Left Gutter (Flexible)
         Col 2: Left half of the 1500px content
         Col 3: Right half of the 1500px content
         Col 4: Right Gutter (Flexible)
      */
  grid-template-columns: [viewport-start] 1fr [container-start] minmax(0, calc(var(--max-width-main) / 2)) [container-mid] minmax(0, calc(var(--max-width-main) / 2)) [container-end] 1fr [viewport-end];
  width: 100%;
  margin-top: 40px;
}
section.grid12.edge .inside-grid .content-text {
  grid-column: container-start/container-mid;
}
section.grid12.edge .inside-grid .content-image {
  grid-column: container-mid/viewport-end;
  text-align: right;
}
section.grid12.edge .inside-grid .content-image img {
  margin-right: 0 !important;
  margin-left: auto;
}
section.grid12.edge.ratio-60-40 .inside-grid {
  /* WICHTIG: Kein max-width hier, sonst stoppt das Bild bei 1500px */
  width: 100%;
  display: grid;
  grid-template-columns: [viewport-start] 1fr [content-left] minmax(0, calc(var(--max-width-main) * 0.6)) [content-right] minmax(0, calc(var(--max-width-main) * 0.4)) [bleed-start] 1fr [viewport-end];
}
section.grid12.edge.ratio-60-40 .inside-grid .content-text {
  grid-column: content-left;
  /* Nimmt die 60% Spalte ein */
}
section.grid12.edge.ratio-60-40 .inside-grid .content-image {
  /* Spannt von der 40%-Marke bis zum absoluten Bildschirmrand */
  grid-column: content-right/-1;
}
section.grid12.edge.ratio-60-40 .inside-grid .content-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Sorgt dafür, dass das Bild den Raum füllt */
  display: block;
}
section.grid12.edge.ratio-40-60 .inside-grid {
  width: 100%;
  display: grid;
  grid-template-columns: [viewport-start] 1fr [container-start] minmax(0, calc(var(--max-width-main) * 0.4)) [container-mid] minmax(0, calc(var(--max-width-main) * 0.6)) [container-end] 1fr [viewport-end];
}
section.grid12.edge.ratio-40-60 .inside-grid .content-image {
  grid-column: viewport-start/container-mid;
  text-align: left;
}
section.grid12.edge.ratio-40-60 .inside-grid .content-image img {
  margin-right: auto;
  margin-left: 0;
}
section.grid12.edge.ratio-40-60 .inside-grid .content-text {
  grid-column: container-mid/container-end !important;
}
section.grid12.edge.ratio-50-50 {
  /* VARIANTE A: 60% Text (900px) | 40% Bild (600px) */
}
section.grid12.edge.ratio-50-50 .inside-grid {
  /* WICHTIG: Kein max-width hier, sonst stoppt das Bild bei 1500px */
  width: 100%;
  display: grid;
  grid-template-columns: [viewport-start] 1fr [content-left] minmax(0, calc(var(--max-width-main) * 0.5)) [content-right] minmax(0, calc(var(--max-width-main) * 0.5)) [bleed-start] 1fr [viewport-end];
}
section.grid12.edge.ratio-50-50 .inside-grid .content-text {
  grid-column: content-left;
  /* Nimmt die 60% Spalte ein */
}
section.grid12.edge.ratio-50-50 .inside-grid .content-image {
  /* Spannt von der 40%-Marke bis zum absoluten Bildschirmrand */
  grid-column: content-right/-1;
}
section.grid12.edge.ratio-50-50 .inside-grid .content-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Sorgt dafür, dass das Bild den Raum füllt */
  display: block;
}
section.grid12.edge ul li {
  list-style-image: url("../hg/li-red.png");
  margin-bottom: 1rem;
}
section.grid12.edge .padding-right-7 {
  padding-right: 7rem;
}

ul li {
  list-style-image: url("../hg/li-red.png");
  margin-bottom: 1rem;
}

.ratio-50-50 .content-text {
  padding: 0 3rem;
}
.ratio-50-50.padding-left-0 .content-text {
  padding: 0 5rem 0 1rem !important;
}
.ratio-50-50 .content-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.inside {
  position: static;
}

#topNav ul.level_1 {
  list-style: none;
  list-style-image: none !important;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  z-index: 100;
}
#topNav ul.level_1 ul.level_2 {
  position: absolute;
  transition: max-height 0.4s ease-in-out;
  /* Smooth slide animation */
  z-index: 0;
  display: flex !important;
  justify-content: center;
  background-color: var(--rot);
  width: 100vw;
  left: 0;
  max-height: 0;
  /* Start hidden */
  overflow: hidden;
  /* Hide overflow */
}
#topNav ul.level_1 ul.level_2 strong.active {
  color: #fff !important;
  font-weight: 800;
  font-size: 1.3rem;
}
#topNav ul.level_1 li:hover {
  cursor: pointer;
}
#topNav ul.level_1 li:hover > ul.level_2 {
  position: absolute;
  display: block !important;
  background-color: var(--rot);
  width: 100vw;
  left: 0;
  display: flex !important;
  justify-content: center;
  max-height: 200px;
}
#topNav ul.level_1 li:hover > ul.level_2 a {
  color: #fff;
  font-size: 1.2rem;
  padding: 0rem 3rem;
}
#topNav ul.level_1 li:hover > ul.level_2 li.active strong.active {
  color: #fff;
  font-weight: 800;
  font-size: 1.3rem;
}
#topNav ul.level_1 li:hover > ul.level_2 strong.active {
  color: #fff !important;
  font-weight: 800;
  font-size: 1.3rem;
}
#topNav ul.level_1 li {
  list-style: none;
  list-style-image: none !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}
#topNav ul.level_1 li a {
  color: var(--rot);
  text-decoration: none;
}

#main > .inside strong {
  font-weight: normal;
  color: var(--rot);
}

#gh-text {
  opacity: 1;
  font-size: 0.9rem;
  line-height: 1.1rem;
  opacity: 0;
}

body.showGH #gh-text {
  opacity: 1;
  transition: opacity 0.5s ease-in;
  height: auto;
}

.btn_down_next,
.btn_up_next {
  text-align: center;
}
.btn_down_next img,
.btn_up_next img {
  margin: 0 auto;
  cursor: pointer;
  padding-bottom: 1rem;
}

.fullwidth {
  width: 100vw;
  position: relative;
}

.bg-grau-2-3 {
  background-color: var(--hg-grau);
  background: linear-gradient(90deg, rgb(237, 237, 237) 0%, rgb(237, 237, 237) 75%, rgb(237, 237, 237) 75%, rgba(255, 255, 255, 0) 75%);
}

.bg-grau-2-3-reverse {
  background-color: var(--hg-grau);
  background: linear-gradient(90deg, rgba(237, 237, 237, 0) 25%, rgb(237, 237, 237) 25%, rgb(237, 237, 237) 75%, rgb(237, 237, 237) 75%);
}

.bg-rose {
  background-color: var(--hrot);
  color: #fff;
}

.bg-faq {
  background-color: var(--hrot);
}

.bg-lachs-2-3 {
  background-color: var(--lachs);
  background: linear-gradient(90deg, var(--lachs-rgba) 0%, var(--lachs-rgba) 75%, var(--lachs-rgba) 75%, rgba(255, 255, 255, 0) 75%);
}

.bg-lachs {
  background-color: var(--lachs);
}

.faq-head {
  color: #fff !important;
}

.marginB2 {
  margin-bottom: 2rem !important;
  display: block;
  display: block;
  overflow: hidden;
  border: 1px solid transparent;
}

.marginT2 {
  margin-top: 2rem !important;
  display: block;
  overflow: hidden;
  border: 1px solid transparent;
}

.span-6 {
  grid-column: span 6;
}

.span-12 {
  grid-column: span 12;
}

.toggler {
  width: 100%;
  text-align: left;
  display: flex;
  justify-content: space-between;
  color: var(--rot);
}
.toggler.open {
  color: #fff;
}
.toggler.open button::after {
  content: "-";
  font-size: 3rem;
  color: var(--rot);
  background-color: #fff;
  aspect-ratio: 1/1;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--rot);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.toggler button {
  width: 100%;
  color: var(--rot);
  background-color: #EDEDED;
  border: none;
  padding: 1rem;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.875rem;
  line-height: 2.3rem;
  font-weight: 300;
  margin-top: 2rem;
  color: var(--rot);
  cursor: pointer;
}
.toggler button::after {
  content: "+";
  font-size: 3rem;
  color: var(--rot);
  background-color: #fff;
  aspect-ratio: 1/1;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--rot);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.accordion {
  background-color: #F8F8F8;
  padding: 2rem;
}

.bigHolder strong {
  font-size: 1.875rem !important;
  line-height: 2.5rem !important;
  color: var(--txt-color) !important;
}

.grid-center {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-items: center;
  align-items: center;
}
.grid-center .rte {
  grid-column: 2/4;
}

.padding-2 {
  padding: 2rem !important;
}

.padding-top-0 {
  padding-top: 0 !important;
}

#article-4106 {
  margin-top: 3rem;
}

.padding-left-0 {
  padding-left: 0 !important;
}

.margin-top-0 {
  padding-top: 0 !important;
}

.padding-bottom-0 {
  padding-bottom: 0 !important;
}

.margin-bottom-0 {
  padding-bottom: 0 !important;
}

.center {
  margin: 0 auto;
  text-align: center;
}

.img-slider {
  overflow: hidden;
}
.img-slider ul {
  display: flex;
  overflow: hidden;
}
.img-slider ul img {
  height: auto;
  padding: 0 1rem;
}

.slick-next {
  left: auto;
  bottom: 10%;
  top: 50% !important;
  right: 100px;
}
.slick-next:before {
  content: url(../hg/next.png) !important;
}

.slick-prev {
  left: -100px;
  bottom: 10%;
  top: 50% !important;
  right: auto;
  z-index: 222;
}
.slick-prev:before {
  content: url(../hg/prev.png) !important;
}

.slick-slider .slick-next {
  right: -100px !important;
  left: auto !important;
}
.slick-slider .slick-prev {
  left: -100px !important;
  right: auto !important;
}

ul.slick-slider {
  overflow: visible;
}

#v-control {
  grid-column: 1/-1;
  display: flex;
  width: 100%;
  justify-content: space-around;
  height: 60px;
  overflow: hidden;
}
#v-control #play-holder {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
#v-control #play-holder #play-control,
#v-control #play-holder #stop-control {
  height: 44px;
  margin: 0.5rem auto;
}
#v-control #audio-holder {
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 5px;
}
#v-control #audio-holder #audio-on-control,
#v-control #audio-holder #audio-off-control {
  height: 44px;
  margin: 0.5rem auto;
}
#v-control.playing #play-holder {
  margin-top: -60px;
}
#v-control.muted #audio-holder {
  margin-top: -55px;
}

.v-align-center {
  vertical-align: middle;
  display: flex;
  justify-items: center;
  align-items: center;
}

.v-bottom,
.v-align-bottom {
  vertical-align: bottom;
  display: flex;
  justify-items: baseline;
  align-items: flex-end;
}
.v-bottom img,
.v-align-bottom img {
  margin-bottom: 1.5rem;
}

.padding-2 {
  padding: 2rem !important;
}

.inline-padding {
  padding: 2rem;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 16px !important;
  line-height: 20px;
  text-align: center;
  color: white !important;
  opacity: 0.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.button {
  border-radius: 0px;
  border: 1px solid #fff;
  background-color: var(--lila);
  display: inline-block;
  padding: 0.3rem 0.9rem;
  display: table;
}
.button a {
  text-decoration: none;
  color: #fff;
}
.button:hover {
  background-color: #fff;
  border: 1px solid var(--lila);
}
.button:hover a {
  text-decoration: none;
  color: var(--lila);
}
.button.download {
  border-radius: 0;
  display: table;
}
.button.download a {
  color: white;
}
.button.download:hover {
  background-color: #fff;
  color: var(--lila);
  border: 1px solid var(--lila);
}
.button.download:hover a {
  color: var(--lila) !important;
}
.button.qu {
  border-radius: 0;
}
.button.qu a {
  color: white;
}
.button.dark a {
  color: #555;
}
.button.center {
  margin: 0 auto;
}
.button.braun {
  background-color: var(--braun);
  border-radius: 0;
  display: table;
}
.button.braun a {
  color: white;
}

.txt-small {
  padding: 3rem;
  font-size: 0.875rem;
}
.txt-small p {
  font-size: 0.875rem !important;
}

.rte > p {
  margin-top: 0;
}

.ov-visible {
  overflow: visible;
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 16px !important;
  width: 16px !important;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: var(--lila) !important;
  border-radius: 100%;
  display: flex !important;
  justify-content: center;
  align-items: center;
}

.video-gallery .content-gallery {
  text-align: center;
}
.video-gallery ul {
  display: inline-grid;
  /* Makes the grid behave like an inline element */
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin: 0 auto;
}
.video-gallery ul img {
  max-width: 400px;
}

.maxW {
  max-width: var(--max-width-main);
  margin: 0 auto;
}

#main,
#left,
#right {
  float: none;
}

#main {
  padding-top: 5rem;
}

#footer {
  max-width: var(--max-width-footer);
  margin: 0 auto;
  padding-top: 5rem;
  padding-bottom: 5rem;
  position: relative;
  z-index: 121;
  margin-top: 5rem;
}

.mw-small .inside-grid,
.narrow .inside-grid {
  max-width: var(--mw-small);
  margin: 0 auto;
  box-sizing: border-box;
}

.narrow .inside-grid .content-text {
  padding-left: 1rem;
  padding-right: 1rem;
}

.item.symbol p {
  margin-bottom: 0;
}

.paddingT-0 {
  padding-top: 0 !important;
  margin-top: 0;
}

.paddingB-0 {
  padding-bottom: 0 !important;
  margin-bottom: 0;
}

#article-3481 .content-text,
#article-3481 .content-image {
  margin-bottom: 8rem;
}

.padding-top-0 .inside-grid {
  padding-top: 0rem;
}

#article-3584 .inside-grid {
  padding-top: 2rem;
}

.formbody {
  max-width: var(--max-width-main);
  margin: 0 auto;
  padding: 0 5rem !important;
}
.formbody #ctrl_22 {
  grid-column: span 6;
}
.formbody .flexrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.formbody label {
  color: var(--lila) !important;
  font-weight: bold !important;
}
.formbody select,
.formbody input[type=text],
.formbody input[type=email],
.formbody textarea {
  border: 1px solid #ccc;
  padding: 0.5rem;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
  border-radius: 5px;
}
.formbody .explanation {
  font-size: 0.875rem;
  color: #666;
  margin-top: 0.25rem;
}
.formbody .explanation p {
  font-size: 0.875rem !important;
  color: #666;
  margin-top: 0.25rem;
}

#closeVideoSidebar {
  position: relative;
  right: 0;
  text-align: right;
  padding-bottom: 2rem;
}
#closeVideoSidebar img {
  margin-right: 0;
  margin-left: auto;
}

#btn_close_leftnav {
  padding: 1rem;
  cursor: pointer;
  display: block;
  margin-left: auto;
  margin-right: 0;
  background: #97271B;
}

#lleft {
  background-color: #fff;
}

section.grid-12 .inside-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  max-width: var(--max-width-main);
  margin: 0 auto;
}
section.grid-12 .inside-grid .span-4 {
  grid-column: span 4;
}
section.grid-12 .inside-grid .span-6 {
  grid-column: span 6;
}
section.grid-12 .inside-grid .span-5 {
  grid-column: span 5;
}
section.grid-12 .inside-grid .span-7 {
  grid-column: span 7;
}
section.grid-12 .inside-grid .span-8 {
  grid-column: span 8;
}
section.grid-12 .inside-grid .span-6 {
  grid-column: span 6;
}
section.grid-12 .inside-grid .span-6 img {
  width: 100%;
}
section.grid-12 .inside-grid .span-12 {
  grid-column: span 12;
}
section.grid-12 .inside-grid a {
  color: var(--dkgrau);
}
section .flex {
  display: flex;
  flex-wrap: wrap;
}
section .flex .column {
  flex: 0 0 50%;
}
section .flex .column.fullwidth {
  flex: 1 0 100%;
}

.gap-5 {
  gap: 5rem;
}
.gap-5 .column {
  flex: 0 0 calc(50% - 2.5rem) !important;
}
.gap-5 .column.fullwidth {
  flex: 1 0 100% !important;
}

#verstand .flex {
  justify-content: space-around;
}
#verstand .flex .column {
  flex: 0 0 40%;
}
#verstand .flex .column li {
  margin-bottom: 2rem;
}

@media only screen and (max-width: 1450px) {
  .span-12 .flex {
    gap: 1rem;
  }
  .span-12 .flex .column {
    flex: 0 0 calc(50% - 0.5rem);
  }
  .location {
    grid-column: 1/7;
    grid-row: 2/3;
    margin-bottom: 1rem;
    justify-self: flex-end;
    margin-right: 2rem;
  }
  .location.center {
    grid-column: 7/-1;
    justify-self: flex-start;
    grid-row: 2/3;
    margin-left: 2rem;
  }
  .location.right {
    grid-row: 3/4;
    grid-column: 1/-1;
    justify-self: center;
  }
}
@media only screen and (max-width: 1300px) {
  .footer-grid {
    display: grid;
    grid-template-rows: repeat(3, auto);
    font-size: var(--font-size);
  }
  #gh-text {
    grid-column: 4/12;
    grid-row: 3/4;
    color: var(--gruen);
  }
  #btn_nav {
    display: block;
  }
  .mod_navigation.block {
    background-color: #fff;
  }
  #topNav .mod_navigation.block {
    display: none;
  }
  #left .mod_navigation.block {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #left .mod_navigation.block ul {
    display: flex;
    flex-wrap: wrap;
  }
  #left .mod_navigation.block ul li {
    flex: 0 0 30%;
    display: flex;
    flex-direction: column;
  }
  #left .mod_navigation.block ul ul.level_2 {
    margin-top: 1rem;
    padding-left: 1rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
  }
  #left .mod_navigation.block ul ul.level_2 li {
    flex: 0 0 auto;
  }
  #left .mod_navigation.block ul ul.level_2 li a {
    text-decoration: none !important;
    font-weight: normal !important;
    color: var(--txt-color) !important;
  }
  #left .mod_navigation.block ul.level_1 > li a {
    text-decoration: none !important;
    color: var(--rot) !important;
    font-weight: bold;
  }
  .w80, .w70 {
    margin: 0 auto;
  }
  .w100 {
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
  }
  .bg-grau-2-3 {
    background-color: var(--hg-grau);
    background: linear-gradient(90deg, rgb(237, 237, 237) 0%, rgb(237, 237, 237) 90%, rgb(237, 237, 237) 90%, rgba(255, 255, 255, 0) 90%);
  }
  .bg-grau-2-3-reverse {
    background-color: var(--hg-grau);
    background: linear-gradient(90deg, rgba(237, 237, 237, 0) 10%, rgb(237, 237, 237) 10%, rgb(237, 237, 237) 90%, rgb(237, 237, 237) 90%);
  }
  .bg-rose {
    background-color: var(--hrot);
    color: #fff;
  }
  .bg-faq {
    background-color: var(--hrot);
  }
  .bg-lachs-2-3 {
    background-color: var(--lachs);
    background: linear-gradient(90deg, var(--lachs-rgba) 0%, var(--lachs-rgba) 75%, var(--lachs-rgba) 75%, rgba(255, 255, 255, 0) 75%);
  }
  .ratio-50-50.team-image-left .v-center {
    grid-column: 6/11 !important;
  }
  .ratio-50-50.team-image-right .v-center {
    grid-column: 3/8 !important;
  }
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 12px;
  }
  #left #navigation #navHolder .row.second .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    margin: 0 auto;
    max-width: 1200px;
    gap: 3rem 1rem;
  }
  #left #navigation #navHolder .row.second .grid .one {
    grid-column: 1/2;
  }
  #left #navigation #navHolder .row.second .grid .two {
    grid-column: 2/3;
  }
  #left #navigation #navHolder .row.second .grid .three {
    grid-column: 3/4;
    grid-row: 1/2;
  }
  #left #navigation #navHolder .row.second .grid .four {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  #left #navigation #navHolder .row.second .grid .five {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  #left #navigation #navHolder .row.second .grid .item a {
    line-height: 1.5rem !important;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
  }
  #main > .inside > section:first-child {
    padding-top: 6rem;
  }
}
@media only screen and (max-width: 900px) {
  html {
    font-size: 10px;
  }
  section.ce_accordionStart {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .w80, .w70 {
    margin: 0 auto;
  }
  .w100 {
    padding-left: 2rem;
    padding-right: 2rem;
    margin: 0 auto;
  }
  .bg-grau-2-3 {
    background-color: var(--hg-grau);
    background: linear-gradient(90deg, rgb(237, 237, 237) 0%, rgb(237, 237, 237) 90%, rgb(237, 237, 237) 90%, rgba(255, 255, 255, 0) 90%);
  }
  .bg-grau-2-3-reverse {
    background-color: var(--hg-grau);
    background: linear-gradient(90deg, rgba(237, 237, 237, 0) 10%, rgb(237, 237, 237) 10%, rgb(237, 237, 237) 90%, rgb(237, 237, 237) 90%);
  }
  .bg-rose {
    background-color: var(--hrot);
    color: #fff;
  }
  .bg-faq {
    background-color: var(--hrot);
  }
  .bg-lachs-2-3 {
    background-color: var(--lachs);
    background: linear-gradient(90deg, var(--lachs-rgba) 0%, var(--lachs-rgba) 75%, var(--lachs-rgba) 75%, rgba(255, 255, 255, 0) 75%);
  }
}
@media only screen and (max-width: 880px) {
  html {
    font-size: 11px;
  }
  .header-logo {
    grid-column: 1/7;
    grid-row: 1/4;
  }
  section.grid-12 .inside-grid .span-7,
  section.grid-12 .inside-grid .span-5 {
    grid-column: span 12 !important;
  }
}
@media only screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  #main {
    padding-top: 19rem;
  }
  #header .contact {
    transform: scale(0.7);
    transform-origin: top right;
  }
  .header-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    align-items: center;
    padding-top: 1rem;
  }
  .header-grid .contact,
  .header-grid .btn-gedenkportal {
    grid-column: 6/-1;
    grid-row: 2/3;
    text-align: right;
    padding-right: 0.8rem;
  }
  .header-logo {
    grid-column: 1/7;
    grid-row: 1/2;
  }
  #left #navigation #navHolder .row.second .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto auto auto;
    margin: 0 auto;
    max-width: 1200px;
    gap: 3rem 1rem;
  }
  #left #navigation #navHolder .row.second .grid .one {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  #left #navigation #navHolder .row.second .grid .two {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  #left #navigation #navHolder .row.second .grid .three {
    grid-column: 1/2;
    grid-row: 2/3;
  }
  #left #navigation #navHolder .row.second .grid .four {
    grid-column: 2/3;
    grid-row: 2/3;
  }
  #left #navigation #navHolder .row.second .grid .five {
    grid-column: 1/2;
    grid-row: 3/4;
  }
  #left .contact {
    display: none;
  }
}
@media only screen and (max-width: 700px) {
  #main {
    padding-top: 17rem;
  }
}
@media only screen and (max-width: 600px) {
  #main section.grid12.edge.ratio-60-40 .inside-grid .content-text {
    grid-column: 1/-1;
  }
  #main section.grid12.edge.ratio-60-40 .inside-grid .content-image {
    grid-column: 1/-1;
  }
  #main section.grid12.edge.ratio-40-60 .inside-grid .content-text {
    grid-column: 1/-1 !important;
  }
  #main section.grid12.edge.ratio-40-60 .inside-grid .content-image {
    grid-column: 1/-1 !important;
  }
  #main .w70, #main .w80 {
    width: 90%;
  }
  #main .span-6 {
    grid-column: span 12;
  }
  #main section.grid12.edge .padding-right-7 {
    padding-right: 0rem;
  }
  #main .grid-center .rte {
    grid-column: 1/5;
  }
}
@media only screen and (max-width: 500px) {
  .header-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 0rem;
    align-items: center;
    padding-top: 1rem;
  }
  .header-grid .contact,
  .header-grid .btn-gedenkportal {
    grid-column: 8/-1;
    grid-row: 2/3;
    text-align: right;
    padding-right: 0.8rem;
    font-size: 1rem !important;
    justify-self: flex-end;
    transform-origin: top right !important;
  }
  .header-grid .contact .callTel,
  .header-grid .btn-gedenkportal .callTel {
    font-size: 1rem !important;
  }
  .header-grid .contact .callTel:before,
  .header-grid .btn-gedenkportal .callTel:before {
    padding-right: 5rem !important;
  }
  .header-grid .header-logo {
    grid-column: 1/8;
    grid-row: 1/2;
  }
  #left #navigation #navHolder .row.second .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto auto auto auto;
    margin: 0 auto;
    max-width: 1200px;
    gap: 3rem 1rem;
  }
  #left #navigation #navHolder .row.second .grid .one {
    grid-column: 1/-1;
    grid-row: 1/2;
  }
  #left #navigation #navHolder .row.second .grid .two {
    grid-column: 1/-1;
    grid-row: 2/3;
  }
  #left #navigation #navHolder .row.second .grid .three {
    grid-column: 1/-1;
    grid-row: 3/4;
  }
  #left #navigation #navHolder .row.second .grid .four {
    grid-column: 1/-1;
    grid-row: 4/5;
  }
  #left #navigation #navHolder .row.second .grid .five {
    grid-column: 1/-1;
    grid-row: 5/6;
  }
}
@media only screen and (max-width: 800px) {
  .footer-grid {
    display: grid;
    grid-template-rows: repeat(4 auto);
    font-size: var(--font-size);
    gap: 1rem;
  }
  .footer-logo {
    grid-column: 1/-1;
    grid-row: 1/2;
    justify-self: center;
  }
  #gh-text {
    grid-column: 2/12;
    grid-row: 4/5;
    color: var(--gruen);
  }
  .footer-links {
    grid-column: 1/-1;
    grid-row: 4/5;
    justify-self: center;
    flex-direction: column;
    text-align: center;
  }
  .footer-links-re {
    grid-column: 6/-1;
    grid-row: 3/4;
    justify-self: center;
  }
  #left .mod_navigation.block ul li {
    flex: 0 0 45%;
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 600px) {
  .footer-grid {
    display: grid;
    grid-template-rows: repeat(6 auto);
    font-size: var(--font-size);
    gap: 1rem;
  }
  .footer-logo {
    grid-column: 1/-1;
    grid-row: 1/2;
    justify-self: center;
  }
  .location {
    grid-column: 1/-1 !important;
    grid-row: 2/3;
    justify-self: center;
    margin: 0rem !important;
  }
  .locationF {
    text-align: center;
  }
  .location.center {
    grid-column: 1/-1 !important;
    grid-row: 3/4;
    text-align: center;
    justify-self: center;
  }
  .location.right {
    grid-column: 1/-1 !important;
    grid-row: 4/5;
    text-align: center;
    justify-self: center;
  }
  #gh-text {
    grid-column: 2/12;
    grid-row: 5/6;
  }
  .footer-links {
    grid-column: 1/-1;
    grid-row: 5/6;
    justify-self: center;
  }
  .footer-links-re {
    grid-column: 6/-1;
    grid-row: 4/5;
    justify-self: center;
  }
}
@media only screen and (max-width: 500px) {
  #left .mod_navigation.block ul li {
    flex: 0 0 100%;
    display: flex;
    flex-direction: column;
  }
}
@media only screen and (max-width: 900px) {
  section.grid-12.qm9 .inside-grid .span-6 {
    grid-column: span 12;
  }
  #article-3937 {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
  }
  #article-3937 #startVideo {
    width: 100vw;
    grid-column: 1/-1;
    grid-row: 1/2;
    justify-self: center;
  }
  #article-3937 #videoHH {
    grid-column: 1/-1;
    grid-row: 1/2;
    justify-self: center;
    margin-top: 2rem;
    width: 100vw;
  }
  #article-3937 #videoHH h1 {
    color: #fff;
    font-size: 1.38rem !important;
    line-height: 1.5rem !important;
  }
  #article-3937 #videoHH p {
    font-size: 1rem !important;
  }
  #article-3937 #videoHH .rte {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    color: #fff;
    padding: 0.5rem;
    position: relative;
  }
  #article-3937 #videoHH .rte .centerS {
    position: absolute;
    top: auto !important;
    bottom: 2% !important;
  }
}
@media only screen and (max-width: 770px) {
  html {
    font-size: 14px;
  }
  section.grid-12 .inside-grid .span-6 {
    grid-column: span 12;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  section .flex .column {
    flex: 0 0 100%;
  }
  section .flex.gap-5 {
    gap: 2rem;
  }
  section .flex.gap-5 .column {
    flex: 0 0 100% !important;
  }
  .bg-weiss {
    background-color: #fff;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  #btn_nav {
    margin: 1rem;
  }
  .rte ul {
    padding-left: 4rem;
  }
}
@media only screen and (max-width: 1300px) {
  #main > .inside > section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  #main > .inside > #article-3937 {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .ratio-50-50 .v-center {
    grid-column: 1/-1 !important;
  }
  .ratio-50-50 .v-center.content-text {
    padding: 0 2rem 0 2rem !important;
  }
}
@media only screen and (max-width: 420px) {
  html {
    font-size: 8px;
  }
  .rte ul {
    padding-left: 7rem;
  }
}/*# sourceMappingURL=aufbau.css.map */