.preloader-wrapper{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000;
    z-index: 9999;
	text-transform: uppercase;
	text-align: center;
	animation: text-glow 2s ease-out infinite alternate;
	font-family: 'Ubuntu', sans-serif;
	font-size: 24px;
	letter-spacing: 4px;
	color: #fff;
	font-weight: bold;
	animation: blur .75s ease-out infinite;
   text-shadow: 0px 0px 5px #fff, 0px 0px 7px #00a4a2;
}

@keyframes blur {
  from {
    text-shadow:0px 0px 10px #00a4a2,
      0px 0px 10px #00a4a2, 
      0px 0px 25px #00a4a2,
      0px 0px 25px #00a4a2,
      0px 0px 25px #00a4a2,
      0px 0px 25px #00a4a2,
      0px 0px 25px #00a4a2,
      0px 0px 25px #00a4a2,
      0px 0px 50px #00a4a2,
      0px 0px 50px #00a4a2,
      0px 0px 50px #7B96B8,
      0px 0px 150px #7B96B8,
      0px 10px 100px #7B96B8,
      0px 10px 100px #7B96B8,
      0px 10px 100px #7B96B8,
      0px 10px 100px #7B96B8,
      0px -10px 100px #7B96B8,
      0px -10px 100px #7B96B8;
  }
}

.preloader-1 {
  margin: 20% auto 0;
  width: 100%;
  height: 100%;
}

.preloader-1 .line {
  width: 2px;
  height: 24px;
  background: #00a4a2;
  margin: 0 2px;
  display: inline-block;
  animation: opacity-1 1000ms infinite ease-in-out;
}

.preloader-1 .line-1, .preloader-2 .line-1 { animation-delay: 800ms; }
.preloader-1 .line-2, .preloader-2 .line-2 { animation-delay: 600ms; }
.preloader-1 .line-3, .preloader-2 .line-3 { animation-delay: 400ms; }
.preloader-1 .line-4, .preloader-2 .line-4 { animation-delay: 200ms; }
.preloader-1 .line-6, .preloader-2 .line-6 { animation-delay: 200ms; }
.preloader-1 .line-7, .preloader-2 .line-7 { animation-delay: 400ms; }
.preloader-1 .line-8, .preloader-2 .line-8 { animation-delay: 600ms; }
.preloader-1 .line-9, .preloader-2 .line-9 { animation-delay: 800ms; }

@keyframes opacity-1 { 
  0% { 
    opacity: 1;
  }
  50% { 
    opacity: 0;
  }
  100% { 
    opacity: 1;
  }  
}

@keyframes opacity-2 { 
  0% { 
    opacity: 1;
    height: 30px;
  }
  50% { 
    opacity: 0;
    height: 24px;
  }
  100% { 
    opacity: 1;
    height: 30px;
  }  
}