.client-card {
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  row-gap: 20px;
}
.client-card-img {
  width: 20%;
  list-style: none;
  text-align: center;
  /* list-style: none; */
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: text-bottom;
  box-shadow: 0 16px 24px 9px rgba(27,29,35,0);
  border: 1px solid hsla(0,0%,93%,0);
  border-radius: 10px;
  max-height: 196px;
  height: 140px;
}
.client-card-img:hover {
  box-shadow: 0 16px 24px 9px rgba(27,29,35,.08);
  border: 1px solid #eee;
  cursor: pointer;
}
.client-card-img {
}
.client-card-img img {
  max-width: 200px;
}
@media(max-width:991px){
  .client-card-img img{
    max-width: 110px;
  }
}
@media(max-width:767.98px){
  .client-card{
    flex-direction: column;
  }
  .client-card-img img{
    max-width: 200px;
  }
}