.timeline {
  margin: 4.5rem 0;
  font-family: 'Montserrat', "Trebuchet MS", Verdana, sans-serif;
  font-weight: normal;
  font-weight: 400;
}
.timeline__title {
  margin-bottom: 3rem;
  padding-top: 0;
  border-top: none;
}
.timeline-list {
  list-style: none;
  counter-reset: my-sec-counter;
  padding: 0;
  margin: 0;
}
.timeline-list-item {
  margin-top: 0;
  display: flex;
}
.timeline-list-item__date {
  display: block;
  font-size: .875rem;
}
.timeline-list-item__content {
  padding-left: 1rem;
  padding-bottom: 2rem;
  margin-top: 0;
  line-height: 1.3;
}
.timeline-list-item__text {
  display: block;
  margin-top: 0;
  font-size: 1.25rem;
  font-family: 'Montserrat', "Trebuchet MS", Verdana, sans-serif;
  font-weight: bold;
  font-weight: 700;
}
@media screen and (max-width: 34.9375em) {
  .timeline-list-item__text {
    font-size: 1rem;
  }
}
.timeline-list-item__link {
  font-size: 1rem;
}
@media screen and (max-width: 34.9375em) {
  .timeline-list-item__link {
    font-size: .875rem;
  }
}
.timeline-list-item__counter {
  position: relative;
}
.timeline-list-item__counter:before {
  counter-increment: my-sec-counter;
  content: counter(my-sec-counter);
  border-radius: 50%;
  border: 3px solid #2B5F46;
  background-color: white;
  width: 2.25rem;
  height: 2.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: .75rem;
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', "Trebuchet MS", Verdana, sans-serif;
  font-weight: bold;
  font-weight: 700;
}
.timeline--hide-numbers .timeline-list-item__counter:before {
  color: transparent !important;
}
.timeline-list-item__counter:after {
  content: "";
  background-color: #2B5F46;
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  margin-left: -2px;
  height: 100%;
}
.timeline-list-item:last-child {
  position: relative;
}
.timeline-list-item:last-child:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 4px solid #2B5F46;
  border-top-color: transparent;
  border-left-color: transparent;
  bottom: 0;
  left: .5rem;
  transform: rotate(45deg);
}
.timeline-list-item.is-completed .timeline-list-item__counter:before {
  background-color: #2B5F46;
  color: white;
}
.timeline-explanation {
  margin-top: 3rem;
}
.timeline-explanation__item {
  margin-top: 0;
  margin-bottom: .5rem;
  font-size: 20px;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  font-family: 'Montserrat', "Trebuchet MS", Verdana, sans-serif;
  font-weight: bold;
  font-weight: 700;
}
.timeline-explanation__item:before {
  content: "";
  border-radius: 50%;
  border: 3px solid #2B5F46;
  background-color: white;
  width: 2.25rem;
  height: 2.25rem;
  position: relative;
  z-index: 1;
  margin-right: .75rem;
}
.timeline-explanation__item.is-completed:before {
  background-color: #2B5F46;
  color: white;
}
