.ova-road-map-2 {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .ova-road-map-2 {
    flex-direction: column;
  }
}
.ova-road-map-2 p, .ova-road-map-2 h3 {
  margin: 0;
}
.ova-road-map-2 .item {
  width: 25%;
  border-top: 1px solid #d2d5df;
  position: relative;
  padding: 35px;
}
.ova-road-map-2 .item:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--primary);
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
.ova-road-map-2 .item.active:before {
  position: absolute;
  content: "";
  width: 17px;
  height: 17px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  background: #fff;
  top: 0;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .ova-road-map-2 .item {
    width: 100%;
    padding-left: 30px;
    border-top: 0;
    border-left: 1px solid #d2d5df;
  }
  .ova-road-map-2 .item:before {
    transform: translateX(-50%);
  }
  .ova-road-map-2 .item.active:before {
    transform: translateX(-50%);
  }
}
.ova-road-map-2 .date {
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}
.ova-road-map-2 .text-1 {
  font-size: 20px;
  font-weight: 800;
  margin-top: 5px;
}
.ova-road-map-2 .text-2 {
  font-size: 16px;
  font-weight: 500;
  margin-top: 5px;
}