.main-services .service__item {
  margin: 40px 0 0 40px;
}

.service__items {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 0 0 -40px;
}

.service__item {
  width: calc(33% - 40px);
  margin: 64px 0 0 40px;
}

.service-item__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  transition: 0.3s all ease-in-out 0s;
  object-fit: cover;
}

.service-item__image img:hover {
  opacity: 0.7;
}

.service-item__heading {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: var(--subtitle-color);
}

.service-item__description {
  font-size: 14px;
  line-height: 20px;
  color: var(--text-color-gray);
}

/* Медиазапрос для мобильных устройств */
@media (max-width: 768px) {
  .service__items {
    margin: 0;
    flex-direction: column;
  }

  .service__item {
    width: 100%;
    margin: 32px 0 0 0;
  }
}
