.vnt-loading{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 999;
    background-color: #fff;
}
.vnt-loading::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/inback.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}
.vnt-loading .img{
	position: absolute;
	max-width: 400px;
	padding: 20px;
	width: 100%;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
    z-index: 1;
    text-align: center;
    mix-blend-mode: darken;

}
body.animsition.show-load .vnt-loading{
	pointer-events: none;
	opacity: 0;
	visibility: hidden;
    -webkit-transition: all 0.45s ease 2.5s;
	-o-transition: all 0.45s ease 2.5s;
	transition: all 0.45s ease 2.5s;
}