.is-timeline ul {
  list-style: none;
  padding: 0;
  position: relative;
  padding-inline-start: 0 !important;
  margin-block-start: 4rem;
}
.is-timeline ul::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 4rem;
  width: 2px;
  height: 90%;
  background-color: var(--rh--color--ci);
  transform: translateX(-50%);
  z-index: 0;
}
.is-timeline ul li {
  position: relative;
  padding: 2rem !important;
  margin: 2rem;
  width: calc(100% - 4rem);
  background: var(--rh--color--highlight);
  text-align: center;
  z-index: 1;
}
@media (max-width: 839px) {
  .is-timeline ul li {
    margin-inline: auto;
    width: 100%;
  }
}
.is-timeline ul li::before {
  display: none !important;
}
.is-timeline ul li::after {
  display: none;
}
.is-timeline ul li strong {
  display: inline-block;
  font-size: clamp(1.7rem, 2vw, 2.1rem);
  color: var(--rh--color--ci--secondary);
}
@media (min-width: 840px) {
  .is-timeline ul li {
    width: calc(50% - 2rem);
    text-align: left;
  }
  .is-timeline ul li::after {
    content: "";
    display: block;
    position: absolute;
    top: 6rem;
    width: 2rem;
    height: 4px;
    background-color: var(--rh--color--ci);
  }
  .is-timeline ul li:nth-child(odd) {
    margin-inline: 0 auto;
    text-align: right;
  }
  .is-timeline ul li:nth-child(odd)::after {
    right: -2rem;
    left: auto;
  }
  .is-timeline ul li:nth-child(even) {
    margin-inline: auto 0;
    text-align: left;
    margin-block-start: -4rem;
  }
  .is-timeline ul li:nth-child(even)::after {
    left: -2rem;
    right: auto;
  }
}