/* Split Image Parallax (v1.0.3.7) */
.sip-split {
  position: relative;
  display: grid;
  grid-template-columns: repeat(var(--sip-slices, 3), 1fr); /* overridden inline when exactly 3 slices */
  gap: var(--sip-gap, 12px);
  overflow: hidden;
  width: 100%;
}
.sip-split .sip-slice {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  will-change: transform;
  height: 100%;
  transition: transform .25s ease-out;
}
.sip-split .sip-slice.is-center { z-index: 1; }
