.timeline-container {
  overflow-y: none;
}

.timeline {
  list-style-type: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-milestone {
  transition: all 100ms ease-in;
}

.milestone-wp {
  margin: 0 20px;
  padding: 10px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 100;
  background-color: #c3d834;
  height: 100px;
  justify-content: center;
  transition: all 100ms ease-in;
}
.milestone-wp p {
  margin-bottom: 0.2rem;
  font-weight: 400;
}

.milestone-name {
  padding: 20px 40px;
  display: flex;
  justify-content: center;
  border-top: 2px solid #6fc4bf;
  position: relative;
  transition: all 100ms ease-in;
  font-weight: 400;
}
.milestone-name:before {
  content: "";
  width: 25px;
  height: 25px;
  background-color: #6fc4bf;
  border-radius: 25px;
  border: 1px solid #6fc4bf;
  position: absolute;
  top: -15px;
  left: 40%;
  transition: all 100ms ease-in;
}
.milestone-name h4 {
  font-weight: 600;
}

.single-milestone {
  text-align: center;
}
.single-milestone .milestone-circle {
  background: #6fc4bf;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-left: 30px;
}
.single-milestone .milestone-circle i {
  color: #fff;
  font-size: 2em;
  padding-top: 20px;
}
.single-milestone:hover {
  cursor: pointer;
}
.single-milestone:hover .milestone-wp {
  background-color: #3e5278 !important;
}
.single-milestone:hover .milestone-name:before {
  background-color: #3e5278 !important;
  border: 1px solid #3e5278 !important;
}
.single-milestone.past .milestone-circle {
  background: #d0e6e4;
}
.single-milestone.past .milestone-circle i {
  display: none;
}
.single-milestone.past .milestone-wp {
  background-color: #f5f8d5;
}
.single-milestone.past .milestone-name {
  color: #6fc4bf;
}
.single-milestone.future .milestone-circle {
  background: #f1f1f1;
}
.single-milestone.future .milestone-circle i {
  display: none;
}
.single-milestone.future .milestone-wp {
  background-color: #c1c1c1;
}
.single-milestone.future .milestone-name {
  color: #c1c1c1;
}
.single-milestone.future .milestone-name:before {
  background-color: #c1c1c1;
  border-color: #c1c1c1;
}
.single-milestone.first .milestone-name:before {
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.single-milestone.last .milestone-name:before {
  background-color: #fff;
  border: 3px solid #ccc;
}
.single-milestone.current .milestone-name:before {
  content: ">";
  color: #fff;
  background-color: #3e5278;
}

.milestone-content {
  padding: 20px 100px;
  min-height: 150px;
}

@media (min-device-width: 320px) and (max-device-width: 700px) {
  .timeline {
    list-style-type: none;
    display: block;
  }
  .single-milestone {
    transition: all 200ms ease-in;
    display: flex;
    width: inherit;
  }
  .milestone-name:before {
    left: -8%;
    top: 30%;
    transition: all 200ms ease-in;
  }
}

/*# sourceMappingURL=milestones.css.map */
