.item	{
	transform:	translateY(20px);
	opacity:	0;
	transition:	.4s;
}
.item.show	{
	transform:	translateY(0);
	opacity:	1;
}
