.booking {
  margin-top: 200px;
  margin-bottom: 300px;
}
.booking__title {
  text-align: center;
}
.booking__title.block-title {
  margin-bottom: 100px;
}
.booking__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 30px;
}
.booking .item {
  cursor: pointer;
  padding: 16px;
  text-align: center;
  background: #F6FCFA;
  border-radius: 16px;
  transition: box-shadow 0.4s ease-in;
}
.booking .item:hover {
  box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.14);
}
.booking .item__icon {
  margin: 0 auto;
  margin-bottom: 20px;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.booking .item__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.booking .item__name {
  margin: 0;
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 115%;
  color: #231F20;
}

@media (max-width: 1300px) {
  .booking {
    margin-top: 140px;
    margin-bottom: 140px;
  }
  .booking__title.block-title {
    margin-bottom: 80px;
  }
}
@media (max-width: 1200px) {
  .booking__steps {
    grid-gap: 15px;
  }
}
@media (max-width: 930px) {
  .booking__steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 890px) {
  .booking {
    margin-top: 80px;
    margin-bottom: 80px;
  }
}
@media (max-width: 570px) {
  .booking {
    margin-top: 80px;
    margin-bottom: 80px;
  }
  .booking__title.block-title {
    margin-bottom: 60px;
  }
  .booking__steps {
    grid-template-columns: 1fr;
  }
}/*# sourceMappingURL=block.css.map */