/* ANIMATION */
:where(#wrapper) .stay-in-touch :is(h2, p, form) {
	opacity: 0;
}
:where(#wrapper) .stay-in-touch.animateActive :is(h2, p, form) {
	animation-delay: var(--delay, 0);
}
:where(#wrapper) .stay-in-touch.animateActive :is(h2, p) {
	animation: fadeLeft var(--anim-duration) ease forwards;
	--delay: 0.3s;
}

:where(#wrapper) .stay-in-touch.animateActive form {
	animation: fadeRight var(--anim-duration) ease forwards;
	--delay: 0.3s;
}
