.zq_preloader {
    background: #fff;
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: block;
}
.zq_preloader_center{
    display: flex;
    align-items: center;
    justify-content: center
}
.zq_preloader_image{
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(svg/preloader.svg);
}
.zq_preloader span{
    font-family: Arial, Helvetica, sans-serif;
    font-size: 24px;
    color: rgb(255, 255, 255,.1);
    display: inline-block;
    transition: all .5s;
    animation: zq_animate 2s infinite;
}
.zq_preloader span:nth-child(1){
    animation-delay: .1s;
}
.zq_preloader span:nth-child(2){
    animation-delay: .2s;
}
.zq_preloader span:nth-child(3){
    animation-delay: .3s;
}
.zq_preloader span:nth-child(4){
    animation-delay: .4s;
}
.zq_preloader span:nth-child(5){
    animation-delay: .5s;
}
.zq_preloader span:nth-child(6){
    animation-delay: .6s;
}
.zq_preloader span:nth-child(7){
    animation-delay: .7s;
}
.zq_preloader span:nth-child(8){
    animation-delay: .8s;
}
@keyframes zq_animate{
    0% {
        color: rgb(255, 255, 255,.1);
        transform: translateY(0);
        margin-left: 0;
    }
    25%{
        color: #4fab45;
        transform: translateY(-15px);
        margin-left: 10px;
        text-shadow: 0 15px 5px rgb(0,0,0,1);
    }
    100%{
        color: rgb(255, 255, 255,.1);
        transform: translateY(0);
    }
}