.masonry {
  display: flex;
  flex-flow: row wrap;
  margin-left: -8px;
  width: 100%;
}

.masonry-brick {
  flex: auto;
  height: 350px;
  min-width: 150px;
  padding: 0 8px 8px 0;
  object-fit: cover;
}

.masonry-brick:nth-child(4n + 1) {
  width: 23%;
}

.masonry-brick:nth-child(4n + 2) {
  width: 37%;
}

.masonry-brick:nth-child(4n + 3) {
  width: 39%;
}

#home .masonry-brick:nth-child(n + 7) {
  display: none;
}

