
.content__type {
  font-family: halyard-display, sans-serif;
  font-weight: 300;
  backface-visibility: hidden;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -o-user-select: none;
  user-select: none;
  background-size: 80%;
}

.content__img {
  backface-visibility: hidden;
}

/* Effect Styles */

.folds {
  position: relative;
  transform-style: preserve-3d;
}

.fold-3d {
  position: absolute;
  left: 0;
  right: 0;
  perspective: 100vh;
  transform-style: preserve-3d;
}

.fold-3d-top {
  bottom: 100%;
  perspective-origin: 50% 100%;
}
.fold-3d-bottom {
  top: 100%;
  /* Origin at the top of the bottom wrapper, the bottom of the center fold. */
  perspective-origin: 50% 0%;
}
.debug .fold-top {
  background: #dadada;
}
.debug .fold-bottom {
  background: #dadada;
}
.debug .test-center {
  background: #bababa;
}
.fold-bottom {
  height: 50vh;
  width: 100%;
  /* background: #ff000090; */
  transform-origin: top center;
}
.fold-top {
  height: 50vh;
  width: 100%;
  /* background: #ff000090; */
  transform-origin: bottom center;
}
.fold-top .fold-scroller {
  transform-origin: top center;
}
.fold-bottom .fold-scroller {
  transform-origin: top center;
}
.fold-center {
    height: 80vh;
    width: 80vw;
  }

.fold {
  overflow: hidden;
  //border: 1px solid #000;
  border-top: 0;
  border-bottom: 0;
}
.fold-scroller {
  display: flex;
  flex-direction: column;
}

.fold-content {
    padding: 0 2rem;
  }