/* @group Contact Form
------------------------------------ */
@media only screen
and (min-width : 961px) {
}
@media only screen
and (min-width : 961px)
and (max-width : 1440px) {
}
@media only screen
and (min-width : 0)
and (max-width : 960px) {
}
/* @end */


/* ANIMATIONS */
:where(#wrapper) .contact-form :is(.text-box, .form-box) {
	opacity: 0;
	--duration: 1s;
}
:where(#wrapper) .contact-form.animateActive :is(.text-box, .form-box) {
	animation: fadeUp var(--duration) forwards;
	animation-delay: var(--delay, 0);
	--delay: 0.3s;
}
/* @end */
