.container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
 /* gap: 10px; */
  max-width: 780px;
  min-width: 460px;
  padding: 0 10px 8px 10px;
}

.box {
  position: relative;
  /* align-items: center; */
  justify-content: center;
  display: grid;
  overflow: hidden;
  height: auto;
  padding: 6px;
}

.box img {
  display: block;
  margin: 0 auto;
  height: 50px;
  width: auto;
}

.box .text {
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0;
  text-align: center;
  font-size: 14px;
}