.steps-container {
    display: flex;
    justify-content: space-between;
    width: 100%
    margin: 0 auto;
    position: relative;
    gap: 3vw;
}

.step {
    flex: 1;
    text-align: center;
   
    position: relative;
}


.step span {
    font-family: "futura-pt", sans-serif;
    font-size: 70px;
    line-height: 36px;
    font-weight: 800;
    color: #D9D9D9;
    display: block;
}

.step.active span {
    color: black; 
}

.step .step-text {
    font-size: 13px;
    font-weight: 400;
    line-height: 18px;
    font-family: "futura-pt", sans-serif;
  margin-top: 60px;
}

.progress-bar {
    height: 10px;
    width: 100%;
    background-color: #D3D3D3;
    position: absolute;
    top: 51%;
    left: 0;
    z-index: 3;
}

.progress-bar::before{
    content: "";
    display: block;
    height: 100%;
    background-color: #24CE7B;
}

.step1.active ~ .progress-bar:before {
    width: 25%;
}

.step2.active ~ .progress-bar:before {
    width: 50%;
}

.step3.active ~ .progress-bar:before {
    width: 75%;
}

.step4.active ~ .progress-bar:before {
    width: 100%;
}
@media only screen and (max-width: 768px) {
  .step span {
    font-size: 48px;
  }
  
}