img {
  margin: 0 auto;
  display: block;
}

/*PRELOADING------------ */
#overlayer {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.9);
}

.preloader {
  text-align: center;
  display: flex !important;
  flex-direction: column;
  flex-wrap: nowrap;
  align-content: center;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.preloader p {
  position: sticky;
  top: 0%;
  margin: auto 0;
  width: 100%;
  height: 90px;
  text-align: center;
  color: #fff;
  font-size: 14px;
  z-index: 1001;
}

.loader {
  display: flex;
  width: 150px;
  height: 150px;
  z-index: 1001;
  background-image: url("../assets/icons/case.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: loader 2s infinite ease;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  align-items: center;
}


.loader-inner {
  vertical-align: middle;
  display: inline-block;
  width: 100px;
  height: 100px;
  background-image: url("../assets/icons/icon.png");
  /* background-color: #fff; */
   background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  animation: loader-inner 2s infinite ease-in;
  /* border-radius: 0%; */
}

@keyframes loader {
  0% {
    transform: rotateX(0deg);
  }

  25% {
    transform: rotateX(90deg);
  }

  50% {
    transform: rotateX(180deg);
  }

  75% {
    transform: rotateX(270deg);
  }

  100% {
    transform: rotateX(360deg);
  }
}


@keyframes loader-inner {

    25% {
      transform: rotateY(0deg);
    }

    50% {
      transform: rotateY(-180deg);
    }

    75% {
      transform: rotateY(180deg);
    }

    100% {
      transform: rotateY(-180deg);
    }
}
