.preloader{
    position: fixed;
    width: 100%;
    background: #26272b;
    height: 100%;
    z-index: 99999999999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
    transition: all .5s ease;
}
.preloader .preloader-img{
    width: 10%;
    margin-bottom: 50px;
}
.preloader-img img{
    width: 100%;
}
.welcome-msg{
    color: #fafafa;
    text-transform: uppercase;
    margin-bottom: 50px;
    text-align: center;
}
.preloader.finish{
    opacity: 0;
    pointer-events: none;
}


  
@media only screen and (max-width: 768px) {

    .preloader .preloader-img{
        width: 30%;
    }
}