.hero_banner {
  position: relative;
  overflow: hidden;
  /* background-image: url("/assets/images/home/Banner.png"); */
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.hero_banner .banner-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.hero_banner .hero_content {
  position: absolute;
  top: 75%;
  left: 6.5%;
  transform: translateY(-50%);

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  z-index: 2;
  color: #fff;
}
.hero_banner .btn_wrapper .btn_text {
  font-size: 16px;
  padding: 10px 26px;
  font-weight: 700;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hero_banner .btn_wrapper .btn_text {
    font-size: 15px;
    padding: 6px 20px;
  }
  .hero_banner .hero_content {
    top: 73%;
    left: 6.1%;
  }
}
@media (min-width: 0px) and (max-width: 991.98px) {
  .hero_banner .btn_wrapper .btn_text {
    font-size: 13px;
    padding: 5px 15px;
  }
  .hero_banner .hero_content {
    top: 73%;
    left: 6%;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero_banner .btn_wrapper .btn_text {
    font-size: 12px;
    padding: 4px 10px !important;
  }
  .hero_banner .hero_content {
    top: 73%;
    left: 5.3%;
  }
}
@media (min-width: 0px) and (max-width: 575.98px) {
  .hero_banner .btn_wrapper {
    display: none;
  }
}
