/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #080808;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
}

a {
  color:#666666;
  font-style:italic;
}


/* Prelaoder */
#preloader {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  overflow: visible;
  background: #fff url("../img/preloader.svg") no-repeat center center;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: #080808;
  background-size: cover;
  position: relative;
}

#hero img {
  width:200px;
  padding-bottom:15px;
  animation-duration: 1.5s;
  animation-delay: 0.5s;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
  #hero img {
    width:400px;
  }
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

