/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cta-697 {
      padding: 25px;
      background-color: #1a1a1a;
      border-top: 1px solid var(--primary);
      border-bottom: 1px solid var(--primary);
      position: relative;
      z-index: 1;
    }
    #cta-697 .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-697 .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-697 .cs-title {
      color: var(--bodyTextColorWhite);
    }
    #cta-697 .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        overflow: hidden;
        margin: 0;
        background: var(--primary);
        color: #fff;
        padding: 0 3rem;
        border-radius: 1.875rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        transition: color 0.3s;
    }
    #cta-697 .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #fff;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #cta-697 .cs-button-solid:hover {
        color: var(--primary);
        border-color: var(--primary);
    }
    #cta-697 .cs-button-solid:hover:before {
        width: 100%;
    }
    #cta-697 .primary {
      color: var(--primary);
    }
  }
  /* Small Desktop - 1024px */
  @media only screen and (min-width: 64rem) {
    #cta-697 .cs-content {
      text-align: left;
      flex-direction: row;
      justify-content: space-between;
    }
  }
                                  