.wp-block-lazyblock-step-section {
  /*margin: 100px 0;*/
  margin: 50px 0;
  padding-bottom: 80px;
}

.step {
  position: relative;
}

.step::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right,
      rgba(239, 151, 0, 0.5),
      rgba(255, 128, 0, 0));
  pointer-events: none;
}

.step-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.step-top {
  display: flex;
  align-items: flex-start;
}

.step-title {
  position: relative;
  width: 42%;
  min-height: 350px;
  background-color: #70C0A3;
  color: #fff;
  font-weight: 800;
  font-size: 48px;
  line-height: 1.16;
  padding: 60px 60px;
}

html[lang="en-US"] .step-title {
  font-size: calc(48px - 2px);
}

.step-content {
  flex: 1;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  padding: 60px 80px 60px 150px;
  margin-left: -90px;
  margin-top: 46px;
}

.step-list {
  position: relative;
  display: flex;
  align-items: stretch;
}

.step-item {
  position: relative;
  padding: 40px 40px;
}

.step-item::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #fff;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.step-list .step-item:nth-child(1) {
  width: 18%;
}

.step-list .step-item:nth-child(1)::before {
  width: calc(1 / 0.18 * 100%);
}

.step-list .step-item:nth-child(2) {
  width: 37%;
  margin-top: 40px;
}

.step-list .step-item:nth-child(2)::before {
  width: calc(1 / 0.37 * 100% * (0.37 + 0.45));
}

.step-list .step-item:nth-child(3) {
  width: 45%;
  margin-top: 80px;
}

.step-list .step-item:nth-child(3)::before {
  width: calc(1 / 0.45 * 100% * 0.45);
}

.step-item-title {
  font-weight: 800;
  font-size: 48px;
  line-height: 1.16;
  margin-bottom: 0.75em;
}

html[lang="en-US"] .step-item-title {
  font-size: calc(48px - 2px);
}

@media screen and (max-width: 1440px) {
  .step-item-title {
    font-size: 32px;
  }

  html[lang="en-US"] .step-item-title {
    font-size: calc(32px - 2px);
  }
}

@media screen and (max-width: 1280px) {
  .wp-block-lazyblock-step-section {
    margin: 40px 0;
    padding-bottom: 60px;
  }

  .step::before {
    top: 60px;
  }

  .step-wrapper {
    gap: 20px;
  }

  .step-title {
    min-height: 175px;
    font-size: 36px;
    padding: 30px 30px;
  }

  html[lang="en-US"] .step-title {
    font-size: calc(36px - 2px);
  }

  .step-content {
    padding: 20px 40px 20px 78px;
    margin-left: -45px;
    margin-top: 22px;
  }

  .step-item {
    padding: 20px 20px;
  }

  .step-item-title {
    font-size: 24px;
  }

  html[lang="en-US"] .step-item-title {
    font-size: calc(24px - 2px);
  }
}

@media screen and (max-width: 768px) {
  .step-top {
    flex-direction: column;
  }

  .step-title {
    width: 75%;
    min-height: unset;
    font-size: 28px;
  }

  html[lang="en-US"] .step-title {
    font-size: calc(28px - 2px);
  }

  .step-content {
    padding: 40px 40px;
    margin: 0;
  }

  .step-list {
    flex-direction: column;
  }

  .step-item {
    width: 100% !important;
    margin: 0 !important;
  }

  .step-item::before {
    width: 100% !important;
  }
}