/* ==============================
   Page loader
   ============================== */
   
[Loader]

/* Pace.js */
.pace {
  -webkit-pointer-events: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}
.pace-inactive {
  display: none;
}
.pace-inactive .pace-progress {
  display: none;
}
.pace .pace-progress {
  background: #aaa;
  position: fixed;
  z-index: 2000;
  top: 0;
  right: 100%;
  width: 100%;
  height: 5px;
}
#layer-loade {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #ffffff;
  opacity: 1;
  -webkit-transition: top 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  transition: top 0.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 100000;
}
.pace-done #layer-loade {
  top: -100% !important;
}

.parent {
  background: #000;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.preloader {
  font-family: "Russo One", sans-serif;
  position: absolute;
  width: 700px;
  height: 130px;
}

#text {
  text-transform: uppercase;
  animation: stroke 5s infinite alternate;
  stroke-width: 2;
  stroke: #eaa91e;
  font-size: 140px;
}
@keyframes stroke {
  0% {
    fill: rgba(72, 138, 20, 0);
    stroke: #eaa91e;
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 1;
  }
  70% {
    fill: rgba(72, 138, 20, 0);
    stroke: #eaa91e;
  }
  80% {
    fill: rgba(72, 138, 20, 0);
    stroke: #eaa91e;
    stroke-width: 2;
  }
  100% {
    fill: #f9f9f9;
    stroke: #eaa91e;
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0;
  }
}
