/**
 * Text with Background Image Component
 * BEM Structure: text-with-bg-image
 */
.text-with-bg-image {
  position: relative;
  padding: 50px 0 60px;
  overflow: hidden;
  margin: 60px auto;
}
@media (min-width: 768px) {
  .text-with-bg-image {
    padding: 80px 0 100px;
    margin: 53px auto 80px;
  }
}
@media (min-width: 1024px) {
  .text-with-bg-image {
    padding: 140px 0 120px;
    margin: 133px auto 164px;
  }
}
.text-with-bg-image__content {
  padding: 0 25px;
  max-width: 1040px;
  margin: auto;
  position: relative;
  z-index: 2;
}
@media (min-width: 768px) {
  .text-with-bg-image__content {
    padding: 0 70px;
  }
}
@media (min-width: 1024px) {
  .text-with-bg-image__content {
    padding-right: 320px;
    max-width: 1266px;
  }
}
.text-with-bg-image__content ul {
  padding: 0 27px;
  list-style: none;
  font-weight: 500;
}
.text-with-bg-image__content ul li {
  margin-bottom: 5px;
  position: relative;
  font-size: 18px;
  line-height: 32px;
}
.text-with-bg-image__content ul li::before {
  content: "";
  width: 3px;
  height: 3px;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: 13px;
}
.text-with-bg-image__content * {
  font-weight: 500;
}
.text-with-bg-image__title {
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  color: #f65408;
  margin-bottom: 24px;
  margin-top: 0;
}
@media (min-width: 768px) {
  .text-with-bg-image__title {
    font-size: 70px;
    line-height: 1.05;
    margin-bottom: 40px;
  }
}
.text-with-bg-image__text {
  color: white;
}
.text-with-bg-image__text .subheader {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
}
.text-with-bg-image__text p {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
  color: white;
}
.text-with-bg-image__text p:last-child {
  margin-bottom: 0;
}
.text-with-bg-image__button {
  margin-top: 32px;
}
@media (min-width: 1024px) {
  .text-with-bg-image__button {
    margin-top: 40px;
  }
}
.text-with-bg-image__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.text-with-bg-image__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.text-with-bg-image__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}