#clientes {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  height: 100%;
  width: 100%;
  height: 100%;
  margin: 100px 0;
  overflow-y: scroll;
}

#clientes .clientesContent {
  background-color: #fff;
  padding: 20px;
  margin: 40px 0;
}

#clientes .clientesTitle {
  text-align: center;
  padding: 10px;
  border-bottom: 3px solid #9bcd68;
  font-weight: bold;
  font-size: clamp(20px, 6vw, 50px);
}

#clientes .contactCustomers {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(0, 150px));
  justify-items: center;
  justify-content: center;
  padding: 50px 100px;
  gap: 50px;
}

#clientes .contactCustomers img {
  width: 100%;
}

@media screen and (max-width: 576px) {
  #clientes .clientesContent {
    margin: 0;
  }
}

@media screen and (max-width: 1280px) {
  #clientes .contactCustomers {
    padding: 50px 20px;
  }
}
