/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero_about {
    width: 100%;
    position: relative;
    /* padding: 10px 0 0 0; */
  }
   
  #hero_about:before {
    content: "";
    background: rgb(255, 255, 255);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
  }
  
  #hero_about h1 {
    margin: 0 0 20px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
    color: rgba(0, 0, 0, 0.8);
  }
  
  #hero_about h1 span {
    background: linear-gradient(to right, #000, #f8a813, #f15a24);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    border-bottom: 4px solid #1acc8d;
  }
  
  #hero_about h2 {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-size: 24px;
  }
  
  
  @media (min-width: 1024px) {
    #hero_about {
      background-attachment: fixed;
    }
  }
  
  @media (max-width: 991px) {
    #hero_about {
      padding-top: 80px;
    }
    #hero_about h1 {
      font-size: 28px;
      line-height: 32px;
      margin-bottom: 10px;
    }
    #hero_about h2 {
      font-size: 18px;
      line-height: 24px;
      margin-bottom: 30px;
    }
  }
  
  @media (max-width: 575px) {
    #hero_about .hero-img img {
      width: 80%;
    }
  }
  