/*
 * Bayline Services — Scroll Reveal Animations
 * Classes are applied by assets/js/bl-animations.js (progressive enhancement:
 * without JS nothing is hidden).
 */

.bl-anim {
	opacity: 0;
	transition: opacity 0.6s ease, transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
	will-change: opacity, transform;
}

.bl-anim--up {
	transform: translateY(28px);
}

.bl-anim.is-visible {
	opacity: 1;
	transform: none;
}

@media (prefers-reduced-motion: reduce) {
	.bl-anim {
		opacity: 1;
		transform: none;
		transition: none;
	}
}
