.services {
  list-style: none;
  background-color: #EDDCD5;
  padding: 70px 15px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.services.services--gradient {
  background: linear-gradient(180deg, #CCB89E 0%, #FAFAFA 100%);
}

.services.services--art {
  background: #fff;
}

.services__list {
  display: flex;
  flex-wrap: wrap;
  margin: 24px auto 48px;
}

.services__list li {
  flex-grow: 1;
  flex-basis: 0;
  margin: 20px;
}

.services__list li a {
  text-decoration: none;
}

.services__list li a:hover img {
  filter: grayscale(50%);
  transition: all 0.5s ease;
}

.services__list li span {
  font-size: 18px;
  line-height: 28px;
}

.services__list-item {
  overflow: hidden;
  height: 200px;
  position: relative;
}



.services__list-item img {
  max-height: 90%;
}


@media screen and (max-width: 1024px) {}

@media screen and (max-width: 800px) {

  .services__list li {
      margin: 8px;
  }

  .services__list li span {
      font-size: 14px;
      line-height: 16px;
  }
}

@media screen and (max-width: 480px) {

  .services {
      padding: 60px 15px;
  }

  .services__list {
      margin: 40px 0 0 0;
      flex-direction: column;
      flex-wrap: nowrap;
      width: 100%;
      box-sizing: border-box;
  }



  .services__list-item {
      height: auto;
      display: flex;
      justify-content: center;
  }


  .services__list-item img {
      width: 40%;
  }

  .services__list li span {
      font-size: 16px;
      line-height: 26px;
      margin: 10px 0;
      display: block;
      font-weight: 700;
  }

  .services .button-primary {
      margin-top: 38px;
  }


}