.customers-section:hover {
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.customers-section {
  background-color: white;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.customers-section img {
  width: 350px;
}
.customers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-gap: 20px;
}

@media (max-width: 400px) {
  .customers-section img {
    width: 300px;
  }
}
