.logo-1 {
	fill:rgba(255,0,0,0);
	stroke:#000;
	stroke-width:1;
	stroke-dasharray: 1000;
	stroke-dashoffset:1000;
	animation: DASH 1.5s ease-in alternate forwards;
	-webkit-animation:DASH 0.5s ease-in 0s forwards;
	-o-animation:DASH 0.5s ease-in 0s forwards;
	animation:DASH 1.5s ease-in 0s forwards;
}

@keyframes DASH {
	0%{stroke-dashoffset:1000;}
	80% {stroke-dashoffset:500;fill:rgba(0,0,0,0);}
	100%{stroke-dashoffset:0;fill:rgba(0,0,0,1);}
}

@-webkit-keyframes DASH {
	0%{stroke-dashoffset:1000;}
	80% {stroke-dashoffset:500;fill:rgba(0,0,0,0);}
	100%{stroke-dashoffset:0;fill:rgba(0,0,0,1);}
}