
/*Don't apply a stroke on each filled shape*/
svg .fill1,svg .fill2,svg .fill3{
stroke-width:0px;
}
/*Don't apply a fill to strokes*/
svg .st0,svg .st1,svg .st2,svg.st3{
fill:none;
stroke-width:1px;
}
svg .lightSt1{
  fill:none;
    stroke-width:0.5px;
    }
    /*Logo stage enter animation*/

@-webkit-keyframes animStroke{
100%{stroke-dashoffset:0;}
}

@keyframes animStroke{
100%{stroke-dashoffset:0;}
}