.banner-media .banner__text:not(:last-child) {
	margin-bottom: 4rem;
}

/* content with bg image start */
.content-with-bg-image {
  position: relative;
  z-index: 0;
  max-width: 192rem;
  margin: 0 auto;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 6rem;
}
.content-with-bg-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #300041;
  opacity: 0.65;
  z-index: 1;
}
@media (min-width: 991px) {
  .content-with-bg-image {
    margin-bottom: 13rem;
  }
}

.content-with-bg-image__inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (min-width: 991px) {
  .content-with-bg-image__inner {
    padding-top: 11rem;
    padding-bottom: 11rem;
  }
}

.content-with-bg-image__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  font-family: "Evolventa", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 140%;
  color: #fff;
}
@media (min-width: 991px) {
  .content-with-bg-image__content {
    max-width: 48rem;
  }
}

.bold-text {
  font-weight: 700;
}

/* content with bg image end */