/* loder */

#loader {
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, #000000, #000000);
  position: fixed;
  z-index: 99999999;
  top: 0;
  transition: all ease 0.7s;
  display: flex;
  align-items: center;
  justify-content: center;
}

#loader h2 {
  font-size: 4vw;
  color: transparent;
  background: linear-gradient(to right, #94bb32, #445f00);
  -webkit-background-clip: text;
  position: absolute;
  opacity: 0;
  font-weight: 600;
  animation-name: load;
  animation-duration: 0.6s;
  animation-delay: 0.3s;
  font-family: sans-serif;

  animation-timing-function: linear;

}
#loader h2:nth-child(2) {
  animation-delay: 0.9s;
}

@keyframes load {
  0% {
    opacity: 0;

  }
  20% {
    opacity: 1;
  }
  80% {

    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 600px) {
  #loader h1 {
    font-size: 9vw;
  }
}
/* loder */