@charset "utf-8";

.about-circle-flying {
	z-index: 1;
	overflow: hidden;
	border-radius: 50%;
}

.about-circle-flying img {
	transform: translate( -15%, -15% );
	animation: aboutFly infinite 8s ease-in-out;
}

@keyframes aboutFly {
	0% { transform: translate( -15%, -15% ); }
	80%,100% { transform: translate( 85%, 85% ); }
}
