.project-steps-container {
  display: flex;
  width: 100%;
  margin: 20px 0;
}

.separator {
  width: 1px;
  height: 55px;
  background-color: #f3f3f9;
}

.group-container {
  flex-grow: 1;
  margin-bottom: 15px;
}

.progress-bar {
  position: relative;
  background-color: lightgrey;
  width: 100%;
  height: 55px;
  margin-bottom: 5px;
}

.progress {
  height: 100%;
}

.progress-bar span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  font-weight: bold;
}

.group-container h4 {
  margin: 10px 0 5px;
  text-align: center;
  font-weight: 500;
}

@media (max-width: 992px) {

  .group-container {
    margin-bottom: 0;
  }

.separator{
  display: none;
}

  .project-steps-container {
    flex-direction: column;
  }

  .group-container {
    flex-direction: column;
    align-items: flex-start;
    min-width: 100%;
  }

  .group-container h4 {
    width: 100%;
    margin-bottom: 5px;
  }

  .progress-bar {
    width: 100%;
    height: 35px;
  }

  .numbers {
    font-weight: 500;
  }
}
