.project_timeline h2 {
  margin-bottom: 80px;
}
.project_timeline .timeline {
  position: relative;
  width: 100%;
  height: 64px;
}
.project_timeline .line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #3d3d3d;
}
.project_timeline .milestones {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.project_timeline .milestone_marker {
  width: 25px;
  height: 25px;
  background-color: #252525;
  border-radius: 50%;
}
.project_timeline .milestone_label {
  padding: 7px 0;
  text-align: center;
  white-space: nowrap;
}
.project_timeline .milestone {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  height: 64px;
  position: relative;
  top: 20px;
  flex: 1;
}
.project_timeline .milestone.done .milestone_marker {
  background: url(../../../../img/icons/tick.svg) 6px center no-repeat;
  background-color: #2C73DE;
}
.project_timeline .milestone.current .milestone_marker {
  background-color: #0D0D0D;
  border: 1px solid #2C73DE;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project_timeline .milestone.current .milestone_marker::after {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #2C73DE;
}
.project_timeline .milestone:nth-child(even) {
  top: -18px;
}
.project_timeline .milestone:nth-child(even) .milestone_label {
  order: 1;
}
.project_timeline .milestone:nth-child(even) .milestone_marker {
  order: 2;
}

@media only screen and (max-width: 1342px) {
  .project_timeline .milestone {
    flex: initial;
  }
}
@media only screen and (max-width: 1030px) {
  .project_timeline .milestone_label {
    font-size: 12px;
  }
}
@media only screen and (max-width: 790px) {
  .project_timeline h2 {
    margin-bottom: 40px;
  }
  .project_timeline .timeline {
    height: auto;
  }
  .project_timeline .line {
    height: 92%;
    width: 1px;
    left: 12px;
    top: 10px;
  }
  .project_timeline .milestones {
    flex-direction: column;
    align-items: start;
    height: auto;
    gap: 20px;
  }
  .project_timeline .milestone {
    flex-direction: row;
    gap: 14px;
    top: 0;
    height: auto;
  }
  .project_timeline .milestone:nth-child(even) {
    top: 0;
  }
  .project_timeline .milestone:nth-child(even) .milestone_label {
    order: 2;
    padding: 0 !important;
  }
  .project_timeline .milestone:nth-child(even) .milestone_marker {
    order: 1;
  }
  .project_timeline .milestone_label {
    font-size: 16px;
  }
}
