.Home_Banner {
  height: 550px;
  position: relative;
}

.Home_Banner .img_holder {
  height: 100%;
  /* aspect-ratio: 1/0.4; */
}

.Home_Banner .img_holder .banner_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Home_Banner .overlay {
  position: absolute;
  inset: 0;
  /* background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.45) 40%,
    rgba(0, 0, 0, 0.1) 100%
  ); */
  background: transparent
    linear-gradient(90deg, #040404 0%, #02020278 50%, #00000000 60%) 0% 0%
    no-repeat padding-box;
}

.Home_Banner .banner_content {
  color: #fff;
  position: absolute;
  top: 0px;
  left: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 700px;
}

.Home_Banner .banner_content .banner_title {
  font-size: 60px;
  color: #ffffff;
  letter-spacing: -0.48px;
  display: -webkit-box;
  /* -webkit-line-clamp: 1; */
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-lust-script);
}

.Home_Banner .banner_content .banner_text {
  font-size: 20px;
  color: #ffffff;
  text-shadow: 0px 3px 6px #00000029;
  font-family: Segoe UI;
  display: -webkit-box;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.Home_Banner .red_btn_div {
  margin-top: 60px;
}

.Home_Banner .btn_div {
  margin-top: 70px;
  width: fit-content;
  display: block;
}

/* =================== Media Queries ==================== */

@media (min-width: 0px) and (max-width: 575px) {
  .Home_Banner {
    height: 300px;
  }

  .Home_Banner .banner_content .banner_title {
    font-size: 28px;
  }

  .Home_Banner .banner_content .banner_text {
    font-size: 17px;
  }

  .Home_Banner .banner_content {
    left: 0;
    width: 100%;
  }

  .Home_Banner .btn_div {
    margin-top: 25px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .Home_Banner {
    height: 350px;
  }

  .Home_Banner .btn_div {
    margin-top: 40px;
  }

  .Home_Banner .banner_content .banner_title {
    font-size: 40px;
  }

  .Home_Banner .banner_content .banner_text {
    font-size: 18px;
  }

  .Home_Banner .banner_content {
    left: 0;
    width: 450px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .Home_Banner {
    height: 400px;
  }

  .Home_Banner .banner_content .banner_title {
    font-size: 45px;
  }

  .Home_Banner .banner_content .banner_text {
    font-size: 18px;
  }

  .Home_Banner .banner_content {
    left: 0;
    width: 500px;
  }

  .Home_Banner .btn_div {
    margin-top: 45px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .Home_Banner .banner_content .banner_title {
    font-size: 50px;
  }

  .Home_Banner .banner_content .banner_text {
    font-size: 20px;
  }

  .Home_Banner .banner_content {
    left: 0;
    width: 550px;
  }
}
