.banner-component {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .banner-component {
    min-height: 220px;
  }
}
@media (min-width: 320px) and (max-width: 767px) {
  .banner-component {
    min-height: 300px;
  }
}
.banner-component p {
  margin: 0;
}
.banner-component .overlay {
  position: absolute;
  left: 0;
  width: 100%;
}
.banner-component .content-container {
  position: relative;
}
@media (min-width: 768px) {
  .banner-component .content-container {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .banner-component .content-container {
    width: 55%;
  }
}
.banner-component .content-wrapper {
  position: relative;
}
.banner-component .content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.55)), to(rgba(0, 0, 0, 0.55))), url(<path-to-image>) lightgray 50%/cover no-repeat, #d1934c;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.55) 100%), url(<path-to-image>) lightgray 50%/cover no-repeat, #d1934c;
}
