/* Left in for compability reasons */
/* Background transitions */
/* Bild Filter */
:root {
  --header-height: 112px;
  --header-padding-bottom: 16px;
  --sticky-top: calc(
    var(--header-height) + var(--sticky-promobar-height)
    );
  --container-padding: 16px;
  --sticky-promobar-height: 0.01px;
  --header-breakpoint: 1532px;
  --media-center-sidebar-width: 380px;
  --spacer-sx: 20px;
  --spacer-s: 30px;
  --spacer-m: 50px;
  --spacer-l: 75px;
}
:root:has(.sticky_promobar:not(.hide)) {
  --sticky-promobar-height: 48px;
}
@media (min-width: 768px) {
  :root {
    --container-padding: 32px;
  }
}
@media (min-width: 1200px) {
  :root {
    --container-padding: 32px;
  }
}
@media (min-width: 1532px) {
  :root {
    --header-padding-bottom: 32px;
    --header-height: 112px;
  }
}
@media (min-width: 1500px) {
  :root {
    --media-center-sidebar-width: 450px;
  }
}
@media (min-width: 768px) {
  :root {
    --spacer-sx: 32px;
    --spacer-s: 65px;
    --spacer-m: 80px;
    --spacer-l: 180px;
  }
}

/* MIXINS */
.facts .facts_headline_wrapper {
  text-align: center;
}
.facts .facts_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(1, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 0px;
  text-align: center;
  padding-top: 65px;
}
@media (min-width: 831px) {
  .facts .facts_wrapper {
    display: flex;
    justify-content: space-between;
  }
}
.facts .facts_wrapper .fact_element {
  margin-bottom: 10px;
  width: 20%;
}
.facts .facts_wrapper .fact_icon img {
  height: 120px;
  width: 120px;
}
.facts .facts_wrapper .fact_name {
  padding-top: 15px;
  font-size: 24px;
  font-weight: 500;
  position: relative;
}
.facts .facts_wrapper .fact_name:after {
  content: "";
  position: absolute;
  height: 4px;
  width: 35px;
  background: #fff;
  bottom: -20px;
  left: calc(50% - 17.5px);
}
.facts .facts_wrapper .fact_count_wrapper {
  padding-top: 40px;
  display: flex;
  justify-content: center;
  align-items: end;
}
.facts .facts_wrapper .fact_count_wrapper .fact_wert {
  font-size: 46px;
  font-weight: 500;
  letter-spacing: 0.3rem;
}
.facts .facts_wrapper .fact_count_wrapper .fact_einheit {
  margin-bottom: 3px;
  font-size: 36px;
  margin-left: 5px;
}

.facts .facts_wrapper .fact_count_wrapper {
  padding-top: 0;
}

.facts .facts_wrapper .fact_name {
  padding-top: 20px;
  margin-top: 20px;
}

.facts .facts_wrapper .fact_name:after {
  bottom: unset;
  top: 0;
}

@media (max-width: 830px) {
  .facts .facts_wrapper {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 35px;
  }
}
@media (max-width: 460px) {
  .facts .facts_wrapper {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 35px;
  }
}
@media (max-width: 830px) {
  .facts .facts_wrapper .fact_element {
    width: unset;
  }
}
/*# sourceMappingURL=facts.css.map */
