/**
 * NC Jet Parallax v1.0.0 — https://ninjaclan.com.ar
 * Estilos de las capas de parallax. Mantiene los mismos nombres de clase
 * (.jet-parallax-section__*) que generaba JetElements para no romper CSS
 * custom existente que apunte a esos selectores.
 */
.jet-parallax-section__layout {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	overflow: hidden;
	pointer-events: none;
	-webkit-perspective: 1200px;
	perspective: 1200px;
}

.jet-parallax-section__image {
	width: 100%;
	height: 100%;
	background-repeat: no-repeat;
	-webkit-background-size: auto auto;
	background-size: auto;
	background-position-x: 50%;
	background-position-y: 50%;
	will-change: transform;
}

.jet-parallax-section .jet-parallax-section__scroll-layout:not(.is-mac) .jet-parallax-section__image {
	-webkit-transition: background-position 0s linear, -webkit-transform 0.5s cubic-bezier(0.25, 0.88, 0.54, 0.98);
	transition: background-position 0s linear, -webkit-transform 0.5s cubic-bezier(0.25, 0.88, 0.54, 0.98);
	-o-transition: transform 0.5s cubic-bezier(0.25, 0.88, 0.54, 0.98), background-position 0s linear;
	transition: transform 0.5s cubic-bezier(0.25, 0.88, 0.54, 0.98), background-position 0s linear;
	transition: transform 0.5s cubic-bezier(0.25, 0.88, 0.54, 0.98), background-position 0s linear, -webkit-transform 0.5s cubic-bezier(0.25, 0.88, 0.54, 0.98);
}
