.awea-steps-list {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-top: 0;
  flex-direction: column;
}

@media (min-width: 600px) {
  .awea-steps-list {
    flex-direction: row;
    margin-top: 60px;
  }
}

.awea-steps-single {
  position: relative;
  text-align: center;
}

.awea-steps-single:after {
  position: absolute;
  content: "";
  background-image: url("img/arrow-1.png");
  width: 100%;
  height: 60px;
  right: -120px;
  top: -60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 150px 30px;
  display: none;
}

@media (min-width: 600px) {
  .awea-steps-single:after {
    display: block;
  }
}

.awea-steps-img {
  max-width: 120px !important;
}

.awea-steps-number {
  position: absolute;
  right: -50px;
  top: -65px;
  background-color: var(--e-global-color-primary);
  width: 40px;
  height: 40px;
  z-index: 2;
  color: var(--e-global-color-text);
  line-height: 40px;
  border-radius: 10px;
  display: none;
}

@media (min-width: 600px) {
  .awea-steps-number {
    display: block;
  }
}

.awea-steps-title {
  margin: 15px 0;
}

.awea-steps-single:last-child .awea-steps-number,
.awea-steps-single:last-child:after {
  display: none;
}
