.timeline-list {
  display: flex;
  flex-direction: column;
  position: relative;
}

.timeline-list::before {
  background: rgba(255, 255, 255, 0.16);
  bottom: 36px;
  content: "";
  left: 36px;
  position: absolute;
  top: 36px;
  transform: translateX(-50%);
  width: 1px;
}

.timeline-card {
  display: flex;
  gap: 32px;
  margin-bottom: 76px;
  position: relative;
}

.timeline-card:last-child {
  margin-bottom: 0;
}

.timeline-card__marker {
  align-items: center;
  background: var(--white-color);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  display: flex;
  flex-shrink: 0;
  height: 72px;
  justify-content: center;
  width: 72px;
  z-index: 1;
}

.timeline-card__year {
  color: var(--primary-color);
  font-size: var(--text-small);
  font-weight: 700;
}

.timeline-card__content {
  padding-top: 10px;
}

.timeline-card__title {
  margin: 0 0 8px;
}

.timeline-card__description {
  margin: 0;
}

@media (max-width: 767px) {
  .timeline-card {
    gap: 20px;
    margin-bottom: 48px;
  }
  .timeline-list::before {
    left: 28px;
  }
  .timeline-card__marker {
    height: 56px;
    width: 56px;
  }
}

/*# sourceMappingURL=card-timeline.css.map */
