
  
  /*--------------------------------------------------------------
  # Hero Section
  --------------------------------------------------------------*/
  #hero {
    width: 100%;
    height: 100vh;
    background: white;
    padding: 4px ;
  }

  #hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: #012970;
  }
  
  #hero h2 {
    margin: 10px 0 0 0;
    font-size: 30px;
    text-align: left;
    left: 0;
    color: #012970;
  }
  
  #hero ul {
    margin-top: 15px;
    list-style: none;
    padding: 0;
  }
  
  #hero ul li {
    padding: 10px 0 0 28px;
    position: relative;
  }
  
  #hero ul i {
    left: 0;
    top: 7px;
    position:absolute;
    font-size: 30px;
    color: #012970;
  }
  .hero .hero-img {
    width: 600px;
  }
  
  @media (min-width: 1024px) {
    #hero {
      background-attachment: fixed;
    }
  }
  
  @media (max-width: 1000px) {
    #hero .hero-img {
      text-align: center;
    }
  
    #hero .hero-img img {
      width: 500%;
    }
  }
  
  @media (max-width: 768px) {
    #hero h1 {
      font-size: 30px;
      line-height: 36px;
    }
  
    #hero h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  
    #hero .hero-img img {
      width: 500%;
    }
  }
  
  @media (max-width: 575px) {
    #hero {
      text-align: center;
    }
  
    #hero ul {
      text-align: left;
      font-size: 14px;
    }
  
    #hero .hero-img img {
      width: 500%;
    }
  
    #hero .btn-get-started,
    #hero .btn-get-quote {
      padding-left: 18px;
      padding-right: 18px;
      font-size: 14px;
    }
  }
  
  