.inspiration-gallery > * + * {
  margin-top: 50px;
}

.filters-wrapper {
  border-bottom: 1px solid #dfdfdf;
}

.filters {
  display: flex;
  justify-content: space-between;
  list-style: none !important;
  padding: 0 !important;
  overflow: auto;
}

.filters > * + * {
  margin-left: 10px;
}

.filters__link {
  position: relative;
  display: block;
  padding: 20px 25px;
  color: #393939;
  font-family: "basis-grotesque-medium";
  font-size: 14px;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0.8;
}

.filters__link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #f17da4;
  opacity: 0;
  transition: 200ms ease;
}

.filters__link.filters__link--active {
  opacity: 1;
}

.filters__link.filters__link--active::before {
  opacity: 1;
}

.gallery {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px !important;
  padding-right: 15px !important;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 1fr;
  grid-auto-rows: 200px;
  list-style: none !important;
}

.gallery__item {
  background-color: lightgray;
  grid-column: span 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  position: relative;
}

.gallery__item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
}

.gallery-box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 15px;
  text-decoration: none;
  background-color: rgba(46, 70, 158, 0.85);
  opacity: 0;
  transition: opacity 300ms ease-in-out;
}

.gallery-box > * + * {
  margin-top: 5px;
}

.gallery__item:hover .gallery-box {
  opacity: 1;
}

.gallery-box__heading {
  position: relative;
  margin: 0;
  padding-top: 30px;
  padding-bottom: 0;
  color: #fff;
  font-family: "basis-grotesque-medium";
  font-size: 22px;
  font-weight: bold;
  line-height: 1em;
  text-align: center;
}

.gallery-box__heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 3px;
  width: 30px;
  background-color: #43e0d1;
}

.gallery-box__text {
  padding: 0;
  color: #fff;
  font-family: "basis-grotesque-medium";
  font-size: 14px;
  font-weight: bold;
  line-height: 28px;
  text-align: center;
  opacity: 0.8;
}

@media (min-width: 520px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .filters {
    overflow: visible;
  }

  .filters > * + * {
    margin-left: 0;
  }

  .gallery {
    grid-template-columns: repeat(4, 1fr);
  }

  .gallery__item:nth-child(6n + 3) {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery__item:nth-child(6n + 4) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (min-width: 1200px) {
  .filters {
    justify-content: center;
  }

  .filters__link {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 16px;
  }

  .gallery {
    grid-auto-rows: 300px;
  }

  .gallery-box > * + * {
    margin-top: 10px;
  }

  .gallery-box__heading {
    font-size: 28px;
  }

  .gallery-box__text {
    font-size: 16px;
  }
}
