.step-block {
  padding: 100px 0 60px;
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}
.step-wrap {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin: 0 -15px -30px;
}
.step-item {
  flex-grow: 1;
  flex-basis: 0;
  min-width: 25%;
  margin-bottom: 30px;
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.step-item:nth-child(even) {
  flex-direction: column-reverse;
}
.step-content {
  background: #FFFFFF;
  box-shadow: 10px 10px 30px rgba(64, 10, 83, 0.1), inset -2px -2px 10px rgba(0, 0, 0, 0.05), inset 2px 2px 10px #FFFFFF;
  border-radius: 30px;
  padding: 30px;
}
.step-content .btn {
  width: 100%;
  margin-top: 30px;
}
.step-content h1, .step-content h2, .step-content h3, .step-content h4, .step-content h5, .step-content h6 {
  margin-bottom: 10px;
}
.step-image {
  flex: 1 auto;
  max-height: 400px;
  height: 100%;
}
.step-image img {
  border-radius: 30px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1025px) {
  .step-item {
    min-width: 50%;
  }
}
@media (max-width: 769px) {
  .step-block {
    padding: 50px 0 30px;
  }
}
@media (max-width: 498px) {
  .step-item {
    min-width: 100%;
  }
  .step-item:nth-child(even) {
    flex-direction: column;
  }
}/*# sourceMappingURL=block.css.map */