@font-face {
  font-family: Poppins;
  src: url('../fonts/poppins-regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Poppins;
  src: url('../fonts/poppins-bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Mulish;
  src: url('../fonts/mulish-regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Mulish;
  src: url('../fonts/mulish-bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --blue: #003a7f;
  --light-blue: #003a7f26;
  --black: #161616;
  --white: #fff;
  --orange: #f29503;
  --light-white: #ffffff61;
  --border: #a2a2c98c;
  --lightgrey: #d3d3d3;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

h2 {
  color: var(--blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 36px;
}

h3 {
  color: var(--blue);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

p {
  margin-bottom: 10px;
}

ul, ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

.section-page {
  grid-column-gap: 7.5rem;
  grid-row-gap: 7.5rem;
  background-color: #fff0;
  flex-flow: column;
  padding-top: 9rem;
  padding-bottom: 9rem;
  display: flex;
}

.section-page.vereinmob {
  margin-top: 0;
}

.section-page.themen {
  padding-top: 4rem;
}

.page-padding {
  padding-left: 4rem;
  padding-right: 4rem;
}

.container {
  z-index: 2;
  flex-flow: column;
  width: 100%;
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.container.flex {
  flex-flow: row;
  justify-content: center;
  align-items: center;
}

.container.verein {
  margin-top: -4rem;
}

.page-full-width {
  background-image: url('../images/blob1.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  padding: 7.5rem 0;
  position: relative;
}

.page-full-width.blob2 {
  background-image: url('../images/blob2.svg');
  background-size: cover;
}

.body {
  background-color: var(--light-blue);
}

.nav {
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
  display: flex;
}

.image {
  width: 250px;
}

.h1 {
  color: var(--black);
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, Arial, sans-serif;
  font-size: 52px;
  line-height: 60px;
}

.h1.blue {
  color: var(--blue);
}

.text-regular {
  color: var(--black);
  font-family: Mulish, Arial, sans-serif;
  font-size: 18px;
  line-height: 27px;
}

.text-regular.cent {
  text-align: center;
  font-size: 18px;
  line-height: 27px;
}

.text-regular.white {
  color: var(--white);
}

.button {
  border: 1.5px solid var(--orange);
  color: var(--white);
  text-align: center;
  background-color: #f29503;
  border-radius: 11px;
  margin-top: 15px;
  padding: 10px 30px;
  font-family: Mulish, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: all .2s;
}

.button:hover {
  border-color: var(--blue);
  background-color: var(--blue);
  color: var(--white);
  transform: translate(0, 4px);
}

.button.secondary {
  border-width: 1.5px;
  border-color: var(--blue);
  color: var(--blue);
  background-color: #f2950300;
}

.button.secondary:hover {
  border-color: var(--orange);
  background-color: var(--orange);
  color: var(--white);
}

.button.tertiary:hover {
  border-color: var(--white);
  color: var(--white);
}

.button-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.button-wrapper.cent {
  justify-content: center;
  align-items: center;
}

.wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  display: flex;
}

.wrapper.cent {
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}

.wrapper.cent.vereinsseite {
  margin-top: -5rem;
  padding-bottom: 7rem;
}

.wrapper.blue-bubble {
  padding-top: 50px;
  padding-bottom: 50px;
}

.grid-2 {
  z-index: 2;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
  display: grid;
  position: relative;
}

.grid-2.blue-bubble {
  padding-top: 50px;
  padding-bottom: 50px;
}

.h2 {
  color: var(--black);
  text-align: left;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Poppins, Arial, sans-serif;
  font-size: 38px;
  line-height: 44px;
}

.h2.blue {
  color: var(--blue);
}

.h2.white {
  color: #fff;
  font-size: 38px;
  line-height: 44px;
}

.h2.white.cent, .h2.cent {
  text-align: center;
}

.h3 {
  color: var(--blue);
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 22px;
  line-height: 32px;
}

.h3.cent {
  text-align: center;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 28px;
}

.h3.white {
  color: var(--white);
  font-size: 26px;
  font-weight: 700;
}

.h3.orange {
  color: var(--orange);
}

.blob {
  background-image: url('../images/bloborange.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  justify-content: center;
  align-items: center;
  width: 90%;
  padding: 45px;
  display: flex;
}

.blob.white {
  z-index: 3;
  background-image: url('../images/blobwhite.svg');
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: auto;
  display: flex;
  position: absolute;
  inset: auto 2% -35% auto;
}

.image-2 {
  object-fit: fill;
  width: 50px;
  height: 35px;
  margin-top: 80px;
  margin-bottom: -30px;
}

.collection-item {
  display: flex;
}

.collection-list-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list-wrapper-2 {
  width: 100%;
  padding-top: 40px;
}

.image-3 {
  height: 70px;
  margin-bottom: 20px;
}

.footer {
  margin-top: 0;
}

.footer-top {
  background-image: url('../images/blob3.svg');
  background-position: 50% 0;
  background-size: cover;
  justify-content: center;
  align-items: center;
  height: auto;
  display: flex;
  position: relative;
}

.footer-bottom {
  background-color: var(--orange);
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  position: relative;
}

.text-small {
  color: var(--blue);
  text-align: center;
  font-family: Mulish, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 27px;
  text-decoration: none;
}

.text-small.white {
  color: var(--white);
  font-weight: 400;
}

.footer-top-wrapper {
  z-index: 2;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
  padding-bottom: 2rem;
  display: flex;
  position: relative;
}

.image-4 {
  width: 200px;
}

.footerlink {
  color: var(--white);
  margin-top: 0;
  font-family: Poppins, Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 33px;
  text-decoration: none;
  transition: all .2s;
}

.footerlink:hover {
  color: var(--orange);
}

.div-block {
  grid-column-gap: 35px;
  grid-row-gap: 35px;
  display: flex;
}

.body-2 {
  background-color: var(--light-blue);
}

.vorschautext {
  color: var(--black);
  text-align: left;
  margin-bottom: 35px;
  font-family: Mulish, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-decoration: none;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.image-5 {
  background-color: #fff0;
  border-radius: 12px;
  width: 150px;
  padding: 10px;
}

.container-4 {
  z-index: 2;
  width: 100%;
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.page-full-width-4 {
  padding-left: 0;
  padding-right: 0;
}

.body-3 {
  background-color: var(--light-blue);
}

.heading10 {
  color: var(--blue);
  font-family: Poppins, Arial, sans-serif;
}

.heading10.clickflows {
  margin-bottom: 0;
}

.rich-text-themen {
  margin-top: 20px;
}

.rich-text-themen p {
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
  line-height: 28px;
}

.rich-text-themen li {
  font-size: 18px;
  line-height: 27px;
}

.rich-text-themen h1 {
  color: var(--blue);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 700;
}

.rich-text-themen.clickflows {
  padding-top: 20px;
  padding-bottom: 20px;
}

.rich-text-themen.clickflows ol, .rich-text-themen.clickflows ul {
  font-family: Mulish, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

.rich-text-themen ol {
  font-family: Poppins, Arial, sans-serif;
  line-height: 22px;
}

.scroll-div {
  height: 1px;
  margin-top: -4rem;
  margin-bottom: -4rem;
}

.line-rounded-icon.success-message-check {
  margin-bottom: 6px;
  font-size: 22px;
}

.line-rounded-icon.success-message-check.large {
  margin-bottom: 16px;
  font-size: 80px;
  line-height: 88px;
}

.color-neutral-300 {
  color: #000;
}

.text-center {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-flow: column;
  display: flex;
}

.text-center.mg-bottom-32px {
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
}

.inner-container._752px.center {
  max-width: 752px;
}

.success-message {
  background-color: var(--light-blue);
  color: #4a3aff;
  border-radius: 24px;
  padding: 28px 28px 32px;
}

.text-area {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 22px;
  min-height: 144px;
  padding: 16px 24px;
  font-family: Mulish, Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 7px #14142b14;
}

.text-area:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 12px #14142b1a;
}

.text-area:focus {
  border-color: var(--blue);
  color: #211f54;
}

.text-area::placeholder {
  color: #6e7191;
  font-family: Mulish, Arial, sans-serif;
  font-size: 16px;
  line-height: 26px;
}

.text-200 {
  line-height: 20px;
}

.text-200.bold {
  color: var(--black);
  font-family: Poppins, Arial, sans-serif;
  font-weight: 400;
  text-decoration: none;
}

.text-200.color-neutral-600.mg-bottom-8px {
  color: var(--blue);
  margin-bottom: 5px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.container-default {
  justify-content: center;
  align-items: center;
  max-width: 1218px;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.grid-2-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: 2rem;
  display: grid;
}

.card {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 24px;
  box-shadow: 0 2px 7px #14142b0f;
}

.card.form {
  min-height: 620px;
  margin-bottom: 0;
  padding: 72px 40px;
}

.card.form.pd-sides-78px {
  box-shadow: none;
  opacity: 1;
  background-color: #fff0;
  border-style: none;
  margin-bottom: 0;
  padding: 0;
}

.card.contact {
  grid-column-gap: 19px;
  grid-row-gap: 19px;
  justify-content: flex-start;
  align-items: center;
  padding: 20px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.card.contact:hover {
  border-color: var(--blue);
}

.error-message {
  color: #ff5a65;
  text-align: center;
  background-color: #ffeff0;
  border-radius: 16px;
  margin-top: 20px;
  padding: 20px 24px;
}

.square-icon {
  border-radius: 16px;
}

.square-icon.mg-right-16px.mg-bottom-16px-mb {
  width: 70px;
}

.cardwhite {
  background-color: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 20px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 70px;
  margin-bottom: 0;
  padding: 24px;
  font-size: 18px;
  line-height: 20px;
  transition: box-shadow .3s, color .3s, border-color .3s;
  display: flex;
  box-shadow: 0 2px 7px #14142b14;
}

.cardwhite:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 12px #14142b1a;
}

.cardwhite:focus {
  border-color: var(--blue);
  color: #211f54;
}

.cardwhite::placeholder {
  color: #6e7191;
  font-size: 18px;
}

.cardwhite.cent {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: all .2s, box-shadow .3s, color .3s, border-color .3s;
}

.cardwhite.cent:hover {
  margin-top: 0;
  transform: translate(0, 4px);
}

.cardwhite.centered {
  justify-content: space-between;
  align-items: center;
}

.div-block-9 {
  margin-top: 2rem;
}

.field-label {
  color: var(--blue);
  font-family: Poppins, Arial, sans-serif;
}

.input-contact {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 12px;
  width: 100%;
  min-height: 50px;
  margin-bottom: 0;
  padding: 16px 24px;
  font-family: Mulish, Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 7px #14142b14;
}

.input-contact:hover {
  border-color: var(--blue);
  box-shadow: 0 2px 12px #14142b1a;
}

.input-contact:focus {
  border-color: var(--blue);
  color: #211f54;
}

.input-contact::placeholder {
  color: #6e7191;
  font-size: 16px;
}

.input-contact.select {
  color: #6f7191;
  padding-top: 12px;
  padding-bottom: 12px;
}

.div-block-10 {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.smalltext {
  color: var(--blue);
  font-family: Mulish, Arial, sans-serif;
}

.cardwhite-nohover {
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 22px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  min-height: 70px;
  margin-bottom: 0;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 20px;
  transition: box-shadow .3s, color .3s, border-color .3s;
  display: flex;
  box-shadow: 0 2px 7px #14142b14;
}

.cardwhite-nohover:hover {
  border-color: #eff0f6;
  box-shadow: 0 2px 12px #14142b1a;
}

.cardwhite-nohover:focus {
  color: #211f54;
  border-color: #eff0f6;
}

.cardwhite-nohover::placeholder {
  color: #6e7191;
  font-size: 18px;
}

.image-6 {
  width: 40px;
  height: 40px;
  padding: 0;
}

.leichtesprache {
  z-index: 10000;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-decoration: none;
  display: none;
  position: fixed;
  inset: auto 20px 20px auto;
}

.div-block-13 {
  background-color: var(--orange);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  display: flex;
  position: static;
  box-shadow: 0 2px 5px #0003;
}

.div-block-13-copy {
  background-color: var(--orange);
  width: 160px;
  height: 60px;
  color: var(--white);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  margin-right: 0;
  padding: 30px;
  font-family: Mulish, Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: static;
  box-shadow: 0 2px 5px #0003;
}

.div-block-13-copy:hover {
  background-color: var(--blue);
}

.text-block-8 {
  white-space: nowrap;
  word-break: keep-all;
}

.spacer4rem {
  height: 4rem;
}

.image-8 {
  z-index: 2;
  object-fit: cover;
  border-radius: 20px;
  width: 280px;
  height: 280px;
  position: relative;
  top: 0;
  transform: rotate(7deg);
  box-shadow: 0 10px 10px -10px #0003;
}

.image-9 {
  object-fit: cover;
  border-radius: 20px;
  width: 280px;
  height: 280px;
  margin-left: -2%;
  margin-right: -2%;
  position: relative;
  top: 110px;
  left: 0%;
  transform: rotate(-4deg);
  box-shadow: 0 10px 10px -10px #0003;
}

.image-10 {
  z-index: 2;
  object-fit: cover;
  border-radius: 20px;
  width: 280px;
  height: 280px;
  margin-right: -2%;
  padding-left: 0%;
  padding-right: 0%;
  position: relative;
  top: -38px;
  left: 0;
  transform: rotate(7deg);
  box-shadow: 0 10px 10px -10px #0003;
}

.image-11 {
  object-fit: cover;
  border-radius: 20px;
  width: 280px;
  height: 280px;
  position: relative;
  top: 29px;
  left: 0%;
  right: 0;
  transform: rotate(1deg);
  box-shadow: 0 10px 10px -10px #0003;
}

.section-page-5 {
  background-color: #fff0;
  padding-top: 7.5rem;
  padding-bottom: 7.5rem;
}

.page-padding-5 {
  padding-left: 4rem;
  padding-right: 4rem;
}

.container-5 {
  z-index: 2;
  width: 100%;
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.leichtesprache-mobile {
  z-index: 10000;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-decoration: none;
  display: none;
  position: fixed;
  inset: auto 20px 20px auto;
}

.body-4 {
  background-color: var(--light-blue);
}

.div-block-15 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.theme_item {
  background-color: var(--blue);
  border: 1px #1e1e22;
  border-radius: 24px;
  flex-flow: column;
  height: 100%;
  text-decoration: none;
  transition: all .2s, border-color .3s;
  display: flex;
}

.theme_item:hover {
  background-color: var(--orange);
  border-color: #6a46ff;
}

.faq_title {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 24px;
  display: flex;
}

.collection-list-8 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.div-block-17 {
  height: 100%;
}

.body-5 {
  background-color: var(--light-blue);
}

.collection-list-9 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list-9.big {
  grid-template-columns: 1fr;
}

.collection-list-9-copy {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.spacer2rem {
  height: 2rem;
}

.collection-list-wrapper-4 {
  margin-top: 0;
}

.image-13 {
  width: 30px;
}

.empty-state-3 {
  background-color: #ddd0;
  margin-bottom: -200px;
}

.div-block-18 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.div-block-18.horizontal {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
}

.collection-list-wrapper-5 {
  margin-bottom: 20px;
}

.button-2 {
  border: 1.5px solid var(--orange);
  color: var(--white);
  text-align: center;
  background-color: #f29503;
  border-radius: 11px;
  margin-top: 15px;
  padding: 10px 30px;
  font-family: Mulish, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: all .2s;
}

.button-2:hover {
  border-color: var(--blue);
  background-color: var(--blue);
  color: var(--white);
  transform: translate(0, 4px);
}

.button-2.secondary {
  border-width: 1.5px;
  border-color: var(--blue);
  color: var(--blue);
  background-color: #f2950300;
}

.button-2.secondary:hover {
  border-color: var(--orange);
  background-color: var(--orange);
  color: var(--white);
}

.button-2.tertiary:hover {
  border-color: var(--white);
  color: var(--white);
}

.button-test {
  border: 1.5px solid var(--orange);
  color: var(--white);
  text-align: center;
  background-color: #f29503;
  border-radius: 11px;
  margin-top: 15px;
  padding: 10px 30px;
  font-family: Mulish, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: all .2s;
}

.button-test:hover {
  border-color: var(--blue);
  background-color: var(--blue);
  color: var(--white);
  transform: translate(0, 4px);
}

.button-test.secondary {
  border-width: 1.5px;
  border-color: var(--blue);
  color: var(--blue);
  background-color: #f2950300;
}

.button-test.secondary:hover {
  border-color: var(--orange);
  background-color: var(--orange);
  color: var(--white);
}

.button-test.tertiary:hover {
  border-color: var(--white);
  color: var(--white);
}

.div-block-19 {
  padding: 61px;
}

.image-14 {
  width: 150px;
}

.aktion-mensch {
  width: 250px;
  position: absolute;
  inset: 0% 0% auto auto;
}

.image-15 {
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
}

.div-block-20 {
  padding-top: 2rem;
}

.svg-icon {
  color: #fff;
  width: 2rem;
  height: 2rem;
}

.svg-icon:hover {
  cursor: pointer;
}

.div-block-21 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.ticker {
  color: var(--orange);
  font-family: Poppins, Arial, sans-serif;
  font-size: 60px;
  font-weight: 700;
  line-height: 60px;
}

.button-3 {
  color: #fff;
  text-align: center;
  background-color: #f29503;
  border: 1.5px solid #f29503;
  border-radius: 11px;
  margin-top: 15px;
  padding: 10px 30px;
  font-family: Mulish, Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  transition: all .2s;
}

.button-3:hover {
  color: #fff;
  background-color: #003a7f;
  border-color: #003a7f;
  transform: translate(0, 4px);
}

.div-block-22 {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  display: flex;
}

.collection-list-wrapper-6 {
  background-color: #0000;
}

.empty-state-4, .empty-state-5 {
  color: #3330;
  text-align: center;
  background-color: #ddd0;
}

@media screen and (min-width: 1440px) {
  .section-page.vereinmob {
    padding-top: 9rem;
  }

  .page-full-width {
    background-size: contain;
  }

  .page-full-width.blob2 {
    background-image: url('../images/blob2_1.svg');
    background-size: cover;
  }

  .blob.white {
    inset: -49% 0% auto auto;
  }

  .footer {
    margin-top: 6rem;
  }

  .grid-2-columns.form {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .image-9 {
    top: 77px;
  }

  .image-10 {
    margin-left: -2%;
  }

  .image-11 {
    top: 68px;
  }
}

@media screen and (min-width: 1920px) {
  .page-full-width {
    background-image: url('../images/blob1.svg');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .page-full-width.blob2 {
    background-image: url('../images/blob2_1.svg');
    background-size: cover;
  }

  .footer {
    margin-top: 6rem;
  }
}

@media screen and (max-width: 991px) {
  .page-full-width, .page-full-width-4 {
    padding-left: 6vw;
    padding-right: 6vw;
  }

  .card.form {
    padding: 54px 32px;
  }

  .card.form.pd-sides-78px {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (max-width: 767px) {
  .line-rounded-icon.success-message-check.large {
    font-size: 68px;
    line-height: 73px;
  }

  .text-area {
    border-radius: 18px;
  }

  .text-200 {
    font-size: 16px;
    line-height: 18px;
  }

  .grid-2-columns {
    grid-template-columns: 1fr;
  }

  .grid-2-columns.form {
    grid-row-gap: 20px;
  }

  .card.form {
    padding: 56px 32px;
  }

  .card.form.pd-sides-78px {
    padding-left: 32px;
    padding-right: 32px;
  }

  .square-icon {
    border-radius: 12px;
    max-width: 56px;
  }

  .cardwhite, .input-contact, .cardwhite-nohover {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .faq_title {
    padding: 1rem 1.25rem;
  }
}

@media screen and (max-width: 479px) {
  .section-page {
    grid-column-gap: 5rem;
    grid-row-gap: 5rem;
    padding-top: 2rem;
    padding-bottom: 3rem;
  }

  .section-page.vereinmob {
    margin-top: 5rem;
    overflow: visible;
  }

  .page-padding {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .container {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .container.flex {
    overflow: visible;
  }

  .container.verein {
    margin-top: 0;
  }

  .page-full-width {
    padding-left: 20px;
    padding-right: 20px;
  }

  .nav.home {
    justify-content: flex-start;
    align-items: center;
    padding-left: 2rem;
  }

  .image {
    width: 180px;
  }

  .h1 {
    font-size: 32px;
    line-height: 40px;
  }

  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-2.blue-bubble {
    padding-top: 0;
  }

  .h2.cent.blue {
    font-size: 32px;
    line-height: 40px;
  }

  .h3.cent {
    font-size: 3.5vw;
    line-height: 5vw;
  }

  .h3.white {
    font-size: 18px;
    line-height: 26px;
  }

  .blob {
    background-size: contain;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 400px;
    margin-top: -50px;
    padding: 54px;
  }

  .blob.white {
    bottom: 50%;
    left: -20px;
    right: auto;
  }

  .image-2 {
    display: none;
  }

  .collection-list-2 {
    grid-template-columns: 1fr;
  }

  .footer-top-wrapper {
    padding-top: 7rem;
  }

  .div-block {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .body-2 {
    overflow: visible;
  }

  .container-4 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .page-full-width-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .heading10 {
    text-overflow: clip;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  .scroll-div {
    margin-top: -7rem;
  }

  .line-rounded-icon.success-message-check.large {
    font-size: 58px;
    line-height: 64px;
  }

  .text-200.bold {
    font-size: 14px;
  }

  .container-default {
    max-width: none;
    padding: 0;
  }

  .grid-2-columns.form {
    margin-bottom: 4rem;
  }

  .card.form {
    padding-left: 23px;
    padding-right: 23px;
  }

  .card.form.pd-sides-78px {
    padding: 0;
  }

  .card.contact {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    justify-content: flex-start;
    align-items: center;
    padding: 14px;
  }

  .square-icon {
    border-radius: 14px;
    max-width: 56px;
  }

  .square-icon.mg-right-16px.mg-bottom-16px-mb {
    margin-bottom: 0;
    margin-right: 0;
  }

  .cardwhite {
    font-size: 16px;
    line-height: 18px;
  }

  .cardwhite::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .input-contact {
    font-size: 16px;
    line-height: 18px;
  }

  .input-contact::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .cardwhite-nohover {
    font-size: 16px;
    line-height: 18px;
  }

  .cardwhite-nohover::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .leichtesprache {
    display: none;
  }

  .div-block-13 {
    width: 80px;
    height: 80px;
  }

  .div-block-13-copy {
    width: 120px;
    height: 80px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .text-block-8 {
    text-align: center;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: normal;
    line-height: 18px;
    position: static;
  }

  .spacer4rem {
    height: 2rem;
  }

  .image-8 {
    display: none;
  }

  .image-9 {
    overflow: hidden;
  }

  .image-10 {
    margin-right: 0%;
    overflow: hidden;
  }

  .image-11 {
    display: none;
  }

  .section-page-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .page-padding-5 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .container-5 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .leichtesprache-mobile {
    display: none;
  }

  .collection-list-8, .collection-list-9 {
    grid-template-columns: 1fr;
  }

  .aktion-mensch {
    width: 150px;
  }

  .div-block-22 {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
  }
}

#w-node-_5d721d76-ac41-62ff-579f-a71a48a553c8-befe150d {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_5d721d76-ac41-62ff-579f-a71a48a553cc-befe150d {
  place-self: end;
}

@media screen and (max-width: 479px) {
  #w-node-b73a4443-d62b-7161-5dea-2d4ee7f9cde6-e759c6b7 {
    justify-self: auto;
  }

  #w-node-_5d721d76-ac41-62ff-579f-a71a48a553c8-befe150d {
    grid-column: span 1 / span 1;
  }

  #w-node-_5d721d76-ac41-62ff-579f-a71a48a553cc-befe150d {
    justify-self: start;
  }
}


@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('../fonts/poppins-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/mulish-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Mulish';
  src: url('../fonts/mulish-bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}