*{
    padding: 0px;
    margin: 0px;
}


.loader-mask {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 99999;
    overflow: hidden;
}

.loader{
    position: absolute;
     bottom: -100px;
     
     left: 50%;
     transform: translateX(-50%);
     animation:planeani 4s linear ;
}

@keyframes planeani{
    0%{
        bottom: -200px;
    }

    100%{
        bottom: 2000px;
    }
}

.loader img{
    transform: rotate(-45deg);
    height: 170px;
}

@media(max-width:600px)
{
    .loader img {
        transform: rotate(-45deg);
        height: 130px;
    }
}


