body {
    font-family: 'Alegreya Sans', sans-serif;
    margin: 0;
    padding: 0;
}

.container-progress {
  width: 600px;
  margin: 30px auto 130px; 
}
.progressbar {
  margin: 0;
  padding: 0;
  counter-reset: step;
}
.progressbar li {
  list-style-type: none;
  width: 33.33%;
  float: left;
  font-size: 12px;
  font-weight: bold;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #7d7d7d;
}
.progressbar li:before {
  width: 15px;
  height: 15px;
  content: "";
  line-height: 5px;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
background-color:  #7d7d7d;
}
.progressbar li:after {
  width: 100%;
  height: 3px;
  content: '';
  position: absolute;
  background-color:  #7d7d7d;
  top: 5px;
  left: -50%;
  z-index: -1;
}
.progressbar li:first-child:after {
  content: none;

}
.progressbar li.active {
  color: #009aae;

}
.progressbar li.active:before {
  border-color: #009aae;
  background-color: #009aae;
}
.progressbar li.active:after {
  background-color: #009aae;
}
