.cta-banner {
  position: relative;
  padding: 60px 0;
  position: relative;
  isolation: isolate;
  background-color: var(--primary-color);
}
@media only screen and (min-width: 992px) {
  .cta-banner {
    padding: 110px 0;
  }
}
.cta-banner.thin {
  padding: 20px 0;
}
.cta-banner .background-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.cta-banner .background-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cta-banner.dark::before, .cta-banner.light::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.cta-banner.dark::before {
  mix-blend-mode: multiply;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 20%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0.5) 100%);
}
.cta-banner.light::before {
  mix-blend-mode: overlay;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.3) 20%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 80%, rgba(255, 255, 255, 0.5) 100%);
}
.cta-banner .page-width {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  max-width: 554px;
}
.cta-banner .page-width.right {
  align-items: flex-end;
}
.cta-banner .page-width.middle {
  align-items: center;
}
.cta-banner .page-width.middle h2, .cta-banner .page-width.middle p, .cta-banner .page-width.middle .text {
  text-align: center;
}
.cta-banner .page-width.left {
  align-items: flex-start;
}
@media only screen and (max-width: 768.98px) {
  .cta-banner .page-width {
    text-align: center;
  }
}
@media only screen and (min-width: 992px) {
  .cta-banner .page-width h2 {
    font-size: 24px;
  }
}
.cta-banner .page-width p {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
}
.cta-banner .page-width .text {
  margin: 0;
  font-size: 14px;
  line-height: 24px;
}
.cta-banner .page-width .text p {
  color: inherit;
}
