@font-face {
  font-family: Neo Sans;
  src: url("../fonts/NeoSansStd-Regular.otf");
  font-display: fallback;
}
@font-face {
  font-family: Neo Sans;
  src: url("../fonts/NeoSansStd-Bold.otf");
  font-weight: bold;
}
@font-face {
  font-family: Neo Sans;
  src: url("../fonts/NeoSansStd-Italic.otf");
  font-style: italic;
}
@font-face {
  font-family: Neo Sans;
  src: url("../fonts/NeoSansStd-Light.otf");
  font-weight: 300;
}
html {
  font-size: 10px !important;
  scroll-behavior: smooth;
}

/**
 * Disable smooth scrolling when users have prefers-reduced-motion enabled
 */
@media screen and (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: smooth;
  }
}
.brx-body {
  font-family: Neo Sans, Arial, serif;
  color: #636363;
  font-size: clamp(1.8rem, 1.25vw, 2.2rem);
  font-weight: 400;
  font-style: normal;
  line-height: normal;
  background-color: white;
  scroll-margin-top: 5rem;
}
.brx-body a:focus-visible {
  outline: 2px dashed red !important;
}
.brx-body section {
  padding: 9rem 0;
}
.brx-body .brxe-container {
  width: 90%;
  max-width: 1920px;
}
.brx-body .spacer-top {
  padding-top: 5rem;
}
.brx-body .spacer-bottom {
  padding-bottom: 5rem;
}
.brx-body .parallax {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
}
.brx-body .slim {
  max-width: 870px;
  margin: 0 auto;
}
.brx-body .icon-box {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 2rem;
  align-items: center;
  position: relative;
  font-weight: 500;
}
.brx-body .icon-box img {
  width: 75px;
  height: auto;
}
.brx-body .icon-box p {
  margin: 0;
}
.brx-body h1,
.brx-body h2,
.brx-body h3,
.brx-body h4,
.brx-body h5,
.brx-body .bigger-text,
.brx-body .xxl-text,
.brx-body a,
.brx-body .brxe-text-basic,
.brx-body .brxe-text,
.brx-body .btn,
.brx-body .icon-box {
  font-synthesis: none;
}
.brx-body .fly-right,
.brx-body .fly-left,
.brx-body .fly-up,
.brx-body .fly-down {
  position: relative;
  opacity: 0;
  animation-fill-mode: forwards;
}
.brx-body .animation {
  animation-duration: 1s;
  animation-delay: 0.5s;
}
.brx-body .fly-right.animation {
  animation-name: fly-in-right;
}
.brx-body .fly-left.animation {
  animation-name: fly-in-left;
}
.brx-body .fly-down.animation {
  animation-name: fly-in-down;
}
@keyframes fly-in-right {
  from {
    left: 300px;
    opacity: 0;
  }
  to {
    left: 0px;
    opacity: 100;
  }
}
@keyframes fly-in-left {
  from {
    left: -300px;
    opacity: 0;
  }
  to {
    left: 0px;
    opacity: 100;
  }
}
@keyframes fly-in-up {
  from {
    top: -300px;
    opacity: 0;
  }
  to {
    top: 0px;
    opacity: 100;
  }
}
@keyframes fly-in-down {
  from {
    bottom: -150px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}
.brx-body .btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 3rem;
  color: white;
  border-radius: 10px;
  line-height: 1.8rem;
  cursor: pointer;
  transition: 0.3s ease all;
}
.brx-body .btn.red {
  background-color: #BF111E;
  border: 1px solid #BF111E;
}
.brx-body .btn.red:hover {
  color: #BF111E;
}
.brx-body .btn.green {
  background-color: #4D8B41;
  border: 1px solid #4D8B41;
}
.brx-body .btn.green:hover {
  color: #4D8B41;
}
.brx-body .btn.green.alt {
  background-color: transparent;
  color: #4D8B41;
}
.brx-body .btn.green.alt:hover {
  color: white;
  background-color: #4D8B41;
}
.brx-body .btn.orange {
  background-color: #E4AE40;
  border: 1px solid #E4AE40;
}
.brx-body .btn.orange:hover {
  color: #E4AE40;
}
.brx-body .btn.blue {
  background-color: #1770B4;
  border: 1px solid #1770B4;
}
.brx-body .btn.blue:hover {
  color: #1770B4;
}
.brx-body .btn:hover {
  background-color: transparent;
}
.brx-body .btn.big {
  font-size: clamp(2rem, 2.2vw, 3rem);
  padding: 3.5rem 6rem;
  font-weight: bold;
}
.brx-body h1 {
  font-size: clamp(3rem, 3.25vw, 6rem);
}
.brx-body h2 {
  font-size: clamp(2.5rem, 2.5vw, 4rem);
  text-transform: uppercase;
  margin-bottom: 6rem;
}
.brx-body h3 {
  font-size: clamp(2rem, 2.2vw, 3rem);
  margin-bottom: 3rem;
}
.brx-body h4 {
  font-size: clamp(1.8rem, 1.25vw, 2.4rem);
}
.brx-body .cmplz-cookiebanner {
  right: 10vw;
}
.brx-body .center {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.brx-body .overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0.6;
  top: 0;
  left: 0;
  z-index: 0;
  display: block;
}
.brx-body .single-news .single-news-wrapper {
  max-width: 1250px;
  margin: 0 auto;
}
.brx-body .single-news h1 {
  font-size: clamp(4rem, 4.25vw, 8rem);
  margin-bottom: 2rem;
  text-align: center;
}
.brx-body .single-news h2 {
  font-size: clamp(2.5rem, 2.08vw, 4rem);
  margin-top: 4rem;
}
.brx-body .single-news h3 {
  font-size: clamp(1.8rem, 1.25vw, 2.4rem);
  margin-top: 2rem;
}
.brx-body .single-news .excerpt {
  margin: 1rem auto 5rem;
  font-style: italic;
  text-align: center;
}
.brx-body .single-news .news-pic {
  margin: 0 auto 4rem;
  max-height: 550px;
  text-align: center;
}
.brx-body .single-news .news-pic img {
  object-fit: contain;
  width: auto;
  height: 100%;
}
.brx-body .single-news figure {
  max-height: 550px;
}
.brx-body .single-news .post-navi {
  margin-top: 6rem;
}
.brx-body header section {
  padding: 0;
}
.brx-body header .header-wrapper {
  flex-direction: row;
  justify-content: space-between;
  padding: 2rem 0;
  font-weight: bold;
  align-items: center;
}
.brx-body header .menu-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
  align-items: center;
}
.brx-body header .menu-wrapper .bricks-nav-menu {
  gap: 5rem;
}
.brx-body header .menu-wrapper .bricks-nav-menu .sub-menu {
  background-color: white;
  color: #636363;
  width: 100%;
  border-top: 1px solid #eee;
  margin-top: 2rem;
}
.brx-body header .menu-wrapper .bricks-nav-menu .sub-menu li {
  padding: 0 2rem;
  left: -2rem;
  box-sizing: content-box;
  background-color: white;
  border-radius: 10px;
}
.brx-body header .menu-wrapper .bricks-nav-menu .sub-menu li a {
  padding: 0;
}
.brx-body header .menu-wrapper li {
  margin: 0;
}
.brx-body header .menu-wrapper li a {
  text-transform: uppercase;
}
.brx-body .intro {
  padding: 0;
  height: calc(100vh - 100px);
}
.brx-body .intro .intro-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5rem 12rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
  width: fit-content;
}
.brx-body .intro .icon-wrapper {
  display: flex;
  justify-content: center;
  gap: 6rem;
}
.brx-body .intro .icon-box {
  font-size: clamp(1.8rem, 2.82vw, 3.5rem);
  font-weight: bold;
}
.brx-body .intro .countdown {
  margin-bottom: 1rem;
}
.brx-body .intro .countdown .brxe-countdown {
  gap: 9rem;
  flex-wrap: nowrap;
}
.brx-body .intro .countdown .field {
  text-align: center;
  margin: 0 !important;
  position: relative;
}
.brx-body .intro .countdown .field:not(:first-child)::before {
  content: ":";
  position: absolute;
  font-size: clamp(3rem, 4.69vw, 9rem);
  top: -1rem;
  left: -5.5rem;
  font-weight: bold;
}
.brx-body .intro .countdown .field .format {
  font-size: clamp(3rem, 5.21vw, 10rem);
  font-weight: bold;
}
.brx-body .intro .countdown .field:nth-child(1) .format {
  color: #1770B4;
}
.brx-body .intro .countdown .field:nth-child(2) .format {
  color: #4D8B41;
}
.brx-body .intro .countdown .field:nth-child(3) .format {
  color: #E4AE40;
}
.brx-body .intro .countdown .field:nth-child(4) .format {
  color: #BF111E;
}
.brx-body .side-btn-wrapper {
  position: fixed;
  right: 0;
  top: 55%;
  transform: TranslateY(-50%);
  width: fit-content;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: flex-end;
  align-items: end;
}
.brx-body .side-btn-wrapper .btn {
  border-radius: 10px 0px 0px 10px;
}
.brx-body .side-btn-wrapper .btn:hover {
  background-color: white;
}
.brx-body .side-btn-wrapper .kreuz {
  margin: 0 auto;
  width: 64px;
  height: auto;
}
.brx-body .info-wrapper {
  text-align: center;
  gap: 6rem;
  align-items: center;
}
.brx-body .info-wrapper h2 {
  margin: 0;
}
.brx-body .info-wrapper.alt h2 {
  max-width: 1080px;
}
.brx-body .info-wrapper.alt .brxe-text-basic {
  max-width: 910px;
}
.brx-body .details {
  padding: 0;
}
.brx-body .details.alt .details-pic img {
  height: 100%;
  object-fit: cover;
}
.brx-body .no-margin {
  margin: 0;
  max-width: 50%;
}
.brx-body .details-wrapper {
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
}
.brx-body .details-wrapper .details-pic,
.brx-body .details-wrapper .details-content {
  width: 50%;
  max-width: 1000px;
}
.brx-body .details-wrapper .details-content {
  padding: 10rem 13rem;
  background-color: #FAFBF7;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.brx-body .details-wrapper .details-content > h2 {
  margin: 0;
}
.brx-body .details-wrapper .content-columns {
  display: flex;
  justify-content: space-between;
}
.brx-body .details-wrapper .content-columns > div {
  max-width: 235px;
}
.brx-body .details-wrapper .content-columns > div img {
  margin-bottom: 3rem;
}
.brx-body .programm-wrapper {
  flex-direction: row;
  gap: 6rem;
  justify-content: center;
}
.brx-body .programm-wrapper h2 {
  margin-bottom: 3rem;
}
.brx-body .programm-wrapper .timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.brx-body .programm-wrapper .entry {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.brx-body .programm-wrapper .entry .time {
  font-weight: bold;
}
.brx-body .programm-wrapper .entry .dot {
  position: relative;
  width: 16px;
  height: 15px;
}
.brx-body .programm-wrapper .entry .dot::after {
  content: url(/wp-content/uploads/2025/02/dot-with.svg);
  position: absolute;
  width: 16px;
  height: 40px;
}
.brx-body .programm-wrapper .entry:last-child .dot::after {
  content: url(/wp-content/uploads/2025/02/dot.svg);
  height: 15px;
  top: -8px;
}
.brx-body .people {
  height: clamp(250px, 26.04vw, 700px);
}
.brx-body .laufen {
  height: clamp(300px, 36.46vw, 500px);
}
.brx-body .laufen,
.brx-body .people {
  position: relative;
}
.brx-body .laufen .people-text,
.brx-body .people .people-text {
  z-index: 100;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.brx-body .laufen .people-text .brxe-text-basic,
.brx-body .people .people-text .brxe-text-basic {
  color: #1770B4;
  text-align: center;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.1);
  font-size: clamp(5rem, 5.2vw, 10rem);
  font-weight: bold;
  line-height: normal;
  text-transform: uppercase;
  margin: 0 auto;
}
.brx-body .small-text {
  font-size: 1.6rem;
}
.brx-body .alt-bg {
  background-color: #FAFBF7;
}
.brx-body .bewerbe {
  background-color: #FAFBF7;
}
.brx-body .bewerbe-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5rem;
  justify-content: space-around;
}
.brx-body .bewerbe-wrapper .bewerb {
  min-width: 150px;
  display: flex;
  flex-direction: column;
  flex: 0;
  gap: 3rem;
  align-items: center;
}
.brx-body .bewerbe-wrapper .bewerb h2 {
  margin: 0;
  text-transform: initial;
}
.brx-body .bewerbe-wrapper .bewerb .price {
  font-size: clamp(2.5rem, 2.86vw, 5.5rem);
  font-weight: bold;
}
.brx-body .bewerbe-wrapper .bewerb .small-text {
  text-align: center;
}
.brx-body .bewerbe-wrapper .bewerb.blue {
  color: #1770B4;
}
.brx-body .bewerbe-wrapper .bewerb.green {
  color: #4D8B41;
}
.brx-body .bewerbe-wrapper .bewerb.orange {
  color: #E4AE40;
}
.brx-body .bewerbe-wrapper .bewerb.red {
  color: #BF111E;
}
.brx-body .gruppen-wrapper {
  gap: 6rem;
  align-items: center;
  justify-content: center;
}
.brx-body .accordion {
  max-width: 930px;
}
.brx-body .accordion .accordion-title,
.brx-body .accordion .accordion-title-wrapper {
  gap: 6rem;
  width: fit-content;
  margin: 0 auto;
}
.brx-body .accordion .accordion-title i,
.brx-body .accordion .accordion-title-wrapper i {
  font-size: 3rem;
  transition: 0.3s ease all;
}
.brx-body .accordion .packages {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 5rem;
}
.brx-body .accordion .block-1 {
  display: flex;
  gap: 6rem;
}
.brx-body .accordion .column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.brx-body .accordion .block-2 .brxe-text {
  line-height: 3rem;
}
.brx-body .newsletter {
  background-color: #FAFBF7;
}
.brx-body .newsletter-wrapper {
  text-align: center;
  gap: 6rem;
  align-items: center;
}
.brx-body .newsletter-wrapper h2 {
  margin: 0;
}
.brx-body .newsletter-wrapper.slim {
  max-width: 780px;
}
.brx-body .newsletter-registration .mc4wp-form-fields {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 5rem;
}
.brx-body .newsletter-registration .label-wrapper label {
  text-align: left;
  margin: 0;
  font-weight: bold;
  color: #636363;
}
.brx-body .newsletter-registration .label-wrapper input {
  margin-top: 2rem;
  height: 60px;
  border-radius: 5px;
  border: 1px solid #959595;
  width: 500px;
  display: block;
  padding-left: 1.5rem;
  background-color: transparent;
  color: #636363;
}
.brx-body .newsletter-registration .label-wrapper input::placeholder {
  color: #959595;
}
.brx-body .newsletter-registration .submit-wrapper {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.brx-body .newsletter-registration .submit-wrapper input {
  all: unset;
  font-weight: bold;
}
.brx-body .newsletter-registration .submit-wrapper:hover .arrow {
  filter: unset;
}
.brx-body .newsletter-registration .submit-wrapper.clicked {
  background-color: lightgrey;
  cursor: not-allowed;
}
.brx-body .newsletter-registration .arrow {
  content: url(/wp-content/uploads/2025/02/slider_pfeil_rechts.svg);
  filter: brightness(0) invert(1);
  height: 18px;
  transition: 0.3s ease all;
}
.brx-body .mc4wp-response {
  margin-top: 3rem;
}
.brx-body #popup {
  z-index: 9999;
  position: fixed;
  border: none;
  padding: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100vh;
  display: none;
  top: 0;
}
.brx-body .popup-wrapper {
  position: absolute;
  background-color: #FAFBF7;
  height: fit-content;
  right: unset;
  padding: 8rem;
  left: 50%;
  top: 50%;
  transform: Translate(-50%, -50%);
  border-radius: 10px;
}
.brx-body .popup-content {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.brx-body #popup button:hover,
.brx-body #popup-close:hover {
  cursor: pointer;
}
.brx-body #popup-close {
  position: absolute;
  right: 2rem;
  top: 2rem;
  width: 90px;
  height: 90px;
}
.brx-body .intro-alt {
  height: clamp(300px, 39.06vw, 750px);
  background-position: center;
  position: relative;
}
.brx-body .back-link {
  color: #4D8B41;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  text-transform: uppercase;
  position: absolute;
  top: 15px;
}
.brx-body .back-link::before {
  content: "";
  background-image: url(/wp-content/uploads/2025/02/slider_pfeil_rechts.svg);
  background-repeat: no-repeat;
  height: 25px;
  width: 18px;
  transform: scaleX(-1);
  transition: 0.3s ease all;
}
.brx-body .back-link:hover {
  text-decoration: underline;
}
.brx-body .two-columns {
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
}
.brx-body .two-columns > div {
  width: 47%;
}
.brx-body .imprint {
  max-width: 1280px;
  margin: 0 auto;
}
.brx-body .imprint h2 {
  margin: 4rem 0 1rem;
}
.brx-body .imprint h3 {
  margin: 3rem 0 1rem;
}
.brx-body .feed-wrapper .igwrapper {
  background-color: #FAFBF7;
}
.brx-body .feed-wrapper iframe {
  margin: 0 auto !important;
}
.brx-body .logo-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10rem 8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 3rem 0;
}
.brx-body .logo-wrapper img {
  height: 60px;
  width: auto;
}
.brx-body footer {
  background-color: #ECECEC;
}
.brx-body footer a:hover {
  text-decoration: underline;
}
.brx-body footer section {
  padding: 0;
}
.brx-body footer .footer-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 6rem 0;
}
.brx-body footer .footer-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: fit-content;
}
.brx-body footer .footer-col img {
  max-width: 220px;
}
.brx-body footer .footer-col a {
  font-weight: bold;
  text-transform: uppercase;
}
.brx-body footer .footer-col a.small-text {
  margin-top: -2rem;
  font-weight: 400;
  font-size: 2rem;
  text-transform: initial;
}
.brx-body footer .socket {
  background-color: #636363;
  text-align: center;
  font-size: 1.6rem;
  color: white;
  padding: 2rem 0;
}
.brx-body footer .socket a {
  margin: 0 auto;
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed */
@media screen and (max-width: 1000px) {
  .brx-body .parallax {
    background-attachment: scroll;
  }
}
@media screen and (max-width: 1400px) {
  .brx-body .details-wrapper .details-content {
    padding: 5rem;
  }
}
@media screen and (max-width: 1000px) {
  .brx-body section {
    padding: 6rem 0;
  }
  .brx-body .logo {
    max-width: 200px;
  }
  .brx-body h2 {
    margin-bottom: 4rem;
  }
  .brx-body .intro .intro-content {
    padding: 4rem 8rem;
  }
  .brx-body .intro .countdown .field:not(:first-child)::before {
    top: 0;
  }
  .brx-body .info-wrapper {
    gap: 4rem;
  }
  .brx-body .details-wrapper {
    flex-wrap: wrap;
  }
  .brx-body .details-wrapper .details-pic,
  .brx-body .details-wrapper .details-content {
    width: 100%;
  }
  .brx-body .details-wrapper .content-columns {
    gap: 4rem;
  }
  .brx-body .details-wrapper .content-columns > div {
    max-width: unset;
  }
  .brx-body .programm-wrapper .entry:last-child .dot::after {
    top: 0;
  }
  .brx-body .bewerbe-wrapper,
  .brx-body .newsletter-wrapper,
  .brx-body .gruppen-wrapper {
    gap: 3rem;
  }
  .brx-body .btn.big {
    width: 100%;
    padding: 3rem 1.5rem;
    justify-content: center;
  }
  .brx-body .details.alt .details-pic img {
    max-height: 400px;
    object-fit: contain;
  }
  .brx-body .side-btn-wrapper {
    top: 75%;
  }
  .brx-body footer .footer-wrapper {
    padding: 4rem 0;
    flex-wrap: wrap;
    gap: 4rem 0;
  }
  .brx-body footer .footer-col img {
    max-width: 180px;
  }
  .brx-body .popup-content .newsletter-registration .mc4wp-form-fields {
    flex-wrap: wrap;
    gap: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .brx-body .header-wrapper .btn {
    display: none;
  }
  .brx-body .logo {
    max-width: 150px;
  }
  .brx-body .intro .intro-content {
    gap: 3rem;
    padding: 4rem 2rem;
    max-width: 90%;
  }
  .brx-body .intro .countdown .brxe-countdown {
    min-width: 110%;
    left: -3%;
    position: relative;
    gap: 2rem;
  }
  .brx-body .intro .countdown .field:not(:first-child)::before {
    left: -1.5rem;
  }
  .brx-body .intro .icon-wrapper {
    gap: 2rem;
  }
  .brx-body .details-wrapper .content-columns {
    flex-wrap: wrap;
  }
  .brx-body .details-wrapper .details-content {
    padding: 4rem 3rem;
  }
  .brx-body .programm-wrapper .entry .time {
    min-width: 100px;
    text-align: right;
  }
  .brx-body .btn.big {
    line-height: 1.2;
    padding: 2rem 1.5rem;
  }
  .brx-body .accordion .accordion-title-wrapper {
    flex-wrap: nowrap;
  }
  .brx-body .accordion .packages {
    margin-top: 3rem;
    gap: 3rem;
    flex-wrap: wrap;
  }
  .brx-body .accordion .block-1 {
    gap: 3rem;
  }
  .brx-body .newsletter-registration .mc4wp-form-fields {
    flex-wrap: wrap;
    gap: 2rem;
  }
  .brx-body .newsletter-registration .label-wrapper input {
    width: 350px;
  }
  .brx-body .popup-wrapper {
    width: 90%;
    padding: 5rem 2rem;
  }
  .brx-body .popup-content .newsletter-registration .label-wrapper input {
    width: 300px;
  }
  .brx-body #popup-close {
    right: 0;
  }
  .brx-body .no-margin {
    max-width: initial;
  }
  .brx-body .two-columns {
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 4rem;
  }
  .brx-body .two-columns > div {
    width: 100%;
  }
  .brx-body .people-text br {
    display: none;
  }
  .brx-body .logo-wrapper {
    gap: 5rem;
  }
  .brx-body .side-btn-wrapper {
    right: unset;
    left: 0;
    top: unset;
    transform: unset;
    width: 100%;
    flex-direction: row;
    bottom: 0;
  }
  .brx-body .side-btn-wrapper .btn {
    width: 50%;
    justify-content: center;
    border-radius: unset;
    margin: 0;
  }
  .brx-body .side-btn-wrapper .kreuz {
    display: none;
  }
  .brx-body footer {
    padding-bottom: 6rem;
  }
  .brx-body footer .footer-col {
    width: 48%;
  }
  .brx-body footer .footer-col img {
    max-width: 140px;
  }
}

/*# sourceMappingURL=hope.css.map */
