.propane-background {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: 92% center;
  background-size: auto 110%;
}

.propane-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.92) 58%,
    rgba(255, 255, 255, 0.76) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.propane-background > * {
  position: relative;
  z-index: 1;
}

.propane-background p,
.propane-background h1,
.propane-background h2,
.propane-background h3,
.propane-background h4,
.propane-background h5,
.propane-background h6 {
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.65);
}

/* Large desktop */
@media (min-width: 1200px) {
  .propane-background {
    background-size: auto 115%;
    background-position: 90% center;
  }
}

/* Tablet / smaller desktop */
@media (min-width: 768px) and (max-width: 1199px) {
  .propane-background {
    background-size: auto 105%;
    background-position: 92% center;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .propane-background {
    background-size: 140% auto;
    background-position: right center;
  }
}

.background-shadow {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.background-shadow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.88) 55%,
    rgba(255, 255, 255, 0.72) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.background-shadow > * {
  position: relative;
  z-index: 1;
}

.background-shadow p,
.background-shadow h1,
.background-shadow h2,
.background-shadow h3,
.background-shadow h4,
.background-shadow h5,
.background-shadow h6 {
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.65);
}