/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    @keyframes floatAnimation {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-2rem);
      }
      100% {
        transform: translateY(0);
      }
    }
    @keyframes floatAnimation2 {
      0% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-3rem);
      }
      100% {
        transform: translateY(0);
      }
    }
    #content-page-1532 {
      padding: var(--sectionPadding);
      background-color: #fff;
      /* clips the wave background from causing overflow issues when it goes off screen */
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
    #content-page-1532 .cs-container {
      width: 100%;
      max-width: 80rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 40px - 64px */
      gap: clamp(2.5rem, 4vw, 4rem);
      position: relative;
    }
    #content-page-1532 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: left;
      width: 100%;
      max-width: 46.125rem;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: flex-start;
    }
    #content-page-1532 .cs-title {
      font-size: var(--headerFontSize);
      font-weight: 900;
      line-height: 1.2em;
      text-align: inherit;
      width: 100%;
      max-width: 100%;
      margin: 0 0 1rem 0;
      color: var(--headerColor);
      position: relative;
    }
    #content-page-1532 h2,
    #content-page-1532 h3,
    #content-page-1532 h4,
    #content-page-1532 h5,
    #content-page-1532 h6 {
      font-weight: 700;
      text-align: inherit;
      margin: 0 0 1rem 0;
      color: var(--headerColor);
    }
    #content-page-1532 h2 {
      font-size: 2rem;
      margin-top: 2rem;
    }
    #content-page-1532 h3 {
      font-size: 1.5rem;
      color: var(--primary);
    }
    #content-page-1532 h4,
    #content-page-1532 h5,
    #content-page-1532 h6 {
      font-size: 1.25rem;
    }
    #content-page-1532 .cs-button-solid {
      margin-bottom: 2rem;
    }
    #content-page-1532 .cs-no-margin {
      margin: 0;
    }
    #content-page-1532 .cs-color {
      color: var(--primary);
    }
    #content-page-1532 p {
      font-size: var(--bodyFontSize);
      line-height: 1.5em;
      text-align: inherit;
      width: 100%;
      margin: 0 0 1rem 0;
      color: var(--bodyTextColor);
    }
    #content-page-1532 p:last-of-type {
      margin-bottom: 2rem;
    }
    #content-page-1532 p a {
      font-size: inherit;
      line-height: inherit;
      text-decoration: underline;
      color: var(--primary);
      filter: brightness(120%);
    }
    #content-page-1532 ol,
    #content-page-1532 ul {
      padding-left: 1.5rem;
      margin: 0 0 2rem 0;
      color: var(--bodyTextColor);
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    #content-page-1532 ul li {
      list-style: none;
      color: inherit;
      position: relative;
    }
    #content-page-1532 ul li:before {
      /* custom list bullet */
      content: '';
      width: 3px;
      height: 3px;
      background: currentColor;
      opacity: 1;
      border-radius: 50%;
      position: absolute;
      display: block;
      top: 0.625rem;
      left: -0.75rem;
    }
    #content-page-1532 img {
      width: 100%;
      height: auto;
      display: block;
    }
    #content-page-1532 .cs-image-group {
      width: 32.625em;
      height: 33.75em;
      display: none;
      position: relative;
      z-index: 1;
    }
    #content-page-1532 .cs-background {
      width: 100%;
      height: 100%;
      border-radius: 2.5em;
      /* clips the corners of the children around the border radius */
      overflow: hidden;
      /* makes it cover the parent dimensions */
      object-fit: cover;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
    }
    #content-page-1532 .cs-background img {
      width: 100%;
      height: 100%;
      /* makes it cover the parent like a backgorund image */
      object-fit: cover;
      display: block;
    }
    #content-page-1532 .cs-flower {
      width: 9.5625em;
      height: auto;
      position: relative;
      left: -2em;
      top: -2.25em;
      z-index: 10;
    }
    #content-page-1532 .cs-floater {
      width: 44.375em;
      height: auto;
      position: absolute;
      right: 9.375em;
      top: 25em;
      z-index: -1;
      animation-name: floatAnimation2;
      animation-duration: 14s;
      animation-timing-function: ease-in-out;
      animation-fill-mode: forwards;
      animation-iteration-count: infinite;
    }
    #content-part-two{
        margin-bottom: 5rem;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #content-page-1532 .cs-container {
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
    }
    #content-page-1532 .cs-content {
      width: 60%;
      max-width: 43.375rem;
      /* prevents flexbox from squishing it */
      flex: none;
    }
    #content-page-1532 .cs-image-group {
      font-size: min(1.3vw, 1em);
      display: block;
    }
  }
  /* Desktop - 1200px */
  @media only screen and (min-width: 75rem) {
    #content-page-1532 .cs-content {
      width: 53%;
    }
  }
/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-229 {
      /* 200px - 300px - leaving extra space for the navigation */
      padding: clamp(10rem, 24vw, 165em) 1rem 1rem;
      /* prevents the topper line from causing an overflow */
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
    #hero-229 .cs-picture {
      /* Background Image */
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -2;
    }
    #hero-229 .cs-picture:before {
      /* Black Color Overlay */
      content: '';
      width: 100%;
      height: 100%;
      background: #000;
      opacity: 0.6;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: 1;
      /* prevents the cursor from interacting with it */
      pointer-events: none;
    }
    #hero-229 .cs-picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      /* Makes image act like a background-image */
      object-fit: cover;
    }
    #hero-229 .cs-container {
      width: 100%;
      max-width: 80rem;
      /* we put the padding top and bottom on the container instead of #Hero so the pseudo element lines go to the top and bottom of the section */
      /* 144px - 280px - leaving extra space for the navigation */
      /* changes on tablet */
      padding: clamp(9rem, 25.95vw, 20rem) 0;
      /* padding-top: 6rem; */
      margin: auto;
      position: relative;
    }
    #hero-229 .cs-container:before {
      /* Left Line */
      /* content: '';
      width: 1px;
      height: 100%; */
      /* background: -moz-linear-gradient(top, rgba(250, 251, 252, 0.5) 0%, rgba(250, 251, 252, 0) 100%); */
      /* FF3.6-15 */
      /* background: -webkit-linear-gradient(top, rgba(250, 251, 252, 0.5) 0%, rgba(250, 251, 252, 0) 100%); */
      /* Chrome10-25,Safari5.1-6 */
      /* opacity: 1;
      position: absolute;
      display: block;
      top: 0;
      left: 0; */
    }
    #hero-229 .cs-flex-group {
      /* 60px - 220px */
      margin-bottom: clamp(3.75rem, 15.5vw, 13.75rem);
      margin: auto;
      width: 80vw;
      /* 464px - 562px */
      max-width: clamp(29rem, 60vw, 35.125rem);
      display: flex;
      align-items: flex-start;
      justify-content: center;
      flex-wrap: wrap;
      column-gap: 1.25rem;
      box-sizing: border-box;
    }
    #hero-229 .cs-topper {
      /* 13px - 16px */
      font-size: clamp(0.8125rem, 1.6vw, 1rem);
      line-height: 1.2em;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: 0.1rem;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 1rem;
      display: block;
    }
    #hero-229 .cs-title {
      /* 39px - 61px */
      font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
      font-weight: 900;
      line-height: 1.2em;
      text-align: center;
      width: 100%;
      /* 32px - 40px */
      margin: 0 auto clamp(2rem, 4vw, 2.5rem) 0;
      color: var(--bodyTextColorWhite);
      position: relative;
    }
    #hero-229 .cs-text {
      /* 16px - 20px */
      font-size: clamp(1rem, 1.95vw, 1.25rem);
      line-height: 1.5em;
      text-align: center;
      width: 100%;
      /* 32px - 40px */
      margin: 0 auto clamp(2rem, 4vw, 2.5rem) 0;
      /* 40px - 48px */
      margin-bottom: clamp(2.5rem, 4vw, 3rem);
      color: var(--bodyTextColorWhite);
    }
    #hero-229 .cs-button-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      /* 16px - 20px */
      gap: clamp(1rem, 2.3vw, 1.25rem);
    }
    #hero-229 .cs-button {
      min-width: 12.3125rem;
    }
    #hero-229 .cs-button-solid {
      font-size: 1rem;
      font-weight: 700;
      /* 46px - 56px */
      line-height: clamp(2.875em, 5.5vw, 3.5em);
      text-align: center;
      text-decoration: none;
      margin: 0;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
      padding: 0 3rem;
      background-color: var(--primary);
      overflow: hidden;
      color: #fff;
      border: none;
      display: inline-block;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }
    #hero-229 .cs-button-solid:before {
      content: "";
      width: 0;
      height: 100%;
      background: #000;
      opacity: 1;
      position: absolute;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
    }
    #hero-229 .cs-button-solid:hover {
      color: #fff;
    }
    #hero-229 .cs-button-solid:hover:before {
      width: 100%;
    }
    #hero-229 .cs-button-transparent {
      font-size: 1rem;
      /* 46px - 56px */
      line-height: clamp(2.875rem, 5.5vw, 3.5rem);
      width: 11.25rem;
      /* 46px - 56px */
      height: clamp(2.875rem, 5.5vw, 3.5rem);
      text-decoration: none;
      font-weight: 700;
      margin: 0;
      color: #fff;
      padding: 0;
      background-color: transparent;
      border: 1px solid var(--bodyTextColorWhite);
      box-sizing: border-box;
      display: inline-flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    #hero-229 .cs-button-transparent:before {
      content: '';
      position: absolute;
      display: block;
      background: #000;
      opacity: 1;
      /* so it sits on top of the border */
      top: -1px;
      left: -1px;
      right: -1px;
      bottom: -1px;
      z-index: -1;
      transform-origin: left;
      /* this is what creates the grow affect on hover */
      transform: scaleX(0);
      transition: transform 0.3s;
    }
    #hero-229 .cs-button-transparent:hover:before {
      transform: scaleX(1);
    }
    #hero-229 .cs-button-transparent .cs-img {
      display: block;
      margin-right: 0.75rem;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #hero-229 {
      /* 32px - 40px */
      padding: 0 clamp(2rem, 5vw, 2.5rem);
    }
    #hero-229 .cs-container:after {
      /* Right Line */
      /* content: '';
      width: 1px;
      height: 100%; */
      /* background: -moz-linear-gradient(top, rgba(250, 251, 252, 0) 0%, rgba(250, 251, 252, 0.5) 100%); */
      /* FF3.6-15 */
      /* background: -webkit-linear-gradient(top, rgba(250, 251, 252, 0) 0%, rgba(250, 251, 252, 0.5) 100%); */
      /* Chrome10-25,Safari5.1-6 */
      /* opacity: 1;
      position: absolute;
      display: block;
      top: 0;
      right: 0; */
    }
    #hero-229 .cs-button-group {
      flex-direction: row;
    }
  }
  /* Desktop Parallax Effect - 1300px */
  @media only screen and (min-width: 81.25rem) {
    #hero-229 {
      /* background-image: url("img/hero-6.png"); */
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      /* creates parallax effect on background image */
      background-attachment: fixed;
      /* remove img tag so we can make parallax work */
    }
    /* #hero-229 .cs-picture img {
      display: none;
    } */
  }

/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-1601 {
      padding: var(--sectionPadding);
      overflow: hidden;
      position: relative;
      z-index: 1;
    }
    #contact-1601 .cs-container {
      width: 100%;
      /* changes to 1280px at tablet */
      max-width: 34.375rem;
      margin: auto;
      display: flex;
      justify-content: center;
      align-items: stretch;
      flex-direction: column;
      /* 48px - 80px */
      gap: clamp(3rem, 6vw, 5rem);
    }
    #contact-1601 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: left;
      width: 100%;
      max-width: 37.5rem;
      /* resets to 0 at tablet */
      margin: auto;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: flex-start;
    }
    #contact-1601 .cs-title {
      margin: 0 0 2rem 0;
    }
    #contact-1601 .cs-form {
      width: 100%;
      padding: 0;
      /* prevents flexbox from affecting height and width */
      box-sizing: border-box;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      align-items: center;
      gap: 0.75rem;
    }
    #contact-1601 .cs-label {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      width: 100%;
      color: var(--headerColor);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
      gap: 0.25rem;
    }
    #contact-1601 .cs-label:last-of-type {
      margin-bottom: 2rem;
    }
    #contact-1601 .cs-input {
      font-size: 1rem;
      width: 100%;
      /* 46px - 56px */
      height: clamp(2.875rem, 4vw, 3.5rem);
      padding: 0;
      padding-left: 1.5rem;
      color: var(--headerColor);
      background-color: #f7f7f7;
      border: none;
      /* prevents padding from adding to height and width */
      box-sizing: border-box;
    }
    #contact-1601 .cs-input::placeholder {
      color: #7D799C;
      opacity: .6;
    }
    #contact-1601 .cs-textarea {
      min-height: 7.5rem;
      padding-top: 1.5rem;
      font-family: inherit;
    }
    #contact-1601 .cs-button-solid {
      font-size: 1rem;
      /* 46px - 56px */
      line-height: clamp(2.875em, 5.5vw, 3.5em);
      text-decoration: none;
      font-weight: 700;
      text-align: center;
      margin: 0;
      color: #fff;
      border: none;
      padding: 0 1.5rem;
      background-color: var(--primary);
      display: inline-block;
      position: relative;
      z-index: 1;
      /* prevents padding from adding to the width */
      box-sizing: border-box;
      transition: color .3s;
    }
    #contact-1601 .cs-button-solid:before {
      content: '';
      position: absolute;
      height: 100%;
      width: 0%;
      background: #000;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width .3s;
    }
    #contact-1601 .cs-button-solid:hover {
      color: #fff;
    }
    #contact-1601 .cs-button-solid:hover:before {
      width: 100%;
    }
    #contact-1601 .cs-submit:hover {
      cursor: pointer;
    }
    #contact-1601 .cs-wrapper {
      /* 32px - 108px */
      padding: clamp(2rem, 8vw, 6.75rem) 0;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    #contact-1601 .cs-card-group {
      width: 75%;
      max-width: 25.8125rem;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 16px - 20px */
      gap: clamp(1rem, 2.3vw, 1.25rem);
      position: relative;
      z-index: 1;
    }
    #contact-1601 .cs-item {
      text-align: left;
      list-style: none;
      width: 100%;
      margin: 0;
      /* 16px - 40px top & Bottom */
      /* 24px - 40px left & right */
      padding: clamp(1rem, 4vw, 2.5rem) clamp(1.5rem, 5vw, 2.5rem);
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      border: 1px solid #E8E8E8;
      background-color: #fff;
      position: relative;
      z-index: 1;
    }
    #contact-1601 .cs-item:hover:before {
      opacity: 1;
    }
    #contact-1601 .cs-item:hover .cs-header {
      color: var(--primary);
    }
    #contact-1601 .cs-item:hover .cs-item-text,
    #contact-1601 .cs-item:hover .cs-link {
      color: var(--bodyTextColorWhite);
    }
    #contact-1601 .cs-item:hover .cs-text,
    #contact-1601 .cs-item:hover .cs-link {
      opacity: .8;
    }
    #contact-1601 .cs-item:hover .cs-link:hover {
      color: var(--primary);
    }
    #contact-1601 .cs-item:hover .cs-icon {
      filter: grayscale(1) brightness(1000%);
    }
    #contact-1601 .cs-item:before {
      /* hover border and background */
      content: '';
      width: 100%;
      height: 100%;
      background: #1a1a1a;
      opacity: 0;
      position: absolute;
      display: block;
      top: 0;
      left: 0;
      z-index: -1;
      transition: opacity .3s;
    }
    #contact-1601 .cs-header {
      font-size: 1.25rem;
      line-height: 1.2em;
      text-align: inherit;
      font-weight: 700;
      /* 12px - 16px */
      margin: 0 0 clamp(0.75rem, 1.6vw, 1rem);
      display: block;
      transition: color .3s;
    }
    #contact-1601 .cs-item-text {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      line-height: 1.5em;
      text-align: inherit;
      margin: 0;
      color: var(--bodyTextColor);
      display: block;
      transition: color .3s;
    }
    #contact-1601 .cs-link {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      line-height: 1.5em;
      text-align: inherit;
      margin: 0;
      color: var(--bodyTextColor);
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 0.25rem;
      transition: color .3s;
    }
    #contact-1601 .cs-icon {
      width: 1rem;
      height: auto;
    }
    #contact-1601 .cs-background {
      height: 100%;
      width: 100%;
      max-width: 32.625rem;
      position: absolute;
      /* 60px - 188px */
      right: clamp(3.75rem, 9vw, 11.75rem);
      top: 0;
      z-index: -1;
    }
    #contact-1601 .cs-background img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      position: absolute;
      top: 0;
      left: 0;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #contact-1601 .cs-container {
      max-width: 80rem;
      /* removed at large desktop. This is to clip the cs-background */
      overflow: hidden;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
    }
    #contact-1601 .cs-content {
      text-align: left;
      width: 42%;
      margin: 0;
      padding: 0;
      align-items: flex-start;
      /* sends it to the right in the 2nd position */
      order: 2;
    }
    #contact-1601 .cs-form {
      padding: 0;
    }
    #contact-1601 .cs-submit {
      margin-left: 0;
    }
    #contact-1601 .cs-wrapper {
      width: 50%;
      max-width: 39.375rem;
    }
    #contact-1601 .cs-card-group {
      padding: 0;
    }
    #contact-1601 .cs-card-background {
      display: none;
    }
    #contact-1601 .cs-background {
      display: block;
    }
  }
  /* Large Desktop - 1500px */
  @media only screen and (min-width: 93.75rem) {
    #contact-1601 .cs-container {
      overflow: visible;
    }
    #contact-1601 .cs-background {
      right: 11.75rem;
    }
  }
  /*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cta-1071 {
        padding: var(--sectionPadding);
        background-color: var(--primary);
        position: relative;
        z-index: 1;
    }
    #cta-1071 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #cta-1071 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #cta-1071 .cs-flex {
        max-width: 39.375rem;
    }

    #cta-1071 .cs-title {
        margin: 0;

        color: var(--bodyTextColorWhite);
    }
    #cta-1071 .cs-button-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    #cta-1071 .cs-button-solid {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #cta-1071 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #cta-1071 .cs-button-solid:hover:before {
        width: 100%;
    }
    #cta-1071 .cs-button-transparent {
        font-size: 1rem;
        /* 46px - 56px */
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: #fff;
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: transparent;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        transition: color 0.3s;
        border-radius: 0.25rem;
    }
    #cta-1071 .cs-button-transparent:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #fff;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
        border-radius: 0.25rem;
    }
    #cta-1071 .cs-button-transparent:after {
        /* border */
        content: "";
        position: absolute;
        height: 100%;
        width: 100%;
        background-color: transparent;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        border: 1px solid #fff;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
        pointer-events: none;
        border-radius: 0.25rem;
    }
    #cta-1071 .cs-button-transparent:hover {
        color: var(--primary);
        border-radius: 0.25rem;
    }
    #cta-1071 .cs-button-transparent:hover:before {
        width: 100%;
        border-radius: 0.25rem;
    }
    #cta-1071 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #cta-1071 .cs-background:before {
        /* background color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: #1a1a1a;
        opacity: 0.88;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #cta-1071 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cta-1071 .cs-content {
        text-align: left;
        flex-direction: row;
        justify-content: space-between;
    }
    #cta-1071 .cs-button-box {
        flex-wrap: nowrap;
        align-items: center;
        flex: none;
    }
}

                                
                                  
                                

                                  
                                  