@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Gabarito:wght@400..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  /* New color set */
  --color-primary: #1C326D;
  --color-black-black: rgba(0, 0, 0, 1);
  --color-black: rgba(26, 25, 25, 1);
  --color-black-transparent: rgba(26, 25, 25, .8);
  --color-grey-dark: rgba(69, 71, 70, 1);
  --color-grey-light: rgba(159, 159, 158, 1);
  --color-grey-lighter: rgba(255, 255, 255, 0.015);
  --color-white-transparent: rgba(255, 255, 255, 0);
  --color-white-light: rgba(255, 255, 255, .7);
  --color-white: rgba(255, 255, 255, 1);
  --color-links: var(--color-primary);
  --color-blue-light: #8CD1EA;
  --h1: "Roboto Condensed";
  --font-p: "Roboto Condensed", Helvetica Neue, Helvetica, Arial, sans-serif;
  --icn: '"Material Symbols Outlined", sans-serif';
  --letter-spacing-text: -0.02em;
  --letter-spacing-title: -0.028em;
  --default-first-entry-space: 1.3rem;
  --default-padding: 1.5rem 1.5rem 1.5rem 1.5rem;
  --layout-padding: 1.5rem;
  --default-gap: 1.5rem;
  --cancelled-rotation: 0;
  /* Css animations */
  --linear: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-in: cubic-bezier(0.42, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.58, 1);
  --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
  --easeInQuad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --easeInCubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --easeInQuart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --easeInQuint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --easeInSine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --easeInExpo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --easeInCirc: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --easeInBack: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --easeOutQuad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --easeOutCubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --easeOutQuart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --easeOutQuint: cubic-bezier(0.23, 1, 0.32, 1);
  --easeOutSine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --easeOutExpo: cubic-bezier(0.19, 1, 0.22, 1);
  --easeOutCirc: cubic-bezier(0.075, 0.82, 0.165, 1);
  --easeOutBack: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --easeInOutQuad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --easeInOutCubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --easeInOutQuart: cubic-bezier(0.77, 0, 0.175, 1);
  --easeInOutQuint: cubic-bezier(0.86, 0, 0.07, 1);
  --easeInOutSine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --easeInOutExpo: cubic-bezier(1, 0, 0, 1);
  --easeInOutCirc: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --easeInOutBack: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  --easeCustom: cubic-bezier(.3, 0, 0, 1.3);
  --link-transition: 0.3s var(--easeInOutQuad);
  --border-radius: 0;
  --zindex1: 100;
  --zindex2: 200;
  --zindex3: 300;
  --zindex4: 400;
  --zindex5: 500;
  --zindex6: 600;
  --zindex7: 700;
  --zindex8: 800;
  --zindex9: 900;
  --zindex10: 1000;
  --center-block: {
    display: block;
    margin-left: auto;
    margin-right: auto;
  };
  --text-hide: {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
  };
  --tab-focus: {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px;
  };
}

@media (min-width: 48em) {
  :root {
    --default-padding: 2rem;
    --default-gap: 2rem;
  }
}
.site-nav-trigger-wrapper .sitenav span {
  display: none !important;
}

.montserrat {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

html, body {
  box-sizing: border-box;
  font-family: "Montserrat", serif;
  font-size: 1rem;
  padding: 0;
  margin: 0;
  color: var(--color-black);
}

body {
  -webkit-overflow-scrolling: touch;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-rendering: optimizeLegibility;
  -moz-text-rendering: optimizeLegibility;
  -ms-text-rendering: optimizeLegibility;
  -o-text-rendering: optimizeLegibility;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  text-size-adjust: none;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

#scw {
  width: 0;
  max-width: 0;
  height: 0;
  max-height: 0px;
  display: block;
}

img {
  vertical-align: top;
}

.logo {
  display: inline-block;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
  width: 120px;
}
@media (min-width: 48em) {
  .logo {
    width: 160px;
  }
}

.page-layout {
  margin: 0 auto;
  max-width: 100%;
  min-height: 60vh;
}
.page-layout .container > .ce {
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 48em) {
  .page-layout .container > .ce {
    width: 44em;
  }
}
@media (min-width: 64em) {
  .page-layout .container > .ce {
    width: 60em;
  }
}
@media (min-width: 48em) {
  .page-layout .container > .row.two-cols {
    display: grid;
    grid-template-columns: 3fr 1fr;
    column-gap: var(--gap-large);
    row-gap: var(--gap-small);
  }
}
.page-layout .container .ce {
  margin-bottom: var(--content-space);
}

/*
Accessibility hints
https://www.sitelint.com/blog/hiding-a-text-but-making-it-accessible-to-a-screen-reader#:~:text=Use%20.,a%20keyboard%2Donly%20user).
*/
.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  white-space: nowrap !important;
  width: 1px !important;
}

.visually-hidden:not(caption),
.visually-hidden-focusable:not(:focus):not(:focus-within):not(caption) {
  position: absolute !important;
}

address {
  font-style: normal;
  line-height: 140%;
}

/* Accessibility */
.screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

[aria-hidden] {
  visibility: hidden;
}

.content-map [aria-hidden] {
  visibility: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 130%;
  letter-spacing: var(--letter-spacing-title);
  color: var(--color-primary);
}

h1,
h2 {
  font-family: var(--h1);
  font-weight: 700;
  text-transform: uppercase;
}

h3 {
  font-family: var(--h1);
  font-weight: 500;
  text-transform: uppercase;
}

a {
  text-decoration: none;
}

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

main .text ol li, main .text ul li {
  margin-bottom: 0.5rem;
}
main a {
  color: var(--color-links);
  letter-spacing: var(--letter-spacing-text);
}
main a.button, main a.btn {
  display: inline-block;
  text-transform: uppercase;
  padding: 6.25px 17.5px;
  border-radius: 43.75px;
  border: 1px solid var(--color-grey-light);
}
main a.button.button-primary, main a.btn.button-primary {
  background: var(--color-blue-dark);
  color: var(--color-white);
  border-color: var(--color-blue-dark);
}
main a.button.button-primary:hover, main a.btn.button-primary:hover {
  background: var(--color-white);
  color: var(--color-blue-dark);
}
main p {
  margin-top: 0;
  margin-bottom: 1rem;
  line-height: 1.5;
  letter-spacing: var(--letter-spacing-text);
}

@media (max-width: 48em) {
  body.centerContentOnMobile main .page-title, body.centerContentOnMobile main h1, body.centerContentOnMobile main h2, body.centerContentOnMobile main h3, body.centerContentOnMobile main h4, body.centerContentOnMobile main h5, body.centerContentOnMobile main h6, body.centerContentOnMobile main .ce {
    text-align: center;
  }
}

.cs-edit-link {
  right: 1rem;
  bottom: 1rem;
  text-align: center;
  position: fixed;
  width: auto;
  display: inline-block;
  border: none;
  outline: none;
  cursor: pointer;
  z-index: 943;
  padding: 11px 26px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  border: 1px solid var(--color-white);
  background: var(--color-primary);
  color: var(--color-white);
}
.cs-edit-link:hover {
  border: 1px solid var(--color-primary);
  background: var(--color-white) !important;
  color: var(--color-primary) !important;
}

.fade-in, .slider-image .slider-wrapper h1, .lead-image .slider-wrapper h1, .slider-image .slider-wrapper p, .lead-image .slider-wrapper p {
  opacity: 0;
  transform: translateY(0.5rem);
  animation: fadeInUp 0.6s ease forwards;
}

.delay-1, .slider-image .slider-wrapper h1, .lead-image .slider-wrapper h1 {
  animation-delay: 0.2s;
}

.delay-2, .slider-image .slider-wrapper p, .lead-image .slider-wrapper p {
  animation-delay: 0.7s;
}

.delay-3 {
  animation-delay: 1.3s;
}

.delay-4 {
  animation-delay: 1.8s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

main .logo,
.main .logo {
  opacity: 0;
}

.container {
  margin: 0 auto;
}

main .container {
  min-height: 80vh;
}
main .container .ce {
  margin-top: 1rem;
}

.page-title {
  padding-top: 2.5rem;
  margin-bottom: 1.5rem;
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  .page-title {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  .page-title {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  .page-title {
    max-width: 90em;
  }
}

header,
.header {
  z-index: 999;
  display: block;
  width: 100%;
  min-height: 50px;
  position: fixed;
  background: var(--color-primary);
  color: var(--color-white);
}
header .mw-content,
.header .mw-content {
  display: grid;
  grid-template-columns: 3fr 9fr;
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  header .mw-content,
  .header .mw-content {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  header .mw-content,
  .header .mw-content {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  header .mw-content,
  .header .mw-content {
    max-width: 90em;
  }
}
header .mw-content .site-quick-nav,
.header .mw-content .site-quick-nav {
  margin-top: 0.3rem;
  margin-right: 0.3rem;
}

.lead-image {
  background: var(--color-primary);
  overflow: hidden;
}
.lead-image img {
  opacity: 0;
  animation: lead-image-fade 0.8s ease-out 0.2s forwards;
  will-change: opacity;
  display: block;
}

@keyframes lead-image-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .lead-image img {
    animation: none;
    opacity: 1;
  }
}
.slider-wrapper {
  font-size: 1rem;
}
.slider-wrapper .lead {
  display: block;
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  .slider-wrapper .lead {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  .slider-wrapper .lead {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  .slider-wrapper .lead {
    max-width: 90em;
  }
}
.slider-wrapper .lead .teaser-text p {
  font-size: 2.2rem;
  line-height: 2.2rem;
  /*
  text-align: right;
  margin-right: 15vw;
  margin-bottom:10vh;*/
}
@media (min-width: 48em) {
  .slider-wrapper .lead .teaser-text p {
    max-width: 90%;
  }
}
@media (min-width: 64em) {
  .slider-wrapper .lead .teaser-text p {
    max-width: 78%;
  }
}

.slider-image, .lead-image {
  position: relative;
  display: block;
}
.slider-image .header-video-wrapper .text-overlay-container, .lead-image .header-video-wrapper .text-overlay-container {
  max-height: 70vh;
}
.slider-image .slider-wrapper, .lead-image .slider-wrapper {
  position: relative;
  display: block;
  margin: 0 auto;
  text-align: left;
}
.slider-image .slider-wrapper h1, .lead-image .slider-wrapper h1 {
  margin-bottom: 0.75rem;
}
.slider-image .text-overlay-container, .lead-image .text-overlay-container {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  z-index: 99;
  display: flex;
  align-items: flex-end;
  pointer-events: none;
}
.slider-image .text-overlay-container .gradient, .lead-image .text-overlay-container .gradient {
  width: 100%;
  padding-bottom: 1.5rem;
  padding-top: 3.5rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.8));
  font-size: 1rem;
}
.slider-image .text-overlay-container .lead, .lead-image .text-overlay-container .lead {
  color: var(--color-white);
  font-size: 1rem;
  line-height: 100%;
}

footer,
.footer {
  width: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  display: block;
  position: relative;
}
footer .mw-content,
.footer .mw-content {
  padding-top: 1.5rem;
  padding-bottom: 0;
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  footer .mw-content,
  .footer .mw-content {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  footer .mw-content,
  .footer .mw-content {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  footer .mw-content,
  .footer .mw-content {
    max-width: 90em;
  }
}
footer ul,
.footer ul {
  list-style: none;
  padding: 0;
}
footer ul li,
.footer ul li {
  width: auto;
  display: inline-block;
  margin-right: 1rem;
}
footer ul li.active a,
.footer ul li.active a {
  font-weight: 700;
}
footer a,
.footer a {
  color: var(--color-white);
  text-decoration: none;
}
footer .cols,
.footer .cols {
  display: grid;
  grid-template-columns: 4fr 4fr;
}
@media (min-width: 48em) {
  footer .cols,
  .footer .cols {
    grid-template-columns: 6fr 4fr 2fr;
  }
}
footer .cols .col-1,
.footer .cols .col-1 {
  align-self: end;
  padding-bottom: 1.5rem;
}
footer .cols .claim,
.footer .cols .claim {
  display: flex;
  flex-direction: column; /* Stapeln untereinander */
  justify-content: flex-end; /* alles nach unten drücken */
}
footer .cols .claim p,
.footer .cols .claim p {
  margin-bottom: 0.6rem;
}
footer .cols .col-2,
.footer .cols .col-2 {
  display: none;
}
@media (min-width: 48em) {
  footer .cols .col-2,
  .footer .cols .col-2 {
    display: block;
  }
}
footer .cols .col-3,
.footer .cols .col-3 {
  align-self: end;
  padding-bottom: 1.5rem;
}
footer .logo-and-text,
.footer .logo-and-text {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 48em) {
  footer .logo-and-text,
  .footer .logo-and-text {
    grid-template-columns: 4fr 6fr;
  }
}
footer .logo-and-text .claim,
.footer .logo-and-text .claim {
  vertical-align: bottom;
}
footer .footer-road,
.footer .footer-road {
  margin-top: -7%;
  min-height: 100%;
}
footer .contact-us,
.footer .contact-us {
  text-align: right;
}
footer .lower-footer,
.footer .lower-footer {
  background: #6B7481;
}
footer .lower-footer .mw-content,
.footer .lower-footer .mw-content {
  padding: 0.35rem 0;
  text-align: right;
}
footer .lower-footer .mw-content.cols,
.footer .lower-footer .mw-content.cols {
  grid-template-columns: 1fr;
}
footer .lower-footer .mw-content ul,
.footer .lower-footer .mw-content ul {
  margin: 0;
}
footer .lower-footer .mw-content ul li,
.footer .lower-footer .mw-content ul li {
  display: inline-block;
  margin-right: 0;
}
footer .lower-footer .mw-content a,
.footer .lower-footer .mw-content a {
  font-size: 0.85rem;
  display: inline-block;
  margin-left: 1rem;
  width: auto;
  max-width: auto;
}

.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.lightbox-modal img {
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.lightbox-content {
  position: relative;
  z-index: 1;
}

.ce-contentbubbles {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  .ce-contentbubbles {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  .ce-contentbubbles {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  .ce-contentbubbles {
    max-width: 90em;
  }
}
.ce-contentbubbles .bubble {
  cursor: pointer;
}
.ce-contentbubbles .bubble:nth-child(1) {
  transform: rotate(9deg);
  margin-left: -0.5rem;
}
@media (min-width: 48em) {
  .ce-contentbubbles .bubble:nth-child(1) {
    margin-left: 0;
    margin-top: 2rem;
  }
}
.ce-contentbubbles .bubble:nth-child(1):hover {
  transform: rotate(-3deg);
}
.ce-contentbubbles .bubble:nth-child(2) {
  transform: rotate(-12deg);
  margin-left: -1rem;
  margin-left: 4rem;
}
@media (min-width: 48em) {
  .ce-contentbubbles .bubble:nth-child(2) {
    margin-left: 0;
    margin-top: 4rem;
  }
}
.ce-contentbubbles .bubble:nth-child(2):hover {
  transform: rotate(-3deg);
}
.ce-contentbubbles .bubble:nth-child(3) {
  transform: rotate(5deg);
  margin-left: 2rem;
}
@media (min-width: 48em) {
  .ce-contentbubbles .bubble:nth-child(3) {
    margin-left: 0;
    margin-top: 0.1rem;
  }
}
.ce-contentbubbles .bubble:nth-child(3):hover {
  transform: rotate(-3deg);
}

.bubble {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  margin: 1rem;
  color: var(--color-white);
  vertical-align: middle;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0);
}
.bubble:hover {
  transform: scale(1.05);
  cursor: pointer;
  box-shadow: 0 1rem 1rem rgba(0, 0, 0, 0.35);
}
.bubble:hover .title {
  text-shadow: 0 6px 6px rgba(0, 0, 0, 0.35);
}
.bubble .title {
  font-size: 3.1rem;
  line-height: 3.1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.bubble .text {
  font-size: 0.9rem;
  font-weight: 500;
}

.ce-contentbubbles {
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  .ce-contentbubbles {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  .ce-contentbubbles {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  .ce-contentbubbles {
    max-width: 90em;
  }
}
.ce-contentbubbles ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.ce-contentbubbles ul li {
  padding: 1rem;
  text-align: center;
}
.ce-contentbubbles .countup {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.25rem;
}
@media (min-width: 48em) {
  .ce-contentbubbles .countup {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1rem;
  }
}
.ce-contentbubbles .count-up-numbers .title {
  font-size: 3rem;
  line-height: 4.1rem;
  font-weight: 900;
  margin-bottom: 0.15rem;
  color: var(--color-primary);
}
@media (min-width: 48em) {
  .ce-contentbubbles .count-up-numbers .title {
    font-size: 4.1rem;
  }
}
.ce-contentbubbles .count-up-numbers .text {
  font-size: 0.9rem;
  font-weight: 500;
}

.multi-cols-container .ce-contentbubbles ul {
  display: block;
}

@media (min-width: 48em) {
  .site-nav-trigger-wrapper {
    display: none;
  }
}

.site-nav-trigger {
  top: 1.5rem;
  right: 0.5rem;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  color: transparent;
  font: 0/0 a !important;
  padding: 0.375rem 0;
  text-shadow: none;
  z-index: 90;
  display: block;
  width: 2rem;
  height: 2rem;
  position: absolute;
  margin-right: 1rem;
}
@media (min-width: 48em) {
  .site-nav-trigger {
    margin-right: inherit;
  }
}
.site-nav-trigger .site-nav-burger,
.site-nav-trigger .site-nav-burger:before,
.site-nav-trigger .site-nav-burger:after {
  content: "";
  display: block;
  height: 0.25rem;
  position: absolute;
  right: 0;
  top: 0.875rem;
  transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 2.5rem;
  border-radius: 0rem;
  background: var(--color-white);
}
.site-nav-trigger .site-nav-burger {
  cursor: pointer;
}
.site-nav-trigger .site-nav-burger:before {
  top: -0.575rem;
}
.site-nav-trigger .site-nav-burger:after {
  top: 0.575rem;
}
.site-nav-trigger:hover {
  cursor: pointer;
}
.site-nav-trigger:hover .site-nav-burger {
  background: var(--color-white);
}
.site-nav-trigger:hover .site-nav-burger:before, .site-nav-trigger:hover .site-nav-burger:after {
  background: var(--color-white);
}

.site-nav {
  position: fixed;
  margin: 0 auto;
  display: none;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  padding: var(--default-padding);
  background: linear-gradient(169deg, #6E98A7 4.79%, #69809F 24.93%, #757189 45.53%, #C57E48 67.04%, #F4AD4D 85.87%, #F6B555 100%);
  z-index: 2;
}
@media (min-width: 48em) {
  .site-nav {
    display: block;
    position: relative;
    background: none;
    padding: 0;
  }
}
@media (min-width: 48em) {
  .site-nav .logo {
    display: none;
  }
}
@media (min-width: 48em) {
  .site-nav .primary-nav {
    display: block;
    text-align: right;
    margin-top: 2.5rem;
  }
}
.site-nav .primary-nav .logo {
  width: 200px;
  margin: 0 auto;
  margin-top: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 48em) {
  .site-nav .primary-nav li {
    display: inline-block;
    margin-bottom: 0;
  }
}
@media (min-width: 48em) {
  .site-nav .primary-nav li.current a {
    border-bottom: 1px solid white;
    padding-bottom: 0.5rem;
  }
}
.site-nav .primary-nav li a {
  font-size: 2.7rem;
  font-weight: 700;
  line-height: 2.3rem;
}
@media (min-width: 48em) {
  .site-nav .primary-nav li a {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8rem;
  }
}

.site-nav-container {
  margin: 0 auto;
  width: auto;
}
.primary-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 48em) {
  .primary-nav {
    display: grid;
    grid-template-columns: 4fr 4fr;
    gap: var(--default-gap);
  }
}
.primary-nav a {
  color: var(--color-white);
  display: block;
  text-transform: uppercase;
  padding: 0.1rem 0.5rem;
  text-align: center;
}
.primary-nav a:hover {
  color: var(--color-blue-dark-hover);
  background: none;
}
.primary-nav > li {
  margin-bottom: 1rem;
}
.primary-nav > li > a {
  padding: 0.1rem 1rem;
  display: block;
  font-size: 1.5rem;
  font-family: var(--h1);
}
.primary-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.primary-nav ul > li > a {
  padding-left: 1rem;
  font-size: 1rem;
  line-height: 200%;
  font-weight: 700;
}
.primary-nav ul > li > ul > li a {
  padding-left: 2.5rem;
  font-size: 1rem;
  font-weight: 300;
}
.primary-nav ul li {
  list-style: none;
  padding: 0;
  margin: 0;
}

body.navigating .site-nav-burger {
  width: 0;
  background: var(--color-white);
}
body.navigating .site-nav-burger:before {
  top: 0;
  transform: rotate(-45deg);
  background: var(--color-white);
}
body.navigating .site-nav-burger:after {
  top: 0;
  transform: rotate(45deg);
  background: var(--color-white);
}
body.navigating .site-nav {
  overflow-y: auto;
  display: block;
}

.site-lang-nav {
  display: none;
}

@-webkit-keyframes zauberzirkusMenuBackground {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0 50%;
  }
}
@keyframes zauberzirkusMenuBackground {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0 50%;
  }
}
@-webkit-keyframes animateShowMenu {
  0% {
    opacity: 0;
    bottom: 90%;
  }
  to {
    opacity: 1;
    bottom: 0;
  }
}
@keyframes animateShowMenu {
  0% {
    opacity: 0;
    bottom: 90%;
  }
  to {
    opacity: 1;
    bottom: 0;
  }
}
.primary-aside {
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
  margin-bottom: 0.5rem;
}
@media (min-width: 48em) {
  .primary-aside {
    display: block;
  }
}
.primary-aside .current > a {
  margin-left: -2rem;
  padding-left: 3.5rem;
}
.primary-aside ul li.current > a {
  margin-left: -2rem;
  padding-left: 5rem;
}
.primary-aside ul li ul li.current > a {
  margin-left: -2rem;
  padding-left: 6.5rem;
}
.primary-aside li {
  list-style: none;
  padding: 0;
  margin: 0;
}
.primary-aside li a {
  font-weight: 600;
  display: block;
  background: var(--color-white);
  padding: 0.75rem 0.75rem 0.75rem 1.5rem;
  margin-bottom: 1px;
}
.primary-aside li a:hover {
  background: none;
  color: var(--color-white);
}
.primary-aside li ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.primary-aside li ul li > a {
  padding-left: 3rem;
  font-weight: 400;
}
.primary-aside li ul li ul li > a {
  font-weight: 400;
  padding-left: 4.5rem;
}
.primary-aside .hide {
  display: none;
}
.primary-aside.home-link {
  margin-bottom: var(--default-gap);
}
.primary-aside.home-link a {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff",endColorstr="#ffffff",GradientType=1);
}
.primary-aside.home-link a > span:first-child {
  font-size: 1.2rem;
  padding: 0 0.65rem 0 0;
  margin-left: -0.2rem;
  margin-bottom: -0.2rem;
}
.primary-aside.home-link a > span:first-child:after {
  margin-bottom: -0.5rem;
}
.primary-aside.home-link a > span:last-child {
  padding-top: 0.1rem;
  display: inline-block;
  font-weight: 400;
  position: absolute;
}

nav.breadcrumb {
  margin: 0 auto 0px auto;
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: var(--layout-padding);
  width: auto;
  padding-right: var(--layout-padding);
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 100%);
  background: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(90deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
  display: none;
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  nav.breadcrumb {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  nav.breadcrumb {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  nav.breadcrumb {
    max-width: 90em;
  }
}
@media (min-width: 48em) {
  nav.breadcrumb {
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto 0px auto;
  }
}
nav.breadcrumb:hover > ul {
  opacity: 1;
}
nav.breadcrumb a {
  font-size: 0.8rem;
}
nav.breadcrumb > ul {
  padding-left: 0;
  padding-top: 0.2rem;
  padding-bottom: 0.2rem;
  display: inline-block;
  margin-block-end: 0;
}
nav.breadcrumb svg {
  max-height: 2rem;
  max-width: 2rem;
  display: inline-block;
  margin-right: 0.3rem;
}
nav.breadcrumb li, nav.breadcrumb a {
  color: var(--color-white);
  opacity: 1;
}
nav.breadcrumb li {
  display: inline-block;
}
nav.breadcrumb li a {
  padding-left: 0;
  padding-right: 0.3rem;
}
nav.breadcrumb li a:hover {
  opacity: 1;
}
nav.breadcrumb li > a:after {
  content: " »";
  padding-left: 0.2rem;
  padding-bottom: 0.2rem;
  vertical-align: middle;
  line-height: 1rem;
  display: inline-block;
}
nav.breadcrumb li .material-symbols-outlined {
  font-size: 1rem;
  padding-right: 0.5rem;
  margin-top: 1px;
  margin-bottom: -3px;
  position: absolute;
}
nav.breadcrumb li:first-child > a:after {
  margin-left: 1.2rem;
}
nav.breadcrumb li:last-child > a {
  color: var(--color-blue-clear);
}
nav.breadcrumb li:last-child > a:hover {
  color: var(--color-red);
  text-decoration: none;
}
nav.breadcrumb li:last-child > a:after {
  content: "";
}

/*
nav.breadcrumb li:first-child > a:after,
nav.breadcrumb li:last-child > a:after {
  content: '';
}

nav.breadcrumb li:first-child {
  display: none;
}*/
nav.breadcrumb > ul {
  margin-top: 0;
}

.background-media {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: blur(60px);
  transition: filter 0.5s var(--easeOutQuad);
}
.background-media.loaded {
  filter: none;
}
.background-media img,
.background-media video {
  /*@apply --full-height-media;*/
}

.background-media {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45vh;
  z-index: -1;
  filter: blur(3rem);
  transition: filter 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.background-media.loaded {
  filter: none;
}

.background-media img, .background-media video {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
}

.ce-textwithmedia {
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  .ce-textwithmedia {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  .ce-textwithmedia {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  .ce-textwithmedia {
    max-width: 90em;
  }
}
.ce-textwithmedia h2, .ce-textwithmedia h3, .ce-textwithmedia h4, .ce-textwithmedia h5, .ce-textwithmedia h6 {
  margin-bottom: 0.5rem;
}
.ce-textwithmedia h2:first-of-type, .ce-textwithmedia h3:first-of-type, .ce-textwithmedia h4:first-of-type, .ce-textwithmedia h5:first-of-type, .ce-textwithmedia h6:first-of-type {
  margin-bottom: 0.5rem;
}
.ce-textwithmedia h2.underlined, .ce-textwithmedia h3.underlined, .ce-textwithmedia h4.underlined, .ce-textwithmedia h5.underlined, .ce-textwithmedia h6.underlined {
  border-bottom: 0.0625rem solid currentColor;
  color: var(--text-dark);
  margin: 0 0 1.5em;
  padding: 0.5em 0;
  display: block;
  width: 100%;
}
.ce-textwithmedia h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.ce-textwithmedia h4 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}
.ce-textwithmedia h5 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}
.ce-textwithmedia h6 {
  font-size: 0.8rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}
.ce-textwithmedia > div {
  margin-bottom: 1.5rem;
}
.ce-textwithmedia .content {
  grid-area: contents;
}
.ce-textwithmedia .images {
  grid-area: images;
  height: auto;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
}
.ce-textwithmedia .images figure {
  margin: 0;
}
.ce-textwithmedia .images.two-cols .entries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
@media (min-width: 48em) {
  .ce-textwithmedia .images.two-cols .entries {
    gap: 1.5rem;
  }
}
.ce-textwithmedia .images.three-cols .entries {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.7rem;
  max-width: 100%;
}
@media (min-width: 48em) {
  .ce-textwithmedia .images.three-cols .entries {
    gap: 1.5rem;
  }
}
.ce-textwithmedia > .image-pos-right, .ce-textwithmedia > .image-pos-left {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.7rem;
}
@media (min-width: 48em) {
  .ce-textwithmedia > .image-pos-right, .ce-textwithmedia > .image-pos-left {
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
  }
}
.ce-textwithmedia > .image-pos-right {
  grid-template-areas: "contents" "images";
}
@media (min-width: 48em) {
  .ce-textwithmedia > .image-pos-right {
    grid-template-areas: "contents images";
  }
}
.ce-textwithmedia > .image-pos-left {
  grid-template-areas: "images" "contents";
}
@media (min-width: 48em) {
  .ce-textwithmedia > .image-pos-left {
    grid-template-areas: "images contents";
  }
}
.ce-textwithmedia > .image-pos-below, .ce-textwithmedia > .image-pos-above {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.ce-textwithmedia > .image-pos-above {
  grid-template-areas: "images" "contents";
}
.ce-textwithmedia > .image-pos-below {
  grid-template-areas: "contents" "images";
}
.ce-textwithmedia > .image-pos-below .image {
  margin-bottom: 1rem;
}

.col-xs-12 h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.col-sm-4 .ce-textwithimage .text p a {
  margin-bottom: 0;
}

.ce-gridnews {
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  .ce-gridnews {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  .ce-gridnews {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  .ce-gridnews {
    max-width: 90em;
  }
}
.ce-gridnews h2, .ce-gridnews h3, .ce-gridnews h4, .ce-gridnews h5, .ce-gridnews h6 {
  margin-bottom: 0.5rem;
}
.ce-gridnews h2:first-of-type, .ce-gridnews h3:first-of-type, .ce-gridnews h4:first-of-type, .ce-gridnews h5:first-of-type, .ce-gridnews h6:first-of-type {
  margin-bottom: 0.5rem;
}
.ce-gridnews h2.underlined, .ce-gridnews h3.underlined, .ce-gridnews h4.underlined, .ce-gridnews h5.underlined, .ce-gridnews h6.underlined {
  border-bottom: 0.0625rem solid currentColor;
  color: var(--text-dark);
  margin: 0 0 1.5em;
  padding: 0.5em 0;
  display: block;
  width: 100%;
}
.ce-gridnews h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.ce-gridnews h4 {
  font-size: 1.25rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}
.ce-gridnews h5 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}
.ce-gridnews h6 {
  font-size: 0.8rem;
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: var(--color-black);
}
.ce-gridnews > div {
  margin-bottom: 1.5rem;
}
.ce-gridnews .content {
  grid-area: contents;
}
.ce-gridnews .images {
  grid-area: images;
  height: auto;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
}
.ce-gridnews .images figure {
  margin: 0;
}
.ce-gridnews .images.two-cols .entries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
@media (min-width: 48em) {
  .ce-gridnews .images.two-cols .entries {
    gap: 1.5rem;
  }
}
.ce-gridnews .images.three-cols .entries {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.7rem;
  max-width: 100%;
}
@media (min-width: 48em) {
  .ce-gridnews .images.three-cols .entries {
    gap: 1.5rem;
  }
}
.ce-gridnews > .image-pos-right, .ce-gridnews > .image-pos-left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
@media (min-width: 48em) {
  .ce-gridnews > .image-pos-right, .ce-gridnews > .image-pos-left {
    gap: 1.2rem;
  }
}
.ce-gridnews > .image-pos-right {
  grid-template-areas: "contents images";
}
.ce-gridnews > .image-pos-left {
  grid-template-areas: "images contents";
}
.ce-gridnews > .image-pos-below, .ce-gridnews > .image-pos-above {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.ce-gridnews > .image-pos-above {
  grid-template-areas: "images" "contents";
}
.ce-gridnews > .image-pos-below {
  grid-template-areas: "contents" "images";
}
.ce-gridnews > .image-pos-below .image {
  margin-bottom: 1rem;
}

.col-xs-12 h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.col-sm-4 .ce-textwithimage .text p a {
  margin-bottom: 0;
}

.news-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2rem;
  /* ab Tablet 2 Spalten */
  grid-template-columns: 1fr;
  /* ab Desktop 3 Spalten */
}
@media (min-width: 48em) {
  .news-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 64em) {
  .news-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.news-item {
  border: 1px solid var(--color-primary);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.3s;
}
.news-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.news-item {
  display: flex;
  flex-direction: column;
}

.news-image {
  width: 100%;
  margin: 0;
}

.news-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.news-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-image img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.news-content {
  padding: 1rem;
}

.news-date {
  display: block;
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 0.5rem;
}

.news-title {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.news-teaser {
  margin: 0 0 1rem;
  color: #444;
}

.news-cta {
  font-weight: bold;
  color: #0055a5;
  text-decoration: underline;
}

.all-news-link {
  display: block;
  margin: 1rem 0;
  font-weight: bold;
}

.ce-forms {
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  .ce-forms {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  .ce-forms {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  .ce-forms {
    max-width: 90em;
  }
}

.ce-googlereviews {
  margin-bottom: 2rem;
}

.google-reviews {
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  .google-reviews {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  .google-reviews {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  .google-reviews {
    max-width: 90em;
  }
}
.google-reviews .review {
  border: 1px solid #eee;
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 0.75rem;
}
.google-reviews .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.25rem;
}
.google-reviews .rating {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}
.google-reviews .text {
  margin: 0 0 0.25rem;
}
.google-reviews time {
  font-size: 0.875rem;
  color: #666;
}

.ce-stepstogo {
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  .ce-stepstogo {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  .ce-stepstogo {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  .ce-stepstogo {
    max-width: 90em;
  }
}
.ce-stepstogo .steps-to-go {
  display: grid;
  grid-template-columns: 1fr;
  bottom: 3rem;
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
}
@media (min-width: 48em) {
  .ce-stepstogo .steps-to-go {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.ce-stepstogo .step {
  list-style: none;
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
  color: var(--color-white);
  padding: 1rem;
}
.ce-stepstogo .step .no {
  font-size: 2.5rem;
  font-weight: bold;
  width: 40px;
  float: left;
}
.ce-stepstogo .step h2 {
  color: var(--color-white);
  font-weight: normal;
  padding-top: 0.2rem;
}
.ce-stepstogo .step .content p {
  margin-bottom: 0;
  padding-bottom: 0;
}
.ce-stepstogo .stepper-mount {
  width: 4px;
  border: none;
  background-position: var(--color-primary);
  height: 100px;
  position: absolute;
  margin: 0 auto;
  z-index: 9;
}
.ce-stepstogo .bg-image {
  width: 100%;
  margin-top: -264px;
  text-align: right;
  z-index: 99;
  position: relative;
  display: none;
}
@media (min-width: 48em) {
  .ce-stepstogo .bg-image {
    right: 200px;
  }
}
.ce-stepstogo .bg-image img {
  position: right;
  max-width: 400px;
}

.ce-multicols .multi-cols-container > div {
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  .ce-multicols .multi-cols-container > div {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  .ce-multicols .multi-cols-container > div {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  .ce-multicols .multi-cols-container > div {
    max-width: 90em;
  }
}
.ce-multicols .cols-two-cols {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48em) {
  .ce-multicols .cols-two-cols {
    grid-template-columns: 7fr 5fr;
  }
}
.ce-multicols .ce-style-three-cols > div {
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  .ce-multicols .ce-style-three-cols > div {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  .ce-multicols .ce-style-three-cols > div {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  .ce-multicols .ce-style-three-cols > div {
    max-width: 90em;
  }
}
.ce-multicols .ce-style-three-cols.lightBlue {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background: var(--color-blue-light);
}
.ce-multicols .ce-style-three-cols.darkBlue {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background: var(--color-primary);
}
.ce-multicols .ce-style-three-cols.darkBlue h1, .ce-multicols .ce-style-three-cols.darkBlue h2, .ce-multicols .ce-style-three-cols.darkBlue h3, .ce-multicols .ce-style-three-cols.darkBlue h4, .ce-multicols .ce-style-three-cols.darkBlue p, .ce-multicols .ce-style-three-cols.darkBlue strong, .ce-multicols .ce-style-three-cols.darkBlue ul, .ce-multicols .ce-style-three-cols.darkBlue li {
  color: var(--color-white);
}
.ce-multicols .ce-style-three-cols .multi-cols-container .ce-multicols {
  display: grid;
  grid-template-columns: 4fr;
  gap: 1.5rem;
}
@media (min-width: 48em) {
  .ce-multicols .ce-style-three-cols .multi-cols-container .ce-multicols {
    grid-template-columns: 4fr 4fr 4fr;
  }
}

.ce-reviews {
  margin: 0 auto;
  max-width: 95vw;
}
@media (min-width: 48em) {
  .ce-reviews {
    max-width: 90vw;
  }
}
@media (min-width: 64em) {
  .ce-reviews {
    max-width: 85vw;
  }
}
@media (min-width: 96em) {
  .ce-reviews {
    max-width: 90em;
  }
}
.ce-reviews .stars {
  --rating: 4; /* fallback falls data-rating fehlt */
  --star-size: 24px;
  --star-color: #ccc;
  --star-filled: #f6b800;
  display: inline-block;
  font-size: var(--star-size);
  font-family: "Arial", sans-serif;
  line-height: 1;
  position: relative;
}
.ce-reviews .stars::before {
  content: "★★★★★";
  letter-spacing: 3px;
  color: var(--star-color);
}
.ce-reviews .stars::after {
  content: "★★★★★";
  letter-spacing: 3px;
  color: var(--star-filled);
  position: absolute;
  left: 0;
  top: 0;
  width: calc(var(--rating) / 5 * 100%);
  overflow: hidden;
}
.ce-reviews .slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  margin-bottom: 1.5rem;
}
.ce-reviews .slider-wrapper .slider-prev {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  font-size: 1.4rem;
}
.ce-reviews .slider-wrapper .slider-next {
  font-size: 1.4rem;
  margin-top: -5px;
  padding-left: 8px;
}
.ce-reviews .slider {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform;
  max-width: 100vw;
  margin-top: 1rem;
}
.ce-reviews .slider-slide {
  flex: 0 0 100%;
  width: 100%;
}
.ce-reviews .slider-slide p {
  max-width: 93%;
  line-height: 1.6rem;
  font-size: 1.2rem;
  font-style: italic;
}
.ce-reviews .slider-slide p:before {
  content: "« ";
  font-size: 1.8rem;
  font-style: normal;
}
.ce-reviews .slider-slide p:after {
  content: " »";
  font-size: 1.8rem;
  font-style: normal;
}
.ce-reviews .two-cols {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 48em) {
  .ce-reviews .two-cols {
    gap: 1.5rem;
    grid-template-columns: 8fr 4fr;
  }
}

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