.how-it-works-layout span {
  font-size: 4rem;
}
.how-it-works-layout .step_number span {
  width: 45px;
  height: 45px;
  text-align: center;
  line-height: 45px;
  font-weight: bold;
  font-size: 25px;
  color: #fff;
  font-family: 'Tahoma', serif;
}
.how-it-works-layout .step_number .bg1 {
  background: #00bce9;
}
.how-it-works-layout .step_number .bg2 {
  background: #01d2bd;
}
.how-it-works-layout .step_number .bg3 {
  background: #00e791;
}
.how-it-works-layout .step1:after {
  content: '';
  height: 2px;
  width: 50%;
  position: absolute;
  background: linear-gradient(180deg, rgba(85,186,228,1) 0%, rgba(85,186,228,1) 100%);
  right: 0;
  left: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.how-it-works-layout .step2:after {
  content: '';
  height: 2px;
  width: 100%;
  position: absolute;
  background: linear-gradient(180deg, rgba(85,186,228,1) 0%, rgba(31,219,170,1) 100%);
  right: 0;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.how-it-works-layout .step3:after {
  content: '';
  height: 2px;
  width: 50%;
  position: absolute;
  background: linear-gradient(180deg, rgba(31,219,170,1) 0%, rgba(31,219,170,1) 100%);
  right: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}


@media only screen and (max-width: 991px) {
  .how-it-works-card-layout {
    min-height: 10rem;
  }
}
@media only screen and (max-width: 767px) {
  .how-it-works-layout .step_number {
    height: 100%;
  }
  .how-it-works-layout .step_number span {
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;

  }
}