.animate__animated{
	animation-duration: 0.8s;
	animation-fill-mode: both;
}

.animate__fadeInUp{
	animation-name: animate__fadeInUp;
}

.animate__zoomIn{
	animation-name: animate__zoomIn;
}

@keyframes animate__fadeInUp{
	from{
		opacity: 0;
		transform: translate3d(0, 18px, 0);
	}
	to{
		opacity: 1;
		transform: translate3d(0, 0, 0);
	}
}

@keyframes animate__zoomIn{
	from{
		opacity: 0;
		transform: scale3d(0.96, 0.96, 0.96);
	}
	to{
		opacity: 1;
		transform: scale3d(1, 1, 1);
	}
}

