.my-parallax{
			position:relative;
			overflow: hidden;
			box-sizing: border-box;
		}
		.my-parallax > img,
		.my-parallax > video,
		.my-parallax > .object_fit_fallback {
			transform: translateZ(0);
			display: block;
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			width: 100%;
			height: 100%;
			object-fit: cover;
		}
		.my-parallax > .object_fit_fallback > img,
		.my-parallax > .object_fit_fallback > video {
			position: absolute;
			height: auto;
			left: 50%;
			min-height: 100%;
			min-width: 100%;
			top: 50%;
			transform: translate(-50%, -50%);
			width: auto;
		}
		.my-parallax > div {
			position:relative;
		}