.wipe-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.wipe-sticky {
  position: relative;
  width: 100%;
  height: 100vh;
}

.wipe-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.wipe-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.wipe-slide img,
.wipe-slide video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wipe-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* =====================================
   CONTENT
===================================== */

.wipe-content {
  position: absolute;
  left: 8%;
  bottom: 10%;
  width: 90%;
  max-width: 1600px;
  z-index: 10;
  display: flex;
  flex-direction: column;
}

.wipe-content.align-left {
  align-items: flex-start;
}

.wipe-content.align-center {
  align-items: center;
  margin: 0 auto;
  left: 0;
  right: 0;
  text-align: center;
}

.wipe-content.align-right {
  align-items: flex-end;
  right: 8%;
  left: auto;
  text-align: right;
}

.wipe-content h2,
.wipe-content p {
  width: 100%;
  margin-top: 0;
}

/* =====================================
   SPECIAL REVEAL TEXT
===================================== */

.spw-special-reveal {

  position: relative;

  width: 45%;

  display: block;

  line-height: 1;

}

.spw-special-base {

  color: rgba(255,255,255,0.18);

  position: relative;

  z-index: 1;

  display: block;

  width: 100%;

  word-break: break-word;

}

.spw-special-overlay-wrap {

  position: absolute;

  inset: 0;

  overflow: hidden;

  z-index: 2;

}

.spw-special-overlay {

  color: #ffffff;

  display: block;

  width: 100%;

  word-break: break-word;

}

/* =====================================
   VIDEO
===================================== */

.wipe-video {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* =====================================
   MOBILE
===================================== */

@media (max-width: 767px) {

  .wipe-content {
    width: 84%;
    left: 8%;
    bottom: 8%;
  }

  .wipe-content.align-center {
    width: 84%;
  }

  .wipe-content.align-right {
    right: 8%;
  }

  .spw-special-reveal {
    font-size: 42px !important;
  }

}