/**
 * Timeline Wrapper
 */

.timeline-wrapper {
  position: relative;
  max-width: fit-content;
  margin: 0 auto;
}
.timeline-wrapper::before {
  content: "";
  display: block;
  background-color: var(--brand-primary-color);
  width: 2px;
  position: absolute;
  top: -0.25rem;
  bottom: -0.25rem;
  left: 1.5rem;
}
@media all and (min-width: 750px) {
  .timeline-wrapper::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

/**
 * Timeline Item
 */

.timeline-item {
  padding: 1rem 0 2.5rem 2rem;
  position: relative;
  max-width: 360px;
}
.timeline-item::before {
  content: "";
  display: block;
  background-color: var(--brand-white);
  border: 2px solid var(--brand-primary-color);
  border-radius: 100%;
  width: 32px;
  height: 32px;
  position: absolute;
  top: 3rem;
  left: -1rem;
}
.timeline-item::after {
  content: "";
  display: block;
  background-color: var(--brand-primary-color);
  border-radius: 100%;
  width: 16px;
  height: 16px;
  position: absolute;
  top: 3.6rem;
  left: -0.4rem;
}
.timeline-item__text p:first-child {
  margin: 0;
}
.timeline-item__text h3 {
  margin: 1rem 0 0;
}
.timeline-item__image {
  margin-top: 1rem;
}
@media all and (min-width: 750px) {
  .timeline-item {
    padding: 1rem 0 2.5rem 0;
    max-width: none;
    width: 100%;
    text-align: right;
  }
  .timeline-item__wrapper {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 0 auto;
  }
  .timeline-item:nth-child(2n+1) .timeline-item__wrapper {
    flex-direction: row-reverse;
    text-align: left;
  }
  .timeline-item:nth-child(2n+1) .timeline-item__image img {
    margin-left: auto;
  }
  .timeline-item__content,
  .timeline-item__image {
    width: 47%;
  }
  .timeline-item__image {
    margin-top: 0;
  }
  .timeline-item::before,
  .timeline-item::after {
    left: 50%;
    transform: translateX(-50%);
  }
  .timeline-item::after {
    top: 3.59rem;
  }
}