.common_banner {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  margin-top: 5%;
}

.common_banner .img_wrapper {
  height: 100%;
  width: 100%;
}
.common_banner .banner_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.common_banner .banner_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  inset: 0;
  background: linear-gradient(88deg, #000b2173 0%, #1b2538c7 54%, #545c6a 100%);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.common_banner .banner_content {
  position: absolute;
  top: 0;
  bottom: 0;
  text-align: center;
  color: #fff;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.common_banner .banner_content .banner_title {
  font-size: 65px;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 10px;
  color: #ffffff;

  /* 1 line limit */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.common_banner .banner_content .banner_subtitle {
  font-size: 45px;
  font-weight: 900;

  /* 1 line limit */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Responsive Styles */
@media (min-width: 1200px) and (max-width: 1399px) {
  .common_banner {
    margin-top: 7%;
  }
}

@media (min-width: 991px) and (max-width: 1199px) {
  .common_banner {
    margin-top: 10%;
  }
  .common_banner .banner_content .banner_title {
    font-size: 55px;
  }
  .common_banner .banner_content .banner_subtitle {
    font-size: 40px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .common_banner {
    margin-top: 8%;
  }
  .common_banner .banner_content .banner_title {
    font-size: 45px;
  }
  .common_banner .banner_content .banner_subtitle {
    font-size: 30px;
  }
}

@media (min-width: 574px) and (max-width: 767.98px) {
  .common_banner {
    margin-top: 10%;
  }
  .common_banner .img_wrapper {
    height: 200px;
    width: 100%;
  }
  .common_banner .banner_content .banner_title {
    font-size: 35px;
  }
  .common_banner .banner_content .banner_subtitle {
    font-size: 20px;
  }
}

@media (max-width: 574px) {
  .common_banner {
    margin-top: 40px;
  }
  .common_banner .img_wrapper {
    height: 200px;
    width: 100%;
  }
  .common_banner .banner_content .banner_title {
    font-size: 25px;
  }
  .common_banner .banner_content .banner_subtitle {
    font-size: 18px;
  }
}