.splash {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  background-color: #000;
  -webkit-transition: all 1.5s ease-out;
  transition: all 1.5s ease-out;
}

.splash.out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -102px 0 0 -95px;
  width: 204px;
  height: 190px;
  fill: #fff;
}

.js .splash {
  display: block;
}

/*@media (min-width: 750px) {
  .splash {
    position: absolute;
  }
}*/