.f-sen,
div#progressIndicator .wrap .step .circle span {
  font-family: 'Sen', sans-serif
}

body {
  color: #333
}

.center {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%
}

@media (max-width: 1024px) {
  .center {
    padding: 0 20px
  }
}

div#progressIndicator {
  margin-bottom: 100px
}

div#progressIndicator.pink {
  background: #f998bb
}

div#progressIndicator.pink .step .circle {
  background: #f998bb
}

div#progressIndicator.green {
  background: #8CC63F
}

div#progressIndicator.green .step .circle {
  background: #8CC63F
}

div#progressIndicator.orange {
  background: #FBB03B
}

div#progressIndicator.orange .step .circle {
  background: #FBB03B
}

div#progressIndicator .wrap {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 100;
  max-width: 500px;
  margin: 0 auto
}

div#progressIndicator .wrap::after {
  position: absolute;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  border-bottom: dotted 3px white;
  opacity: .5;
  width: 100%;
  z-index: -1
}

div#progressIndicator .wrap .step .circle {
  border-radius: 50%;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: solid 3px rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.5)
}

div#progressIndicator .wrap .step .circle.active {
  border: solid 3px #fff;
  color: #fff
}

div#progressIndicator .wrap .step .circle span {
  line-height: 1;
  display: block;
  text-align: center
}

div#progressIndicator .wrap .step .circle span.index {
  font-size: 13.3px;
  transform: rotate(0.03deg)
}

div#progressIndicator .wrap .step .circle span.num {
  font-size: 28.5px;
  transform: rotate(0.03deg)
}