.service__list {
  display: flex;
  flex-wrap: wrap;
  margin: -5px;
}

.service__item {
  flex: 1 1 33.3333%;
  padding: 5px;
}

.service__card {
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  height: 100%;
}

.service__card > * {
  position: relative;
  z-index: 1;
}

.service__item:first-child .service__card::before,
.service__item:last-child .service__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/local/templates/tree/img/mask_group.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.service__item__icon {
  flex: 0 0 60px;
}

.service__item__text {
  display: inline-block;
  padding-left: 16px;
  font-size: 18px;
  line-height: 130%;
  color: #313131;
}

.service__slider {
    padding: 0 0 40px;
}

@media (max-width: 992px) {
  .service__item {
    flex: 1 2 auto;
  }
}

@media (max-width: 575px) {
  .service__item__text {
    max-width: 242px;
  }
}