.preloaderBg {
	 position: fixed;
    z-index: 10; 
    top: 0;
	background: #fff;
    width: 100%;
    height: 100%;
    text-align: center;
	z-index: 9999;
}

.preloader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
    margin: auto;
  	background: url(../img/preload.png) no-repeat center;
    background-size: 150px;
    width: 300px;
    height: 300px;
}


.preloader2 {
	position: absolute;
    top: calc(50% - 150px);
    left: calc(50% - 150px);
    transform: translate(-50%, -50%);
    margin: auto;
    background-size: 150px;
    width: 300px;
    height: 300px;	
	border: 5px solid #29c4f3;
	border-top: 5px solid #0b1523;
	border-radius: 50%;	
	animation: spin 1s ease-in-out infinite ;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media only screen and (max-width:778px) {	
	
}