/* Parallax plugin styles */
.parallax-js {
  background-size: cover;
  background-position: center center;
}
.parallax-js.parallax-fixed {
  background-attachment: fixed;
  z-index: 90;
}
.the-parallax {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.the-parallax .parallax_instance {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-size: cover;
  background-position: center center;
  will-change: transform;
  z-index: -1;
}
.the-parallax.x2 .parallax_instance {
  height: 200vh;
}
.the-parallax.x3 .parallax_instance {
  height: 300vh;
}
.the-parallax.x4 .parallax_instance {
  height: 400vh;
}