.flexLists {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.flexList {
  margin: 15px 0;
  width: 20%;
}

.flexList img {
  width: 160px;
  height: 160px;
}

@media only screen and (max-width: 768px) {
  .flexList {
    margin: 4px 0;
    width: 33.33%;
  }
  .flexList img {
    width: 80px;
    height: 80px;
  }
}
