﻿.html-with-background-image {
  position: relative;
  display: grid;
  align-items: start;
  align-content: start;
  min-height: var(--html-with-background-image-min-height, 420px);
  font-family: "Roboto Condensed", sans-serif;
  font-style: normal;
  color: #f5f8fc;
  background-image: var(--html-with-background-image-bg, linear-gradient(130deg, #123f70 0%, #0b2745 100%));
  background-size: var(--html-with-background-image-bg-size, cover);
  background-position: var(--html-with-background-image-bg-pos, center center);
  background-attachment: var(--html-with-background-image-bg-attach, scroll);
  background-repeat: no-repeat;
  overflow: hidden;
}

.html-with-background-image::after {
  content: "";
  display: block;
  clear: both;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.79), #ffffff 750px, #ffffff);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.html-with-background-image__inner {
  position: relative;
  z-index: 1;
  width: min(92%, 1280px);
  margin: 0 auto;
  padding: 84px 1.25rem;

}

.html-with-background-image__elements {
  width: 100%;
}

.html-with-background-image__elements h1,
.html-with-background-image__elements .h1 {
  font-weight: 400 !important;
}

.html-with-background-image.no-image {
  background:
    linear-gradient(130deg,
      rgb(18 63 112 / 0.98) 0%,
      rgb(11 39 69 / 0.98) 100%);
}

@media (max-width: 991.98px) {
  .html-with-background-image__inner {
    padding: 62px 1rem;
  }
}