@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.products {
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .products {
    margin-bottom: 5rem;
  }
}
@media (min-width: 992px) {
  .products {
    margin-bottom: 7rem;
  }
}
.products ul {
  display: grid;
  gap: 1.5rem;
  list-style-type: none;
  padding: 0;
}
@media (min-width: 768px) {
  .products ul {
    column-gap: 2rem;
    row-gap: 2.5rem;
    grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
  }
}
.products #more-products {
  margin-top: 2rem;
}
/*# sourceMappingURL=field--field-products.css.map */
