@charset "UTF-8";
.loaded #kv .sec-inner {
	-webkit-animation: KV 2s ease-in 0s forwards;
	animation: KV 2s ease-in 0s forwards;
}
.loaded #kv .path {
	-webkit-animation: MIJ 2s ease-in 0s forwards;
	animation: MIJ 2s ease-in 0s forwards;
}
@-webkit-keyframes KV {
80% {
background: rgba(0,0,0,0.6);
}
100% {
background: rgba(0,0,0,0);
}
}
@keyframes KV {
80% {
background: rgba(0,0,0,0.6);
}
100% {
background: rgba(0,0,0,0);
}
}
@-webkit-keyframes MIJ {
0% {
stroke-dashoffset: 1000;
}
80% {
stroke-dashoffset: 0;
stroke: rgba(255,255,255,0.8);
fill: rgba(255,255,255,0);
}
100% {
stroke: rgba(255,255,255,0);
fill: rgba(255,255,255,0.8);
}
}
@keyframes MIJ {
0% {
stroke-dashoffset: 1000;
}
80% {
stroke-dashoffset: 0;
stroke: rgba(255,255,255,0.8);
fill: rgba(255,255,255,0);
}
100% {
stroke: rgba(255,255,255,0);
fill: rgba(255,255,255,0.8);
}
}
