.home-steps {
  background: #fff;
}

.home-steps h2 span {
  display: inline-block;
  color: #ffbd3d;
  font-size: .78em;
  vertical-align: 12%;
}

.home-steps__flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr) 54px minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 20px;
}

.home-steps__flow article {
  min-height: 178px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  border: 1px solid #dbe9f6;
  border-radius: 14px;
  padding: 22px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(16, 47, 82, .06);
}

.home-steps__flow article > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #eaf6ff;
  color: #0b76e0;
  font-size: 16px;
  font-weight: 800;
}

.home-steps__flow h3 {
  margin: 16px 0 8px;
  color: #102b52;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
}

.home-steps__flow p {
  margin: 0;
  color: #60758e;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.home-steps__arrow {
  align-self: center;
  justify-self: center;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid #dbe9f6;
  border-radius: 50%;
  background: #fff;
  color: #1687e8;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(16, 47, 82, .06);
}

.home-cta-section {
  padding-top: 28px;
}

.home-cta-section .cta {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .home-steps__flow {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .home-steps__arrow {
    transform: none;
  }
}

@media (max-width: 720px) {
  .home-steps__flow article {
    min-height: 0;
    padding: 20px;
  }

  .home-steps__flow h3 {
    font-size: 18px;
  }
}
