.parallax-bg {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

#site-container .parallax-image {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 130%; /* Extends beyond viewport for smooth effect */
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	max-width: 100%;
	transform: translate3d(0, 0, 0);
	z-index: -1;
}

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: no-preference) {
	.parallax-image {
		will-change: transform;
	}
}

.parallax-image + * {
	margin-top: 0;
}

/*
Media Queries
---------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 980px) {

	#site-container .parallax-image {
		transform: none !important;
		height: 100%;
	}

}