/* FILTERS */
.button {
  display: block;
  width: 100%;
  margin-bottom: 1em;
  font-family: "Asap", sans-serif;
}

button {
  margin: 0.5em;
  padding: 0.5em;
  border: 1px solid #393838;
  color: #393838;
  background: none;
  font-size: 0.7em;
  text-transform: uppercase;
  font-size: 0.875em;
}

button.is-active {
  background: #393838;
  color: #ffffff;
}

/* LIST */
.list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.list__item {
  display: block;
  width: 100%;
  height: 18em;
  overflow: hidden;
  margin-bottom: 1em;
  text-align: center;
  font-size: 1em;
  text-transform: uppercase;
  color: white;
  box-shadow: 0 0 2px rgba(57, 56, 56, 0.2);
}

.list__item__title {
  display: block;
  margin-top: 30%;
}

@media screen and (min-width: 600px) {
  .list {
    display: flex;
    flex-wrap: wrap;
  }

  .list__item {
    width: calc(33% - 1em);
    margin-right: 1em;
  }

  .list__item:nth-child(3n) {
    clear: left;
  }

  .list__item:nth-child(-n+2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  button {
    margin: 0.5em;
    padding: 0.5em;
  }

  .list__item {
    width: calc(20% - 1em);
  }

  .list__item:nth-child(2n) {
    margin-right: 1em;
  }

  .list__item:nth-child(3n) {
    clear: none;
    margin-right: 0;
  }

  .list__item:nth-child(4n) {
    clear: left;
  }

  .list__item:nth-child(-n+3) {
    margin-top: 0;
  }
}
