.AnimatedSection {
	content-visibility: auto;
}
.AnimatedSection > * {
	transition: opacity .7s ease .3s, transform .7s ease .3s;
	opacity: 1;
}
.AnimatedSection._pending > * {
	opacity: 0;
	transform: translateY(20px);/* translateZ(1px)*/
}
