.services {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.services__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  transition: opacity ease .5s;
}

.services__link:hover {
  text-decoration: none;
  opacity: .8;
}

.services__img {
  display: block;
  max-height: 200px;
  width: 100%;
  object-fit: contain;
  background-color: #fff;
  padding: 20px;
}

.services__name {
  padding: 16px 16px 28px;
  background-color: #fff;
  color: #000;
  margin: 0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  flex-grow: 1;
}

@media screen and (min-width: 576px) {
  .services__name {
    font-size: 18px;
  }
}

@media screen and (min-width:992px) {
  .services {
    grid-template-columns: repeat(4, 1fr);
  }
}