/**
 * Green Valley field parallax compatibility port.
 *
 * This intentionally preserves the original #home-gvc / #home-gvc-container
 * selector contract because the GSAP animation and original layer geometry rely on it.
 */

/* Bootstrap-era utility compatibility needed by the original markup. */
.gvc-field-shortcode .absolute {
	position: absolute;
}

.gvc-field-shortcode img {
	display: block;
	max-width: none;
	border: 0;
}

.gvc-field-shortcode img.img-full-width {
	width: 100%;
	height: auto;
}

@media (max-width: 767px) {
	.gvc-field-shortcode .hidden-xs {
		display: none !important;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
	.gvc-field-shortcode .hidden-sm {
		display: none !important;
	}
}

/* Original field composition. */
#home-gvc {
	z-index: 0;
}

#home-gvc,
#home-gvc #home-gvc-container {
	position: relative;
}

#home-gvc #home-gvc-container #home-gvc-field {
	width: 100%;
	padding-top: 70.8333333333%;
	position: relative;
	margin-top: -30%;
}

#home-gvc #home-gvc-container #home-gvc-field .field-img {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
}

#home-gvc #home-gvc-container #home-gvc-field .field-img img {
	width: 100%;
	height: auto;
}

#home-gvc #home-gvc-container #home-gvc-field #home-gvc-field-bg {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #d5e8f6;
}

#home-gvc #home-gvc-container #home-gvc-field #home-gvc-field-bg-sun {
	top: 47.0588235294%;
	left: 45.4166666667%;
}

#home-gvc #home-gvc-container #home-gvc-field #home-gvc-field-bg-silhouettes {
	top: 51.7647058824%;
}

#home-gvc #home-gvc-container #home-gvc-field #home-gvc-field-bg-mountains {
	top: 60%;
}

#home-gvc #home-gvc-container #home-gvc-field #home-gvc-field-bg-plains {
	top: 74.1176470588%;
}

#home-gvc #home-gvc-container #home-gvc-field #home-gvc-field-bg-farm {
	top: 70.5882352941%;
	background: linear-gradient(
		transparent 0%,
		transparent 10%,
		rgb(127, 140, 54) 10%,
		rgb(127, 140, 54) 100%
	);
}

#home-gvc #home-gvc-container #home-gvc-field #home-gvc-field-bg-hills {
	top: 81.1764705882%;
}

#home-gvc #home-gvc-container #home-gvc-fg-hill {
	width: 100%;
	left: 0;
	position: absolute;
	z-index: 1;
	bottom: -1px;
}

#home-gvc #home-gvc-container #home-gvc-fg-hill img {
	width: 100%;
}

#home-gvc #home-gvc-container #home-gvc-fg-hill img.shadow {
	opacity: 0.5;
}

@media (min-width: 47.9375em) {
	#home-gvc #home-gvc-container #home-gvc-fg-hill .hill {
		width: 100%;
		left: 0;
		position: absolute;
		z-index: 1;
		bottom: 0;
	}

	#home-gvc #home-gvc-container #home-gvc-fg-hill .shadow {
		width: 100%;
		position: absolute;
		bottom: 2px;
	}

	#home-gvc #home-gvc-container #home-gvc-fg-hill .shadow img {
		opacity: 0.3;
	}
}

/* Performance tweaks from the existing theme override. */
#home-gvc-container,
#home-gvc-field-bg-sun,
#home-gvc-field-bg-silhouettes,
#home-gvc-field-bg-mountains,
#home-gvc-field-bg-plains,
#home-gvc-field-bg-farm,
#home-gvc-field-bg-hills,
#home-gvc-fg-hill {
	will-change: transform;
	backface-visibility: hidden;
}

/* Respect motion preferences. */
@media (prefers-reduced-motion: reduce) {
	#home-gvc-container,
	#home-gvc-field-bg-sun,
	#home-gvc-field-bg-silhouettes,
	#home-gvc-field-bg-mountains,
	#home-gvc-field-bg-plains,
	#home-gvc-field-bg-farm,
	#home-gvc-field-bg-hills,
	#home-gvc-fg-hill {
		will-change: auto;
		transform: none !important;
	}
}
