/*
 * TP GSAP Animation – v1.0
 *
 * GSAP owns opacity and transform on .tp-fade-anim elements.
 * Suppress CSS transitions on those properties so the browser never
 * intercepts gsap.from() calls and creates a conflicting ease.
 */

.tp-fade-anim {
	-webkit-transition: opacity 0s, -webkit-transform 0s !important;
	transition: opacity 0s, transform 0s !important;
}
