@keyframes spinAround {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
.grid {
  display: inline-flex;
  width: auto;
  height: auto;
  overflow: hidden;
}
.grid.has-image {
  border-radius: 0.25rem;
  transition: 0.5s filter cubic-bezier(0.77, 0, 0.18, 1), 0.15s linear box-shadow;
}
.grid.has-image > img {
  transition: 0.15s transform linear;
}
.grid.has-image > img:hover {
  transform: scale(1.075, 1.075);
}

.grids {
  display: grid;
  grid-gap: 0.75rem;
}
@media screen and (max-width: 768px) {
  .grids {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 769px), print {
  .grids {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 1408px) {
  .grids {
    grid-template-columns: repeat(4, 1fr);
  }
}

.has-image.does-zoom {
  transition: 0.15s transform linear, 0.5s linear box-shadow;
}
.has-image.does-zoom:hover {
  transform: scale(1.075, 1.075);
  box-shadow: 0 0 8px 8px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 768px) {
  .hero-background-image {
    background-image: url("../assets/headers/header-bg-small.jpg") !important;
  }
}
@media screen and (min-width: 769px), print {
  .hero-background-image {
    background-image: url("../assets/headers/header-bg-medium.jpg") !important;
  }
}
@media screen and (min-width: 1408px) {
  .hero-background-image {
    background-image: url("../assets/headers/header-bg3.jpg") !important;
  }
}

/*# sourceMappingURL=app.css.map */
