.wcl-steps-section .data-title {
  text-align: center;
  margin-bottom: 50px;
}
.wcl-steps-section .row {
  margin-bottom: 75px;
  row-gap: 62px;
}
.wcl-steps-section .step-item {
  position: relative;
  height: 100%;
  padding: 66px 35px;
  background: var(--white-color);
  text-align: center;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
}
.wcl-steps-section .step-item::before {
  content: "";
  width: 80%;
  height: 100%;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  background: var(--white-color);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  z-index: -1;
}
.wcl-steps-section .step-item::after {
  content: "";
  width: 65%;
  height: 100%;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -35px;
  transform: translateX(-50%);
  background: var(--white-color);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  z-index: -2;
}
.wcl-steps-section .step-item .step-icon {
  margin-bottom: 20px;
}
.wcl-steps-section .step-item .step-title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
}
.wcl-steps-section .step-item .step-description {
  font-size: 20px;
  font-weight: 500;
  color: var(--gray-color);
}
.wcl-steps-section .step-item .data-border {
  width: 55%;
  height: 100%;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -45px;
  transform: translateX(-50%);
  background: var(--white-color);
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  z-index: -3;
}
.wcl-steps-section .wcl-button-wrapper {
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .wcl-steps-section .step-item::before {
    bottom: -17px;
  }
  .wcl-steps-section .step-item::after {
    bottom: -29px;
  }
  .wcl-steps-section .step-item .data-border {
    bottom: -38px;
  }
}
@media only screen and (max-width: 768px) {
  .wcl-steps-section .data-title {
    margin-bottom: 30px;
  }
  .wcl-steps-section .row {
    margin-bottom: 63px;
  }
  .wcl-steps-section .step-item .step-icon {
    margin-bottom: 17px;
  }
  .wcl-steps-section .step-item .step-title {
    margin-bottom: 4px;
    font-size: 21px;
  }
}
