.services {
  margin-bottom: 38px;
}

.services-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 19px 35px;
}

.service-card {
  position: relative;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--colorFC);
  border-radius: 12px;
  overflow: hidden;
}

.service-card__image img
{
    max-width: unset;
    height: 110px;
} 

.service-card .text
{
    color: #000;
    font-weight: bold;
    margin-right: 20px;  
    position: absolute;
    left: 140px;
    transition: left 0.2s ease; /* плавный переход для позиции */
    min-width: 120px;
}

.service-card__image {
  height: 97px;
  overflow: hidden;
  border-radius: 68px;
  transition: all 0.2s linear;
}
.service-card__image img {
  transform-origin: 0 0;
  transition: all 0.2s linear;
}
.service-card:hover {
  transition: all 0.2s linear;
}
.service-card .service-card__image {
  height: 100%;
  width: 120px;
  border-radius: 12px;
  transition: all 0.2s linear;
  overflow: hidden;
  width: 120px;
}
