/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center no-repeat;
  background-size: cover;
  position: relative;
  padding-top: 82px;

  &:before {
    content: "";
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }

  h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: $white;
  }

  h2 {
    color: $white;
    margin: 10px 0 0 0;
    font-size: 24px;
  }

  .btn-get-started {
    font-family: $font-primary;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 30px;
    color: #fff;
    background: $primary;
    border: 2px solid $primary;
    &:hover {
      background: transparent;
      border-color: $white;
    }
  }

  @media (max-width: 768px) {
    text-align: center;
    padding-top: 58px;
    h1 {
      font-size: 28px;
    }
    h2 {
      font-size: 18px;
      line-height: 24px;
    }
     
  }


  @media (max-height: 500px) {
    height: 120vh;
  }

}
