.preloader {
    background: #1a1a1a;
    bottom: 0;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    z-index: 99999;
}
@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}
.queraLoader{
    width: 209px;
    height: 200px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.queraLoader:after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: url(../images/loader.webp) no-repeat center center;
    opacity: .7;
    animation: rotate 15s infinite linear;
}
/* .loaderO {
    position: absolute;
    top: 52%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
    z-index: 1;
    line-height: 18px;
}
.loaderO span {
    font-family: 'Spartan', sans-serif;
    font-size: 14px;
    line-height: 14px;
    font-weight: 700;
    color: aliceblue;
    display: inline-block;
    transition: all 0.5s;
    animation: animate 2s infinite;
}
.loaderO span:nth-child(1) {
    animation-delay: 0.1s;
}
.loaderO span:nth-child(2) {
    animation-delay: 0.2s;
}
.loaderO span:nth-child(3) {
    animation-delay: 0.3s;
}
.loaderO span:nth-child(4) {
    animation-delay: 0.4s;
}
.loaderO span:nth-child(5) {
    animation-delay: 0.5s;
}
.loaderO span:nth-child(6) {
    animation-delay: 0.6s;
}
.loaderO span:nth-child(7) {
    animation-delay: 0.7s;
} */
@keyframes animate {
    0% {
        color: aliceblue;
        transform: translateY(0);
        margin-left: 0;
    }
    25% {
        color: aliceblue;
        transform: translateY(-15px);
        margin-left: 5px;
        text-shadow: 0 15px 5px rgba(0, 0, 0, 1);
    }
    100% {
        color: aliceblue;
        transform: translateY(0);
        margin-left: 0;
    }
}