/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
    /* background: url(/assets/img/neo-imgs/hero-bg.jpg) top center; */
    width: 100%;
    height: 100vh;
    background: url(/assets/img/neo-imgs/backup/call-to-action.jpg ) center center;
    background-size: cover;
    position: relative;
  }
  
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }
  
  #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;
  }
  
  #hero h1 {
    margin: 7rem 0 1.5rem 0;
    /* font-size: 48px; */
    font-weight: 700;
    line-height: 56px;
    text-transform: uppercase;
    /* color: #fff; */
  }
  
  @media only screen and (min-device-width : 320px) and (max-device-width : 480px) {  
    #hero {
      height: 150vh;
    }

    #hero h1 {
      font-size: calc(1.525rem + 5vw);
    }
    }
  
  
  /* @media (max-width: 768px) {
    #hero h1 {
      font-size: 3rem;
      line-height: 36px;
    }
  } */
  
  #hero h2 {
    /* color: #eee; */
    margin: 25px;
    padding: 0rem 6rem;
    /* margin-bottom: 50px; */
    /* font-size: 24px; */
  }
  
  @media (max-width: 768px) {
    #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
      padding: 0rem;
    }
  }
  
  #hero .btn-get-started {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    background: var(--default);
    border: 2px solid var(--default);
    color: #fff;
  }
  
  #hero .btn-get-started:hover {
    background: var(--default-hover);
    border: 2px solid var(--default-hover);
  }
  
  #hero .btn-get-started-outline {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 8px 28px;
    border-radius: 50px;
    transition: 0.5s;
    margin: 10px;
    background: var(--default);
    border: 2px solid var(--default);
    color: #fff;
  }
  
  #hero .btn-get-started-outline:hover {
    background: transparent;
    color: var(--default);
    border: 2px solid var(--default);
  }