.html-bg-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.html-bg-section .html-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.html-bg-section .html-bg-image .elementor-widget-container {
  width: 100%;
  height: 100%;
}

.html-bg-section .html-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  display: block;
}

.html-bg-section.has-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85) 0%,
    rgba(0, 0, 0, 0.65) 55%,
    rgba(0, 0, 0, 0.30) 100%
  );
  pointer-events: none;
}

.html-bg-section .html-bg-content {
  position: relative;
  z-index: 2;
}