.process{
  width: 100%;
  background: #fff;
  text-align: center;
  border-radius: 5px;
}
.process header{
  font-size: 35px;
  font-weight: 600;
  margin: 0 0 30px 0;
}
.process .form-outer{
  width: 100%;
  overflow: hidden;
}
.process .form-outer form{
  display: flex;
  width: 400%;
}
.process .prog{
  display: flex;
  margin: 40px 0;
  user-select: none;
}
.process .prog .step{
  text-align: center;
  width: 100%;
  position: relative;
}

.prog .step .bullet{
  height: 30px;
  width: 30px;
  background-color: #eaeded;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  transition: 0.2s;
  font-weight: 500;
  font-size: 12px;
  line-height: 30px;
}
.prog .step .bullet.active{
  background:#b7d3e6;  
  color: #0967aa;
}
.prog .step .bullet:before,
.prog .step .bullet:after{
  position: absolute;
  content: '';
  bottom: 12.5px;
  right: calc(-100% + -150%);
  width: calc(80% + 200%);
  height: 1px;
  background:  #eaeded ;
}
@media (max-width: 650px){
  .prog .step .bullet:before,
.prog .step .bullet:after{
  right: calc(-100% + -15%);
  width: calc(80% + 70%);
}
}
.prog .step .bullet.active:after,.prog .step .bullet.active:before{
  background:   #aed6f1;
}
.prog .step:last-child .bullet:before,
.prog .step:last-child .bullet:after{
  display: none;
}
.step .bullet.active ~ .bullet {
  background-color: #ccc;
}