

.image-with-text-overlay--full-width-false {
  isolation: isolate;
  border-radius: var(--block-border-radius, 16px); }

.image-with-text-overlay {
  box-shadow: var(--block-shadows); }



.image-with-text-overlay {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  background: var(--color-accent);
  color: var(--text-color, #fff);
  padding: 40px 0; }
  @media only screen and (min-width: 768px) {
    .image-with-text-overlay {
      padding: 80px 0; } }
  .image-with-text-overlay .row {
    width: 100%; }
  .image-with-text-overlay--mobile {
    display: block; }
    @media only screen and (min-width: 768px) {
      .image-with-text-overlay--mobile {
        display: none; } }
  .image-with-text-overlay--desktop {
    display: none; }
    @media only screen and (min-width: 768px) {
      .image-with-text-overlay--desktop {
        display: block; } }
  .image-with-text-overlay--bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; }
    .image-with-text-overlay--bg.parallax--true {
      top: -5%;
      height: 110%; }
    .image-with-text-overlay--bg svg,
    .image-with-text-overlay--bg img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .image-with-text-overlay--bg svg {
      opacity: 0.5; }
    .image-with-text-overlay--bg:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 11;
      background: rgba(var(--overlay-color-rgb), var(--overlay-opacity));
      pointer-events: none; }
  .image-with-text-overlay--content {
    display: flex;
    padding: 0 15px;
    max-width: var(--grid-width-row, 1380px);
    color: var(--text-color, #fff);
    position: relative;
    z-index: 5;
    width: 100%;
    margin: 0 auto; }
    @media only screen and (min-width: 768px) {
      .image-with-text-overlay--content {
        padding: 0 50px; } }
    .image-with-text-overlay--content-inner {
      max-width: 650px;
      width: 100%; }
      .image-with-text-overlay--content-inner.content-width-small {
        max-width: 480px; }
      .image-with-text-overlay--content-inner.content-width-medium {
        max-width: 650px; }
      .image-with-text-overlay--content-inner.content-width-large {
        max-width: 900px; }
    .image-with-text-overlay--content .image-with-text-overlay--heading {
      color: var(--text-color, #fff); }
      .animations-true .image-with-text-overlay--content .image-with-text-overlay--heading {
        visibility: hidden;
        will-change: visibility; }
    .image-with-text-overlay--content > * + .button {
      margin-top: 30px; }
    .animations-true .image-with-text-overlay--content .subheading, .animations-true
    .image-with-text-overlay--content .button, .animations-true
    .image-with-text-overlay--content .inline-badge {
      opacity: 0; }
    @media only screen and (min-width: 1068px) {
      .image-with-text-overlay--content .rte.description-size--medium {
        font-size: 1.25rem; } }
    @media only screen and (min-width: 1068px) {
      .image-with-text-overlay--content .rte.description-size--large {
        font-size: 1.5rem; } }
    .image-with-text-overlay--content .rte p {
      font-size: inherit; }
      .animations-true .image-with-text-overlay--content .rte p {
        visibility: hidden;
        will-change: visibility; }
    .image-with-text-overlay--content.content-top-left {
      justify-content: flex-start;
      align-items: flex-start; }
    .image-with-text-overlay--content.content-top-center {
      justify-content: center;
      align-items: flex-start; }
    .image-with-text-overlay--content.content-top-right {
      justify-content: flex-end;
      align-items: flex-start; }
    .image-with-text-overlay--content.content-middle-left {
      justify-content: flex-start;
      align-items: center; }
    .image-with-text-overlay--content.content-middle-center {
      justify-content: center;
      align-items: center; }
    .image-with-text-overlay--content.content-middle-right {
      justify-content: flex-end;
      align-items: center; }
    .image-with-text-overlay--content.content-bottom-left {
      justify-content: flex-start;
      align-items: flex-end; }
    .image-with-text-overlay--content.content-bottom-center {
      justify-content: center;
      align-items: flex-end; }
    .image-with-text-overlay--content.content-bottom-right {
      justify-content: flex-end;
      align-items: flex-end; }
