#steps-block {
  background-color: #ECEDED;
}
#steps-block .steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 30px;
}
#steps-block .item {
  padding: 30px;
  background-color: #ffffff;
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}
#steps-block .item__wrap {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#steps-block .item__count {
  margin-right: 20px;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 134%;
  color: #6fb539;
}
#steps-block .item__name {
  font-weight: 500;
  font-size: 20px;
  line-height: 23px;
}
#steps-block .item__desc {
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  #steps-block .steps {
    grid-gap: 20px;
  }
  #steps-block .item__name {
    margin-top: 10px;
  }
  #steps-block .item__wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 890px) {
  #steps-block .stetp {
    grid-gap: 15px;
  }
  #steps-block .item {
    padding: 15px;
  }
}
@media (max-width: 790px) {
  #steps-block .steps {
    grid-template-columns: 1fr;
  }
  #steps-block .item {
    padding: 30px;
  }
}
@media (max-width: 390px) {
  #steps-block .item {
    padding: 15px;
  }
}/*# sourceMappingURL=block.css.map */