.grid-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .grid-row-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-row-3 .grid-col {
  width: 100%;
}

.grid-row-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media only screen and (max-width: 768px) {
  .grid-row-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-row-4 .grid-col {
  width: 100%;
}

.gallery-image-box {
  width: 100%;
  height: 300px;
  position: relative;
}
.gallery-image-box img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
}

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