/**
 * Vertical Boxes
 */
.brxe-bld-timeline {
  color: var(--color-traube);
  margin-top: 7rem;
  width: 100%;
}
.brxe-bld-timeline .timeline-wrapper {
  position: relative;
  max-width: 75rem;
  margin: 0 auto;
  padding: 2rem 0;
}
.brxe-bld-timeline .line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0.2rem;
  background: var(--color-traube);
  transform: translateX(-50%);
}
.brxe-bld-timeline .line-overlay {
  display: none;
}
.brxe-bld-timeline .timeline-items {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.brxe-bld-timeline .timeline-item {
  position: relative;
  width: 50%;
  min-height: 11rem;
  padding: 0 4.5rem;
}
.brxe-bld-timeline .timeline-item::before {
  content: "";
  position: absolute;
  top: 1.7rem;
  width: 3rem;
  height: 0.2rem;
  background: var(--color-traube);
}
.brxe-bld-timeline .timeline-item:nth-child(odd) {
  align-self: flex-start;
  text-align: right;
}
.brxe-bld-timeline .timeline-item:nth-child(odd)::before {
  right: 0;
}
.brxe-bld-timeline .timeline-item:nth-child(even) {
  align-self: flex-end;
  text-align: left;
}
.brxe-bld-timeline .timeline-item:nth-child(even)::before {
  left: 0;
}
.brxe-bld-timeline .timeline-item .timeline-title {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 1.5775rem + 1.1268vw, 3.2rem);
  line-height: 1;
  color: var(--color-traube);
}
.brxe-bld-timeline .timeline-item .timeline-content {
  font-size: clamp(1.6rem, 1.4592rem + 0.3756vw, 2rem);
  line-height: 1.2;
  font-weight: 500;
  color: var(--color-traube);
}
@media (max-width: 767px) {
  .brxe-bld-timeline .timeline-wrapper {
    max-width: 100%;
  }
  .brxe-bld-timeline .line {
    display: none;
    left: 0;
    transform: none;
  }
  .brxe-bld-timeline .timeline-items {
    gap: 1.5rem;
  }
  .brxe-bld-timeline .timeline-item {
    width: 80%;
    margin: 0 auto;
    text-align: center !important;
    align-self: stretch !important;
  }
}
@media (max-width: 767px) and (max-width: 420px) {
  .brxe-bld-timeline .timeline-item {
    width: 90%;
  }
}
@media (max-width: 767px) {
  .brxe-bld-timeline .timeline-item::before {
    display: none;
    left: 0;
    right: auto;
    width: 2.5rem;
  }
}

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