/* Hero */


/*--------------------------------------------------------------
# Animation
--------------------------------------------------------------*/
@keyframes fadeDownAnimation {
  0% {
      transform: translateY(-25px);
  }
  100% {
      transform: translateY(0);
  }
}
#hero{
  animation: fadeDownAnimation ease 1s;
  animation-iteration-count: 1;
  animation-fill-mode: forwards;
}


/*--------------------------------------------------------------
# Image Background / Container
--------------------------------------------------------------*/
  #hero { /* Background Image */
    width: 100%;
    height: 70vh;

    /* INFO FOR SNOW BACKGROUND
    height: 65vh;
    background: url("../img/snow.png");
    background-position: right 15% top 25%;
    */

    background: url("../img/space.webp");
    background-position: right 50% top 2%;

    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 400px;
  }

  #hero h1, #hero h2{
    text-shadow: rgb(0, 0, 0) 0 0 3px;
  }

/* Background Image Filter 

  #hero:before { 
    content: "";
    background: rgba(229,121,133, 0.20);
    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;
    padding: 0 15px;
  }
/*
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;  text moves with scrolling but not background img
    }
  }*/

/*--------------------------------------------------------------
# Text
--------------------------------------------------------------*/
  #hero h1 {
    margin: 0 0 10px 0;
    font-size: 64px;
    color: #fff;
  }

  #hero h2 {
    color: #edf8fc;
    margin-bottom: 50px;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 5.25px;
    text-transform: uppercase;
  }

  @media (max-width: 575px) {
    #hero h1 {
      font-size: 50px;
    }

    #hero h2 {
      font-size: 14px;
      text-align: center;
      margin-bottom: 30px;
    }
  }

/*--------------------------------------------------------------
# Buttons
--------------------------------------------------------------*/
  #hero .btn-scroll {
    transition: 0.4s;
    color: rgba(255, 255, 255, 0.6);
    animation: up-down 1s ease-in-out infinite alternate-reverse both;
  }
  #hero .btn-scroll i {
    font-size: 48px;
  }

  #hero .btn-scroll:hover {
    color: #fae0d4;
  }
  
/*--------------------------------------------------------------
# Other
--------------------------------------------------------------*/
  @keyframes up-down {
    0% {
      transform: translateY(5px);
    }

    100% {
      transform: translateY(-5px);
    }
  }