/* Animation CSS
---------------------------------------------------------------------------- */
.anim {
  opacity: 0;
  transform: translate(0, 10vh);
}

.anim.a-rdy{
	transition: all 1s;
}
.anim.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Disable Animations at 600px */
@media only screen and (max-width:600px) {
	.anim {
		opacity: unset;
		transform: unset;
	}
	.anim.a-rdy {
		transition: unset;
	}
	.anim.visible {
		opacity: unset;
		transform: unset;
	}
}