.animation {
	opacity: 0.1;
	transform: scale(0.5);
}

#content .base {
	animation-name: avia_appear;
	animation-duration: 1s;
	animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.275);
	opacity: 1;
	transform: scale(1);
	transition: all .25s linear;
}

@keyframes avia_appear {
	0%
	{
	transform: scale(0.5); opacity: 0.1;
}
100%{
	transform: scale(1); opacity: 1; }
}