@keyframes introBar{
	0%{ clip-path: inset(100% 0 0 0); -webkit-clip-path: inset(100% 0 0 0); }
	100%{ clip-path: inset(0 0 0 0); -webkit-clip-path: inset(0 0 0 0); }
}

@keyframes introCircle{
	0%{ clip-path: circle(0 at 50% 50%); -webkit-clip-path: circle(0 at 50% 50%); }
	100%{ clip-path: circle(50% at 50% 50%); -webkit-clip-path: circle(50% at 50% 50%); }
}

@keyframes textClip{
	0%{ transform: translateY(100%); clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); -webkit-clip-path: polygon(0 0, 100% 0, 100% 0, 0 0); }
	100%{ transform: translateY(0); clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
}