* {
	margin: 0;
	padding: 0;
}

html, body {
	position:relative;
	width: 100%;
	background-color: #000;
	box-sizing: border-box;
}
#archive{
	position:relative;
	display:block;
	width:250px;
	margin:0 auto;
}
#archive select {
	width: 100%;
	padding: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #666;
	background: url(img/arrow01.png) right 50% no-repeat;
	background-size: 20px, 100%;
	color:#FFF;
}
header {
	position:relative;
	width:100%;
	padding:4px 0;
	z-index:30;
	text-align:center;
	background-color:rgba(255, 255, 255, 10%);
}
header li{
	display:inline-block;
	padding:4px 20px;
}
header li a{
	color:#FFF;	
	font-family:sans-serif;
	text-decoration: none; 
}
header #archive{
	display:inline-block;
}
main {
	position:relative;
	min-width:800px;
	max-width:1200px;
	margin:20px auto;
	padding:0 40px;
	z-index:30;
}
/*main * {
	display:none;
}*/
h1 {
	text-align:center;
	color:#FFF;
	font-size:2em;
	font-family:serif;
}
span {
	color:#FA0;
	vertical-align:top;
}

#logo {
	position:relative;
	display:block;
	width:80%;
	max-width:800px;
	filter: drop-shadow(0px 0px 2px #fff);
	margin:0 auto;
}
#abstract {
	position:relative;
	display:block;
	margin:0 auto;
	padding:20px 80px;
	font-family:serif;
	color:#FFF;
	font-size:1.4em;
	text-align:left;
	line-height:2em;
}
.top #abstract {
	position:relative;
	display:block;
	margin:0 auto;
	padding:20px 40px;
	font-family:serif;
	color:#FFF;
	max-width:800px;
	font-size:2.3em;
	text-align:center;
	line-height:1.6em;
}

#info {
	clear:both;
	margin:40px;
	padding:1px 40px 20px 40px;
	background-color:rgba(90, 90, 90, 50%);
	border-radius:20px;
	color:#FFF;
	font-family:sans-serif;
	font-size:1.0em;
	border-left:solid 1px #555;
	border-top:solid 1px #444;
	border-bottom:solid 1px #444;
	border-right:solid 1px #333;
}
#info a{
	color:#99f;
}
#info dt {
	float:left;
}
#info dd {
	margin-left:4em;
}
#info h2 {
	margin-top:20px;
	color:#BBF;
	font-weight:500;
}
#info h3 {
	margin-top:40px;
	color:#FFF;
}
#info article {
	margin:4px 0;
	padding:20px;
	background-color:rgba(255, 255, 255, 50%);
	font-family:sans-serif;
	color:#000;
}
#info article span{
	color:#900;
}
#info article a{
	color:#00F;
}
#info ul{
	margin-left:20px;
}

footer {
	position:relative;
	min-width:600px;
	max-width:1200px;
	margin:20px auto;
	padding:10px;
	color:#AAA;
	font-family:sans-serif;
	text-align:center;
	z-index:30;
	border-top:1px solid #666;
	font-size:1em;
	word-break: keep-all;
}

/*===== 携帯端末＆小画面用CSS =====*/

@media screen and (max-width:840px){
	header {
		width:calc(100% - 20px);
		min-width:initial;
		padding:0 10px;
	}
	main {
		width:calc(100% - 20px);
		min-width:initial;
		padding:0 10px;
	}
	#logo {
		width:100%;
	}
	 #abstract, .top #abstract {
		padding:20px 0;
		font-size:1.1em;
	}
	#info {
		margin:10px 0;
		padding:10px 20px;
		font-size:0.8em;
	}
	#info h3 {
		margin-top:20px;
	}
	footer {
		min-width:initial;
		font-size:0.8em;
	}
}



/* 以降背景処理CSS */
/* 背景と円周シャドー */
.background {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-webkit-mask-image: radial-gradient(circle at center 0,white 0%, white 30%, transparent 80%, transparent);
	-webkit-mask-image: radial-gradient(circle at center 0,rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 70%);
	mask-image: radial-gradient(circle at center 0,white 0%, white 30%, transparent 80%, transparent);
	mask-image: radial-gradient(circle at center 10%,rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0) 70%);
}
/* 背景切り替えとズーム */
.bgImg{
	position   : absolute;
	top        : 0;
	left       : 0;
	bottom     : 0;
	right      : 0;
	opacity    : 0;
	background-image: url(img/back0.JPG);
	background-repeat:no-repeat;
	background-size: cover;
	background-position: center center;
	animation  : bgAnime 300s infinite;
	padding-top: 20%;
	z-index:10;
}
/* 背景ぼかし */
.bgImg::before {
	content: '';
	position: absolute;
	top: -5px;
	bottom: -5px;
	left: -5px;
	right: -5px;
	background: inherit;
	filter: blur(5px);
}

/* --- 段差で背景画像のアニメーションを実行 ----------------- */
.background .src0 {
  background-image : url(img/back0.JPG);   /* 背景の画像を指定 */
}
.background .src1 {
  background-image : url(img/back1.JPG);   /* 背景の画像を指定 */
  animation-delay  : 30s;
}
.background .src2 {
  background-image : url(img/back2.JPG);   /* 背景の画像を指定 */
  animation-delay  : 60s;
}
.background .src3 {
  background-image : url(img/back3.JPG);   /* 背景の画像を指定 */
  animation-delay  : 90s;
}
.background .src4 {
  background-image : url(img/back4.JPG);   /* 背景の画像を指定 */
  animation-delay  : 120s;
}
.background .src5 {
  background-image : url(img/back5.JPG);   /* 背景の画像を指定 */
  animation-delay  : 150s;
}
.background .src6 {
  background-image : url(img/back6.JPG);   /* 背景の画像を指定 */
  animation-delay  : 180s;
}
.background .src7 {
  background-image : url(img/back7.JPG);   /* 背景の画像を指定 */
  animation-delay  : 210s;
}
.background .src8 {
  background-image : url(img/back8.JPG);   /* 背景の画像を指定 */
  animation-delay  : 240s;
}
.background .src9 {
  background-image : url(img/back9.JPG);   /* 背景の画像を指定 */
  animation-delay  : 270s;
}
@keyframes bgAnime {
   0% { opacity: 0; transform: scale(1.9, 1.9);}
   1% { opacity: 1; transform: scale(1.9, 1.9);}
  10% { opacity: 1; transform: scale(1.0, 1.0);}
  11% { opacity: 0; }
 100% { opacity: 0; }
}

/* 背景光乱舞（200個） */
.container {
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: fixed;
	top:0;
	left:0;
	z-index:20;
}
.circle-container {
	position: absolute;
	transform: translateY(-10vh);
	-webkit-animation-iteration-count: infinite;
					animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
					animation-timing-function: linear;
}
.circle-container .circle {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	mix-blend-mode: screen;
	background-image: radial-gradient(#99ffff, #99ffff 10%, rgba(153, 255, 255, 0) 56%);
	-webkit-animation: fadein-frames 200ms infinite, scale-frames 2s infinite;
					animation: fadein-frames 200ms infinite, scale-frames 2s infinite;
}
@-webkit-keyframes fade-frames {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fade-frames {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes scale-frames {
	0% {
		transform: scale3d(0.4, 0.4, 1);
	}
	50% {
		transform: scale3d(2.2, 2.2, 1);
	}
	100% {
		transform: scale3d(0.4, 0.4, 1);
	}
}
@keyframes scale-frames {
	0% {
		transform: scale3d(0.4, 0.4, 1);
	}
	50% {
		transform: scale3d(2.2, 2.2, 1);
	}
	100% {
		transform: scale3d(0.4, 0.4, 1);
	}
}
.circle-container:nth-child(1) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-1;
					animation-name: move-frames-1;
	-webkit-animation-duration: 30746ms;
					animation-duration: 30746ms;
	-webkit-animation-delay: 28469ms;
					animation-delay: 28469ms;
}
@-webkit-keyframes move-frames-1 {
	from {
		transform: translate3d(63vw, 109vh, 0);
	}
	to {
		transform: translate3d(75vw, -132vh, 0);
	}
}
@keyframes move-frames-1 {
	from {
		transform: translate3d(63vw, 109vh, 0);
	}
	to {
		transform: translate3d(75vw, -132vh, 0);
	}
}
.circle-container:nth-child(1) .circle {
	-webkit-animation-delay: 1901ms;
					animation-delay: 1901ms;
}
.circle-container:nth-child(2) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-2;
					animation-name: move-frames-2;
	-webkit-animation-duration: 30285ms;
					animation-duration: 30285ms;
	-webkit-animation-delay: 32672ms;
					animation-delay: 32672ms;
}
@-webkit-keyframes move-frames-2 {
	from {
		transform: translate3d(72vw, 101vh, 0);
	}
	to {
		transform: translate3d(17vw, -114vh, 0);
	}
}
@keyframes move-frames-2 {
	from {
		transform: translate3d(72vw, 101vh, 0);
	}
	to {
		transform: translate3d(17vw, -114vh, 0);
	}
}
.circle-container:nth-child(2) .circle {
	-webkit-animation-delay: 2860ms;
					animation-delay: 2860ms;
}
.circle-container:nth-child(3) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-3;
					animation-name: move-frames-3;
	-webkit-animation-duration: 32201ms;
					animation-duration: 32201ms;
	-webkit-animation-delay: 1393ms;
					animation-delay: 1393ms;
}
@-webkit-keyframes move-frames-3 {
	from {
		transform: translate3d(39vw, 104vh, 0);
	}
	to {
		transform: translate3d(61vw, -122vh, 0);
	}
}
@keyframes move-frames-3 {
	from {
		transform: translate3d(39vw, 104vh, 0);
	}
	to {
		transform: translate3d(61vw, -122vh, 0);
	}
}
.circle-container:nth-child(3) .circle {
	-webkit-animation-delay: 2223ms;
					animation-delay: 2223ms;
}
.circle-container:nth-child(4) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-4;
					animation-name: move-frames-4;
	-webkit-animation-duration: 32917ms;
					animation-duration: 32917ms;
	-webkit-animation-delay: 10388ms;
					animation-delay: 10388ms;
}
@-webkit-keyframes move-frames-4 {
	from {
		transform: translate3d(77vw, 108vh, 0);
	}
	to {
		transform: translate3d(78vw, -125vh, 0);
	}
}
@keyframes move-frames-4 {
	from {
		transform: translate3d(77vw, 108vh, 0);
	}
	to {
		transform: translate3d(78vw, -125vh, 0);
	}
}
.circle-container:nth-child(4) .circle {
	-webkit-animation-delay: 552ms;
					animation-delay: 552ms;
}
.circle-container:nth-child(5) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-5;
					animation-name: move-frames-5;
	-webkit-animation-duration: 31836ms;
					animation-duration: 31836ms;
	-webkit-animation-delay: 17966ms;
					animation-delay: 17966ms;
}
@-webkit-keyframes move-frames-5 {
	from {
		transform: translate3d(55vw, 102vh, 0);
	}
	to {
		transform: translate3d(80vw, -111vh, 0);
	}
}
@keyframes move-frames-5 {
	from {
		transform: translate3d(55vw, 102vh, 0);
	}
	to {
		transform: translate3d(80vw, -111vh, 0);
	}
}
.circle-container:nth-child(5) .circle {
	-webkit-animation-delay: 768ms;
					animation-delay: 768ms;
}
.circle-container:nth-child(6) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-6;
					animation-name: move-frames-6;
	-webkit-animation-duration: 36816ms;
					animation-duration: 36816ms;
	-webkit-animation-delay: 22168ms;
					animation-delay: 22168ms;
}
@-webkit-keyframes move-frames-6 {
	from {
		transform: translate3d(39vw, 102vh, 0);
	}
	to {
		transform: translate3d(26vw, -115vh, 0);
	}
}
@keyframes move-frames-6 {
	from {
		transform: translate3d(39vw, 102vh, 0);
	}
	to {
		transform: translate3d(26vw, -115vh, 0);
	}
}
.circle-container:nth-child(6) .circle {
	-webkit-animation-delay: 1970ms;
					animation-delay: 1970ms;
}
.circle-container:nth-child(7) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-7;
					animation-name: move-frames-7;
	-webkit-animation-duration: 32651ms;
					animation-duration: 32651ms;
	-webkit-animation-delay: 11095ms;
					animation-delay: 11095ms;
}
@-webkit-keyframes move-frames-7 {
	from {
		transform: translate3d(33vw, 107vh, 0);
	}
	to {
		transform: translate3d(25vw, -133vh, 0);
	}
}
@keyframes move-frames-7 {
	from {
		transform: translate3d(33vw, 107vh, 0);
	}
	to {
		transform: translate3d(25vw, -133vh, 0);
	}
}
.circle-container:nth-child(7) .circle {
	-webkit-animation-delay: 3837ms;
					animation-delay: 3837ms;
}
.circle-container:nth-child(8) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-8;
					animation-name: move-frames-8;
	-webkit-animation-duration: 31547ms;
					animation-duration: 31547ms;
	-webkit-animation-delay: 4232ms;
					animation-delay: 4232ms;
}
@-webkit-keyframes move-frames-8 {
	from {
		transform: translate3d(17vw, 108vh, 0);
	}
	to {
		transform: translate3d(51vw, -133vh, 0);
	}
}
@keyframes move-frames-8 {
	from {
		transform: translate3d(17vw, 108vh, 0);
	}
	to {
		transform: translate3d(51vw, -133vh, 0);
	}
}
.circle-container:nth-child(8) .circle {
	-webkit-animation-delay: 111ms;
					animation-delay: 111ms;
}
.circle-container:nth-child(9) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-9;
					animation-name: move-frames-9;
	-webkit-animation-duration: 33340ms;
					animation-duration: 33340ms;
	-webkit-animation-delay: 17808ms;
					animation-delay: 17808ms;
}
@-webkit-keyframes move-frames-9 {
	from {
		transform: translate3d(50vw, 102vh, 0);
	}
	to {
		transform: translate3d(99vw, -110vh, 0);
	}
}
@keyframes move-frames-9 {
	from {
		transform: translate3d(50vw, 102vh, 0);
	}
	to {
		transform: translate3d(99vw, -110vh, 0);
	}
}
.circle-container:nth-child(9) .circle {
	-webkit-animation-delay: 1518ms;
					animation-delay: 1518ms;
}
.circle-container:nth-child(10) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-10;
					animation-name: move-frames-10;
	-webkit-animation-duration: 33179ms;
					animation-duration: 33179ms;
	-webkit-animation-delay: 27671ms;
					animation-delay: 27671ms;
}
@-webkit-keyframes move-frames-10 {
	from {
		transform: translate3d(31vw, 108vh, 0);
	}
	to {
		transform: translate3d(53vw, -120vh, 0);
	}
}
@keyframes move-frames-10 {
	from {
		transform: translate3d(31vw, 108vh, 0);
	}
	to {
		transform: translate3d(53vw, -120vh, 0);
	}
}
.circle-container:nth-child(10) .circle {
	-webkit-animation-delay: 3399ms;
					animation-delay: 3399ms;
}
.circle-container:nth-child(11) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-11;
					animation-name: move-frames-11;
	-webkit-animation-duration: 31801ms;
					animation-duration: 31801ms;
	-webkit-animation-delay: 2269ms;
					animation-delay: 2269ms;
}
@-webkit-keyframes move-frames-11 {
	from {
		transform: translate3d(19vw, 106vh, 0);
	}
	to {
		transform: translate3d(54vw, -120vh, 0);
	}
}
@keyframes move-frames-11 {
	from {
		transform: translate3d(19vw, 106vh, 0);
	}
	to {
		transform: translate3d(54vw, -120vh, 0);
	}
}
.circle-container:nth-child(11) .circle {
	-webkit-animation-delay: 1566ms;
					animation-delay: 1566ms;
}
.circle-container:nth-child(12) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-12;
					animation-name: move-frames-12;
	-webkit-animation-duration: 34493ms;
					animation-duration: 34493ms;
	-webkit-animation-delay: 25249ms;
					animation-delay: 25249ms;
}
@-webkit-keyframes move-frames-12 {
	from {
		transform: translate3d(90vw, 105vh, 0);
	}
	to {
		transform: translate3d(92vw, -124vh, 0);
	}
}
@keyframes move-frames-12 {
	from {
		transform: translate3d(90vw, 105vh, 0);
	}
	to {
		transform: translate3d(92vw, -124vh, 0);
	}
}
.circle-container:nth-child(12) .circle {
	-webkit-animation-delay: 2785ms;
					animation-delay: 2785ms;
}
.circle-container:nth-child(13) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-13;
					animation-name: move-frames-13;
	-webkit-animation-duration: 30435ms;
					animation-duration: 30435ms;
	-webkit-animation-delay: 31218ms;
					animation-delay: 31218ms;
}
@-webkit-keyframes move-frames-13 {
	from {
		transform: translate3d(21vw, 105vh, 0);
	}
	to {
		transform: translate3d(23vw, -117vh, 0);
	}
}
@keyframes move-frames-13 {
	from {
		transform: translate3d(21vw, 105vh, 0);
	}
	to {
		transform: translate3d(23vw, -117vh, 0);
	}
}
.circle-container:nth-child(13) .circle {
	-webkit-animation-delay: 278ms;
					animation-delay: 278ms;
}
.circle-container:nth-child(14) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-14;
					animation-name: move-frames-14;
	-webkit-animation-duration: 34431ms;
					animation-duration: 34431ms;
	-webkit-animation-delay: 28201ms;
					animation-delay: 28201ms;
}
@-webkit-keyframes move-frames-14 {
	from {
		transform: translate3d(68vw, 103vh, 0);
	}
	to {
		transform: translate3d(99vw, -121vh, 0);
	}
}
@keyframes move-frames-14 {
	from {
		transform: translate3d(68vw, 103vh, 0);
	}
	to {
		transform: translate3d(99vw, -121vh, 0);
	}
}
.circle-container:nth-child(14) .circle {
	-webkit-animation-delay: 194ms;
					animation-delay: 194ms;
}
.circle-container:nth-child(15) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-15;
					animation-name: move-frames-15;
	-webkit-animation-duration: 29830ms;
					animation-duration: 29830ms;
	-webkit-animation-delay: 29136ms;
					animation-delay: 29136ms;
}
@-webkit-keyframes move-frames-15 {
	from {
		transform: translate3d(32vw, 108vh, 0);
	}
	to {
		transform: translate3d(32vw, -137vh, 0);
	}
}
@keyframes move-frames-15 {
	from {
		transform: translate3d(32vw, 108vh, 0);
	}
	to {
		transform: translate3d(32vw, -137vh, 0);
	}
}
.circle-container:nth-child(15) .circle {
	-webkit-animation-delay: 2295ms;
					animation-delay: 2295ms;
}
.circle-container:nth-child(16) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-16;
					animation-name: move-frames-16;
	-webkit-animation-duration: 30794ms;
					animation-duration: 30794ms;
	-webkit-animation-delay: 12022ms;
					animation-delay: 12022ms;
}
@-webkit-keyframes move-frames-16 {
	from {
		transform: translate3d(34vw, 101vh, 0);
	}
	to {
		transform: translate3d(53vw, -114vh, 0);
	}
}
@keyframes move-frames-16 {
	from {
		transform: translate3d(34vw, 101vh, 0);
	}
	to {
		transform: translate3d(53vw, -114vh, 0);
	}
}
.circle-container:nth-child(16) .circle {
	-webkit-animation-delay: 3653ms;
					animation-delay: 3653ms;
}
.circle-container:nth-child(17) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-17;
					animation-name: move-frames-17;
	-webkit-animation-duration: 33188ms;
					animation-duration: 33188ms;
	-webkit-animation-delay: 14800ms;
					animation-delay: 14800ms;
}
@-webkit-keyframes move-frames-17 {
	from {
		transform: translate3d(64vw, 109vh, 0);
	}
	to {
		transform: translate3d(33vw, -134vh, 0);
	}
}
@keyframes move-frames-17 {
	from {
		transform: translate3d(64vw, 109vh, 0);
	}
	to {
		transform: translate3d(33vw, -134vh, 0);
	}
}
.circle-container:nth-child(17) .circle {
	-webkit-animation-delay: 3222ms;
					animation-delay: 3222ms;
}
.circle-container:nth-child(18) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-18;
					animation-name: move-frames-18;
	-webkit-animation-duration: 28646ms;
					animation-duration: 28646ms;
	-webkit-animation-delay: 16311ms;
					animation-delay: 16311ms;
}
@-webkit-keyframes move-frames-18 {
	from {
		transform: translate3d(42vw, 109vh, 0);
	}
	to {
		transform: translate3d(98vw, -126vh, 0);
	}
}
@keyframes move-frames-18 {
	from {
		transform: translate3d(42vw, 109vh, 0);
	}
	to {
		transform: translate3d(98vw, -126vh, 0);
	}
}
.circle-container:nth-child(18) .circle {
	-webkit-animation-delay: 2767ms;
					animation-delay: 2767ms;
}
.circle-container:nth-child(19) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-19;
					animation-name: move-frames-19;
	-webkit-animation-duration: 31068ms;
					animation-duration: 31068ms;
	-webkit-animation-delay: 35680ms;
					animation-delay: 35680ms;
}
@-webkit-keyframes move-frames-19 {
	from {
		transform: translate3d(92vw, 105vh, 0);
	}
	to {
		transform: translate3d(78vw, -106vh, 0);
	}
}
@keyframes move-frames-19 {
	from {
		transform: translate3d(92vw, 105vh, 0);
	}
	to {
		transform: translate3d(78vw, -106vh, 0);
	}
}
.circle-container:nth-child(19) .circle {
	-webkit-animation-delay: 421ms;
					animation-delay: 421ms;
}
.circle-container:nth-child(20) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-20;
					animation-name: move-frames-20;
	-webkit-animation-duration: 30232ms;
					animation-duration: 30232ms;
	-webkit-animation-delay: 32487ms;
					animation-delay: 32487ms;
}
@-webkit-keyframes move-frames-20 {
	from {
		transform: translate3d(90vw, 109vh, 0);
	}
	to {
		transform: translate3d(69vw, -136vh, 0);
	}
}
@keyframes move-frames-20 {
	from {
		transform: translate3d(90vw, 109vh, 0);
	}
	to {
		transform: translate3d(69vw, -136vh, 0);
	}
}
.circle-container:nth-child(20) .circle {
	-webkit-animation-delay: 1287ms;
					animation-delay: 1287ms;
}
.circle-container:nth-child(21) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-21;
					animation-name: move-frames-21;
	-webkit-animation-duration: 35665ms;
					animation-duration: 35665ms;
	-webkit-animation-delay: 21836ms;
					animation-delay: 21836ms;
}
@-webkit-keyframes move-frames-21 {
	from {
		transform: translate3d(38vw, 110vh, 0);
	}
	to {
		transform: translate3d(91vw, -129vh, 0);
	}
}
@keyframes move-frames-21 {
	from {
		transform: translate3d(38vw, 110vh, 0);
	}
	to {
		transform: translate3d(91vw, -129vh, 0);
	}
}
.circle-container:nth-child(21) .circle {
	-webkit-animation-delay: 2113ms;
					animation-delay: 2113ms;
}
.circle-container:nth-child(22) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-22;
					animation-name: move-frames-22;
	-webkit-animation-duration: 35328ms;
					animation-duration: 35328ms;
	-webkit-animation-delay: 6601ms;
					animation-delay: 6601ms;
}
@-webkit-keyframes move-frames-22 {
	from {
		transform: translate3d(39vw, 102vh, 0);
	}
	to {
		transform: translate3d(3vw, -132vh, 0);
	}
}
@keyframes move-frames-22 {
	from {
		transform: translate3d(39vw, 102vh, 0);
	}
	to {
		transform: translate3d(3vw, -132vh, 0);
	}
}
.circle-container:nth-child(22) .circle {
	-webkit-animation-delay: 2683ms;
					animation-delay: 2683ms;
}
.circle-container:nth-child(23) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-23;
					animation-name: move-frames-23;
	-webkit-animation-duration: 32393ms;
					animation-duration: 32393ms;
	-webkit-animation-delay: 24158ms;
					animation-delay: 24158ms;
}
@-webkit-keyframes move-frames-23 {
	from {
		transform: translate3d(28vw, 108vh, 0);
	}
	to {
		transform: translate3d(17vw, -113vh, 0);
	}
}
@keyframes move-frames-23 {
	from {
		transform: translate3d(28vw, 108vh, 0);
	}
	to {
		transform: translate3d(17vw, -113vh, 0);
	}
}
.circle-container:nth-child(23) .circle {
	-webkit-animation-delay: 3345ms;
					animation-delay: 3345ms;
}
.circle-container:nth-child(24) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-24;
					animation-name: move-frames-24;
	-webkit-animation-duration: 35616ms;
					animation-duration: 35616ms;
	-webkit-animation-delay: 36264ms;
					animation-delay: 36264ms;
}
@-webkit-keyframes move-frames-24 {
	from {
		transform: translate3d(49vw, 101vh, 0);
	}
	to {
		transform: translate3d(13vw, -112vh, 0);
	}
}
@keyframes move-frames-24 {
	from {
		transform: translate3d(49vw, 101vh, 0);
	}
	to {
		transform: translate3d(13vw, -112vh, 0);
	}
}
.circle-container:nth-child(24) .circle {
	-webkit-animation-delay: 2674ms;
					animation-delay: 2674ms;
}
.circle-container:nth-child(25) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-25;
					animation-name: move-frames-25;
	-webkit-animation-duration: 35904ms;
					animation-duration: 35904ms;
	-webkit-animation-delay: 7377ms;
					animation-delay: 7377ms;
}
@-webkit-keyframes move-frames-25 {
	from {
		transform: translate3d(96vw, 103vh, 0);
	}
	to {
		transform: translate3d(77vw, -131vh, 0);
	}
}
@keyframes move-frames-25 {
	from {
		transform: translate3d(96vw, 103vh, 0);
	}
	to {
		transform: translate3d(77vw, -131vh, 0);
	}
}
.circle-container:nth-child(25) .circle {
	-webkit-animation-delay: 321ms;
					animation-delay: 321ms;
}
.circle-container:nth-child(26) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-26;
					animation-name: move-frames-26;
	-webkit-animation-duration: 32900ms;
					animation-duration: 32900ms;
	-webkit-animation-delay: 9304ms;
					animation-delay: 9304ms;
}
@-webkit-keyframes move-frames-26 {
	from {
		transform: translate3d(93vw, 101vh, 0);
	}
	to {
		transform: translate3d(1vw, -117vh, 0);
	}
}
@keyframes move-frames-26 {
	from {
		transform: translate3d(93vw, 101vh, 0);
	}
	to {
		transform: translate3d(1vw, -117vh, 0);
	}
}
.circle-container:nth-child(26) .circle {
	-webkit-animation-delay: 3104ms;
					animation-delay: 3104ms;
}
.circle-container:nth-child(27) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-27;
					animation-name: move-frames-27;
	-webkit-animation-duration: 28032ms;
					animation-duration: 28032ms;
	-webkit-animation-delay: 24442ms;
					animation-delay: 24442ms;
}
@-webkit-keyframes move-frames-27 {
	from {
		transform: translate3d(77vw, 107vh, 0);
	}
	to {
		transform: translate3d(85vw, -121vh, 0);
	}
}
@keyframes move-frames-27 {
	from {
		transform: translate3d(77vw, 107vh, 0);
	}
	to {
		transform: translate3d(85vw, -121vh, 0);
	}
}
.circle-container:nth-child(27) .circle {
	-webkit-animation-delay: 599ms;
					animation-delay: 599ms;
}
.circle-container:nth-child(28) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-28;
					animation-name: move-frames-28;
	-webkit-animation-duration: 31788ms;
					animation-duration: 31788ms;
	-webkit-animation-delay: 32397ms;
					animation-delay: 32397ms;
}
@-webkit-keyframes move-frames-28 {
	from {
		transform: translate3d(59vw, 102vh, 0);
	}
	to {
		transform: translate3d(47vw, -122vh, 0);
	}
}
@keyframes move-frames-28 {
	from {
		transform: translate3d(59vw, 102vh, 0);
	}
	to {
		transform: translate3d(47vw, -122vh, 0);
	}
}
.circle-container:nth-child(28) .circle {
	-webkit-animation-delay: 3744ms;
					animation-delay: 3744ms;
}
.circle-container:nth-child(29) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-29;
					animation-name: move-frames-29;
	-webkit-animation-duration: 34570ms;
					animation-duration: 34570ms;
	-webkit-animation-delay: 13242ms;
					animation-delay: 13242ms;
}
@-webkit-keyframes move-frames-29 {
	from {
		transform: translate3d(35vw, 104vh, 0);
	}
	to {
		transform: translate3d(84vw, -114vh, 0);
	}
}
@keyframes move-frames-29 {
	from {
		transform: translate3d(35vw, 104vh, 0);
	}
	to {
		transform: translate3d(84vw, -114vh, 0);
	}
}
.circle-container:nth-child(29) .circle {
	-webkit-animation-delay: 485ms;
					animation-delay: 485ms;
}
.circle-container:nth-child(30) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-30;
					animation-name: move-frames-30;
	-webkit-animation-duration: 36070ms;
					animation-duration: 36070ms;
	-webkit-animation-delay: 10399ms;
					animation-delay: 10399ms;
}
@-webkit-keyframes move-frames-30 {
	from {
		transform: translate3d(32vw, 101vh, 0);
	}
	to {
		transform: translate3d(77vw, -122vh, 0);
	}
}
@keyframes move-frames-30 {
	from {
		transform: translate3d(32vw, 101vh, 0);
	}
	to {
		transform: translate3d(77vw, -122vh, 0);
	}
}
.circle-container:nth-child(30) .circle {
	-webkit-animation-delay: 3249ms;
					animation-delay: 3249ms;
}
.circle-container:nth-child(31) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-31;
					animation-name: move-frames-31;
	-webkit-animation-duration: 31016ms;
					animation-duration: 31016ms;
	-webkit-animation-delay: 8669ms;
					animation-delay: 8669ms;
}
@-webkit-keyframes move-frames-31 {
	from {
		transform: translate3d(61vw, 110vh, 0);
	}
	to {
		transform: translate3d(40vw, -119vh, 0);
	}
}
@keyframes move-frames-31 {
	from {
		transform: translate3d(61vw, 110vh, 0);
	}
	to {
		transform: translate3d(40vw, -119vh, 0);
	}
}
.circle-container:nth-child(31) .circle {
	-webkit-animation-delay: 1620ms;
					animation-delay: 1620ms;
}
.circle-container:nth-child(32) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-32;
					animation-name: move-frames-32;
	-webkit-animation-duration: 29154ms;
					animation-duration: 29154ms;
	-webkit-animation-delay: 24212ms;
					animation-delay: 24212ms;
}
@-webkit-keyframes move-frames-32 {
	from {
		transform: translate3d(81vw, 101vh, 0);
	}
	to {
		transform: translate3d(39vw, -107vh, 0);
	}
}
@keyframes move-frames-32 {
	from {
		transform: translate3d(81vw, 101vh, 0);
	}
	to {
		transform: translate3d(39vw, -107vh, 0);
	}
}
.circle-container:nth-child(32) .circle {
	-webkit-animation-delay: 3322ms;
					animation-delay: 3322ms;
}
.circle-container:nth-child(33) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-33;
					animation-name: move-frames-33;
	-webkit-animation-duration: 29389ms;
					animation-duration: 29389ms;
	-webkit-animation-delay: 34305ms;
					animation-delay: 34305ms;
}
@-webkit-keyframes move-frames-33 {
	from {
		transform: translate3d(27vw, 110vh, 0);
	}
	to {
		transform: translate3d(77vw, -135vh, 0);
	}
}
@keyframes move-frames-33 {
	from {
		transform: translate3d(27vw, 110vh, 0);
	}
	to {
		transform: translate3d(77vw, -135vh, 0);
	}
}
.circle-container:nth-child(33) .circle {
	-webkit-animation-delay: 962ms;
					animation-delay: 962ms;
}
.circle-container:nth-child(34) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-34;
					animation-name: move-frames-34;
	-webkit-animation-duration: 29369ms;
					animation-duration: 29369ms;
	-webkit-animation-delay: 2462ms;
					animation-delay: 2462ms;
}
@-webkit-keyframes move-frames-34 {
	from {
		transform: translate3d(74vw, 106vh, 0);
	}
	to {
		transform: translate3d(68vw, -128vh, 0);
	}
}
@keyframes move-frames-34 {
	from {
		transform: translate3d(74vw, 106vh, 0);
	}
	to {
		transform: translate3d(68vw, -128vh, 0);
	}
}
.circle-container:nth-child(34) .circle {
	-webkit-animation-delay: 2949ms;
					animation-delay: 2949ms;
}
.circle-container:nth-child(35) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-35;
					animation-name: move-frames-35;
	-webkit-animation-duration: 31666ms;
					animation-duration: 31666ms;
	-webkit-animation-delay: 32646ms;
					animation-delay: 32646ms;
}
@-webkit-keyframes move-frames-35 {
	from {
		transform: translate3d(20vw, 102vh, 0);
	}
	to {
		transform: translate3d(18vw, -126vh, 0);
	}
}
@keyframes move-frames-35 {
	from {
		transform: translate3d(20vw, 102vh, 0);
	}
	to {
		transform: translate3d(18vw, -126vh, 0);
	}
}
.circle-container:nth-child(35) .circle {
	-webkit-animation-delay: 3382ms;
					animation-delay: 3382ms;
}
.circle-container:nth-child(36) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-36;
					animation-name: move-frames-36;
	-webkit-animation-duration: 36707ms;
					animation-duration: 36707ms;
	-webkit-animation-delay: 13745ms;
					animation-delay: 13745ms;
}
@-webkit-keyframes move-frames-36 {
	from {
		transform: translate3d(22vw, 106vh, 0);
	}
	to {
		transform: translate3d(62vw, -129vh, 0);
	}
}
@keyframes move-frames-36 {
	from {
		transform: translate3d(22vw, 106vh, 0);
	}
	to {
		transform: translate3d(62vw, -129vh, 0);
	}
}
.circle-container:nth-child(36) .circle {
	-webkit-animation-delay: 2946ms;
					animation-delay: 2946ms;
}
.circle-container:nth-child(37) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-37;
					animation-name: move-frames-37;
	-webkit-animation-duration: 29560ms;
					animation-duration: 29560ms;
	-webkit-animation-delay: 25524ms;
					animation-delay: 25524ms;
}
@-webkit-keyframes move-frames-37 {
	from {
		transform: translate3d(84vw, 108vh, 0);
	}
	to {
		transform: translate3d(64vw, -111vh, 0);
	}
}
@keyframes move-frames-37 {
	from {
		transform: translate3d(84vw, 108vh, 0);
	}
	to {
		transform: translate3d(64vw, -111vh, 0);
	}
}
.circle-container:nth-child(37) .circle {
	-webkit-animation-delay: 1908ms;
					animation-delay: 1908ms;
}
.circle-container:nth-child(38) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-38;
					animation-name: move-frames-38;
	-webkit-animation-duration: 32396ms;
					animation-duration: 32396ms;
	-webkit-animation-delay: 23050ms;
					animation-delay: 23050ms;
}
@-webkit-keyframes move-frames-38 {
	from {
		transform: translate3d(12vw, 102vh, 0);
	}
	to {
		transform: translate3d(28vw, -115vh, 0);
	}
}
@keyframes move-frames-38 {
	from {
		transform: translate3d(12vw, 102vh, 0);
	}
	to {
		transform: translate3d(28vw, -115vh, 0);
	}
}
.circle-container:nth-child(38) .circle {
	-webkit-animation-delay: 1755ms;
					animation-delay: 1755ms;
}
.circle-container:nth-child(39) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-39;
					animation-name: move-frames-39;
	-webkit-animation-duration: 31693ms;
					animation-duration: 31693ms;
	-webkit-animation-delay: 13869ms;
					animation-delay: 13869ms;
}
@-webkit-keyframes move-frames-39 {
	from {
		transform: translate3d(13vw, 109vh, 0);
	}
	to {
		transform: translate3d(24vw, -135vh, 0);
	}
}
@keyframes move-frames-39 {
	from {
		transform: translate3d(13vw, 109vh, 0);
	}
	to {
		transform: translate3d(24vw, -135vh, 0);
	}
}
.circle-container:nth-child(39) .circle {
	-webkit-animation-delay: 1191ms;
					animation-delay: 1191ms;
}
.circle-container:nth-child(40) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-40;
					animation-name: move-frames-40;
	-webkit-animation-duration: 31858ms;
					animation-duration: 31858ms;
	-webkit-animation-delay: 23465ms;
					animation-delay: 23465ms;
}
@-webkit-keyframes move-frames-40 {
	from {
		transform: translate3d(15vw, 106vh, 0);
	}
	to {
		transform: translate3d(43vw, -111vh, 0);
	}
}
@keyframes move-frames-40 {
	from {
		transform: translate3d(15vw, 106vh, 0);
	}
	to {
		transform: translate3d(43vw, -111vh, 0);
	}
}
.circle-container:nth-child(40) .circle {
	-webkit-animation-delay: 1632ms;
					animation-delay: 1632ms;
}
.circle-container:nth-child(41) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-41;
					animation-name: move-frames-41;
	-webkit-animation-duration: 30218ms;
					animation-duration: 30218ms;
	-webkit-animation-delay: 10114ms;
					animation-delay: 10114ms;
}
@-webkit-keyframes move-frames-41 {
	from {
		transform: translate3d(81vw, 106vh, 0);
	}
	to {
		transform: translate3d(24vw, -129vh, 0);
	}
}
@keyframes move-frames-41 {
	from {
		transform: translate3d(81vw, 106vh, 0);
	}
	to {
		transform: translate3d(24vw, -129vh, 0);
	}
}
.circle-container:nth-child(41) .circle {
	-webkit-animation-delay: 1178ms;
					animation-delay: 1178ms;
}
.circle-container:nth-child(42) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-42;
					animation-name: move-frames-42;
	-webkit-animation-duration: 29141ms;
					animation-duration: 29141ms;
	-webkit-animation-delay: 26026ms;
					animation-delay: 26026ms;
}
@-webkit-keyframes move-frames-42 {
	from {
		transform: translate3d(74vw, 107vh, 0);
	}
	to {
		transform: translate3d(37vw, -120vh, 0);
	}
}
@keyframes move-frames-42 {
	from {
		transform: translate3d(74vw, 107vh, 0);
	}
	to {
		transform: translate3d(37vw, -120vh, 0);
	}
}
.circle-container:nth-child(42) .circle {
	-webkit-animation-delay: 1386ms;
					animation-delay: 1386ms;
}
.circle-container:nth-child(43) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-43;
					animation-name: move-frames-43;
	-webkit-animation-duration: 33670ms;
					animation-duration: 33670ms;
	-webkit-animation-delay: 2904ms;
					animation-delay: 2904ms;
}
@-webkit-keyframes move-frames-43 {
	from {
		transform: translate3d(9vw, 104vh, 0);
	}
	to {
		transform: translate3d(56vw, -124vh, 0);
	}
}
@keyframes move-frames-43 {
	from {
		transform: translate3d(9vw, 104vh, 0);
	}
	to {
		transform: translate3d(56vw, -124vh, 0);
	}
}
.circle-container:nth-child(43) .circle {
	-webkit-animation-delay: 1188ms;
					animation-delay: 1188ms;
}
.circle-container:nth-child(44) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-44;
					animation-name: move-frames-44;
	-webkit-animation-duration: 34392ms;
					animation-duration: 34392ms;
	-webkit-animation-delay: 25595ms;
					animation-delay: 25595ms;
}
@-webkit-keyframes move-frames-44 {
	from {
		transform: translate3d(16vw, 106vh, 0);
	}
	to {
		transform: translate3d(43vw, -132vh, 0);
	}
}
@keyframes move-frames-44 {
	from {
		transform: translate3d(16vw, 106vh, 0);
	}
	to {
		transform: translate3d(43vw, -132vh, 0);
	}
}
.circle-container:nth-child(44) .circle {
	-webkit-animation-delay: 3816ms;
					animation-delay: 3816ms;
}
.circle-container:nth-child(45) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-45;
					animation-name: move-frames-45;
	-webkit-animation-duration: 35678ms;
					animation-duration: 35678ms;
	-webkit-animation-delay: 19833ms;
					animation-delay: 19833ms;
}
@-webkit-keyframes move-frames-45 {
	from {
		transform: translate3d(53vw, 110vh, 0);
	}
	to {
		transform: translate3d(87vw, -119vh, 0);
	}
}
@keyframes move-frames-45 {
	from {
		transform: translate3d(53vw, 110vh, 0);
	}
	to {
		transform: translate3d(87vw, -119vh, 0);
	}
}
.circle-container:nth-child(45) .circle {
	-webkit-animation-delay: 1459ms;
					animation-delay: 1459ms;
}
.circle-container:nth-child(46) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-46;
					animation-name: move-frames-46;
	-webkit-animation-duration: 33705ms;
					animation-duration: 33705ms;
	-webkit-animation-delay: 33611ms;
					animation-delay: 33611ms;
}
@-webkit-keyframes move-frames-46 {
	from {
		transform: translate3d(75vw, 103vh, 0);
	}
	to {
		transform: translate3d(98vw, -126vh, 0);
	}
}
@keyframes move-frames-46 {
	from {
		transform: translate3d(75vw, 103vh, 0);
	}
	to {
		transform: translate3d(98vw, -126vh, 0);
	}
}
.circle-container:nth-child(46) .circle {
	-webkit-animation-delay: 3458ms;
					animation-delay: 3458ms;
}
.circle-container:nth-child(47) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-47;
					animation-name: move-frames-47;
	-webkit-animation-duration: 35742ms;
					animation-duration: 35742ms;
	-webkit-animation-delay: 33793ms;
					animation-delay: 33793ms;
}
@-webkit-keyframes move-frames-47 {
	from {
		transform: translate3d(74vw, 110vh, 0);
	}
	to {
		transform: translate3d(34vw, -132vh, 0);
	}
}
@keyframes move-frames-47 {
	from {
		transform: translate3d(74vw, 110vh, 0);
	}
	to {
		transform: translate3d(34vw, -132vh, 0);
	}
}
.circle-container:nth-child(47) .circle {
	-webkit-animation-delay: 455ms;
					animation-delay: 455ms;
}
.circle-container:nth-child(48) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-48;
					animation-name: move-frames-48;
	-webkit-animation-duration: 28023ms;
					animation-duration: 28023ms;
	-webkit-animation-delay: 15633ms;
					animation-delay: 15633ms;
}
@-webkit-keyframes move-frames-48 {
	from {
		transform: translate3d(35vw, 102vh, 0);
	}
	to {
		transform: translate3d(23vw, -108vh, 0);
	}
}
@keyframes move-frames-48 {
	from {
		transform: translate3d(35vw, 102vh, 0);
	}
	to {
		transform: translate3d(23vw, -108vh, 0);
	}
}
.circle-container:nth-child(48) .circle {
	-webkit-animation-delay: 3005ms;
					animation-delay: 3005ms;
}
.circle-container:nth-child(49) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-49;
					animation-name: move-frames-49;
	-webkit-animation-duration: 32927ms;
					animation-duration: 32927ms;
	-webkit-animation-delay: 28812ms;
					animation-delay: 28812ms;
}
@-webkit-keyframes move-frames-49 {
	from {
		transform: translate3d(21vw, 110vh, 0);
	}
	to {
		transform: translate3d(2vw, -129vh, 0);
	}
}
@keyframes move-frames-49 {
	from {
		transform: translate3d(21vw, 110vh, 0);
	}
	to {
		transform: translate3d(2vw, -129vh, 0);
	}
}
.circle-container:nth-child(49) .circle {
	-webkit-animation-delay: 216ms;
					animation-delay: 216ms;
}
.circle-container:nth-child(50) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-50;
					animation-name: move-frames-50;
	-webkit-animation-duration: 32998ms;
					animation-duration: 32998ms;
	-webkit-animation-delay: 13750ms;
					animation-delay: 13750ms;
}
@-webkit-keyframes move-frames-50 {
	from {
		transform: translate3d(66vw, 102vh, 0);
	}
	to {
		transform: translate3d(44vw, -103vh, 0);
	}
}
@keyframes move-frames-50 {
	from {
		transform: translate3d(66vw, 102vh, 0);
	}
	to {
		transform: translate3d(44vw, -103vh, 0);
	}
}
.circle-container:nth-child(50) .circle {
	-webkit-animation-delay: 2439ms;
					animation-delay: 2439ms;
}
.circle-container:nth-child(51) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-51;
					animation-name: move-frames-51;
	-webkit-animation-duration: 30560ms;
					animation-duration: 30560ms;
	-webkit-animation-delay: 27886ms;
					animation-delay: 27886ms;
}
@-webkit-keyframes move-frames-51 {
	from {
		transform: translate3d(84vw, 106vh, 0);
	}
	to {
		transform: translate3d(60vw, -112vh, 0);
	}
}
@keyframes move-frames-51 {
	from {
		transform: translate3d(84vw, 106vh, 0);
	}
	to {
		transform: translate3d(60vw, -112vh, 0);
	}
}
.circle-container:nth-child(51) .circle {
	-webkit-animation-delay: 4ms;
					animation-delay: 4ms;
}
.circle-container:nth-child(52) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-52;
					animation-name: move-frames-52;
	-webkit-animation-duration: 31908ms;
					animation-duration: 31908ms;
	-webkit-animation-delay: 21419ms;
					animation-delay: 21419ms;
}
@-webkit-keyframes move-frames-52 {
	from {
		transform: translate3d(78vw, 101vh, 0);
	}
	to {
		transform: translate3d(34vw, -126vh, 0);
	}
}
@keyframes move-frames-52 {
	from {
		transform: translate3d(78vw, 101vh, 0);
	}
	to {
		transform: translate3d(34vw, -126vh, 0);
	}
}
.circle-container:nth-child(52) .circle {
	-webkit-animation-delay: 325ms;
					animation-delay: 325ms;
}
.circle-container:nth-child(53) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-53;
					animation-name: move-frames-53;
	-webkit-animation-duration: 35409ms;
					animation-duration: 35409ms;
	-webkit-animation-delay: 4544ms;
					animation-delay: 4544ms;
}
@-webkit-keyframes move-frames-53 {
	from {
		transform: translate3d(46vw, 107vh, 0);
	}
	to {
		transform: translate3d(16vw, -111vh, 0);
	}
}
@keyframes move-frames-53 {
	from {
		transform: translate3d(46vw, 107vh, 0);
	}
	to {
		transform: translate3d(16vw, -111vh, 0);
	}
}
.circle-container:nth-child(53) .circle {
	-webkit-animation-delay: 2979ms;
					animation-delay: 2979ms;
}
.circle-container:nth-child(54) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-54;
					animation-name: move-frames-54;
	-webkit-animation-duration: 36941ms;
					animation-duration: 36941ms;
	-webkit-animation-delay: 31755ms;
					animation-delay: 31755ms;
}
@-webkit-keyframes move-frames-54 {
	from {
		transform: translate3d(86vw, 101vh, 0);
	}
	to {
		transform: translate3d(8vw, -113vh, 0);
	}
}
@keyframes move-frames-54 {
	from {
		transform: translate3d(86vw, 101vh, 0);
	}
	to {
		transform: translate3d(8vw, -113vh, 0);
	}
}
.circle-container:nth-child(54) .circle {
	-webkit-animation-delay: 3386ms;
					animation-delay: 3386ms;
}
.circle-container:nth-child(55) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-55;
					animation-name: move-frames-55;
	-webkit-animation-duration: 36275ms;
					animation-duration: 36275ms;
	-webkit-animation-delay: 23399ms;
					animation-delay: 23399ms;
}
@-webkit-keyframes move-frames-55 {
	from {
		transform: translate3d(18vw, 101vh, 0);
	}
	to {
		transform: translate3d(3vw, -112vh, 0);
	}
}
@keyframes move-frames-55 {
	from {
		transform: translate3d(18vw, 101vh, 0);
	}
	to {
		transform: translate3d(3vw, -112vh, 0);
	}
}
.circle-container:nth-child(55) .circle {
	-webkit-animation-delay: 1163ms;
					animation-delay: 1163ms;
}
.circle-container:nth-child(56) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-56;
					animation-name: move-frames-56;
	-webkit-animation-duration: 35871ms;
					animation-duration: 35871ms;
	-webkit-animation-delay: 24887ms;
					animation-delay: 24887ms;
}
@-webkit-keyframes move-frames-56 {
	from {
		transform: translate3d(91vw, 108vh, 0);
	}
	to {
		transform: translate3d(93vw, -118vh, 0);
	}
}
@keyframes move-frames-56 {
	from {
		transform: translate3d(91vw, 108vh, 0);
	}
	to {
		transform: translate3d(93vw, -118vh, 0);
	}
}
.circle-container:nth-child(56) .circle {
	-webkit-animation-delay: 3484ms;
					animation-delay: 3484ms;
}
.circle-container:nth-child(57) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-57;
					animation-name: move-frames-57;
	-webkit-animation-duration: 30091ms;
					animation-duration: 30091ms;
	-webkit-animation-delay: 13766ms;
					animation-delay: 13766ms;
}
@-webkit-keyframes move-frames-57 {
	from {
		transform: translate3d(60vw, 106vh, 0);
	}
	to {
		transform: translate3d(16vw, -124vh, 0);
	}
}
@keyframes move-frames-57 {
	from {
		transform: translate3d(60vw, 106vh, 0);
	}
	to {
		transform: translate3d(16vw, -124vh, 0);
	}
}
.circle-container:nth-child(57) .circle {
	-webkit-animation-delay: 1226ms;
					animation-delay: 1226ms;
}
.circle-container:nth-child(58) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-58;
					animation-name: move-frames-58;
	-webkit-animation-duration: 32509ms;
					animation-duration: 32509ms;
	-webkit-animation-delay: 13360ms;
					animation-delay: 13360ms;
}
@-webkit-keyframes move-frames-58 {
	from {
		transform: translate3d(70vw, 104vh, 0);
	}
	to {
		transform: translate3d(56vw, -113vh, 0);
	}
}
@keyframes move-frames-58 {
	from {
		transform: translate3d(70vw, 104vh, 0);
	}
	to {
		transform: translate3d(56vw, -113vh, 0);
	}
}
.circle-container:nth-child(58) .circle {
	-webkit-animation-delay: 1661ms;
					animation-delay: 1661ms;
}
.circle-container:nth-child(59) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-59;
					animation-name: move-frames-59;
	-webkit-animation-duration: 29176ms;
					animation-duration: 29176ms;
	-webkit-animation-delay: 32145ms;
					animation-delay: 32145ms;
}
@-webkit-keyframes move-frames-59 {
	from {
		transform: translate3d(65vw, 102vh, 0);
	}
	to {
		transform: translate3d(79vw, -122vh, 0);
	}
}
@keyframes move-frames-59 {
	from {
		transform: translate3d(65vw, 102vh, 0);
	}
	to {
		transform: translate3d(79vw, -122vh, 0);
	}
}
.circle-container:nth-child(59) .circle {
	-webkit-animation-delay: 842ms;
					animation-delay: 842ms;
}
.circle-container:nth-child(60) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-60;
					animation-name: move-frames-60;
	-webkit-animation-duration: 36752ms;
					animation-duration: 36752ms;
	-webkit-animation-delay: 15051ms;
					animation-delay: 15051ms;
}
@-webkit-keyframes move-frames-60 {
	from {
		transform: translate3d(80vw, 102vh, 0);
	}
	to {
		transform: translate3d(85vw, -132vh, 0);
	}
}
@keyframes move-frames-60 {
	from {
		transform: translate3d(80vw, 102vh, 0);
	}
	to {
		transform: translate3d(85vw, -132vh, 0);
	}
}
.circle-container:nth-child(60) .circle {
	-webkit-animation-delay: 841ms;
					animation-delay: 841ms;
}
.circle-container:nth-child(61) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-61;
					animation-name: move-frames-61;
	-webkit-animation-duration: 32829ms;
					animation-duration: 32829ms;
	-webkit-animation-delay: 21768ms;
					animation-delay: 21768ms;
}
@-webkit-keyframes move-frames-61 {
	from {
		transform: translate3d(41vw, 107vh, 0);
	}
	to {
		transform: translate3d(9vw, -127vh, 0);
	}
}
@keyframes move-frames-61 {
	from {
		transform: translate3d(41vw, 107vh, 0);
	}
	to {
		transform: translate3d(9vw, -127vh, 0);
	}
}
.circle-container:nth-child(61) .circle {
	-webkit-animation-delay: 2966ms;
					animation-delay: 2966ms;
}
.circle-container:nth-child(62) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-62;
					animation-name: move-frames-62;
	-webkit-animation-duration: 35160ms;
					animation-duration: 35160ms;
	-webkit-animation-delay: 10435ms;
					animation-delay: 10435ms;
}
@-webkit-keyframes move-frames-62 {
	from {
		transform: translate3d(31vw, 109vh, 0);
	}
	to {
		transform: translate3d(42vw, -112vh, 0);
	}
}
@keyframes move-frames-62 {
	from {
		transform: translate3d(31vw, 109vh, 0);
	}
	to {
		transform: translate3d(42vw, -112vh, 0);
	}
}
.circle-container:nth-child(62) .circle {
	-webkit-animation-delay: 3581ms;
					animation-delay: 3581ms;
}
.circle-container:nth-child(63) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-63;
					animation-name: move-frames-63;
	-webkit-animation-duration: 36765ms;
					animation-duration: 36765ms;
	-webkit-animation-delay: 15017ms;
					animation-delay: 15017ms;
}
@-webkit-keyframes move-frames-63 {
	from {
		transform: translate3d(95vw, 102vh, 0);
	}
	to {
		transform: translate3d(17vw, -124vh, 0);
	}
}
@keyframes move-frames-63 {
	from {
		transform: translate3d(95vw, 102vh, 0);
	}
	to {
		transform: translate3d(17vw, -124vh, 0);
	}
}
.circle-container:nth-child(63) .circle {
	-webkit-animation-delay: 102ms;
					animation-delay: 102ms;
}
.circle-container:nth-child(64) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-64;
					animation-name: move-frames-64;
	-webkit-animation-duration: 36360ms;
					animation-duration: 36360ms;
	-webkit-animation-delay: 14472ms;
					animation-delay: 14472ms;
}
@-webkit-keyframes move-frames-64 {
	from {
		transform: translate3d(10vw, 104vh, 0);
	}
	to {
		transform: translate3d(13vw, -108vh, 0);
	}
}
@keyframes move-frames-64 {
	from {
		transform: translate3d(10vw, 104vh, 0);
	}
	to {
		transform: translate3d(13vw, -108vh, 0);
	}
}
.circle-container:nth-child(64) .circle {
	-webkit-animation-delay: 2166ms;
					animation-delay: 2166ms;
}
.circle-container:nth-child(65) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-65;
					animation-name: move-frames-65;
	-webkit-animation-duration: 30875ms;
					animation-duration: 30875ms;
	-webkit-animation-delay: 16474ms;
					animation-delay: 16474ms;
}
@-webkit-keyframes move-frames-65 {
	from {
		transform: translate3d(74vw, 104vh, 0);
	}
	to {
		transform: translate3d(82vw, -114vh, 0);
	}
}
@keyframes move-frames-65 {
	from {
		transform: translate3d(74vw, 104vh, 0);
	}
	to {
		transform: translate3d(82vw, -114vh, 0);
	}
}
.circle-container:nth-child(65) .circle {
	-webkit-animation-delay: 2907ms;
					animation-delay: 2907ms;
}
.circle-container:nth-child(66) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-66;
					animation-name: move-frames-66;
	-webkit-animation-duration: 30383ms;
					animation-duration: 30383ms;
	-webkit-animation-delay: 28995ms;
					animation-delay: 28995ms;
}
@-webkit-keyframes move-frames-66 {
	from {
		transform: translate3d(67vw, 103vh, 0);
	}
	to {
		transform: translate3d(93vw, -128vh, 0);
	}
}
@keyframes move-frames-66 {
	from {
		transform: translate3d(67vw, 103vh, 0);
	}
	to {
		transform: translate3d(93vw, -128vh, 0);
	}
}
.circle-container:nth-child(66) .circle {
	-webkit-animation-delay: 3964ms;
					animation-delay: 3964ms;
}
.circle-container:nth-child(67) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-67;
					animation-name: move-frames-67;
	-webkit-animation-duration: 32066ms;
					animation-duration: 32066ms;
	-webkit-animation-delay: 29705ms;
					animation-delay: 29705ms;
}
@-webkit-keyframes move-frames-67 {
	from {
		transform: translate3d(81vw, 106vh, 0);
	}
	to {
		transform: translate3d(80vw, -122vh, 0);
	}
}
@keyframes move-frames-67 {
	from {
		transform: translate3d(81vw, 106vh, 0);
	}
	to {
		transform: translate3d(80vw, -122vh, 0);
	}
}
.circle-container:nth-child(67) .circle {
	-webkit-animation-delay: 1621ms;
					animation-delay: 1621ms;
}
.circle-container:nth-child(68) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-68;
					animation-name: move-frames-68;
	-webkit-animation-duration: 33005ms;
					animation-duration: 33005ms;
	-webkit-animation-delay: 27501ms;
					animation-delay: 27501ms;
}
@-webkit-keyframes move-frames-68 {
	from {
		transform: translate3d(84vw, 109vh, 0);
	}
	to {
		transform: translate3d(36vw, -115vh, 0);
	}
}
@keyframes move-frames-68 {
	from {
		transform: translate3d(84vw, 109vh, 0);
	}
	to {
		transform: translate3d(36vw, -115vh, 0);
	}
}
.circle-container:nth-child(68) .circle {
	-webkit-animation-delay: 3605ms;
					animation-delay: 3605ms;
}
.circle-container:nth-child(69) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-69;
					animation-name: move-frames-69;
	-webkit-animation-duration: 35831ms;
					animation-duration: 35831ms;
	-webkit-animation-delay: 11069ms;
					animation-delay: 11069ms;
}
@-webkit-keyframes move-frames-69 {
	from {
		transform: translate3d(5vw, 101vh, 0);
	}
	to {
		transform: translate3d(54vw, -121vh, 0);
	}
}
@keyframes move-frames-69 {
	from {
		transform: translate3d(5vw, 101vh, 0);
	}
	to {
		transform: translate3d(54vw, -121vh, 0);
	}
}
.circle-container:nth-child(69) .circle {
	-webkit-animation-delay: 950ms;
					animation-delay: 950ms;
}
.circle-container:nth-child(70) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-70;
					animation-name: move-frames-70;
	-webkit-animation-duration: 36540ms;
					animation-duration: 36540ms;
	-webkit-animation-delay: 35459ms;
					animation-delay: 35459ms;
}
@-webkit-keyframes move-frames-70 {
	from {
		transform: translate3d(62vw, 110vh, 0);
	}
	to {
		transform: translate3d(23vw, -123vh, 0);
	}
}
@keyframes move-frames-70 {
	from {
		transform: translate3d(62vw, 110vh, 0);
	}
	to {
		transform: translate3d(23vw, -123vh, 0);
	}
}
.circle-container:nth-child(70) .circle {
	-webkit-animation-delay: 349ms;
					animation-delay: 349ms;
}
.circle-container:nth-child(71) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-71;
					animation-name: move-frames-71;
	-webkit-animation-duration: 32363ms;
					animation-duration: 32363ms;
	-webkit-animation-delay: 20571ms;
					animation-delay: 20571ms;
}
@-webkit-keyframes move-frames-71 {
	from {
		transform: translate3d(12vw, 103vh, 0);
	}
	to {
		transform: translate3d(56vw, -118vh, 0);
	}
}
@keyframes move-frames-71 {
	from {
		transform: translate3d(12vw, 103vh, 0);
	}
	to {
		transform: translate3d(56vw, -118vh, 0);
	}
}
.circle-container:nth-child(71) .circle {
	-webkit-animation-delay: 1511ms;
					animation-delay: 1511ms;
}
.circle-container:nth-child(72) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-72;
					animation-name: move-frames-72;
	-webkit-animation-duration: 31645ms;
					animation-duration: 31645ms;
	-webkit-animation-delay: 14803ms;
					animation-delay: 14803ms;
}
@-webkit-keyframes move-frames-72 {
	from {
		transform: translate3d(36vw, 101vh, 0);
	}
	to {
		transform: translate3d(53vw, -127vh, 0);
	}
}
@keyframes move-frames-72 {
	from {
		transform: translate3d(36vw, 101vh, 0);
	}
	to {
		transform: translate3d(53vw, -127vh, 0);
	}
}
.circle-container:nth-child(72) .circle {
	-webkit-animation-delay: 3757ms;
					animation-delay: 3757ms;
}
.circle-container:nth-child(73) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-73;
					animation-name: move-frames-73;
	-webkit-animation-duration: 31932ms;
					animation-duration: 31932ms;
	-webkit-animation-delay: 8579ms;
					animation-delay: 8579ms;
}
@-webkit-keyframes move-frames-73 {
	from {
		transform: translate3d(24vw, 101vh, 0);
	}
	to {
		transform: translate3d(89vw, -108vh, 0);
	}
}
@keyframes move-frames-73 {
	from {
		transform: translate3d(24vw, 101vh, 0);
	}
	to {
		transform: translate3d(89vw, -108vh, 0);
	}
}
.circle-container:nth-child(73) .circle {
	-webkit-animation-delay: 3127ms;
					animation-delay: 3127ms;
}
.circle-container:nth-child(74) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-74;
					animation-name: move-frames-74;
	-webkit-animation-duration: 36283ms;
					animation-duration: 36283ms;
	-webkit-animation-delay: 11744ms;
					animation-delay: 11744ms;
}
@-webkit-keyframes move-frames-74 {
	from {
		transform: translate3d(28vw, 110vh, 0);
	}
	to {
		transform: translate3d(1vw, -115vh, 0);
	}
}
@keyframes move-frames-74 {
	from {
		transform: translate3d(28vw, 110vh, 0);
	}
	to {
		transform: translate3d(1vw, -115vh, 0);
	}
}
.circle-container:nth-child(74) .circle {
	-webkit-animation-delay: 3433ms;
					animation-delay: 3433ms;
}
.circle-container:nth-child(75) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-75;
					animation-name: move-frames-75;
	-webkit-animation-duration: 35732ms;
					animation-duration: 35732ms;
	-webkit-animation-delay: 18400ms;
					animation-delay: 18400ms;
}
@-webkit-keyframes move-frames-75 {
	from {
		transform: translate3d(75vw, 104vh, 0);
	}
	to {
		transform: translate3d(92vw, -125vh, 0);
	}
}
@keyframes move-frames-75 {
	from {
		transform: translate3d(75vw, 104vh, 0);
	}
	to {
		transform: translate3d(92vw, -125vh, 0);
	}
}
.circle-container:nth-child(75) .circle {
	-webkit-animation-delay: 802ms;
					animation-delay: 802ms;
}
.circle-container:nth-child(76) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-76;
					animation-name: move-frames-76;
	-webkit-animation-duration: 29806ms;
					animation-duration: 29806ms;
	-webkit-animation-delay: 27551ms;
					animation-delay: 27551ms;
}
@-webkit-keyframes move-frames-76 {
	from {
		transform: translate3d(99vw, 102vh, 0);
	}
	to {
		transform: translate3d(11vw, -122vh, 0);
	}
}
@keyframes move-frames-76 {
	from {
		transform: translate3d(99vw, 102vh, 0);
	}
	to {
		transform: translate3d(11vw, -122vh, 0);
	}
}
.circle-container:nth-child(76) .circle {
	-webkit-animation-delay: 637ms;
					animation-delay: 637ms;
}
.circle-container:nth-child(77) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-77;
					animation-name: move-frames-77;
	-webkit-animation-duration: 36581ms;
					animation-duration: 36581ms;
	-webkit-animation-delay: 22621ms;
					animation-delay: 22621ms;
}
@-webkit-keyframes move-frames-77 {
	from {
		transform: translate3d(38vw, 105vh, 0);
	}
	to {
		transform: translate3d(62vw, -126vh, 0);
	}
}
@keyframes move-frames-77 {
	from {
		transform: translate3d(38vw, 105vh, 0);
	}
	to {
		transform: translate3d(62vw, -126vh, 0);
	}
}
.circle-container:nth-child(77) .circle {
	-webkit-animation-delay: 916ms;
					animation-delay: 916ms;
}
.circle-container:nth-child(78) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-78;
					animation-name: move-frames-78;
	-webkit-animation-duration: 30421ms;
					animation-duration: 30421ms;
	-webkit-animation-delay: 31895ms;
					animation-delay: 31895ms;
}
@-webkit-keyframes move-frames-78 {
	from {
		transform: translate3d(78vw, 107vh, 0);
	}
	to {
		transform: translate3d(64vw, -124vh, 0);
	}
}
@keyframes move-frames-78 {
	from {
		transform: translate3d(78vw, 107vh, 0);
	}
	to {
		transform: translate3d(64vw, -124vh, 0);
	}
}
.circle-container:nth-child(78) .circle {
	-webkit-animation-delay: 1107ms;
					animation-delay: 1107ms;
}
.circle-container:nth-child(79) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-79;
					animation-name: move-frames-79;
	-webkit-animation-duration: 30571ms;
					animation-duration: 30571ms;
	-webkit-animation-delay: 15552ms;
					animation-delay: 15552ms;
}
@-webkit-keyframes move-frames-79 {
	from {
		transform: translate3d(3vw, 101vh, 0);
	}
	to {
		transform: translate3d(48vw, -108vh, 0);
	}
}
@keyframes move-frames-79 {
	from {
		transform: translate3d(3vw, 101vh, 0);
	}
	to {
		transform: translate3d(48vw, -108vh, 0);
	}
}
.circle-container:nth-child(79) .circle {
	-webkit-animation-delay: 1450ms;
					animation-delay: 1450ms;
}
.circle-container:nth-child(80) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-80;
					animation-name: move-frames-80;
	-webkit-animation-duration: 32252ms;
					animation-duration: 32252ms;
	-webkit-animation-delay: 22040ms;
					animation-delay: 22040ms;
}
@-webkit-keyframes move-frames-80 {
	from {
		transform: translate3d(48vw, 108vh, 0);
	}
	to {
		transform: translate3d(10vw, -111vh, 0);
	}
}
@keyframes move-frames-80 {
	from {
		transform: translate3d(48vw, 108vh, 0);
	}
	to {
		transform: translate3d(10vw, -111vh, 0);
	}
}
.circle-container:nth-child(80) .circle {
	-webkit-animation-delay: 67ms;
					animation-delay: 67ms;
}
.circle-container:nth-child(81) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-81;
					animation-name: move-frames-81;
	-webkit-animation-duration: 28868ms;
					animation-duration: 28868ms;
	-webkit-animation-delay: 5591ms;
					animation-delay: 5591ms;
}
@-webkit-keyframes move-frames-81 {
	from {
		transform: translate3d(13vw, 107vh, 0);
	}
	to {
		transform: translate3d(75vw, -123vh, 0);
	}
}
@keyframes move-frames-81 {
	from {
		transform: translate3d(13vw, 107vh, 0);
	}
	to {
		transform: translate3d(75vw, -123vh, 0);
	}
}
.circle-container:nth-child(81) .circle {
	-webkit-animation-delay: 1498ms;
					animation-delay: 1498ms;
}
.circle-container:nth-child(82) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-82;
					animation-name: move-frames-82;
	-webkit-animation-duration: 32140ms;
					animation-duration: 32140ms;
	-webkit-animation-delay: 10567ms;
					animation-delay: 10567ms;
}
@-webkit-keyframes move-frames-82 {
	from {
		transform: translate3d(60vw, 102vh, 0);
	}
	to {
		transform: translate3d(3vw, -131vh, 0);
	}
}
@keyframes move-frames-82 {
	from {
		transform: translate3d(60vw, 102vh, 0);
	}
	to {
		transform: translate3d(3vw, -131vh, 0);
	}
}
.circle-container:nth-child(82) .circle {
	-webkit-animation-delay: 40ms;
					animation-delay: 40ms;
}
.circle-container:nth-child(83) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-83;
					animation-name: move-frames-83;
	-webkit-animation-duration: 32504ms;
					animation-duration: 32504ms;
	-webkit-animation-delay: 22468ms;
					animation-delay: 22468ms;
}
@-webkit-keyframes move-frames-83 {
	from {
		transform: translate3d(89vw, 101vh, 0);
	}
	to {
		transform: translate3d(67vw, -130vh, 0);
	}
}
@keyframes move-frames-83 {
	from {
		transform: translate3d(89vw, 101vh, 0);
	}
	to {
		transform: translate3d(67vw, -130vh, 0);
	}
}
.circle-container:nth-child(83) .circle {
	-webkit-animation-delay: 3734ms;
					animation-delay: 3734ms;
}
.circle-container:nth-child(84) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-84;
					animation-name: move-frames-84;
	-webkit-animation-duration: 28331ms;
					animation-duration: 28331ms;
	-webkit-animation-delay: 11750ms;
					animation-delay: 11750ms;
}
@-webkit-keyframes move-frames-84 {
	from {
		transform: translate3d(19vw, 102vh, 0);
	}
	to {
		transform: translate3d(66vw, -132vh, 0);
	}
}
@keyframes move-frames-84 {
	from {
		transform: translate3d(19vw, 102vh, 0);
	}
	to {
		transform: translate3d(66vw, -132vh, 0);
	}
}
.circle-container:nth-child(84) .circle {
	-webkit-animation-delay: 3302ms;
					animation-delay: 3302ms;
}
.circle-container:nth-child(85) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-85;
					animation-name: move-frames-85;
	-webkit-animation-duration: 34105ms;
					animation-duration: 34105ms;
	-webkit-animation-delay: 30491ms;
					animation-delay: 30491ms;
}
@-webkit-keyframes move-frames-85 {
	from {
		transform: translate3d(15vw, 110vh, 0);
	}
	to {
		transform: translate3d(82vw, -117vh, 0);
	}
}
@keyframes move-frames-85 {
	from {
		transform: translate3d(15vw, 110vh, 0);
	}
	to {
		transform: translate3d(82vw, -117vh, 0);
	}
}
.circle-container:nth-child(85) .circle {
	-webkit-animation-delay: 513ms;
					animation-delay: 513ms;
}
.circle-container:nth-child(86) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-86;
					animation-name: move-frames-86;
	-webkit-animation-duration: 28703ms;
					animation-duration: 28703ms;
	-webkit-animation-delay: 486ms;
					animation-delay: 486ms;
}
@-webkit-keyframes move-frames-86 {
	from {
		transform: translate3d(68vw, 103vh, 0);
	}
	to {
		transform: translate3d(97vw, -112vh, 0);
	}
}
@keyframes move-frames-86 {
	from {
		transform: translate3d(68vw, 103vh, 0);
	}
	to {
		transform: translate3d(97vw, -112vh, 0);
	}
}
.circle-container:nth-child(86) .circle {
	-webkit-animation-delay: 3164ms;
					animation-delay: 3164ms;
}
.circle-container:nth-child(87) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-87;
					animation-name: move-frames-87;
	-webkit-animation-duration: 36835ms;
					animation-duration: 36835ms;
	-webkit-animation-delay: 34098ms;
					animation-delay: 34098ms;
}
@-webkit-keyframes move-frames-87 {
	from {
		transform: translate3d(49vw, 108vh, 0);
	}
	to {
		transform: translate3d(84vw, -128vh, 0);
	}
}
@keyframes move-frames-87 {
	from {
		transform: translate3d(49vw, 108vh, 0);
	}
	to {
		transform: translate3d(84vw, -128vh, 0);
	}
}
.circle-container:nth-child(87) .circle {
	-webkit-animation-delay: 3839ms;
					animation-delay: 3839ms;
}
.circle-container:nth-child(88) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-88;
					animation-name: move-frames-88;
	-webkit-animation-duration: 32861ms;
					animation-duration: 32861ms;
	-webkit-animation-delay: 1583ms;
					animation-delay: 1583ms;
}
@-webkit-keyframes move-frames-88 {
	from {
		transform: translate3d(41vw, 109vh, 0);
	}
	to {
		transform: translate3d(21vw, -113vh, 0);
	}
}
@keyframes move-frames-88 {
	from {
		transform: translate3d(41vw, 109vh, 0);
	}
	to {
		transform: translate3d(21vw, -113vh, 0);
	}
}
.circle-container:nth-child(88) .circle {
	-webkit-animation-delay: 3875ms;
					animation-delay: 3875ms;
}
.circle-container:nth-child(89) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-89;
					animation-name: move-frames-89;
	-webkit-animation-duration: 36348ms;
					animation-duration: 36348ms;
	-webkit-animation-delay: 36287ms;
					animation-delay: 36287ms;
}
@-webkit-keyframes move-frames-89 {
	from {
		transform: translate3d(10vw, 101vh, 0);
	}
	to {
		transform: translate3d(26vw, -118vh, 0);
	}
}
@keyframes move-frames-89 {
	from {
		transform: translate3d(10vw, 101vh, 0);
	}
	to {
		transform: translate3d(26vw, -118vh, 0);
	}
}
.circle-container:nth-child(89) .circle {
	-webkit-animation-delay: 3277ms;
					animation-delay: 3277ms;
}
.circle-container:nth-child(90) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-90;
					animation-name: move-frames-90;
	-webkit-animation-duration: 33675ms;
					animation-duration: 33675ms;
	-webkit-animation-delay: 35898ms;
					animation-delay: 35898ms;
}
@-webkit-keyframes move-frames-90 {
	from {
		transform: translate3d(33vw, 106vh, 0);
	}
	to {
		transform: translate3d(67vw, -134vh, 0);
	}
}
@keyframes move-frames-90 {
	from {
		transform: translate3d(33vw, 106vh, 0);
	}
	to {
		transform: translate3d(67vw, -134vh, 0);
	}
}
.circle-container:nth-child(90) .circle {
	-webkit-animation-delay: 2818ms;
					animation-delay: 2818ms;
}
.circle-container:nth-child(91) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-91;
					animation-name: move-frames-91;
	-webkit-animation-duration: 33506ms;
					animation-duration: 33506ms;
	-webkit-animation-delay: 7808ms;
					animation-delay: 7808ms;
}
@-webkit-keyframes move-frames-91 {
	from {
		transform: translate3d(56vw, 107vh, 0);
	}
	to {
		transform: translate3d(87vw, -113vh, 0);
	}
}
@keyframes move-frames-91 {
	from {
		transform: translate3d(56vw, 107vh, 0);
	}
	to {
		transform: translate3d(87vw, -113vh, 0);
	}
}
.circle-container:nth-child(91) .circle {
	-webkit-animation-delay: 2996ms;
					animation-delay: 2996ms;
}
.circle-container:nth-child(92) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-92;
					animation-name: move-frames-92;
	-webkit-animation-duration: 29107ms;
					animation-duration: 29107ms;
	-webkit-animation-delay: 25981ms;
					animation-delay: 25981ms;
}
@-webkit-keyframes move-frames-92 {
	from {
		transform: translate3d(30vw, 104vh, 0);
	}
	to {
		transform: translate3d(16vw, -116vh, 0);
	}
}
@keyframes move-frames-92 {
	from {
		transform: translate3d(30vw, 104vh, 0);
	}
	to {
		transform: translate3d(16vw, -116vh, 0);
	}
}
.circle-container:nth-child(92) .circle {
	-webkit-animation-delay: 1379ms;
					animation-delay: 1379ms;
}
.circle-container:nth-child(93) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-93;
					animation-name: move-frames-93;
	-webkit-animation-duration: 36693ms;
					animation-duration: 36693ms;
	-webkit-animation-delay: 27044ms;
					animation-delay: 27044ms;
}
@-webkit-keyframes move-frames-93 {
	from {
		transform: translate3d(75vw, 104vh, 0);
	}
	to {
		transform: translate3d(36vw, -131vh, 0);
	}
}
@keyframes move-frames-93 {
	from {
		transform: translate3d(75vw, 104vh, 0);
	}
	to {
		transform: translate3d(36vw, -131vh, 0);
	}
}
.circle-container:nth-child(93) .circle {
	-webkit-animation-delay: 963ms;
					animation-delay: 963ms;
}
.circle-container:nth-child(94) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-94;
					animation-name: move-frames-94;
	-webkit-animation-duration: 36566ms;
					animation-duration: 36566ms;
	-webkit-animation-delay: 28298ms;
					animation-delay: 28298ms;
}
@-webkit-keyframes move-frames-94 {
	from {
		transform: translate3d(33vw, 103vh, 0);
	}
	to {
		transform: translate3d(89vw, -105vh, 0);
	}
}
@keyframes move-frames-94 {
	from {
		transform: translate3d(33vw, 103vh, 0);
	}
	to {
		transform: translate3d(89vw, -105vh, 0);
	}
}
.circle-container:nth-child(94) .circle {
	-webkit-animation-delay: 966ms;
					animation-delay: 966ms;
}
.circle-container:nth-child(95) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-95;
					animation-name: move-frames-95;
	-webkit-animation-duration: 32974ms;
					animation-duration: 32974ms;
	-webkit-animation-delay: 6497ms;
					animation-delay: 6497ms;
}
@-webkit-keyframes move-frames-95 {
	from {
		transform: translate3d(87vw, 105vh, 0);
	}
	to {
		transform: translate3d(35vw, -127vh, 0);
	}
}
@keyframes move-frames-95 {
	from {
		transform: translate3d(87vw, 105vh, 0);
	}
	to {
		transform: translate3d(35vw, -127vh, 0);
	}
}
.circle-container:nth-child(95) .circle {
	-webkit-animation-delay: 2159ms;
					animation-delay: 2159ms;
}
.circle-container:nth-child(96) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-96;
					animation-name: move-frames-96;
	-webkit-animation-duration: 31779ms;
					animation-duration: 31779ms;
	-webkit-animation-delay: 18270ms;
					animation-delay: 18270ms;
}
@-webkit-keyframes move-frames-96 {
	from {
		transform: translate3d(37vw, 103vh, 0);
	}
	to {
		transform: translate3d(77vw, -127vh, 0);
	}
}
@keyframes move-frames-96 {
	from {
		transform: translate3d(37vw, 103vh, 0);
	}
	to {
		transform: translate3d(77vw, -127vh, 0);
	}
}
.circle-container:nth-child(96) .circle {
	-webkit-animation-delay: 1494ms;
					animation-delay: 1494ms;
}
.circle-container:nth-child(97) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-97;
					animation-name: move-frames-97;
	-webkit-animation-duration: 33483ms;
					animation-duration: 33483ms;
	-webkit-animation-delay: 32429ms;
					animation-delay: 32429ms;
}
@-webkit-keyframes move-frames-97 {
	from {
		transform: translate3d(54vw, 110vh, 0);
	}
	to {
		transform: translate3d(91vw, -114vh, 0);
	}
}
@keyframes move-frames-97 {
	from {
		transform: translate3d(54vw, 110vh, 0);
	}
	to {
		transform: translate3d(91vw, -114vh, 0);
	}
}
.circle-container:nth-child(97) .circle {
	-webkit-animation-delay: 3175ms;
					animation-delay: 3175ms;
}
.circle-container:nth-child(98) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-98;
					animation-name: move-frames-98;
	-webkit-animation-duration: 30091ms;
					animation-duration: 30091ms;
	-webkit-animation-delay: 19134ms;
					animation-delay: 19134ms;
}
@-webkit-keyframes move-frames-98 {
	from {
		transform: translate3d(8vw, 102vh, 0);
	}
	to {
		transform: translate3d(85vw, -117vh, 0);
	}
}
@keyframes move-frames-98 {
	from {
		transform: translate3d(8vw, 102vh, 0);
	}
	to {
		transform: translate3d(85vw, -117vh, 0);
	}
}
.circle-container:nth-child(98) .circle {
	-webkit-animation-delay: 2420ms;
					animation-delay: 2420ms;
}
.circle-container:nth-child(99) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-99;
					animation-name: move-frames-99;
	-webkit-animation-duration: 31500ms;
					animation-duration: 31500ms;
	-webkit-animation-delay: 9824ms;
					animation-delay: 9824ms;
}
@-webkit-keyframes move-frames-99 {
	from {
		transform: translate3d(70vw, 106vh, 0);
	}
	to {
		transform: translate3d(26vw, -136vh, 0);
	}
}
@keyframes move-frames-99 {
	from {
		transform: translate3d(70vw, 106vh, 0);
	}
	to {
		transform: translate3d(26vw, -136vh, 0);
	}
}
.circle-container:nth-child(99) .circle {
	-webkit-animation-delay: 2244ms;
					animation-delay: 2244ms;
}
.circle-container:nth-child(100) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-100;
					animation-name: move-frames-100;
	-webkit-animation-duration: 33801ms;
					animation-duration: 33801ms;
	-webkit-animation-delay: 21754ms;
					animation-delay: 21754ms;
}
@-webkit-keyframes move-frames-100 {
	from {
		transform: translate3d(75vw, 110vh, 0);
	}
	to {
		transform: translate3d(87vw, -129vh, 0);
	}
}
@keyframes move-frames-100 {
	from {
		transform: translate3d(75vw, 110vh, 0);
	}
	to {
		transform: translate3d(87vw, -129vh, 0);
	}
}
.circle-container:nth-child(100) .circle {
	-webkit-animation-delay: 2365ms;
					animation-delay: 2365ms;
}
.circle-container:nth-child(101) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-101;
					animation-name: move-frames-101;
	-webkit-animation-duration: 29489ms;
					animation-duration: 29489ms;
	-webkit-animation-delay: 4242ms;
					animation-delay: 4242ms;
}
@-webkit-keyframes move-frames-101 {
	from {
		transform: translate3d(83vw, 101vh, 0);
	}
	to {
		transform: translate3d(65vw, -130vh, 0);
	}
}
@keyframes move-frames-101 {
	from {
		transform: translate3d(83vw, 101vh, 0);
	}
	to {
		transform: translate3d(65vw, -130vh, 0);
	}
}
.circle-container:nth-child(101) .circle {
	-webkit-animation-delay: 36ms;
					animation-delay: 36ms;
}
.circle-container:nth-child(102) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-102;
					animation-name: move-frames-102;
	-webkit-animation-duration: 35027ms;
					animation-duration: 35027ms;
	-webkit-animation-delay: 20635ms;
					animation-delay: 20635ms;
}
@-webkit-keyframes move-frames-102 {
	from {
		transform: translate3d(25vw, 107vh, 0);
	}
	to {
		transform: translate3d(35vw, -113vh, 0);
	}
}
@keyframes move-frames-102 {
	from {
		transform: translate3d(25vw, 107vh, 0);
	}
	to {
		transform: translate3d(35vw, -113vh, 0);
	}
}
.circle-container:nth-child(102) .circle {
	-webkit-animation-delay: 1893ms;
					animation-delay: 1893ms;
}
.circle-container:nth-child(103) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-103;
					animation-name: move-frames-103;
	-webkit-animation-duration: 35656ms;
					animation-duration: 35656ms;
	-webkit-animation-delay: 27005ms;
					animation-delay: 27005ms;
}
@-webkit-keyframes move-frames-103 {
	from {
		transform: translate3d(87vw, 103vh, 0);
	}
	to {
		transform: translate3d(1vw, -114vh, 0);
	}
}
@keyframes move-frames-103 {
	from {
		transform: translate3d(87vw, 103vh, 0);
	}
	to {
		transform: translate3d(1vw, -114vh, 0);
	}
}
.circle-container:nth-child(103) .circle {
	-webkit-animation-delay: 2693ms;
					animation-delay: 2693ms;
}
.circle-container:nth-child(104) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-104;
					animation-name: move-frames-104;
	-webkit-animation-duration: 36213ms;
					animation-duration: 36213ms;
	-webkit-animation-delay: 30389ms;
					animation-delay: 30389ms;
}
@-webkit-keyframes move-frames-104 {
	from {
		transform: translate3d(50vw, 107vh, 0);
	}
	to {
		transform: translate3d(66vw, -122vh, 0);
	}
}
@keyframes move-frames-104 {
	from {
		transform: translate3d(50vw, 107vh, 0);
	}
	to {
		transform: translate3d(66vw, -122vh, 0);
	}
}
.circle-container:nth-child(104) .circle {
	-webkit-animation-delay: 290ms;
					animation-delay: 290ms;
}
.circle-container:nth-child(105) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-105;
					animation-name: move-frames-105;
	-webkit-animation-duration: 36114ms;
					animation-duration: 36114ms;
	-webkit-animation-delay: 18741ms;
					animation-delay: 18741ms;
}
@-webkit-keyframes move-frames-105 {
	from {
		transform: translate3d(82vw, 101vh, 0);
	}
	to {
		transform: translate3d(43vw, -128vh, 0);
	}
}
@keyframes move-frames-105 {
	from {
		transform: translate3d(82vw, 101vh, 0);
	}
	to {
		transform: translate3d(43vw, -128vh, 0);
	}
}
.circle-container:nth-child(105) .circle {
	-webkit-animation-delay: 3337ms;
					animation-delay: 3337ms;
}
.circle-container:nth-child(106) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-106;
					animation-name: move-frames-106;
	-webkit-animation-duration: 34095ms;
					animation-duration: 34095ms;
	-webkit-animation-delay: 22137ms;
					animation-delay: 22137ms;
}
@-webkit-keyframes move-frames-106 {
	from {
		transform: translate3d(74vw, 104vh, 0);
	}
	to {
		transform: translate3d(84vw, -134vh, 0);
	}
}
@keyframes move-frames-106 {
	from {
		transform: translate3d(74vw, 104vh, 0);
	}
	to {
		transform: translate3d(84vw, -134vh, 0);
	}
}
.circle-container:nth-child(106) .circle {
	-webkit-animation-delay: 614ms;
					animation-delay: 614ms;
}
.circle-container:nth-child(107) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-107;
					animation-name: move-frames-107;
	-webkit-animation-duration: 33160ms;
					animation-duration: 33160ms;
	-webkit-animation-delay: 1919ms;
					animation-delay: 1919ms;
}
@-webkit-keyframes move-frames-107 {
	from {
		transform: translate3d(29vw, 105vh, 0);
	}
	to {
		transform: translate3d(58vw, -125vh, 0);
	}
}
@keyframes move-frames-107 {
	from {
		transform: translate3d(29vw, 105vh, 0);
	}
	to {
		transform: translate3d(58vw, -125vh, 0);
	}
}
.circle-container:nth-child(107) .circle {
	-webkit-animation-delay: 3064ms;
					animation-delay: 3064ms;
}
.circle-container:nth-child(108) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-108;
					animation-name: move-frames-108;
	-webkit-animation-duration: 30777ms;
					animation-duration: 30777ms;
	-webkit-animation-delay: 2037ms;
					animation-delay: 2037ms;
}
@-webkit-keyframes move-frames-108 {
	from {
		transform: translate3d(99vw, 101vh, 0);
	}
	to {
		transform: translate3d(30vw, -126vh, 0);
	}
}
@keyframes move-frames-108 {
	from {
		transform: translate3d(99vw, 101vh, 0);
	}
	to {
		transform: translate3d(30vw, -126vh, 0);
	}
}
.circle-container:nth-child(108) .circle {
	-webkit-animation-delay: 3456ms;
					animation-delay: 3456ms;
}
.circle-container:nth-child(109) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-109;
					animation-name: move-frames-109;
	-webkit-animation-duration: 35147ms;
					animation-duration: 35147ms;
	-webkit-animation-delay: 21495ms;
					animation-delay: 21495ms;
}
@-webkit-keyframes move-frames-109 {
	from {
		transform: translate3d(59vw, 102vh, 0);
	}
	to {
		transform: translate3d(82vw, -120vh, 0);
	}
}
@keyframes move-frames-109 {
	from {
		transform: translate3d(59vw, 102vh, 0);
	}
	to {
		transform: translate3d(82vw, -120vh, 0);
	}
}
.circle-container:nth-child(109) .circle {
	-webkit-animation-delay: 3305ms;
					animation-delay: 3305ms;
}
.circle-container:nth-child(110) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-110;
					animation-name: move-frames-110;
	-webkit-animation-duration: 29239ms;
					animation-duration: 29239ms;
	-webkit-animation-delay: 17853ms;
					animation-delay: 17853ms;
}
@-webkit-keyframes move-frames-110 {
	from {
		transform: translate3d(45vw, 104vh, 0);
	}
	to {
		transform: translate3d(53vw, -105vh, 0);
	}
}
@keyframes move-frames-110 {
	from {
		transform: translate3d(45vw, 104vh, 0);
	}
	to {
		transform: translate3d(53vw, -105vh, 0);
	}
}
.circle-container:nth-child(110) .circle {
	-webkit-animation-delay: 2632ms;
					animation-delay: 2632ms;
}
.circle-container:nth-child(111) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-111;
					animation-name: move-frames-111;
	-webkit-animation-duration: 29118ms;
					animation-duration: 29118ms;
	-webkit-animation-delay: 30909ms;
					animation-delay: 30909ms;
}
@-webkit-keyframes move-frames-111 {
	from {
		transform: translate3d(29vw, 108vh, 0);
	}
	to {
		transform: translate3d(92vw, -117vh, 0);
	}
}
@keyframes move-frames-111 {
	from {
		transform: translate3d(29vw, 108vh, 0);
	}
	to {
		transform: translate3d(92vw, -117vh, 0);
	}
}
.circle-container:nth-child(111) .circle {
	-webkit-animation-delay: 2982ms;
					animation-delay: 2982ms;
}
.circle-container:nth-child(112) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-112;
					animation-name: move-frames-112;
	-webkit-animation-duration: 33863ms;
					animation-duration: 33863ms;
	-webkit-animation-delay: 7800ms;
					animation-delay: 7800ms;
}
@-webkit-keyframes move-frames-112 {
	from {
		transform: translate3d(20vw, 109vh, 0);
	}
	to {
		transform: translate3d(71vw, -116vh, 0);
	}
}
@keyframes move-frames-112 {
	from {
		transform: translate3d(20vw, 109vh, 0);
	}
	to {
		transform: translate3d(71vw, -116vh, 0);
	}
}
.circle-container:nth-child(112) .circle {
	-webkit-animation-delay: 1195ms;
					animation-delay: 1195ms;
}
.circle-container:nth-child(113) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-113;
					animation-name: move-frames-113;
	-webkit-animation-duration: 29479ms;
					animation-duration: 29479ms;
	-webkit-animation-delay: 33666ms;
					animation-delay: 33666ms;
}
@-webkit-keyframes move-frames-113 {
	from {
		transform: translate3d(87vw, 105vh, 0);
	}
	to {
		transform: translate3d(97vw, -124vh, 0);
	}
}
@keyframes move-frames-113 {
	from {
		transform: translate3d(87vw, 105vh, 0);
	}
	to {
		transform: translate3d(97vw, -124vh, 0);
	}
}
.circle-container:nth-child(113) .circle {
	-webkit-animation-delay: 1404ms;
					animation-delay: 1404ms;
}
.circle-container:nth-child(114) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-114;
					animation-name: move-frames-114;
	-webkit-animation-duration: 34429ms;
					animation-duration: 34429ms;
	-webkit-animation-delay: 10574ms;
					animation-delay: 10574ms;
}
@-webkit-keyframes move-frames-114 {
	from {
		transform: translate3d(24vw, 101vh, 0);
	}
	to {
		transform: translate3d(7vw, -117vh, 0);
	}
}
@keyframes move-frames-114 {
	from {
		transform: translate3d(24vw, 101vh, 0);
	}
	to {
		transform: translate3d(7vw, -117vh, 0);
	}
}
.circle-container:nth-child(114) .circle {
	-webkit-animation-delay: 351ms;
					animation-delay: 351ms;
}
.circle-container:nth-child(115) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-115;
					animation-name: move-frames-115;
	-webkit-animation-duration: 34404ms;
					animation-duration: 34404ms;
	-webkit-animation-delay: 943ms;
					animation-delay: 943ms;
}
@-webkit-keyframes move-frames-115 {
	from {
		transform: translate3d(87vw, 105vh, 0);
	}
	to {
		transform: translate3d(77vw, -117vh, 0);
	}
}
@keyframes move-frames-115 {
	from {
		transform: translate3d(87vw, 105vh, 0);
	}
	to {
		transform: translate3d(77vw, -117vh, 0);
	}
}
.circle-container:nth-child(115) .circle {
	-webkit-animation-delay: 1858ms;
					animation-delay: 1858ms;
}
.circle-container:nth-child(116) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-116;
					animation-name: move-frames-116;
	-webkit-animation-duration: 32821ms;
					animation-duration: 32821ms;
	-webkit-animation-delay: 34439ms;
					animation-delay: 34439ms;
}
@-webkit-keyframes move-frames-116 {
	from {
		transform: translate3d(79vw, 110vh, 0);
	}
	to {
		transform: translate3d(18vw, -113vh, 0);
	}
}
@keyframes move-frames-116 {
	from {
		transform: translate3d(79vw, 110vh, 0);
	}
	to {
		transform: translate3d(18vw, -113vh, 0);
	}
}
.circle-container:nth-child(116) .circle {
	-webkit-animation-delay: 3852ms;
					animation-delay: 3852ms;
}
.circle-container:nth-child(117) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-117;
					animation-name: move-frames-117;
	-webkit-animation-duration: 31932ms;
					animation-duration: 31932ms;
	-webkit-animation-delay: 27485ms;
					animation-delay: 27485ms;
}
@-webkit-keyframes move-frames-117 {
	from {
		transform: translate3d(71vw, 106vh, 0);
	}
	to {
		transform: translate3d(88vw, -111vh, 0);
	}
}
@keyframes move-frames-117 {
	from {
		transform: translate3d(71vw, 106vh, 0);
	}
	to {
		transform: translate3d(88vw, -111vh, 0);
	}
}
.circle-container:nth-child(117) .circle {
	-webkit-animation-delay: 322ms;
					animation-delay: 322ms;
}
.circle-container:nth-child(118) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-118;
					animation-name: move-frames-118;
	-webkit-animation-duration: 35803ms;
					animation-duration: 35803ms;
	-webkit-animation-delay: 12831ms;
					animation-delay: 12831ms;
}
@-webkit-keyframes move-frames-118 {
	from {
		transform: translate3d(60vw, 108vh, 0);
	}
	to {
		transform: translate3d(9vw, -122vh, 0);
	}
}
@keyframes move-frames-118 {
	from {
		transform: translate3d(60vw, 108vh, 0);
	}
	to {
		transform: translate3d(9vw, -122vh, 0);
	}
}
.circle-container:nth-child(118) .circle {
	-webkit-animation-delay: 2316ms;
					animation-delay: 2316ms;
}
.circle-container:nth-child(119) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-119;
					animation-name: move-frames-119;
	-webkit-animation-duration: 33150ms;
					animation-duration: 33150ms;
	-webkit-animation-delay: 29263ms;
					animation-delay: 29263ms;
}
@-webkit-keyframes move-frames-119 {
	from {
		transform: translate3d(70vw, 107vh, 0);
	}
	to {
		transform: translate3d(15vw, -135vh, 0);
	}
}
@keyframes move-frames-119 {
	from {
		transform: translate3d(70vw, 107vh, 0);
	}
	to {
		transform: translate3d(15vw, -135vh, 0);
	}
}
.circle-container:nth-child(119) .circle {
	-webkit-animation-delay: 3725ms;
					animation-delay: 3725ms;
}
.circle-container:nth-child(120) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-120;
					animation-name: move-frames-120;
	-webkit-animation-duration: 29904ms;
					animation-duration: 29904ms;
	-webkit-animation-delay: 30288ms;
					animation-delay: 30288ms;
}
@-webkit-keyframes move-frames-120 {
	from {
		transform: translate3d(90vw, 101vh, 0);
	}
	to {
		transform: translate3d(31vw, -112vh, 0);
	}
}
@keyframes move-frames-120 {
	from {
		transform: translate3d(90vw, 101vh, 0);
	}
	to {
		transform: translate3d(31vw, -112vh, 0);
	}
}
.circle-container:nth-child(120) .circle {
	-webkit-animation-delay: 2552ms;
					animation-delay: 2552ms;
}
.circle-container:nth-child(121) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-121;
					animation-name: move-frames-121;
	-webkit-animation-duration: 28410ms;
					animation-duration: 28410ms;
	-webkit-animation-delay: 19399ms;
					animation-delay: 19399ms;
}
@-webkit-keyframes move-frames-121 {
	from {
		transform: translate3d(43vw, 109vh, 0);
	}
	to {
		transform: translate3d(20vw, -131vh, 0);
	}
}
@keyframes move-frames-121 {
	from {
		transform: translate3d(43vw, 109vh, 0);
	}
	to {
		transform: translate3d(20vw, -131vh, 0);
	}
}
.circle-container:nth-child(121) .circle {
	-webkit-animation-delay: 2388ms;
					animation-delay: 2388ms;
}
.circle-container:nth-child(122) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-122;
					animation-name: move-frames-122;
	-webkit-animation-duration: 30339ms;
					animation-duration: 30339ms;
	-webkit-animation-delay: 7626ms;
					animation-delay: 7626ms;
}
@-webkit-keyframes move-frames-122 {
	from {
		transform: translate3d(90vw, 106vh, 0);
	}
	to {
		transform: translate3d(36vw, -114vh, 0);
	}
}
@keyframes move-frames-122 {
	from {
		transform: translate3d(90vw, 106vh, 0);
	}
	to {
		transform: translate3d(36vw, -114vh, 0);
	}
}
.circle-container:nth-child(122) .circle {
	-webkit-animation-delay: 1079ms;
					animation-delay: 1079ms;
}
.circle-container:nth-child(123) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-123;
					animation-name: move-frames-123;
	-webkit-animation-duration: 33125ms;
					animation-duration: 33125ms;
	-webkit-animation-delay: 36996ms;
					animation-delay: 36996ms;
}
@-webkit-keyframes move-frames-123 {
	from {
		transform: translate3d(2vw, 104vh, 0);
	}
	to {
		transform: translate3d(3vw, -111vh, 0);
	}
}
@keyframes move-frames-123 {
	from {
		transform: translate3d(2vw, 104vh, 0);
	}
	to {
		transform: translate3d(3vw, -111vh, 0);
	}
}
.circle-container:nth-child(123) .circle {
	-webkit-animation-delay: 3947ms;
					animation-delay: 3947ms;
}
.circle-container:nth-child(124) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-124;
					animation-name: move-frames-124;
	-webkit-animation-duration: 33667ms;
					animation-duration: 33667ms;
	-webkit-animation-delay: 22551ms;
					animation-delay: 22551ms;
}
@-webkit-keyframes move-frames-124 {
	from {
		transform: translate3d(27vw, 103vh, 0);
	}
	to {
		transform: translate3d(69vw, -123vh, 0);
	}
}
@keyframes move-frames-124 {
	from {
		transform: translate3d(27vw, 103vh, 0);
	}
	to {
		transform: translate3d(69vw, -123vh, 0);
	}
}
.circle-container:nth-child(124) .circle {
	-webkit-animation-delay: 3898ms;
					animation-delay: 3898ms;
}
.circle-container:nth-child(125) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-125;
					animation-name: move-frames-125;
	-webkit-animation-duration: 36281ms;
					animation-duration: 36281ms;
	-webkit-animation-delay: 30204ms;
					animation-delay: 30204ms;
}
@-webkit-keyframes move-frames-125 {
	from {
		transform: translate3d(94vw, 102vh, 0);
	}
	to {
		transform: translate3d(83vw, -121vh, 0);
	}
}
@keyframes move-frames-125 {
	from {
		transform: translate3d(94vw, 102vh, 0);
	}
	to {
		transform: translate3d(83vw, -121vh, 0);
	}
}
.circle-container:nth-child(125) .circle {
	-webkit-animation-delay: 1980ms;
					animation-delay: 1980ms;
}
.circle-container:nth-child(126) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-126;
					animation-name: move-frames-126;
	-webkit-animation-duration: 30374ms;
					animation-duration: 30374ms;
	-webkit-animation-delay: 13138ms;
					animation-delay: 13138ms;
}
@-webkit-keyframes move-frames-126 {
	from {
		transform: translate3d(68vw, 101vh, 0);
	}
	to {
		transform: translate3d(85vw, -125vh, 0);
	}
}
@keyframes move-frames-126 {
	from {
		transform: translate3d(68vw, 101vh, 0);
	}
	to {
		transform: translate3d(85vw, -125vh, 0);
	}
}
.circle-container:nth-child(126) .circle {
	-webkit-animation-delay: 1018ms;
					animation-delay: 1018ms;
}
.circle-container:nth-child(127) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-127;
					animation-name: move-frames-127;
	-webkit-animation-duration: 28974ms;
					animation-duration: 28974ms;
	-webkit-animation-delay: 17564ms;
					animation-delay: 17564ms;
}
@-webkit-keyframes move-frames-127 {
	from {
		transform: translate3d(10vw, 110vh, 0);
	}
	to {
		transform: translate3d(18vw, -113vh, 0);
	}
}
@keyframes move-frames-127 {
	from {
		transform: translate3d(10vw, 110vh, 0);
	}
	to {
		transform: translate3d(18vw, -113vh, 0);
	}
}
.circle-container:nth-child(127) .circle {
	-webkit-animation-delay: 1603ms;
					animation-delay: 1603ms;
}
.circle-container:nth-child(128) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-128;
					animation-name: move-frames-128;
	-webkit-animation-duration: 28641ms;
					animation-duration: 28641ms;
	-webkit-animation-delay: 18384ms;
					animation-delay: 18384ms;
}
@-webkit-keyframes move-frames-128 {
	from {
		transform: translate3d(11vw, 108vh, 0);
	}
	to {
		transform: translate3d(58vw, -116vh, 0);
	}
}
@keyframes move-frames-128 {
	from {
		transform: translate3d(11vw, 108vh, 0);
	}
	to {
		transform: translate3d(58vw, -116vh, 0);
	}
}
.circle-container:nth-child(128) .circle {
	-webkit-animation-delay: 216ms;
					animation-delay: 216ms;
}
.circle-container:nth-child(129) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-129;
					animation-name: move-frames-129;
	-webkit-animation-duration: 32309ms;
					animation-duration: 32309ms;
	-webkit-animation-delay: 27737ms;
					animation-delay: 27737ms;
}
@-webkit-keyframes move-frames-129 {
	from {
		transform: translate3d(89vw, 110vh, 0);
	}
	to {
		transform: translate3d(100vw, -135vh, 0);
	}
}
@keyframes move-frames-129 {
	from {
		transform: translate3d(89vw, 110vh, 0);
	}
	to {
		transform: translate3d(100vw, -135vh, 0);
	}
}
.circle-container:nth-child(129) .circle {
	-webkit-animation-delay: 2996ms;
					animation-delay: 2996ms;
}
.circle-container:nth-child(130) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-130;
					animation-name: move-frames-130;
	-webkit-animation-duration: 33684ms;
					animation-duration: 33684ms;
	-webkit-animation-delay: 2249ms;
					animation-delay: 2249ms;
}
@-webkit-keyframes move-frames-130 {
	from {
		transform: translate3d(1vw, 104vh, 0);
	}
	to {
		transform: translate3d(77vw, -120vh, 0);
	}
}
@keyframes move-frames-130 {
	from {
		transform: translate3d(1vw, 104vh, 0);
	}
	to {
		transform: translate3d(77vw, -120vh, 0);
	}
}
.circle-container:nth-child(130) .circle {
	-webkit-animation-delay: 3879ms;
					animation-delay: 3879ms;
}
.circle-container:nth-child(131) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-131;
					animation-name: move-frames-131;
	-webkit-animation-duration: 32895ms;
					animation-duration: 32895ms;
	-webkit-animation-delay: 755ms;
					animation-delay: 755ms;
}
@-webkit-keyframes move-frames-131 {
	from {
		transform: translate3d(46vw, 110vh, 0);
	}
	to {
		transform: translate3d(61vw, -134vh, 0);
	}
}
@keyframes move-frames-131 {
	from {
		transform: translate3d(46vw, 110vh, 0);
	}
	to {
		transform: translate3d(61vw, -134vh, 0);
	}
}
.circle-container:nth-child(131) .circle {
	-webkit-animation-delay: 3485ms;
					animation-delay: 3485ms;
}
.circle-container:nth-child(132) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-132;
					animation-name: move-frames-132;
	-webkit-animation-duration: 31754ms;
					animation-duration: 31754ms;
	-webkit-animation-delay: 11137ms;
					animation-delay: 11137ms;
}
@-webkit-keyframes move-frames-132 {
	from {
		transform: translate3d(8vw, 104vh, 0);
	}
	to {
		transform: translate3d(7vw, -106vh, 0);
	}
}
@keyframes move-frames-132 {
	from {
		transform: translate3d(8vw, 104vh, 0);
	}
	to {
		transform: translate3d(7vw, -106vh, 0);
	}
}
.circle-container:nth-child(132) .circle {
	-webkit-animation-delay: 3071ms;
					animation-delay: 3071ms;
}
.circle-container:nth-child(133) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-133;
					animation-name: move-frames-133;
	-webkit-animation-duration: 36559ms;
					animation-duration: 36559ms;
	-webkit-animation-delay: 16713ms;
					animation-delay: 16713ms;
}
@-webkit-keyframes move-frames-133 {
	from {
		transform: translate3d(89vw, 105vh, 0);
	}
	to {
		transform: translate3d(69vw, -129vh, 0);
	}
}
@keyframes move-frames-133 {
	from {
		transform: translate3d(89vw, 105vh, 0);
	}
	to {
		transform: translate3d(69vw, -129vh, 0);
	}
}
.circle-container:nth-child(133) .circle {
	-webkit-animation-delay: 2594ms;
					animation-delay: 2594ms;
}
.circle-container:nth-child(134) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-134;
					animation-name: move-frames-134;
	-webkit-animation-duration: 36203ms;
					animation-duration: 36203ms;
	-webkit-animation-delay: 20796ms;
					animation-delay: 20796ms;
}
@-webkit-keyframes move-frames-134 {
	from {
		transform: translate3d(1vw, 107vh, 0);
	}
	to {
		transform: translate3d(53vw, -137vh, 0);
	}
}
@keyframes move-frames-134 {
	from {
		transform: translate3d(1vw, 107vh, 0);
	}
	to {
		transform: translate3d(53vw, -137vh, 0);
	}
}
.circle-container:nth-child(134) .circle {
	-webkit-animation-delay: 3214ms;
					animation-delay: 3214ms;
}
.circle-container:nth-child(135) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-135;
					animation-name: move-frames-135;
	-webkit-animation-duration: 33677ms;
					animation-duration: 33677ms;
	-webkit-animation-delay: 15807ms;
					animation-delay: 15807ms;
}
@-webkit-keyframes move-frames-135 {
	from {
		transform: translate3d(52vw, 110vh, 0);
	}
	to {
		transform: translate3d(5vw, -139vh, 0);
	}
}
@keyframes move-frames-135 {
	from {
		transform: translate3d(52vw, 110vh, 0);
	}
	to {
		transform: translate3d(5vw, -139vh, 0);
	}
}
.circle-container:nth-child(135) .circle {
	-webkit-animation-delay: 2486ms;
					animation-delay: 2486ms;
}
.circle-container:nth-child(136) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-136;
					animation-name: move-frames-136;
	-webkit-animation-duration: 35530ms;
					animation-duration: 35530ms;
	-webkit-animation-delay: 5161ms;
					animation-delay: 5161ms;
}
@-webkit-keyframes move-frames-136 {
	from {
		transform: translate3d(39vw, 108vh, 0);
	}
	to {
		transform: translate3d(44vw, -135vh, 0);
	}
}
@keyframes move-frames-136 {
	from {
		transform: translate3d(39vw, 108vh, 0);
	}
	to {
		transform: translate3d(44vw, -135vh, 0);
	}
}
.circle-container:nth-child(136) .circle {
	-webkit-animation-delay: 2419ms;
					animation-delay: 2419ms;
}
.circle-container:nth-child(137) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-137;
					animation-name: move-frames-137;
	-webkit-animation-duration: 35518ms;
					animation-duration: 35518ms;
	-webkit-animation-delay: 35443ms;
					animation-delay: 35443ms;
}
@-webkit-keyframes move-frames-137 {
	from {
		transform: translate3d(38vw, 108vh, 0);
	}
	to {
		transform: translate3d(50vw, -120vh, 0);
	}
}
@keyframes move-frames-137 {
	from {
		transform: translate3d(38vw, 108vh, 0);
	}
	to {
		transform: translate3d(50vw, -120vh, 0);
	}
}
.circle-container:nth-child(137) .circle {
	-webkit-animation-delay: 2289ms;
					animation-delay: 2289ms;
}
.circle-container:nth-child(138) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-138;
					animation-name: move-frames-138;
	-webkit-animation-duration: 32668ms;
					animation-duration: 32668ms;
	-webkit-animation-delay: 26759ms;
					animation-delay: 26759ms;
}
@-webkit-keyframes move-frames-138 {
	from {
		transform: translate3d(73vw, 106vh, 0);
	}
	to {
		transform: translate3d(34vw, -127vh, 0);
	}
}
@keyframes move-frames-138 {
	from {
		transform: translate3d(73vw, 106vh, 0);
	}
	to {
		transform: translate3d(34vw, -127vh, 0);
	}
}
.circle-container:nth-child(138) .circle {
	-webkit-animation-delay: 3241ms;
					animation-delay: 3241ms;
}
.circle-container:nth-child(139) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-139;
					animation-name: move-frames-139;
	-webkit-animation-duration: 29722ms;
					animation-duration: 29722ms;
	-webkit-animation-delay: 1019ms;
					animation-delay: 1019ms;
}
@-webkit-keyframes move-frames-139 {
	from {
		transform: translate3d(15vw, 103vh, 0);
	}
	to {
		transform: translate3d(43vw, -106vh, 0);
	}
}
@keyframes move-frames-139 {
	from {
		transform: translate3d(15vw, 103vh, 0);
	}
	to {
		transform: translate3d(43vw, -106vh, 0);
	}
}
.circle-container:nth-child(139) .circle {
	-webkit-animation-delay: 2631ms;
					animation-delay: 2631ms;
}
.circle-container:nth-child(140) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-140;
					animation-name: move-frames-140;
	-webkit-animation-duration: 30736ms;
					animation-duration: 30736ms;
	-webkit-animation-delay: 19815ms;
					animation-delay: 19815ms;
}
@-webkit-keyframes move-frames-140 {
	from {
		transform: translate3d(43vw, 109vh, 0);
	}
	to {
		transform: translate3d(31vw, -120vh, 0);
	}
}
@keyframes move-frames-140 {
	from {
		transform: translate3d(43vw, 109vh, 0);
	}
	to {
		transform: translate3d(31vw, -120vh, 0);
	}
}
.circle-container:nth-child(140) .circle {
	-webkit-animation-delay: 3802ms;
					animation-delay: 3802ms;
}
.circle-container:nth-child(141) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-141;
					animation-name: move-frames-141;
	-webkit-animation-duration: 34714ms;
					animation-duration: 34714ms;
	-webkit-animation-delay: 30516ms;
					animation-delay: 30516ms;
}
@-webkit-keyframes move-frames-141 {
	from {
		transform: translate3d(24vw, 102vh, 0);
	}
	to {
		transform: translate3d(49vw, -122vh, 0);
	}
}
@keyframes move-frames-141 {
	from {
		transform: translate3d(24vw, 102vh, 0);
	}
	to {
		transform: translate3d(49vw, -122vh, 0);
	}
}
.circle-container:nth-child(141) .circle {
	-webkit-animation-delay: 900ms;
					animation-delay: 900ms;
}
.circle-container:nth-child(142) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-142;
					animation-name: move-frames-142;
	-webkit-animation-duration: 34753ms;
					animation-duration: 34753ms;
	-webkit-animation-delay: 14795ms;
					animation-delay: 14795ms;
}
@-webkit-keyframes move-frames-142 {
	from {
		transform: translate3d(34vw, 107vh, 0);
	}
	to {
		transform: translate3d(54vw, -122vh, 0);
	}
}
@keyframes move-frames-142 {
	from {
		transform: translate3d(34vw, 107vh, 0);
	}
	to {
		transform: translate3d(54vw, -122vh, 0);
	}
}
.circle-container:nth-child(142) .circle {
	-webkit-animation-delay: 2834ms;
					animation-delay: 2834ms;
}
.circle-container:nth-child(143) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-143;
					animation-name: move-frames-143;
	-webkit-animation-duration: 34819ms;
					animation-duration: 34819ms;
	-webkit-animation-delay: 21318ms;
					animation-delay: 21318ms;
}
@-webkit-keyframes move-frames-143 {
	from {
		transform: translate3d(60vw, 107vh, 0);
	}
	to {
		transform: translate3d(91vw, -135vh, 0);
	}
}
@keyframes move-frames-143 {
	from {
		transform: translate3d(60vw, 107vh, 0);
	}
	to {
		transform: translate3d(91vw, -135vh, 0);
	}
}
.circle-container:nth-child(143) .circle {
	-webkit-animation-delay: 3875ms;
					animation-delay: 3875ms;
}
.circle-container:nth-child(144) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-144;
					animation-name: move-frames-144;
	-webkit-animation-duration: 33847ms;
					animation-duration: 33847ms;
	-webkit-animation-delay: 6382ms;
					animation-delay: 6382ms;
}
@-webkit-keyframes move-frames-144 {
	from {
		transform: translate3d(65vw, 108vh, 0);
	}
	to {
		transform: translate3d(28vw, -122vh, 0);
	}
}
@keyframes move-frames-144 {
	from {
		transform: translate3d(65vw, 108vh, 0);
	}
	to {
		transform: translate3d(28vw, -122vh, 0);
	}
}
.circle-container:nth-child(144) .circle {
	-webkit-animation-delay: 3902ms;
					animation-delay: 3902ms;
}
.circle-container:nth-child(145) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-145;
					animation-name: move-frames-145;
	-webkit-animation-duration: 36485ms;
					animation-duration: 36485ms;
	-webkit-animation-delay: 35304ms;
					animation-delay: 35304ms;
}
@-webkit-keyframes move-frames-145 {
	from {
		transform: translate3d(75vw, 101vh, 0);
	}
	to {
		transform: translate3d(10vw, -120vh, 0);
	}
}
@keyframes move-frames-145 {
	from {
		transform: translate3d(75vw, 101vh, 0);
	}
	to {
		transform: translate3d(10vw, -120vh, 0);
	}
}
.circle-container:nth-child(145) .circle {
	-webkit-animation-delay: 2288ms;
					animation-delay: 2288ms;
}
.circle-container:nth-child(146) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-146;
					animation-name: move-frames-146;
	-webkit-animation-duration: 28644ms;
					animation-duration: 28644ms;
	-webkit-animation-delay: 36040ms;
					animation-delay: 36040ms;
}
@-webkit-keyframes move-frames-146 {
	from {
		transform: translate3d(40vw, 103vh, 0);
	}
	to {
		transform: translate3d(76vw, -128vh, 0);
	}
}
@keyframes move-frames-146 {
	from {
		transform: translate3d(40vw, 103vh, 0);
	}
	to {
		transform: translate3d(76vw, -128vh, 0);
	}
}
.circle-container:nth-child(146) .circle {
	-webkit-animation-delay: 3298ms;
					animation-delay: 3298ms;
}
.circle-container:nth-child(147) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-147;
					animation-name: move-frames-147;
	-webkit-animation-duration: 35473ms;
					animation-duration: 35473ms;
	-webkit-animation-delay: 26799ms;
					animation-delay: 26799ms;
}
@-webkit-keyframes move-frames-147 {
	from {
		transform: translate3d(55vw, 103vh, 0);
	}
	to {
		transform: translate3d(64vw, -129vh, 0);
	}
}
@keyframes move-frames-147 {
	from {
		transform: translate3d(55vw, 103vh, 0);
	}
	to {
		transform: translate3d(64vw, -129vh, 0);
	}
}
.circle-container:nth-child(147) .circle {
	-webkit-animation-delay: 3702ms;
					animation-delay: 3702ms;
}
.circle-container:nth-child(148) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-148;
					animation-name: move-frames-148;
	-webkit-animation-duration: 33924ms;
					animation-duration: 33924ms;
	-webkit-animation-delay: 5885ms;
					animation-delay: 5885ms;
}
@-webkit-keyframes move-frames-148 {
	from {
		transform: translate3d(87vw, 103vh, 0);
	}
	to {
		transform: translate3d(44vw, -112vh, 0);
	}
}
@keyframes move-frames-148 {
	from {
		transform: translate3d(87vw, 103vh, 0);
	}
	to {
		transform: translate3d(44vw, -112vh, 0);
	}
}
.circle-container:nth-child(148) .circle {
	-webkit-animation-delay: 585ms;
					animation-delay: 585ms;
}
.circle-container:nth-child(149) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-149;
					animation-name: move-frames-149;
	-webkit-animation-duration: 36642ms;
					animation-duration: 36642ms;
	-webkit-animation-delay: 30199ms;
					animation-delay: 30199ms;
}
@-webkit-keyframes move-frames-149 {
	from {
		transform: translate3d(4vw, 109vh, 0);
	}
	to {
		transform: translate3d(1vw, -126vh, 0);
	}
}
@keyframes move-frames-149 {
	from {
		transform: translate3d(4vw, 109vh, 0);
	}
	to {
		transform: translate3d(1vw, -126vh, 0);
	}
}
.circle-container:nth-child(149) .circle {
	-webkit-animation-delay: 39ms;
					animation-delay: 39ms;
}
.circle-container:nth-child(150) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-150;
					animation-name: move-frames-150;
	-webkit-animation-duration: 30566ms;
					animation-duration: 30566ms;
	-webkit-animation-delay: 35625ms;
					animation-delay: 35625ms;
}
@-webkit-keyframes move-frames-150 {
	from {
		transform: translate3d(16vw, 109vh, 0);
	}
	to {
		transform: translate3d(3vw, -124vh, 0);
	}
}
@keyframes move-frames-150 {
	from {
		transform: translate3d(16vw, 109vh, 0);
	}
	to {
		transform: translate3d(3vw, -124vh, 0);
	}
}
.circle-container:nth-child(150) .circle {
	-webkit-animation-delay: 1509ms;
					animation-delay: 1509ms;
}
.circle-container:nth-child(151) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-151;
					animation-name: move-frames-151;
	-webkit-animation-duration: 32491ms;
					animation-duration: 32491ms;
	-webkit-animation-delay: 6012ms;
					animation-delay: 6012ms;
}
@-webkit-keyframes move-frames-151 {
	from {
		transform: translate3d(4vw, 101vh, 0);
	}
	to {
		transform: translate3d(26vw, -123vh, 0);
	}
}
@keyframes move-frames-151 {
	from {
		transform: translate3d(4vw, 101vh, 0);
	}
	to {
		transform: translate3d(26vw, -123vh, 0);
	}
}
.circle-container:nth-child(151) .circle {
	-webkit-animation-delay: 330ms;
					animation-delay: 330ms;
}
.circle-container:nth-child(152) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-152;
					animation-name: move-frames-152;
	-webkit-animation-duration: 30827ms;
					animation-duration: 30827ms;
	-webkit-animation-delay: 3389ms;
					animation-delay: 3389ms;
}
@-webkit-keyframes move-frames-152 {
	from {
		transform: translate3d(11vw, 108vh, 0);
	}
	to {
		transform: translate3d(46vw, -138vh, 0);
	}
}
@keyframes move-frames-152 {
	from {
		transform: translate3d(11vw, 108vh, 0);
	}
	to {
		transform: translate3d(46vw, -138vh, 0);
	}
}
.circle-container:nth-child(152) .circle {
	-webkit-animation-delay: 3309ms;
					animation-delay: 3309ms;
}
.circle-container:nth-child(153) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-153;
					animation-name: move-frames-153;
	-webkit-animation-duration: 34722ms;
					animation-duration: 34722ms;
	-webkit-animation-delay: 35875ms;
					animation-delay: 35875ms;
}
@-webkit-keyframes move-frames-153 {
	from {
		transform: translate3d(77vw, 106vh, 0);
	}
	to {
		transform: translate3d(97vw, -122vh, 0);
	}
}
@keyframes move-frames-153 {
	from {
		transform: translate3d(77vw, 106vh, 0);
	}
	to {
		transform: translate3d(97vw, -122vh, 0);
	}
}
.circle-container:nth-child(153) .circle {
	-webkit-animation-delay: 1298ms;
					animation-delay: 1298ms;
}
.circle-container:nth-child(154) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-154;
					animation-name: move-frames-154;
	-webkit-animation-duration: 29524ms;
					animation-duration: 29524ms;
	-webkit-animation-delay: 17153ms;
					animation-delay: 17153ms;
}
@-webkit-keyframes move-frames-154 {
	from {
		transform: translate3d(6vw, 107vh, 0);
	}
	to {
		transform: translate3d(22vw, -112vh, 0);
	}
}
@keyframes move-frames-154 {
	from {
		transform: translate3d(6vw, 107vh, 0);
	}
	to {
		transform: translate3d(22vw, -112vh, 0);
	}
}
.circle-container:nth-child(154) .circle {
	-webkit-animation-delay: 2372ms;
					animation-delay: 2372ms;
}
.circle-container:nth-child(155) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-155;
					animation-name: move-frames-155;
	-webkit-animation-duration: 34093ms;
					animation-duration: 34093ms;
	-webkit-animation-delay: 17856ms;
					animation-delay: 17856ms;
}
@-webkit-keyframes move-frames-155 {
	from {
		transform: translate3d(61vw, 102vh, 0);
	}
	to {
		transform: translate3d(72vw, -130vh, 0);
	}
}
@keyframes move-frames-155 {
	from {
		transform: translate3d(61vw, 102vh, 0);
	}
	to {
		transform: translate3d(72vw, -130vh, 0);
	}
}
.circle-container:nth-child(155) .circle {
	-webkit-animation-delay: 2366ms;
					animation-delay: 2366ms;
}
.circle-container:nth-child(156) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-156;
					animation-name: move-frames-156;
	-webkit-animation-duration: 31433ms;
					animation-duration: 31433ms;
	-webkit-animation-delay: 17495ms;
					animation-delay: 17495ms;
}
@-webkit-keyframes move-frames-156 {
	from {
		transform: translate3d(100vw, 101vh, 0);
	}
	to {
		transform: translate3d(56vw, -109vh, 0);
	}
}
@keyframes move-frames-156 {
	from {
		transform: translate3d(100vw, 101vh, 0);
	}
	to {
		transform: translate3d(56vw, -109vh, 0);
	}
}
.circle-container:nth-child(156) .circle {
	-webkit-animation-delay: 747ms;
					animation-delay: 747ms;
}
.circle-container:nth-child(157) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-157;
					animation-name: move-frames-157;
	-webkit-animation-duration: 36326ms;
					animation-duration: 36326ms;
	-webkit-animation-delay: 10167ms;
					animation-delay: 10167ms;
}
@-webkit-keyframes move-frames-157 {
	from {
		transform: translate3d(57vw, 101vh, 0);
	}
	to {
		transform: translate3d(72vw, -103vh, 0);
	}
}
@keyframes move-frames-157 {
	from {
		transform: translate3d(57vw, 101vh, 0);
	}
	to {
		transform: translate3d(72vw, -103vh, 0);
	}
}
.circle-container:nth-child(157) .circle {
	-webkit-animation-delay: 1849ms;
					animation-delay: 1849ms;
}
.circle-container:nth-child(158) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-158;
					animation-name: move-frames-158;
	-webkit-animation-duration: 36815ms;
					animation-duration: 36815ms;
	-webkit-animation-delay: 18033ms;
					animation-delay: 18033ms;
}
@-webkit-keyframes move-frames-158 {
	from {
		transform: translate3d(10vw, 109vh, 0);
	}
	to {
		transform: translate3d(6vw, -110vh, 0);
	}
}
@keyframes move-frames-158 {
	from {
		transform: translate3d(10vw, 109vh, 0);
	}
	to {
		transform: translate3d(6vw, -110vh, 0);
	}
}
.circle-container:nth-child(158) .circle {
	-webkit-animation-delay: 3456ms;
					animation-delay: 3456ms;
}
.circle-container:nth-child(159) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-159;
					animation-name: move-frames-159;
	-webkit-animation-duration: 31361ms;
					animation-duration: 31361ms;
	-webkit-animation-delay: 20036ms;
					animation-delay: 20036ms;
}
@-webkit-keyframes move-frames-159 {
	from {
		transform: translate3d(77vw, 103vh, 0);
	}
	to {
		transform: translate3d(61vw, -114vh, 0);
	}
}
@keyframes move-frames-159 {
	from {
		transform: translate3d(77vw, 103vh, 0);
	}
	to {
		transform: translate3d(61vw, -114vh, 0);
	}
}
.circle-container:nth-child(159) .circle {
	-webkit-animation-delay: 1317ms;
					animation-delay: 1317ms;
}
.circle-container:nth-child(160) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-160;
					animation-name: move-frames-160;
	-webkit-animation-duration: 35735ms;
					animation-duration: 35735ms;
	-webkit-animation-delay: 20487ms;
					animation-delay: 20487ms;
}
@-webkit-keyframes move-frames-160 {
	from {
		transform: translate3d(51vw, 110vh, 0);
	}
	to {
		transform: translate3d(82vw, -124vh, 0);
	}
}
@keyframes move-frames-160 {
	from {
		transform: translate3d(51vw, 110vh, 0);
	}
	to {
		transform: translate3d(82vw, -124vh, 0);
	}
}
.circle-container:nth-child(160) .circle {
	-webkit-animation-delay: 3966ms;
					animation-delay: 3966ms;
}
.circle-container:nth-child(161) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-161;
					animation-name: move-frames-161;
	-webkit-animation-duration: 34038ms;
					animation-duration: 34038ms;
	-webkit-animation-delay: 32561ms;
					animation-delay: 32561ms;
}
@-webkit-keyframes move-frames-161 {
	from {
		transform: translate3d(17vw, 107vh, 0);
	}
	to {
		transform: translate3d(58vw, -136vh, 0);
	}
}
@keyframes move-frames-161 {
	from {
		transform: translate3d(17vw, 107vh, 0);
	}
	to {
		transform: translate3d(58vw, -136vh, 0);
	}
}
.circle-container:nth-child(161) .circle {
	-webkit-animation-delay: 220ms;
					animation-delay: 220ms;
}
.circle-container:nth-child(162) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-162;
					animation-name: move-frames-162;
	-webkit-animation-duration: 33127ms;
					animation-duration: 33127ms;
	-webkit-animation-delay: 11212ms;
					animation-delay: 11212ms;
}
@-webkit-keyframes move-frames-162 {
	from {
		transform: translate3d(1vw, 109vh, 0);
	}
	to {
		transform: translate3d(29vw, -139vh, 0);
	}
}
@keyframes move-frames-162 {
	from {
		transform: translate3d(1vw, 109vh, 0);
	}
	to {
		transform: translate3d(29vw, -139vh, 0);
	}
}
.circle-container:nth-child(162) .circle {
	-webkit-animation-delay: 176ms;
					animation-delay: 176ms;
}
.circle-container:nth-child(163) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-163;
					animation-name: move-frames-163;
	-webkit-animation-duration: 36056ms;
					animation-duration: 36056ms;
	-webkit-animation-delay: 23682ms;
					animation-delay: 23682ms;
}
@-webkit-keyframes move-frames-163 {
	from {
		transform: translate3d(34vw, 105vh, 0);
	}
	to {
		transform: translate3d(76vw, -132vh, 0);
	}
}
@keyframes move-frames-163 {
	from {
		transform: translate3d(34vw, 105vh, 0);
	}
	to {
		transform: translate3d(76vw, -132vh, 0);
	}
}
.circle-container:nth-child(163) .circle {
	-webkit-animation-delay: 2778ms;
					animation-delay: 2778ms;
}
.circle-container:nth-child(164) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-164;
					animation-name: move-frames-164;
	-webkit-animation-duration: 33972ms;
					animation-duration: 33972ms;
	-webkit-animation-delay: 14308ms;
					animation-delay: 14308ms;
}
@-webkit-keyframes move-frames-164 {
	from {
		transform: translate3d(72vw, 108vh, 0);
	}
	to {
		transform: translate3d(60vw, -134vh, 0);
	}
}
@keyframes move-frames-164 {
	from {
		transform: translate3d(72vw, 108vh, 0);
	}
	to {
		transform: translate3d(60vw, -134vh, 0);
	}
}
.circle-container:nth-child(164) .circle {
	-webkit-animation-delay: 2052ms;
					animation-delay: 2052ms;
}
.circle-container:nth-child(165) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-165;
					animation-name: move-frames-165;
	-webkit-animation-duration: 31872ms;
					animation-duration: 31872ms;
	-webkit-animation-delay: 35875ms;
					animation-delay: 35875ms;
}
@-webkit-keyframes move-frames-165 {
	from {
		transform: translate3d(14vw, 106vh, 0);
	}
	to {
		transform: translate3d(61vw, -135vh, 0);
	}
}
@keyframes move-frames-165 {
	from {
		transform: translate3d(14vw, 106vh, 0);
	}
	to {
		transform: translate3d(61vw, -135vh, 0);
	}
}
.circle-container:nth-child(165) .circle {
	-webkit-animation-delay: 828ms;
					animation-delay: 828ms;
}
.circle-container:nth-child(166) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-166;
					animation-name: move-frames-166;
	-webkit-animation-duration: 31330ms;
					animation-duration: 31330ms;
	-webkit-animation-delay: 34840ms;
					animation-delay: 34840ms;
}
@-webkit-keyframes move-frames-166 {
	from {
		transform: translate3d(1vw, 108vh, 0);
	}
	to {
		transform: translate3d(76vw, -119vh, 0);
	}
}
@keyframes move-frames-166 {
	from {
		transform: translate3d(1vw, 108vh, 0);
	}
	to {
		transform: translate3d(76vw, -119vh, 0);
	}
}
.circle-container:nth-child(166) .circle {
	-webkit-animation-delay: 778ms;
					animation-delay: 778ms;
}
.circle-container:nth-child(167) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-167;
					animation-name: move-frames-167;
	-webkit-animation-duration: 35566ms;
					animation-duration: 35566ms;
	-webkit-animation-delay: 6424ms;
					animation-delay: 6424ms;
}
@-webkit-keyframes move-frames-167 {
	from {
		transform: translate3d(61vw, 107vh, 0);
	}
	to {
		transform: translate3d(39vw, -127vh, 0);
	}
}
@keyframes move-frames-167 {
	from {
		transform: translate3d(61vw, 107vh, 0);
	}
	to {
		transform: translate3d(39vw, -127vh, 0);
	}
}
.circle-container:nth-child(167) .circle {
	-webkit-animation-delay: 725ms;
					animation-delay: 725ms;
}
.circle-container:nth-child(168) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-168;
					animation-name: move-frames-168;
	-webkit-animation-duration: 29473ms;
					animation-duration: 29473ms;
	-webkit-animation-delay: 36631ms;
					animation-delay: 36631ms;
}
@-webkit-keyframes move-frames-168 {
	from {
		transform: translate3d(16vw, 107vh, 0);
	}
	to {
		transform: translate3d(8vw, -121vh, 0);
	}
}
@keyframes move-frames-168 {
	from {
		transform: translate3d(16vw, 107vh, 0);
	}
	to {
		transform: translate3d(8vw, -121vh, 0);
	}
}
.circle-container:nth-child(168) .circle {
	-webkit-animation-delay: 776ms;
					animation-delay: 776ms;
}
.circle-container:nth-child(169) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-169;
					animation-name: move-frames-169;
	-webkit-animation-duration: 34519ms;
					animation-duration: 34519ms;
	-webkit-animation-delay: 26666ms;
					animation-delay: 26666ms;
}
@-webkit-keyframes move-frames-169 {
	from {
		transform: translate3d(11vw, 107vh, 0);
	}
	to {
		transform: translate3d(27vw, -129vh, 0);
	}
}
@keyframes move-frames-169 {
	from {
		transform: translate3d(11vw, 107vh, 0);
	}
	to {
		transform: translate3d(27vw, -129vh, 0);
	}
}
.circle-container:nth-child(169) .circle {
	-webkit-animation-delay: 2148ms;
					animation-delay: 2148ms;
}
.circle-container:nth-child(170) {
	width: 3px;
	height: 3px;
	-webkit-animation-name: move-frames-170;
					animation-name: move-frames-170;
	-webkit-animation-duration: 29952ms;
					animation-duration: 29952ms;
	-webkit-animation-delay: 8712ms;
					animation-delay: 8712ms;
}
@-webkit-keyframes move-frames-170 {
	from {
		transform: translate3d(34vw, 103vh, 0);
	}
	to {
		transform: translate3d(10vw, -105vh, 0);
	}
}
@keyframes move-frames-170 {
	from {
		transform: translate3d(34vw, 103vh, 0);
	}
	to {
		transform: translate3d(10vw, -105vh, 0);
	}
}
.circle-container:nth-child(170) .circle {
	-webkit-animation-delay: 1399ms;
					animation-delay: 1399ms;
}
.circle-container:nth-child(171) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-171;
					animation-name: move-frames-171;
	-webkit-animation-duration: 34975ms;
					animation-duration: 34975ms;
	-webkit-animation-delay: 30590ms;
					animation-delay: 30590ms;
}
@-webkit-keyframes move-frames-171 {
	from {
		transform: translate3d(66vw, 107vh, 0);
	}
	to {
		transform: translate3d(71vw, -112vh, 0);
	}
}
@keyframes move-frames-171 {
	from {
		transform: translate3d(66vw, 107vh, 0);
	}
	to {
		transform: translate3d(71vw, -112vh, 0);
	}
}
.circle-container:nth-child(171) .circle {
	-webkit-animation-delay: 260ms;
					animation-delay: 260ms;
}
.circle-container:nth-child(172) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-172;
					animation-name: move-frames-172;
	-webkit-animation-duration: 32498ms;
					animation-duration: 32498ms;
	-webkit-animation-delay: 3931ms;
					animation-delay: 3931ms;
}
@-webkit-keyframes move-frames-172 {
	from {
		transform: translate3d(59vw, 105vh, 0);
	}
	to {
		transform: translate3d(69vw, -123vh, 0);
	}
}
@keyframes move-frames-172 {
	from {
		transform: translate3d(59vw, 105vh, 0);
	}
	to {
		transform: translate3d(69vw, -123vh, 0);
	}
}
.circle-container:nth-child(172) .circle {
	-webkit-animation-delay: 119ms;
					animation-delay: 119ms;
}
.circle-container:nth-child(173) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-173;
					animation-name: move-frames-173;
	-webkit-animation-duration: 29908ms;
					animation-duration: 29908ms;
	-webkit-animation-delay: 9548ms;
					animation-delay: 9548ms;
}
@-webkit-keyframes move-frames-173 {
	from {
		transform: translate3d(11vw, 110vh, 0);
	}
	to {
		transform: translate3d(79vw, -118vh, 0);
	}
}
@keyframes move-frames-173 {
	from {
		transform: translate3d(11vw, 110vh, 0);
	}
	to {
		transform: translate3d(79vw, -118vh, 0);
	}
}
.circle-container:nth-child(173) .circle {
	-webkit-animation-delay: 3106ms;
					animation-delay: 3106ms;
}
.circle-container:nth-child(174) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-174;
					animation-name: move-frames-174;
	-webkit-animation-duration: 34540ms;
					animation-duration: 34540ms;
	-webkit-animation-delay: 14267ms;
					animation-delay: 14267ms;
}
@-webkit-keyframes move-frames-174 {
	from {
		transform: translate3d(70vw, 105vh, 0);
	}
	to {
		transform: translate3d(27vw, -116vh, 0);
	}
}
@keyframes move-frames-174 {
	from {
		transform: translate3d(70vw, 105vh, 0);
	}
	to {
		transform: translate3d(27vw, -116vh, 0);
	}
}
.circle-container:nth-child(174) .circle {
	-webkit-animation-delay: 2087ms;
					animation-delay: 2087ms;
}
.circle-container:nth-child(175) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-175;
					animation-name: move-frames-175;
	-webkit-animation-duration: 32315ms;
					animation-duration: 32315ms;
	-webkit-animation-delay: 12348ms;
					animation-delay: 12348ms;
}
@-webkit-keyframes move-frames-175 {
	from {
		transform: translate3d(65vw, 105vh, 0);
	}
	to {
		transform: translate3d(3vw, -117vh, 0);
	}
}
@keyframes move-frames-175 {
	from {
		transform: translate3d(65vw, 105vh, 0);
	}
	to {
		transform: translate3d(3vw, -117vh, 0);
	}
}
.circle-container:nth-child(175) .circle {
	-webkit-animation-delay: 554ms;
					animation-delay: 554ms;
}
.circle-container:nth-child(176) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-176;
					animation-name: move-frames-176;
	-webkit-animation-duration: 35149ms;
					animation-duration: 35149ms;
	-webkit-animation-delay: 26243ms;
					animation-delay: 26243ms;
}
@-webkit-keyframes move-frames-176 {
	from {
		transform: translate3d(82vw, 102vh, 0);
	}
	to {
		transform: translate3d(96vw, -126vh, 0);
	}
}
@keyframes move-frames-176 {
	from {
		transform: translate3d(82vw, 102vh, 0);
	}
	to {
		transform: translate3d(96vw, -126vh, 0);
	}
}
.circle-container:nth-child(176) .circle {
	-webkit-animation-delay: 1693ms;
					animation-delay: 1693ms;
}
.circle-container:nth-child(177) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-177;
					animation-name: move-frames-177;
	-webkit-animation-duration: 33118ms;
					animation-duration: 33118ms;
	-webkit-animation-delay: 17961ms;
					animation-delay: 17961ms;
}
@-webkit-keyframes move-frames-177 {
	from {
		transform: translate3d(85vw, 109vh, 0);
	}
	to {
		transform: translate3d(42vw, -115vh, 0);
	}
}
@keyframes move-frames-177 {
	from {
		transform: translate3d(85vw, 109vh, 0);
	}
	to {
		transform: translate3d(42vw, -115vh, 0);
	}
}
.circle-container:nth-child(177) .circle {
	-webkit-animation-delay: 3002ms;
					animation-delay: 3002ms;
}
.circle-container:nth-child(178) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-178;
					animation-name: move-frames-178;
	-webkit-animation-duration: 36296ms;
					animation-duration: 36296ms;
	-webkit-animation-delay: 18952ms;
					animation-delay: 18952ms;
}
@-webkit-keyframes move-frames-178 {
	from {
		transform: translate3d(55vw, 106vh, 0);
	}
	to {
		transform: translate3d(91vw, -133vh, 0);
	}
}
@keyframes move-frames-178 {
	from {
		transform: translate3d(55vw, 106vh, 0);
	}
	to {
		transform: translate3d(91vw, -133vh, 0);
	}
}
.circle-container:nth-child(178) .circle {
	-webkit-animation-delay: 1665ms;
					animation-delay: 1665ms;
}
.circle-container:nth-child(179) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-179;
					animation-name: move-frames-179;
	-webkit-animation-duration: 33721ms;
					animation-duration: 33721ms;
	-webkit-animation-delay: 5254ms;
					animation-delay: 5254ms;
}
@-webkit-keyframes move-frames-179 {
	from {
		transform: translate3d(45vw, 101vh, 0);
	}
	to {
		transform: translate3d(17vw, -119vh, 0);
	}
}
@keyframes move-frames-179 {
	from {
		transform: translate3d(45vw, 101vh, 0);
	}
	to {
		transform: translate3d(17vw, -119vh, 0);
	}
}
.circle-container:nth-child(179) .circle {
	-webkit-animation-delay: 2263ms;
					animation-delay: 2263ms;
}
.circle-container:nth-child(180) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-180;
					animation-name: move-frames-180;
	-webkit-animation-duration: 30014ms;
					animation-duration: 30014ms;
	-webkit-animation-delay: 12585ms;
					animation-delay: 12585ms;
}
@-webkit-keyframes move-frames-180 {
	from {
		transform: translate3d(49vw, 104vh, 0);
	}
	to {
		transform: translate3d(31vw, -128vh, 0);
	}
}
@keyframes move-frames-180 {
	from {
		transform: translate3d(49vw, 104vh, 0);
	}
	to {
		transform: translate3d(31vw, -128vh, 0);
	}
}
.circle-container:nth-child(180) .circle {
	-webkit-animation-delay: 678ms;
					animation-delay: 678ms;
}
.circle-container:nth-child(181) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-181;
					animation-name: move-frames-181;
	-webkit-animation-duration: 29879ms;
					animation-duration: 29879ms;
	-webkit-animation-delay: 27942ms;
					animation-delay: 27942ms;
}
@-webkit-keyframes move-frames-181 {
	from {
		transform: translate3d(20vw, 106vh, 0);
	}
	to {
		transform: translate3d(5vw, -125vh, 0);
	}
}
@keyframes move-frames-181 {
	from {
		transform: translate3d(20vw, 106vh, 0);
	}
	to {
		transform: translate3d(5vw, -125vh, 0);
	}
}
.circle-container:nth-child(181) .circle {
	-webkit-animation-delay: 1764ms;
					animation-delay: 1764ms;
}
.circle-container:nth-child(182) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-182;
					animation-name: move-frames-182;
	-webkit-animation-duration: 33085ms;
					animation-duration: 33085ms;
	-webkit-animation-delay: 17611ms;
					animation-delay: 17611ms;
}
@-webkit-keyframes move-frames-182 {
	from {
		transform: translate3d(27vw, 102vh, 0);
	}
	to {
		transform: translate3d(32vw, -116vh, 0);
	}
}
@keyframes move-frames-182 {
	from {
		transform: translate3d(27vw, 102vh, 0);
	}
	to {
		transform: translate3d(32vw, -116vh, 0);
	}
}
.circle-container:nth-child(182) .circle {
	-webkit-animation-delay: 1582ms;
					animation-delay: 1582ms;
}
.circle-container:nth-child(183) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-183;
					animation-name: move-frames-183;
	-webkit-animation-duration: 29841ms;
					animation-duration: 29841ms;
	-webkit-animation-delay: 18258ms;
					animation-delay: 18258ms;
}
@-webkit-keyframes move-frames-183 {
	from {
		transform: translate3d(48vw, 104vh, 0);
	}
	to {
		transform: translate3d(52vw, -106vh, 0);
	}
}
@keyframes move-frames-183 {
	from {
		transform: translate3d(48vw, 104vh, 0);
	}
	to {
		transform: translate3d(52vw, -106vh, 0);
	}
}
.circle-container:nth-child(183) .circle {
	-webkit-animation-delay: 1907ms;
					animation-delay: 1907ms;
}
.circle-container:nth-child(184) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-184;
					animation-name: move-frames-184;
	-webkit-animation-duration: 34740ms;
					animation-duration: 34740ms;
	-webkit-animation-delay: 29386ms;
					animation-delay: 29386ms;
}
@-webkit-keyframes move-frames-184 {
	from {
		transform: translate3d(82vw, 109vh, 0);
	}
	to {
		transform: translate3d(48vw, -113vh, 0);
	}
}
@keyframes move-frames-184 {
	from {
		transform: translate3d(82vw, 109vh, 0);
	}
	to {
		transform: translate3d(48vw, -113vh, 0);
	}
}
.circle-container:nth-child(184) .circle {
	-webkit-animation-delay: 280ms;
					animation-delay: 280ms;
}
.circle-container:nth-child(185) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-185;
					animation-name: move-frames-185;
	-webkit-animation-duration: 31227ms;
					animation-duration: 31227ms;
	-webkit-animation-delay: 21860ms;
					animation-delay: 21860ms;
}
@-webkit-keyframes move-frames-185 {
	from {
		transform: translate3d(26vw, 105vh, 0);
	}
	to {
		transform: translate3d(58vw, -125vh, 0);
	}
}
@keyframes move-frames-185 {
	from {
		transform: translate3d(26vw, 105vh, 0);
	}
	to {
		transform: translate3d(58vw, -125vh, 0);
	}
}
.circle-container:nth-child(185) .circle {
	-webkit-animation-delay: 2103ms;
					animation-delay: 2103ms;
}
.circle-container:nth-child(186) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-186;
					animation-name: move-frames-186;
	-webkit-animation-duration: 28258ms;
					animation-duration: 28258ms;
	-webkit-animation-delay: 2458ms;
					animation-delay: 2458ms;
}
@-webkit-keyframes move-frames-186 {
	from {
		transform: translate3d(7vw, 108vh, 0);
	}
	to {
		transform: translate3d(89vw, -128vh, 0);
	}
}
@keyframes move-frames-186 {
	from {
		transform: translate3d(7vw, 108vh, 0);
	}
	to {
		transform: translate3d(89vw, -128vh, 0);
	}
}
.circle-container:nth-child(186) .circle {
	-webkit-animation-delay: 1178ms;
					animation-delay: 1178ms;
}
.circle-container:nth-child(187) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-187;
					animation-name: move-frames-187;
	-webkit-animation-duration: 29748ms;
					animation-duration: 29748ms;
	-webkit-animation-delay: 7046ms;
					animation-delay: 7046ms;
}
@-webkit-keyframes move-frames-187 {
	from {
		transform: translate3d(41vw, 108vh, 0);
	}
	to {
		transform: translate3d(49vw, -138vh, 0);
	}
}
@keyframes move-frames-187 {
	from {
		transform: translate3d(41vw, 108vh, 0);
	}
	to {
		transform: translate3d(49vw, -138vh, 0);
	}
}
.circle-container:nth-child(187) .circle {
	-webkit-animation-delay: 181ms;
					animation-delay: 181ms;
}
.circle-container:nth-child(188) {
	width: 5px;
	height: 5px;
	-webkit-animation-name: move-frames-188;
					animation-name: move-frames-188;
	-webkit-animation-duration: 32793ms;
					animation-duration: 32793ms;
	-webkit-animation-delay: 8087ms;
					animation-delay: 8087ms;
}
@-webkit-keyframes move-frames-188 {
	from {
		transform: translate3d(28vw, 104vh, 0);
	}
	to {
		transform: translate3d(41vw, -117vh, 0);
	}
}
@keyframes move-frames-188 {
	from {
		transform: translate3d(28vw, 104vh, 0);
	}
	to {
		transform: translate3d(41vw, -117vh, 0);
	}
}
.circle-container:nth-child(188) .circle {
	-webkit-animation-delay: 3604ms;
					animation-delay: 3604ms;
}
.circle-container:nth-child(189) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-189;
					animation-name: move-frames-189;
	-webkit-animation-duration: 35898ms;
					animation-duration: 35898ms;
	-webkit-animation-delay: 36325ms;
					animation-delay: 36325ms;
}
@-webkit-keyframes move-frames-189 {
	from {
		transform: translate3d(30vw, 109vh, 0);
	}
	to {
		transform: translate3d(5vw, -112vh, 0);
	}
}
@keyframes move-frames-189 {
	from {
		transform: translate3d(30vw, 109vh, 0);
	}
	to {
		transform: translate3d(5vw, -112vh, 0);
	}
}
.circle-container:nth-child(189) .circle {
	-webkit-animation-delay: 3725ms;
					animation-delay: 3725ms;
}
.circle-container:nth-child(190) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-190;
					animation-name: move-frames-190;
	-webkit-animation-duration: 34222ms;
					animation-duration: 34222ms;
	-webkit-animation-delay: 24657ms;
					animation-delay: 24657ms;
}
@-webkit-keyframes move-frames-190 {
	from {
		transform: translate3d(73vw, 109vh, 0);
	}
	to {
		transform: translate3d(14vw, -137vh, 0);
	}
}
@keyframes move-frames-190 {
	from {
		transform: translate3d(73vw, 109vh, 0);
	}
	to {
		transform: translate3d(14vw, -137vh, 0);
	}
}
.circle-container:nth-child(190) .circle {
	-webkit-animation-delay: 2707ms;
					animation-delay: 2707ms;
}
.circle-container:nth-child(191) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-191;
					animation-name: move-frames-191;
	-webkit-animation-duration: 33335ms;
					animation-duration: 33335ms;
	-webkit-animation-delay: 1350ms;
					animation-delay: 1350ms;
}
@-webkit-keyframes move-frames-191 {
	from {
		transform: translate3d(59vw, 106vh, 0);
	}
	to {
		transform: translate3d(48vw, -134vh, 0);
	}
}
@keyframes move-frames-191 {
	from {
		transform: translate3d(59vw, 106vh, 0);
	}
	to {
		transform: translate3d(48vw, -134vh, 0);
	}
}
.circle-container:nth-child(191) .circle {
	-webkit-animation-delay: 722ms;
					animation-delay: 722ms;
}
.circle-container:nth-child(192) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-192;
					animation-name: move-frames-192;
	-webkit-animation-duration: 31600ms;
					animation-duration: 31600ms;
	-webkit-animation-delay: 6277ms;
					animation-delay: 6277ms;
}
@-webkit-keyframes move-frames-192 {
	from {
		transform: translate3d(59vw, 105vh, 0);
	}
	to {
		transform: translate3d(62vw, -107vh, 0);
	}
}
@keyframes move-frames-192 {
	from {
		transform: translate3d(59vw, 105vh, 0);
	}
	to {
		transform: translate3d(62vw, -107vh, 0);
	}
}
.circle-container:nth-child(192) .circle {
	-webkit-animation-delay: 984ms;
					animation-delay: 984ms;
}
.circle-container:nth-child(193) {
	width: 8px;
	height: 8px;
	-webkit-animation-name: move-frames-193;
					animation-name: move-frames-193;
	-webkit-animation-duration: 30254ms;
					animation-duration: 30254ms;
	-webkit-animation-delay: 19083ms;
					animation-delay: 19083ms;
}
@-webkit-keyframes move-frames-193 {
	from {
		transform: translate3d(57vw, 104vh, 0);
	}
	to {
		transform: translate3d(27vw, -107vh, 0);
	}
}
@keyframes move-frames-193 {
	from {
		transform: translate3d(57vw, 104vh, 0);
	}
	to {
		transform: translate3d(27vw, -107vh, 0);
	}
}
.circle-container:nth-child(193) .circle {
	-webkit-animation-delay: 1160ms;
					animation-delay: 1160ms;
}
.circle-container:nth-child(194) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-194;
					animation-name: move-frames-194;
	-webkit-animation-duration: 29106ms;
					animation-duration: 29106ms;
	-webkit-animation-delay: 33580ms;
					animation-delay: 33580ms;
}
@-webkit-keyframes move-frames-194 {
	from {
		transform: translate3d(67vw, 104vh, 0);
	}
	to {
		transform: translate3d(93vw, -121vh, 0);
	}
}
@keyframes move-frames-194 {
	from {
		transform: translate3d(67vw, 104vh, 0);
	}
	to {
		transform: translate3d(93vw, -121vh, 0);
	}
}
.circle-container:nth-child(194) .circle {
	-webkit-animation-delay: 2739ms;
					animation-delay: 2739ms;
}
.circle-container:nth-child(195) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-195;
					animation-name: move-frames-195;
	-webkit-animation-duration: 30920ms;
					animation-duration: 30920ms;
	-webkit-animation-delay: 19047ms;
					animation-delay: 19047ms;
}
@-webkit-keyframes move-frames-195 {
	from {
		transform: translate3d(89vw, 101vh, 0);
	}
	to {
		transform: translate3d(8vw, -113vh, 0);
	}
}
@keyframes move-frames-195 {
	from {
		transform: translate3d(89vw, 101vh, 0);
	}
	to {
		transform: translate3d(8vw, -113vh, 0);
	}
}
.circle-container:nth-child(195) .circle {
	-webkit-animation-delay: 2001ms;
					animation-delay: 2001ms;
}
.circle-container:nth-child(196) {
	width: 2px;
	height: 2px;
	-webkit-animation-name: move-frames-196;
					animation-name: move-frames-196;
	-webkit-animation-duration: 35877ms;
					animation-duration: 35877ms;
	-webkit-animation-delay: 7705ms;
					animation-delay: 7705ms;
}
@-webkit-keyframes move-frames-196 {
	from {
		transform: translate3d(17vw, 103vh, 0);
	}
	to {
		transform: translate3d(14vw, -117vh, 0);
	}
}
@keyframes move-frames-196 {
	from {
		transform: translate3d(17vw, 103vh, 0);
	}
	to {
		transform: translate3d(14vw, -117vh, 0);
	}
}
.circle-container:nth-child(196) .circle {
	-webkit-animation-delay: 627ms;
					animation-delay: 627ms;
}
.circle-container:nth-child(197) {
	width: 4px;
	height: 4px;
	-webkit-animation-name: move-frames-197;
					animation-name: move-frames-197;
	-webkit-animation-duration: 33445ms;
					animation-duration: 33445ms;
	-webkit-animation-delay: 21157ms;
					animation-delay: 21157ms;
}
@-webkit-keyframes move-frames-197 {
	from {
		transform: translate3d(16vw, 109vh, 0);
	}
	to {
		transform: translate3d(62vw, -130vh, 0);
	}
}
@keyframes move-frames-197 {
	from {
		transform: translate3d(16vw, 109vh, 0);
	}
	to {
		transform: translate3d(62vw, -130vh, 0);
	}
}
.circle-container:nth-child(197) .circle {
	-webkit-animation-delay: 333ms;
					animation-delay: 333ms;
}
.circle-container:nth-child(198) {
	width: 1px;
	height: 1px;
	-webkit-animation-name: move-frames-198;
					animation-name: move-frames-198;
	-webkit-animation-duration: 36353ms;
					animation-duration: 36353ms;
	-webkit-animation-delay: 8603ms;
					animation-delay: 8603ms;
}
@-webkit-keyframes move-frames-198 {
	from {
		transform: translate3d(52vw, 105vh, 0);
	}
	to {
		transform: translate3d(96vw, -133vh, 0);
	}
}
@keyframes move-frames-198 {
	from {
		transform: translate3d(52vw, 105vh, 0);
	}
	to {
		transform: translate3d(96vw, -133vh, 0);
	}
}
.circle-container:nth-child(198) .circle {
	-webkit-animation-delay: 308ms;
					animation-delay: 308ms;
}
.circle-container:nth-child(199) {
	width: 7px;
	height: 7px;
	-webkit-animation-name: move-frames-199;
					animation-name: move-frames-199;
	-webkit-animation-duration: 31875ms;
					animation-duration: 31875ms;
	-webkit-animation-delay: 21520ms;
					animation-delay: 21520ms;
}
@-webkit-keyframes move-frames-199 {
	from {
		transform: translate3d(76vw, 103vh, 0);
	}
	to {
		transform: translate3d(64vw, -104vh, 0);
	}
}
@keyframes move-frames-199 {
	from {
		transform: translate3d(76vw, 103vh, 0);
	}
	to {
		transform: translate3d(64vw, -104vh, 0);
	}
}
.circle-container:nth-child(199) .circle {
	-webkit-animation-delay: 2011ms;
					animation-delay: 2011ms;
}
.circle-container:nth-child(200) {
	width: 6px;
	height: 6px;
	-webkit-animation-name: move-frames-200;
					animation-name: move-frames-200;
	-webkit-animation-duration: 31982ms;
					animation-duration: 31982ms;
	-webkit-animation-delay: 18572ms;
					animation-delay: 18572ms;
}
@-webkit-keyframes move-frames-200 {
	from {
		transform: translate3d(95vw, 101vh, 0);
	}
	to {
		transform: translate3d(57vw, -127vh, 0);
	}
}
@keyframes move-frames-200 {
	from {
		transform: translate3d(95vw, 101vh, 0);
	}
	to {
		transform: translate3d(57vw, -127vh, 0);
	}
}
.circle-container:nth-child(200) .circle {
	-webkit-animation-delay: 23ms;
					animation-delay: 23ms;
}
