.mvp-timeline {
  display: block;
  position: relative;
  width: 50%;
}
@media (max-width: 767px) {
  .mvp-timeline {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .mvp-timeline {
    width: 70%;
    margin: 0 auto;
  }
}
.mvp-timeline .mvp-timeline__wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 2rem;
  margin-left: 40px;
}
.mvp-timeline .mvp-timeline__side {
  position: relative;
  align-self: start;
}
.mvp-timeline .mvp-timeline__bar {
  width: 18px;
  background: #949494;
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: auto;
}
.mvp-timeline .mvp-timeline__bar .mvp-timeline__bar-fill {
  width: 100%;
  background: #0071bb;
  height: 0%;
  transition: height 0.3s ease-out;
}
.mvp-timeline .mvp-timeline__years {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}
.mvp-timeline .mvp-timeline__year {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.mvp-timeline .mvp-timeline__year .mvp-timeline__year-bullet {
  width: 70px;
  height: 70px;
  background: #949494;
  transition: background-color 0.3s ease-out;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  text-align: center;
  font-size: 1rem;
}
.mvp-timeline .mvp-timeline__year .mvp-timeline__year-bullet.mvp-timeline__year-is-active {
  background: #0071bb;
}
.mvp-timeline .mvp-timeline__content {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  position: relative;
}
.mvp-timeline .mvp-timeline__item {
  position: relative;
  margin-left: 40px;
}
.mvp-timeline .mvp-timeline__image {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.mvp-timeline .mvp-timeline__image img {
  width: auto;
  border-radius: 4px;
}
.mvp-timeline .mvp-timeline__title {
  margin: 0;
  font-weight: bold;
  font-size: 1.25rem;
}