.home-services {
  background: #f9f9f9;
}
.home-services__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  gap: 15px;
}
.home-services__list li {
  width: calc(33.33% - 10px);
  margin: 0;
  list-style: none;
  background: white;
  padding: 58px 35px 35px 55px;
  border-radius: 20px;
}
.home-services__list h3 {
  margin-top: 20px;
  font-size: 23px !important;
  line-height: 28px;
}
.home-services__list img {
  max-height: 28px;
  max-width: 28px;
  object-fit: contain;
}
.home-services__list .classic__arrow {
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
@media only screen and (max-width: 1336px) {
  .home-services__list li {
    padding: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .home-services__list li {
    width: calc(50% - 15px);
  }
}
@media only screen and (max-width: 575px) {
  .home-services__list li {
    width: 100%;
  }
}
