#home {
  min-height: 540px;
}

#home h1 {
  margin-top: 165px;
  font-family: AzoSansLight;
  font-size: 4.5rem;
  color: #fff200;
}
#home .intro {
  width: 700px;
  max-width: 700px;
  margin-top: 70px;
  position: static;
}

#home p {
  font-size: 2.8rem;
  text-align: center;
  margin-top: 5px;
  font-family: AzoSansRegular;
  position: static;
}
#home .intro h1 {
  font-size: 4.3rem;
  margin: 40px 0;
}
#home .arrow_down_container {
  position: absolute;
  bottom: 20px;
  left: 50%;
  margin-left: -46px;
}
#home .arrow_down {
  font-size: 1.2rem;
  font-family: AzoSansLight;
  font-style: italic;
  color: #f1f1f1;
  text-decoration: none;
}
#home .arrow_down:after {
  background: url(../images/ic-scroll-arrow.svg) 0 0 no-repeat;
  content: '';
  position: absolute;
  width: 31px;
  height: 14px;
  left: 50%;
  bottom: -5px;
  -webkit-animation: scroll-me 1.5s infinite;
  -moz-animation:    scroll-me 1.5s infinite;
  -o-animation:      scroll-me 1.5s infinite;
  animation:         scroll-me 1.5s infinite;
}

#fixed-bg-home {
  width: 1440px;
  height: 900px;
  background: url(../images/universe-full.jpg) center center no-repeat #000;
  background-size: 1440px 900px;
  position: fixed;
  left: 50%;
  top: 100px;
  margin-left: -720px;
  opacity: 0;
  z-index: 1;
  -webkit-transition: 1500ms opacity linear;
  -moz-transition: 1500ms opacity linear;
  transition: 1500ms opacity linear;
}
#fixed-bg-home.visible {
  opacity: 1;
}

@-webkit-keyframes scroll-me {
  0%   { bottom: -5px; }
  40% { bottom: -8px; }
  100% { bottom: -5px; }
}
@-moz-keyframes scroll-me {
  0%   { bottom: -5px; }
  40% { bottom: -8px; }
  100% { bottom: -5px; }
}
@-o-keyframes scroll-me {
  0%   { bottom: -5px; }
  40% { bottom: -8px; }
  100% { bottom: -5px; }
}
@keyframes scroll-me {
  0%   { bottom: -5px; }
  40% { bottom: -8px; }
  100% { bottom: -5px; }
}

@media(max-device-width: 736px) {
  #home h1, #home p {
    line-height: 1em;
  }
  #home .intro p {
    line-height: 1.5em;
  }
  #home .arrow_down:after {
    background-size: cover;
    width: 18px;
    height: 8px;
    left: 41%;
  }
}
