.intro {
  display: flex;
  align-items: center;
  margin-bottom: var(--gap-pad);
}

.filters {
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  justify-content: center;
}

.filter {
  width: calc(auto - var(--gutter));
  padding: var(--gutter);
  font-size: .85rem;
  text-align: center;
  white-space: nowrap;
  transition: .3s ease-in-out;
}

.filter:hover {
  opacity: .75;
}

.filter .active {
  color: var(--black);
  font-weight: 600;
}

.kodama {
  position: fixed;
  opacity: 0;
  z-index: 1;
}

.kodama-3 {
  transform: scaleX(-1);
}


@media screen and (max-width: 900px) {

  .intro {
    display: block;
  }

  .filters {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin: 0 calc(-1 * var(--gutter));
  }

}

@media screen and (max-width: 800px) {

  .title {
    margin-bottom: 1rem;
  }

  .filter {
    padding: 0;
    margin: .3rem var(--gutter);
  }

}
