.list-inline li > a:hover {
  color: #7D26CD;
}

.hide-on-demand {
  -webkit-transition: all ease-in-out 1s;
  -moz-transition: all ease-in-out 1s;
  -o-transition: all ease-in-out 1s;
  -ms-transition: all ease-in-out 1s;
  transition: all ease-in-out 1s;
}
.hide-on-demand.hide {
  opacity: 0;
}
.hide-on-demand.show {
  opacity: 1;
}
.loader {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: url('../images/page-loader.gif') 50% 50% no-repeat #000000;
}
#logo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: auto;
  right: 0;
  z-index: 0;
}
#logo img {
  margin: 0 auto;
  padding-top: 100px;
  width: 1%;
  top: 270px;
  position: relative;
}


.home audio#audio-theme,
.home #video-explode {
    overflow: hidden;
    height: 100%;
}


body {
  font-family: 'Roboto', sans-serif;
  background-color: black;
  color: white;
  text-align: center;
  font-weight: 300;
  overflow: auto;
}

body.home {
    overflow: hidden;
}

a {
  color: white;
}
#video-explode {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  right: 0;
}



#landing-wrap .content {
  position: relative;
  z-index: 10;
  width: 100%;
}


div#home_tagline {
    position: relative;
    top: -50px;
}

#landing-wrap .content #logo-container .logo-bg {
  position: absolute;
  top: 0;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

#landing-wrap .content #logo-container img.gold_logo {
  width: 150px;
}

#landing-wrap .content #logo-container img.white_logo {
  width: 265px;
}

#landing-wrap .content #logo-container .logo {
  position: relative;
  z-index: 5050;
  margin: auto;

}


/* Firefox old*/
@-moz-keyframes blink {
    0% {
        opacity:1;
    }
    50% {
        opacity:.5;
    }
    100% {
        opacity:1;
    }
} 

@-webkit-keyframes blink {
    0% {
        opacity:1;
    }
    50% {
        opacity:.5;
    }
    100% {
        opacity:1;
    }
}
/* IE */
@-ms-keyframes blink {
    0% {
        opacity:1;
    }
    50% {
        opacity:.5;
    }
    100% {
        opacity:1;
    }
} 
/* Opera and prob css3 final iteration */
@keyframes blink {
    0% {
        opacity:1;
    }
    50% {
        opacity:.5;
    }
    100% {
        opacity:1;
    }
} 
img.gold_logo {
    -moz-animation: blink normal 2s infinite ease-in-out; /* Firefox */
    -webkit-animation: blink normal 2s infinite ease-in-out; /* Webkit */
    -ms-animation: blink normal 2s infinite ease-in-out; /* IE */
    animation: blink normal 2s infinite ease-in-out; /* Opera and prob css3 final iteration */
}


#landing-wrap .space-wrap {
  overflow: hidden;
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0 auto;
}
#landing-wrap .space-wrap .scene {
  padding: 0;
  margin: 0;
  width: inherit;
  height: inherit;
}
#landing-wrap .space-wrap .scene .star {
  width: inherit;
  height: inherit;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}
.wave.slow {
  -webkit-animation: wave 16s 0.1s infinite linear;
  -moz-animation: wave 16s 0.1s infinite linear;
  animation: wave 16s 0.1s infinite linear;
}
.wave.normal {
  -webkit-animation: wave 12s 0.1s infinite linear;
  -moz-animation: wave 12s 0.1s infinite linear;
  animation: wave 12s 0.1s infinite linear;
}
.wave.fast {
  -webkit-animation: wave 8s 0.1s infinite linear;
  -moz-animation: wave 8s 0.1s infinite linear;
  animation: wave 8s 0.1s infinite linear;
}
.wave.faster {
  -webkit-animation: wave 4s 0.1s infinite linear;
  -moz-animation: wave 4s 0.1s infinite linear;
  animation: wave 4s 0.1s infinite linear;
}
@-webkit-keyframes wave {
  0% {
    -webkit-transform: rotateZ(0deg) translate3d(0, 2%, 0) rotateZ(0deg);
  }
  100% {
    -webkit-transform: rotateZ(360deg) translate3d(0, 2%, 0) rotateZ(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: rotateZ(0deg) translate3d(0, 2%, 0) rotateZ(0deg);
  }
  100% {
    transform: rotateZ(360deg) translate3d(0, 2%, 0) rotateZ(-360deg);
  }
}
.pulse {
  -webkit-animation: pulse 10s infinite linear;
  -moz-animation: pulse 10s infinite linear;
  animation: pulse 10s infinite linear;
  visibility: visible !important;
}
@keyframes pulse {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0.50;
  }
  90% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0.25;
  }
  40% {
    opacity: 1;
  }
  60% {
    opacity: 0.50;
  }
  90% {
    opacity: 0.25;
  }
  100% {
    opacity: 0;
  }
}
