/**
  Angebot Tabs
 */
.brxe-bld-angebot-tabs {
  width: 100%;
  margin-top: 5rem;
}

.angebot-tabs-wrapper {
  width: 100%;
}

.angebot-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 460px) {
  .angebot-tabs-nav {
    gap: 0.5rem;
  }
}
.angebot-tabs-nav .angebot-tab-button {
  appearance: none;
  border: 1px solid var(--color-orange);
  background: transparent;
  color: var(--color-orange);
  border-radius: 999px;
  padding: 0.4rem 1.8rem 0.8rem 1.8rem;
  font: inherit;
  cursor: pointer;
  transition: all 0.25s ease;
}
.angebot-tabs-nav .angebot-tab-button.active, .angebot-tabs-nav .angebot-tab-button:hover {
  background: var(--color-orange);
  color: var(--color-white);
}

.angebot-tabs-content {
  position: relative;
}

.angebot-tab-panel {
  display: none;
}
.angebot-tab-panel.active {
  display: block;
  overflow: hidden;
}

.angebot-card {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 45rem;
  border-radius: 3rem;
  padding: 10rem 5rem;
  color: var(--color-white);
  font-size: 2rem;
}
@media (max-width: 1300px) {
  .angebot-card {
    flex-direction: column;
    gap: 5rem;
  }
}
@media (max-width: 800px) {
  .angebot-card {
    min-height: 35rem;
    border-radius: 3rem;
    padding: 5rem 2.5rem;
  }
}
.angebot-card .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14rem;
  width: 62.5%;
  z-index: 1;
}
@media (max-width: 1300px) {
  .angebot-card .left {
    gap: 5rem;
    width: 100%;
  }
}
.angebot-card .left .top .altersbegreanzung {
  display: inline-block;
  padding: 1.4rem 1.8rem;
  border: 0.1rem solid var(--color-white);
  border-radius: 5rem;
}
.angebot-card .left .bottom-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 1300px) {
  .angebot-card .left .bottom-wrapper {
    flex-direction: column;
    gap: 3rem;
    width: 100%;
  }
}
.angebot-card .left .bottom-wrapper .info-text-wrapper h2 {
  line-height: 1.2;
}
.angebot-card .left .bottom-wrapper .info-text-wrapper .ort {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.angebot-card .left .bottom-wrapper .info-text-wrapper .info-text {
  margin-top: 2.5rem;
}
.angebot-card .left .bottom-wrapper .haupt-punkte-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 3.8rem;
}
@media (max-width: 1300px) {
  .angebot-card .left .bottom-wrapper .haupt-punkte-wrapper {
    flex-direction: column;
    width: 100%;
    gap: 2rem;
  }
}
.angebot-card .left .bottom-wrapper .haupt-punkte-wrapper .info-wrapper .title {
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.angebot-card .line {
  position: relative;
  display: block;
  width: 14%;
}
.angebot-card .line:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 25%;
  width: 0.2rem;
  height: 100%;
  background: var(--color-white);
}
@media (max-width: 1300px) {
  .angebot-card .line:before {
    width: 100%;
    height: 0.2rem;
    right: 0;
    left: 0;
    top: 25%;
  }
}
@media (max-width: 1300px) {
  .angebot-card .line {
    width: 100%;
  }
}
.angebot-card .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 4rem;
  width: 23.5%;
}
@media (max-width: 1300px) {
  .angebot-card .right {
    width: 100%;
    gap: 5rem;
  }
}
.angebot-card .right .donwload-wrapper .buttons-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-top: 2rem;
}
@media (max-width: 1300px) {
  .angebot-card .right .donwload-wrapper .buttons-wrapper {
    flex-direction: inherit;
  }
}
@media (max-width: 600px) {
  .angebot-card .right .donwload-wrapper .buttons-wrapper {
    flex-direction: column !important;
  }
}
.angebot-card .right .donwload-wrapper .buttons-wrapper .download {
  display: flex;
  background: var(--color-hellgelb) !important;
  color: var(--color-traube) !important;
  font-size: 1.6rem;
}
.angebot-card .right .donwload-wrapper .buttons-wrapper .download:hover {
  background: var(--color-orange) !important;
  color: var(--color-white) !important;
}
.angebot-card .right .title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.angebot-card .right .ansprechpartner-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.angebot-card .right .ansprechpartner-wrapper .ansprechpartner-image {
  margin-bottom: 1rem;
}
.angebot-card .right .ansprechpartner-wrapper .ansprechpartner-image img {
  display: block;
  width: 12rem;
  height: 12rem;
  object-fit: cover;
  border-radius: 50%;
}
.angebot-card.background-hellblau {
  background: var(--color-hellblau);
}
.angebot-card.background-hellgruen {
  background: var(--color-hellgruen);
}
.angebot-card.background-gruen {
  background: var(--color-gruen);
}
.angebot-card.background-traube {
  background: var(--color-traube);
}
.angebot-card.background-lavendel {
  background: var(--color-lavendel);
}
.angebot-card.background-fuchsia {
  background: var(--color-fuchsia);
}
.angebot-card.background-hellgelb {
  background: var(--color-hellgelb);
}
.angebot-card.background-orange {
  background: var(--color-orange);
}
.angebot-card .form {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}
@media (max-width: 1300px) {
  .angebot-card .form {
    left: inherit;
    right: 0;
    transform: inherit;
  }
}
.angebot-card .form svg {
  display: block;
  width: 100%;
  height: 100%;
}
@media (max-width: 1300px) {
  .angebot-card .form svg {
    max-width: 25rem;
    height: auto;
    border-top-right-radius: 3rem;
  }
}
@media (max-width: 500px) {
  .angebot-card .form svg {
    max-width: 20rem;
    height: auto;
    border-top-right-radius: 3rem;
  }
}
.angebot-card .form.form-color-hellgelb svg path {
  fill: var(--color-hellgelb) !important;
}
.angebot-card .form.form-color-hellblau svg path {
  fill: var(--color-hellblau) !important;
}
.angebot-card .form.form-color-hellgruen svg path {
  fill: var(--color-hellgruen) !important;
}
.angebot-card .form.form-color-gruen svg path {
  fill: var(--color-gruen) !important;
}
.angebot-card .form.form-color-traube svg path {
  fill: var(--color-traube) !important;
}
.angebot-card .form.form-color-fuchsia svg path {
  fill: var(--color-fuchsia) !important;
}
.angebot-card .form.form-color-lavendel svg path {
  fill: var(--color-lavendel) !important;
}
.angebot-card .form.form-color-hellblau svg path {
  fill: var(--color-hellblau) !important;
}
.angebot-card .form.form-color-orange svg path {
  fill: var(--color-orange) !important;
}
.angebot-card h2 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(3rem, 2.2014rem + 2.1297vw, 5.2rem);
  line-height: 1;
}

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