#service-block {
  background-color: #f6f7f7;
}
#service-block .services {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 30px;
}
#service-block .item {
  display: flex;
  height: auto;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease-in;
}
#service-block .item:hover {
  box-shadow: 0px 15px 30px rgba(0, 0, 0, 0.1);
}
#service-block .item__image {
  position: relative;
  width: 220px;
  height: 200px;

}
#service-block .item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#service-block .item__content {
  display: flex;
  flex-direction: column;
  width: 80%;
  padding: 30px 20px 20px;
}
#service-block .item__name {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  margin-bottom: 20px;
}
#service-block .item__wrap {
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}
#service-block .item__btn {
  margin-top: 30px;
}
#service-block .item__price {
  margin: 0 10px 10px;
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
}
#service-block .item__price span {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 27px;
}

#service-block .button_holder{
  width: 100%;
  display: flex;
  justify-content: end;
}

@media (max-width: 1200px) {
  #service-block .services {
    grid-gap: 20px;
  }
}
@media (max-width: 840px) {
  #service-block .services {

    grid-gap: 15px;
  }
}
@media (max-width: 500px) {
  #service-block .services {

    grid-gap: 15px;
  }

  #service-block .item {
    flex-direction: column;
  }
  #service-block .item__image {
    width: 100%;
  }
  #service-block .item__content {
    width: 100%;
  }
}
@media (max-width: 380px) {
  #service-block .item__content {
    padding: 20px 10px 10px;
  }
}/*# sourceMappingURL=block.css.map */