.services-list {
  z-index: 1;
  padding: 0 0 150px 0;
}
.services-list__container {
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 60px;
  width: 100%;
}
.services-list__box {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.services-list__box:hover .services-list__image img {
  transform: scale(1.1);
}
.services-list__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.services-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.services-list__link {
  margin: 25px 0 0 0;
  color: #231F20;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 30px;
  line-height: 1.875rem;
  font-feature-settings: "kern" 1;
  font-kerning: normal;
  font-weight: 700;
}
.services-list__link:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 480px) {
  .services-list__image {
    height: 300px;
  }
}
@media only screen and (min-width: 768px) {
  .services-list__container {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 60px;
    grid-row-gap: 80px;
  }
  .services-list__image {
    height: 200px;
  }
}
@media only screen and (min-width: 1024px) {
  .services-list {
    padding: 20px 0 250px 0;
  }
  .services-list__image {
    height: 300px;
  }
  .services-list__link {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 34px;
    line-height: 2.125rem;
    font-feature-settings: "kern" 1;
    font-kerning: normal;
  }
}