.home_banner {
    width: 100%;
    margin: 0;
    padding: 0 10px;
    overflow: hidden;
}

.home_banner .banner_image {
    width: 100%;
    min-height: 520px;
    background-image: url("/assets/images/home/banner/banner.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 24px;
}
.home_banner .banner_overlay {
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.20);
    border-radius: 20px;
}
.home_banner .banner_content {
  width: 100%;
  max-width: 1320px;

  margin: 0 auto;

  padding: 120px 30px 60px;

  color: #ffffff;
}


.home_banner .banner_heading {
    max-width: 700px;
    margin: 0 0 18px;
    color: #333f06;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.15;
    text-transform: none;
}
.home_banner .banner_text {
  display: none;
}
@media (min-width: 1200px) {
  .home_banner .banner_image,
  .home_banner .banner_overlay {
    min-height: 700px;
  }

  .home_banner .banner_content {
    padding: 130px 30px 60px;
  }

  .home_banner .banner_heading {
    font-size: 48px;
  }

  .home_banner .banner_text {
    font-size: 18px;
  }
}


/* =========================================
   LAPTOP / TABLET
========================================= */

@media (min-width: 992px) and (max-width: 1199px) {
  .home_banner .banner_image,
  .home_banner .banner_overlay {
    min-height: 520px;
  }

  .home_banner .banner_content {
    padding: 120px 30px 50px;
  }

  .home_banner .banner_heading {
    font-size: 40px;
  }

  .home_banner .banner_text {
    font-size: 17px;
  }
}


/* =========================================
   TABLET
========================================= */

@media (min-width: 768px) and (max-width: 991px) {
  .home_banner .banner_image,
  .home_banner .banner_overlay {
    min-height: 480px;
  }

  .home_banner .banner_content {
    padding: 110px 30px 50px;
  }

  .home_banner .banner_heading {
    max-width: 600px;
    font-size: 36px;
  }

  .home_banner .banner_text {
    max-width: 550px;
    font-size: 16px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (min-width: 576px) and (max-width: 767px) {
  .home_banner .banner_image,
  .home_banner .banner_overlay {
    min-height: 400px;
  }

  .home_banner .banner_content {
    padding: 100px 25px 40px;
  }

  .home_banner .banner_heading {
    max-width: 500px;
    font-size: 30px;
  }

  .home_banner .banner_text {
  display: none;
  }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 575px) {
  .home_banner .banner_image,
  .home_banner .banner_overlay {
    min-height: 340px;
  }

  .home_banner .banner_content {
    padding: 0px 20px 35px;
  }

  .home_banner .banner_heading {
    max-width: 100%;
    margin-bottom: 12px;

    font-size: 25px;
    line-height: 1.2;
  }

 .home_banner .banner_text {
   display: none;
}
}


/* =========================================
   EXTRA SMALL MOBILE
========================================= */

@media (max-width: 380px) {
  .home_banner .banner_image,
  .home_banner .banner_overlay {
    min-height: 320px;
  }

.home_banner .banner_content {
    padding: 0 15px 30px;
}
 .home_banner .banner_heading {
    font-size: 18px;
}

  .home_banner .banner_text {
    display: none;
    
  }
}