.background-image-with-overlay {
  background-image: url("../../../images/banner_background.png");
  position: relative;
}
.background-image-with-overlay::after {
  content: "";
  position: absolute;
  border-radius: 30px;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.7;
  pointer-events: none;
  z-index: 1;
}