/*-----------------------------------------------------------------------------
	Name	    : Parallax
	Description	: Parallax setings
	Author		: artibaj
	Author URL	: https://www.artibaj.com/
    Created		: 01 September 2019
	License		: All Rights Reserved. Do Not Copy!
-------------------------------------------------------------------------------*/
.parallax-container {
  padding: 0;
  margin: 0;
  overflow: hidden;
  position: relative;
}
.parallax-image-container {
  position: absolute;
  height: 100%;
  width: 100%;
}
.parallax-image-container .parallax-image-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.parallax-image-container .parallax-banner-v1 {
  z-index: -1;
  position: absolute;
  left: 50%;
  top: 0;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -o-object-fit: cover;
  object-fit: cover;
}
.parallax-image-container .parallax-banner-v3 {
  z-index: -1;
  position: fixed;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100vh;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -o-object-fit: cover;
  object-fit: cover;
}
.parallax-image-container .parallax-banner-v2 {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  width: 100vw;
  height: 100vh;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -o-object-fit: cover;
  object-fit: cover;
}
.parallax-caption {
  text-align: center;
  position: relative;
}
.parallax-caption-inner {
  position: relative;
}
.banner-parallax-src {
  overflow: hidden;
  position: relative;
}
#parallax-src {
  overflow: hidden;
  position: relative;
}