.preloader{
  position:fixed;
  top:0;
  left:0;
  right:0;
  bottom:0;
  margin:0;
  width:100vw;
  height:100vh;
  background:#1D1D1D;
  visibility:hidden;
  opacity:0;
  transition:all 0.5s ease;
  z-index:99999998;
}
.preloader_inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  height: 4em;
  line-height: 4em;
  text-align: center;
  font-size: 2em;
  font-family: monospace;
  font-weight: 300;
  color: #333;
}




.page{

}

.show{
  visibility:visible !important;
  opacity:1 !important;
  transition:all 0.5s ease;
}