.steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
}

.step-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: var(--purple3);
  transition: .4s;
  color: #c0c0c0;
}

.step-button[aria-expanded="true"] {
  width: 60px;
  height: 60px;
  background-color: var(--purple2);
  color: #fff;
}

.done {
  background-color: var(--purple4);
  color: #fff;
}

.step-item {
  z-index: 10;
  text-align: center;
}

#progress {
  -webkit-appearance: none;
  position: absolute;
  width: 95%;
  z-index: 5;
  height: 10px;
  margin-left: 18px;
  margin-bottom: 18px;
}

/* to customize progress bar */
#progress::-webkit-progress-value {
  background-color: var(--green1);
  transition: .5s ease;
}

#progress::-webkit-progress-bar {
  background-color: #6a6a6a;
  background: #6a6a6a ;
}

/*progress color*/
progress::-moz-progress-bar {
  background: var(--green1);
}

progress::-webkit-progress-value {
  background: var(--green1);
}

progress {
  color: var(--green1);
}


.card {
  background-color: var(--purple3_transparent);
  color: black;
}


@media only screen and (max-width: 768px) {
  .step-title {
  font-size: 2vw;
  }

  .step-button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: var(--purple3);
    transition: .4s;
    color: #c0c0c0;
  }

  .step-button[aria-expanded="true"] {
    width: 50px;
    height: 50px;
    background-color: var(--purple2);
    color: #fff;
  }
}