.preloaderBg {
	  position: fixed;
    z-index: 10; 
    top: 0;
	  background: #fff;
    width: 100%;
    height: 100%;
    text-align: center;
}

.preloader {
    margin: auto;
  	background: url(logo.png) no-repeat center;
    background-size: 150px;
    width: 300px;
    height: 300px;
}


.preloader2 {
  border: 5px solid #f3f3f3;
  border-top: 5px solid #FD882B;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  animation: spin 1s ease-in-out infinite ;
  position: relative;
  margin: auto;
  top: -246px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}