body {
  margin: 0;
  overflow: hidden;
  font-family: Poppins;
}
html,
body {
  height: 100%;
}
canvas {
  display: block;
}

/*==============================
  PRELOADER START
===============================*/

body.loaded {
  overflow: hidden !important;
  height: 100% !important;
}

.preloader {
  position: fixed;
  z-index: 10;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  z-index: 99999999999999;
}

.preloader.hide {
  animation: fadeUp 0.5s ease forwards;
  animation-delay: 0.65s;
}

.preloader.hide .preloader-text {
  animation: fadeUpText 0.5s ease forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    top: -100vh;
  }
}
@keyframes fadeUpText {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    margin-top: 20px;
  }
}

.preloader svg {
  position: absolute;
  top: 0;
  width: 100vw;
  height: 110vh;
  fill: #d8d8d5;
}

h5.preloader-text {
  position: absolute;
  /* top: 50%; */
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 70px;
  color: #323236;
}

#warning-message {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

@media only screen and (orientation:portrait) and (max-width: 1200px) {
    #canvas3d {
        display: none !important;
    }
}

@media only screen and (orientation:landscape) and (max-width: 1200px) {
    #warning-message {
        display: none;
    }
}

@media (max-width: 1040px) {
  h5.preloader-text {
    font-size: 60px;
  }
}
h5.preloader-text::after {
  content: "Loading";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  opacity: 0.9;
  animation: move 2s infinite alternate;
}
@keyframes move {
  from {
    clip-path: circle(45px at 0% 50%);
  }
  to {
    clip-path: circle(45px at 100% 50%);
  }
}
/*==============================
    PRELOADER END
  ===============================*/
