/* ============================================================
   REQUIRED: GALLERY IMAGE LAYERS (DIV-BASED)
============================================================ */

.gallery-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  opacity: 0;
  transition: opacity 1.4s ease-in-out;
}

.gallery-image.active {
  opacity: 1;
}
