/**
 * Add an arrow element
 *
 * Accepts:
 * - $direction: {String} Positioning method for element
 * - $size: {String}
 * - $stroke: {String}
 *
 * Usage:
 * .selector {
 *   @include visually-shown(relative);
 * }
 */
.block-cta-bg {
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 40px;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) {
  .block-cta-bg {
    padding: 40px;
    min-height: 450px;
  }
}
.block-cta-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.2;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  z-index: -1;
}
.block-cta-bg .inner-wrapper {
  margin: 0 auto;
  max-width: 1120px;
}
.block-cta-bg .content {
  text-align: center;
  color: #ffffff;
  font-size: 9px;
}
@media only screen and (min-width: 320px) {
  .block-cta-bg .content {
    font-size: calc(9px + 9 * (100vw - 320px) / 320);
  }
}
@media only screen and (min-width: 640px) {
  .block-cta-bg .content {
    font-size: 18px;
  }
}
.block-cta-bg .content p + p {
  margin-top: 7.5px;
}
@media only screen and (min-width: 320px) {
  .block-cta-bg .content p + p {
    margin-top: calc(7.5px + 7.5 * (100vw - 320px) / 320);
  }
}
@media only screen and (min-width: 640px) {
  .block-cta-bg .content p + p {
    margin-top: 15px;
  }
}
.block-cta-bg .content h2 {
  color: #ffffff;
}
/*# sourceMappingURL=cta-bg-section.css.map*/