  /* Full-width Hero */
  :root {
    /* Desktop Gradient Overlay | Desktop Background Image */
    --hsd-mod-bhwc-desktop-bg: url("https://service.secureoffersites.com/images/GetLibraryImage?fileNameOrId=738108");
    /* Mobile Gradient Overlay | Mobile Background Image */
    --hsd-mod-bhwc-mobile-bg: url("https://service.secureoffersites.com/images/GetLibraryImage?fileNameOrId=738109");

    /* Hero Styles */
    --hsd-mod-bhwc-hero-font-color: white;

    /* Adjust the position of the btns and body on mobile */
    /* switch from column to column-reverse if requested */
    --hsd-mod-bhwc-mobile-btn-body-position: column;

    /* Change the mobile bg-position AND padding ONLY IF there is only an <h1> */
    /* IF <h1>+content+ctas: center 20% | IF content/ctas removed: center 13% */
    --hsd-mod-bhwc-mobile-mobile-bg-position: center 20%;
    /* IF <h1>+content+ctas: 270px 5vw 9vw | IF content/ctas removed: 185px 5vw 9vw */
    --hsd-mod-bhwc-mobile-padding: 270px 5vw 9vw;
  }

  .hsd-mod-background-hero-w-content {
    width: 100%;

    height: auto;
    margin: 0 auto;
    padding: 5vw;

    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 65%, rgba(0, 0, 0, 0) 100%), var(--hsd-mod-bhwc-desktop-bg) no-repeat center;
    background-size: cover;
    background-position: center 64%;
  }
  .hsd-mod-bhwc-content-cont {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-flow: column;
    gap: 24px;

    max-width: 1440px;
    margin: 0 auto;
  }
  .hsd-mod-bhwc-body-btn-cont {
    display: flex;
    flex-flow: column;
    gap: 12px;
    max-width: 38vw;

    color: var(--hsd-mod-bhwc-hero-font-color) !important;
    font-size: 16px !important;
  }
  .hsd-mod-bhwc-body-btn-cont .row a {
    width: 100% !important;
  }

  .hsd-mod-bhwc-body-cont p:last-of-type {
    margin: 0 !important;
  }

  .hsd-mod-bhwc-content-cont h1 {
    display: flex;
    flex-flow: column;
    gap: 8px;
    margin: 12px 0 0;

    color: var(--hsd-mod-bhwc-hero-font-color) !important;
    font-size: 48px !important;
    line-height: 1.2;
  }
  .hsd-mod-bhwc-content-cont h1 span {
    margin: 0;
    font-size: 24px !important;
  }
  @media screen and (max-width: 850px) {
    .hsd-mod-bhwc-content-cont {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0;
    }
    .hsd-mod-bhwc-content-cont {
      max-width: 100%;

      color: var(--hsd-mod-bhwc-hero-font-color) !important;
      font-size: 16px !important;
      text-align: center;
    }
    .hsd-mod-bhwc-content-cont h1 span {
      display: block;
    }
    .hsd-mod-bhwc-content-cont h1 {
      font-size: 36px !important;
      line-height: 1.2;
    }
    .hsd-mod-background-hero-w-content {
      display: flex;
      align-items: end;
      width: 100%;
      padding: var(--hsd-mod-bhwc-mobile-padding);
      background: linear-gradient(0deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 65%, rgba(0, 0, 0, 0.3) 100%), var(--hsd-mod-bhwc-mobile-bg) no-repeat center;
      background-size: cover;
      background-position: center 17%;
    }

    .hsd-mod-bhwc-body-btn-cont {
      max-width: 100%;

      flex-flow: var(--hsd-mod-bhwc-mobile-btn-body-position);
    }
  }

  @media screen and (max-width: 720px) {
    .hsd-mod-background-hero-w-content {
      background-position: var(--hsd-mod-bhwc-mobile-mobile-bg-position);
    }
  }