.splicey {
  overflow: hidden;
  color: #222;
  margin: 60px 0;
  position: relative;
  background-color: #ccfdee;
}

.hidden {
  position: absolute;
  overflow: hidden;
  width: 0;
  height: 0;
  pointer-events: none;
}

.splice_zone {
	position: relative;
	width: 100%;
	background: transparent;
	height: 100vw;
	overflow: hidden;
}

.slides {
  display: block;
  overflow: hidden;
  margin: 20px;
  height: calc((100%) - 80px);
  position: relative;
}

.slice__bg {
		background-size: contain;
    top: -30%;
}

.splice_zone h2 {
  font-weight: bold;
  font-size: 6vw;
  background: #09f5ba;
  padding: 0 2px;
  height: 7vw;
  line-height: 7vw;
  margin: 0 0 10px;
  display: inline;
}

.splice_zone h3 {
  font-style: italic;
  font-size: 5vw;
  font-weight: normal;
  height: 6vw;
  margin: 0 0 10px;
  position: relative;
  line-height: 6vw;
  background: #09f5ba;
  display: inline;
  padding: 0 2px;
}

.splice_zone aside {
  font-size: 3vw;
  height: 3vw;
  line-height: 3vw;
  margin: 0 0 10px;
  background: #09f5ba;
  display: inline-block;
  padding: 0 2px;
}

.splice_zone .formats {
  text-align: right;
  font-size: 4vw;
  height: auto;
  line-height: 6vw;
  margin: 0;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}

.splice_zone .formats span {
  background: #09f5ba;
  padding: 0;
  display: inline;
  white-space: nowrap;
}

.slices {
	/* All variables can be set in the JS */
	--slices-width: 100vw;
	--slices-height: 100vh;
	--slices: 30;
	--gap: 0px;
	width: 100vw;
	width: var(--slices-width);
	height: 100vh;
	height: var(--slices-height);
	display: grid;
	grid-template-columns: repeat(var(--slices), 1fr);
	grid-gap: var(--gap);
	position: absolute;
	top: 0;
}

/* Horizontal slices */
.slices--horizontal,
.slices--horizontal .slice {
	grid-template-columns: none;
	grid-template-rows: repeat(var(--slices), 1fr);
}

/* Fallback / NoJS */
.splicey .slices--fallback,
.splicey .no-js .slices {
	background-size: cover;
	background-position: 50% 50%;
	background-image: url('https://s9.limitedrun.com/images/1404178/footer_catalog_bg2.jpg');
}

.slice {
	position: relative;
	overflow: hidden;
}

.slice__inner {
	width: 100%;
	height: 100%;
	position: relative;
}

.slice__bg {
  width: 100vw;
  width: var(--slices-width);
  height: 100vh;
  height: var(--slices-height);
  height: -webkit-calc(var(--slices-height); - 0px);
  background-repeat: no-repeat;
  background-size: cover;
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  top: -77px;
  bottom: 0;
  left: 0;
}

/* Offset layout */
.slices--layout-offset {
	top: 50%;
	left: 50%;
	transform: translate3d(-50%,-50%,0);
}

.slices--layout-offset.slices--vertical .slice {
	height: 90%;
}

.slices--layout-offset.slices--vertical .slice--odd {
	top: 10%;
}

.slices--layout-offset.slices--horizontal .slice {
	width: 90%;
}

.slices--layout-offset.slices--horizontal .slice--odd {
	left: 10%;
}

/* Hack for last slice gap rendering */
.splicey .slices {
	width: calc(var(--slices-width) + 3px);
	height: calc(var(--slices-height) + 3px);
}

@media screen and (min-width: 55em) {
	.slides {
	    margin: 40px;
	}
	
	.splice_zone {
	  height: 50vw;
  }
  
  .splice_zone h2 {
    font-size: 3vw;
    line-height: 3vw;
  }
  
  .splice_zone h3 {
    font-size: 2vw;
    line-height: 3vw;
  }
  
  .splice_zone aside {
    font-size: 1vw;
    height: 2vw;
    line-height: 2vw;
  }
  
  .splice_zone .formats {
    font-size: 1.5vw;
    line-height: 2vw;
  }
}