/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-2372 {
    padding: var(--sectionPadding);
    background-color: #1a1a1a;
  }
  #cta-2372 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    padding: clamp(2rem, 8vw, 3.75rem) clamp(1rem, 6vw, 6.75rem) 2rem;
    background-color: #000000;
    border-radius: 1rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
    z-index: 1;
  }
  #cta-2372 .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: left;
    width: 100%;
    max-width: 36.25rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: flex-start;
  }
  #cta-2372 .cs-title {
    text-align: inherit;
    margin-bottom: 2rem;
    /* 48px - 64px */
    padding-bottom: clamp(3rem, 6vw, 4rem);
    color: var(--bodyTextColorWhite);
    position: relative;
    z-index: 1;
  }
  #cta-2372 .cs-title:before {
    content: '';
    width: 100vw;
    height: 1px;
    background: #D2D8DF;
    opacity: 0.2;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  #cta-2372 .cs-text {
    margin-bottom: 1rem;
    color: var(--bodyTextColorWhite);
  }
  #cta-2372 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #cta-2372 .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;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border-radius: 6.25rem;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
  }
  #cta-2372 .cs-graphic {
    width: 100%;
    max-width: 30.625rem;
    height: auto;
    display: block;
  }
  #cta-2372 .cs-floater {
    width: 53.1875rem;
    height: auto;
    background-blend-mode: hard-light;
    opacity: 0.54;
    filter: blur(80px);
    /* prevents the mouse from interacting wiht it */
    pointer-events: none;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
  }
}
/* Tablet - 700px */
@media only screen and (min-width: 43.75rem) {
  #cta-2372 .cs-container {
    padding-bottom: 3.75rem;
    flex-direction: row;
    align-items: flex-end;
  }
  #cta-2372 .cs-content {
    width: 45vw;
  }
  #cta-2372 .cs-graphic {
    width: 40vw;
    position: absolute;
    bottom: 0rem;
    right: 1.125rem;
    z-index: 1;
  }
}
                                