
/*-- -------------------------- -->
<---           Stats            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #stats-1022 {
        padding: var(--sectionPadding);
    }
    #stats-1022 .cs-container {
        width: 100%;
        max-width: 80rem;
        /* 40px - 88px */
        padding: clamp(2.5rem, 7vw, 5.5rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        margin: auto;
        background-color: #f7f7f7;
        border-top: 2px solid var(--primary);
        border-bottom: 2px solid var(--primary);
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #stats-1022 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 27.125rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #stats-1022 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #stats-1022 .cs-item {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }
    #stats-1022 .cs-item:last-of-type:after {
        display: none;
    }
    #stats-1022 .cs-item:after {
        /* divider line */
        content: "";
        /* 20px - 80px */
        margin: clamp(1.25rem, 6vw, 5rem) 0;
        width: 100%;
        height: 1px;
        background: #e8e8e8;
        display: block;
    }
    #stats-1022 .cs-number {
        /* 31px - 39px */
        font-size: clamp(1.9375rem, 4vw, 2.4375rem);
        font-weight: 900;
        text-align: center;
        line-height: 1.2em;
        /* 12px - 20px */
        margin: 0 0 clamp(0.75rem, 2vw, 1.25rem) 0;
        padding: 1.25rem 1.5rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: white;
        color: var(--primary);
        border: 2px solid var(--primary);
        border-radius: 5rem;
        display: block;
    }
    #stats-1022 .cs-desc {
        font-size: 1rem;
        line-height: 1.2em;
        margin: 0;
        padding: 0;
        color: var(--bodyTextColor);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #stats-1022 .cs-card-group {
        width: auto;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        flex: none;
        /* 88px - 120px */
        gap: clamp(5.5rem, 9.8vw, 7.5rem);
    }
    #stats-1022 .cs-item:after {
        width: 1px;
        height: 6.25rem;
        margin: 0;
        position: absolute;
        top: 0;
        /* 44px - 120px, half of the cs-card-group gap value */
        right: calc(clamp(2.75rem, 4.7vw, 4rem) * -1);
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #stats-1022 .cs-container {
        flex-direction: row;
        justify-content: space-between;
    }
    #stats-1022 .cs-content {
        text-align: left;
        align-items: flex-start;
    }
}

#stats-1022{
    padding-top: 0px;
}

/*-- -------------------------- -->
<---           Logos            -->
<--- -------------------------- -*/


#logos-572 .cs-logo.tda {
    max-width: 300px;
}

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #logos-572 {
        /* 60px - 130px */
        padding: clamp(3.75rem, 8vw, 8.125rem) 1rem;
        background-color: white;
    }
    #logos-572 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #logos-572 .cs-logo {
        width: auto;
        max-width: 90%;
        height: auto;
        margin: 0;
        display: block;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #logos-572 .cs-container {
        justify-content: space-between;
    }
    #logos-572 .cs-logo {
        width: 20%;
        /* the max width becomes whatever the actual width of the image is */
        max-width: max-content;
        height: auto;
        display: block;
    }
}

                                

                                
                                /*-- -------------------------- -->
<---        Side By Side        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-1586 {
      padding: var(--sectionPadding);
      position: relative;
      z-index: 1;
    }
    #sbs-1586 .cs-container {
      width: 100%;
      /* changes to 1280px at tablet */
      max-width: 36.5rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 64px */
      gap: clamp(2.5rem, 6vw, 4rem);
    }
    #sbs-1586 .cs-picture {
      width: 100%;
      height: clamp(25rem, 80vw, 47rem);
      display: block;
      position: relative;
      order: 2;
    }
    #sbs-1586 .cs-picture img {
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      object-fit: cover;
    }
    #sbs-1586 .cs-content {
      /* set text align to left if content needs to be left aligned */
      text-align: left;
      width: 100%;
      max-width: 39.375rem;
      display: flex;
      flex-direction: column;
      /* centers content horizontally, set to flex-start to left align */
      align-items: flex-start;
      justify-content: center;
    }
    #sbs-1586 .cs-title {
      /* 26 characters wide including spaces */
      max-width: 26ch;
      margin: 0;
    }
    #sbs-1586 .cs-card-group {
      width: 100%;
      /* 550px - 630px */
      max-width: clamp(34.375rem, 50vw, 39.375rem);
      padding: 0;
      /* 24px - 40px */
      margin: clamp(1.5rem, 4vw, 2.5rem) 0 clamp(1.75rem, 4vw, 2.5rem) 0;
      display: grid;
      align-items: center;
      gap: clamp(1rem, 4vw, 2.5rem);
    }
    #sbs-1586 .cs-item {
      list-style: none;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
    #sbs-1586 .wrapper {
      width: 100%;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 0.625rem;
    }
    #sbs-1586 .cs-item-number {
      font-size: 1.25rem;
      line-height: 1.2em;
      font-weight: 700;
      margin: 0;
      color: var(--primary);
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 0.5rem;
    }
    #sbs-1586 .cs-h3 {
      font-size: 1.25rem;
      line-height: 1.2em;
      font-weight: 700;
      margin: 0;
      color: var(--headerColor);
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 0.5rem;
    }
    #sbs-1586 .cs-item-text {
      font-size: 0.875rem;
      line-height: 1.5em;
      margin: 0;
      color: var(--bodyTextColor);
    }
    #sbs-1586 .cs-ul {
      width: 100%;
      margin: 0 0 1.5rem 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.75rem;
    }
    #sbs-1586 .cs-li {
      font-size: var(--bodyFontSize);
      list-style: none;
      line-height: 1.5em;
      width: 100%;
      color: var(--bodyTextColor);
      display: flex;
      justify-content: flex-start;
      /* push icon top the top so if the list item goes to two lines the icon stays at the top */
      align-items: flex-start;
      gap: 0.5rem;
    }
    #sbs-1586 .cs-button-solid {
      font-size: 1rem;
      line-height: 3.5em;
      text-decoration: none;
      font-weight: 700;
      overflow: hidden;
      width: auto;
      margin: 0;
      color: #fff;
      padding: 0 3rem;
      background-color: var(--primary);
      display: inline-block;
      position: relative;
      z-index: 1;
      transition: color 0.3s;
    }
    #sbs-1586 .cs-button-solid:before {
      content: "";
      position: absolute;
      display: block;
      height: 100%;
      width: 0%;
      background: #1a1a1a;
      opacity: 1;
      top: 0;
      left: 0;
      z-index: -1;
      transition: width 0.3s;
    }
    #sbs-1586 .cs-button-solid:hover {
      color: var(--primary);
    }
    #sbs-1586 .cs-button-solid:hover:before {
      width: 100%;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #sbs-1586 .cs-container {
      max-width: 80rem;
      flex-direction: row;
      justify-content: space-between;
      align-items: stretch;
    }
    #sbs-1586 .cs-content {
      width: 50%;
      max-width: 39.375rem;
      /* prevents flexbox from squishing it */
      flex: none;
    }
    #sbs-1586 .cs-card-group {
      grid-template-columns: repeat(12, 1fr);
    }
    #sbs-1586 .cs-item {
      grid-column: span 6;
    }
    #sbs-1586 .cs-picture {
      height: auto;
      min-height: 32.8125rem;
      order: -1;
    }
  }
  /* Small Desktop - 1024px */
  @media only screen and (min-width: 64rem) {
    #sbs-1586 .cs-content {
      padding: 5.25rem 0;
      align-self: center;
    }
  }
/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-673 {
        position: relative;
    }
    #hero-673 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #hero-673 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 32.625rem;
        /* added section padding to cs-content so cs-background can be full width, removed at desktop */
        /* 120px - 300px top */
        padding: clamp(7.5rem, 20.82vw, 18.75rem) 1rem 0;
        padding-bottom: 0;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }
    #hero-673 .cs-topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: 0.1em;
        font-weight: 700;
        /* 8px - 16px */
        margin: 0 0 clamp(0.5rem, 1.5vw, 1rem);
        color: var(--primary);
        display: block;
    }
    #hero-673 .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        /* 17 characters including spaces */
        max-width: 17ch;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #hero-673 .cs-color {
        color: var(--primary);
    }
    #hero-673 .cs-text {
        /* 16px - 20px */
        font-size: clamp(1rem, 1.5vw, 1.25rem);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        max-width: 40.625rem;
        /* 32px - 40px */
        margin: 0 0 clamp(2rem, 5vw, 2.5rem) 0;
        color: var(--bodyTextColor);
    }
    #hero-673 .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: 15.625rem;
        padding: 0 1.5rem;
        background-color: var(--primary);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #hero-673 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }
    #hero-673 .cs-button-solid:hover:before {
        width: 100%;
    }
    #hero-673 .cs-background {
        width: 100%;
        height: 106vw;
        max-height: 31.25rem;
        display: block;
        position: relative;
    }
    #hero-673 .cs-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    #hero-673 .cs-graphic {
        /* 154px - 374px */
        width: clamp(6.625rem, 33vw, 12rem);
        height: auto;
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #hero-673 {
        /* 120px - 250px top */
        /* 60px - 200px  bottom */
        padding: 8rem 1rem
            clamp(3.75rem, 15.82vw, 12.5rem);
    }
    #hero-673 .cs-container {
        flex-direction: row;
        justify-content: flex-start;
    }
    #hero-673 .cs-content {
        text-align: left;
        /* removed padding and put it on the section */
        width: 45%;
        padding: 0;
        align-items: flex-start;
    }
    #hero-673 .cs-background {
        width: 50%;
        height: auto;
        max-height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
    }
}

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-673 {
    }
    #services-673 .cs-card-group {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
    }
    #services-673 .cs-item {
        list-style: none;
        /* 40px - 64px */
        padding: clamp(2.5rem, 6.3vw, 4rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: #eff1f0;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
        transition: filter 0.3s;
    }
    #services-673 .cs-item:hover {
        filter: brightness(70%);
    }
    #services-673 .cs-item:nth-of-type(even) {
        background-color: var(--primary);
    }
    #services-673 .cs-item:nth-of-type(even) .cs-link,
    #services-673 .cs-item:nth-of-type(even) .cs-h2 {
        color: #f7f7f7;
    }
    #services-673 .cs-item:nth-of-type(even) .cs-waves {
        display: none;
    }
    #services-673 .cs-picture {
        width: 6.25rem;
        height: 6.25rem;
        margin: 0 0 1.25rem 0;
        background-color: #fdfaf8;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #services-673 .cs-icon {
        width: 3.25rem;
        height: auto;
        display: block;
    }
    #services-673 .cs-h2 {
        font-size: 1.5625rem;
        font-weight: 700;
        text-align: center;
        line-height: 1.2em;
        /* 20px - 32px */
        margin: 0 0 clamp(1.25rem, 3vw, 2rem);
        color: var(--headerColor);
        display: block;
    }
    #services-673 .cs-link {
        font-size: 1rem;
        line-height: 1.2em;
        font-weight: 700;
        text-decoration: none;
        margin: 0;
        color: var(--primary);
        display: inline-block;
        position: relative;
    }
    #services-673 .cs-link:before {
        /* underline */
        content: "";
        width: 100%;
        height: 1px;
        background: currentColor;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -1px;
        left: 0;
    }
    #services-673 .cs-waves {
        width: 100%;
        height: 100%;
        opacity: 0.5;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        /* prevents the mouse from interacting with it */
        pointer-events: none;
        /* makes it act like a background images */
        object-fit: cover;
        z-index: -1;
    }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #services-673 .cs-card-group {
        flex-direction: row;
        flex-wrap: wrap;
    }
    #services-673 .cs-item {
        width: 50%;
    }
    #services-673 .cs-item:nth-of-type(3) {
        order: 4;
    }
}
/* Small Desktop - 1200px */
@media only screen and (min-width: 75rem) {
    #services-673 .cs-item {
        width: 25%;
    }
    #services-673 .cs-item:nth-of-type(3) {
        order: initial;
    }
}


/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #RPsbs-1008,
    #RPsbsr-1008 {
        padding: var(--sectionPadding);
    }
    #RPsbs-1008 .cs-container,
    #RPsbsr-1008 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 50rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #RPsbs-1008 .cs-content,
    #RPsbsr-1008 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        /* changes to 522px at desktop */
        max-width: 36.125rem;
        margin-top: -1rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #RPsbs-1008 .cs-text,
    #RPsbsr-1008 .cs-text {
        margin-bottom: 1rem;
    }
    #RPsbs-1008 .cs-text:last-of-type,
    #RPsbsr-1008 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #RPsbs-1008 .cs-spacer,
    #RPsbsr-1008 .cs-spacer {
        width: 100%;
        /* 16px - 24px */
        height: clamp(1rem, 3vw, 1.5rem);
        display: block;
    }
    #RPsbs-1008 .cs-button-solid,
    #RPsbsr-1008 .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 2rem;
        background-color: var(--primary);
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        border-radius: .25rem;
    }
    #RPsbs-1008 .cs-button-solid:before,
    #RPsbsr-1008 .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;
    }
    #RPsbs-1008 .cs-button-solid:hover:before,
    #RPsbsr-1008 .cs-button-solid:hover:before {
        width: 100%;
    }
    #RPsbs-1008 .cs-image-group,
    #RPsbsr-1008 .cs-image-group {
        width: 100%;
    }
    #RPsbs-1008 .cs-picture,
    #RPsbsr-1008 .cs-picture {
        width: 100%;
        height: 16.3125rem;
        border: 12px solid #fff;
        background-color: #fff;
        display: block;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        position: relative;
    }
    #RPsbs-1008 .cs-picture img,
    #RPsbsr-1008 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes it behave like a background image */
        object-fit: cover;
    }
    #RPsbs-1008 .cs-seal,
    #RPsbsr-1008 .cs-seal {
        /* changes to a clamp(104px - 190px) at desktop */
        width: 6.5rem;
        height: auto;
        /* 104px - 190px */
        /* wrapped clamp in calc function to make the value negative, and multiply by half (.5) the height to it always overlaps the bg image by half its height */
        margin-top: calc(clamp(6.5rem, 12vw, 11.875rem) * -0.5);
        margin-left: auto;
        /* 28px - 120px */
        margin-right: clamp(1.75rem, 10vw, 7.5rem);
        background-color: #fff;
        border: clamp(6px, 0.8vw, 12px) solid #ffffff;
        border-radius: 50%;
        display: block;
        position: relative;
        /* make it rest on top of the bg picture */
        z-index: 10;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #RPsbs-1008 .cs-container,
    #RPsbsr-1008 .cs-container {
        align-items: flex-start;
    }
    #RPsbs-1008 .cs-flex-group,
    #RPsbsr-1008 .cs-flex-group {
        flex-direction: row;
    }
    #RPsbs-1008 .cs-spacer,
    #RPsbsr-1008 .cs-spacer {
        display: none;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #RPsbs-1008 .cs-container,
    #RPsbsr-1008 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        /* 100px - 200px */
        gap: clamp(6.25rem, 13vw, 12.5rem);
    }
    #RPsbs-1008 .cs-image-group,
    #RPsbsr-1008 .cs-image-group {
        max-width: 33.875rem;
        display: flex;
        justify-content: flex-end;
        position: relative;
    }
    #RPsbs-1008 .cs-picture,
    #RPsbsr-1008 .cs-picture {
        height: 28.75rem;
        aspect-ratio: initial;
    }
    #RPsbs-1008 .cs-seal,
    #RPsbsr-1008 .cs-seal {
        /* 104 - 190px */
        width: clamp(6.5rem, 13vw, 11.875rem);
        margin: 0;
        position: absolute;
        top: 50%;
        /* subtract 12px (.75rem) to account for the border */
        right: calc((clamp(6.5rem, 13vw, 11.875rem) * -0.5) + -0.75rem);
        transform: translateY(-50%);
    }
    #RPsbs-1008 .cs-content,
    #RPsbsr-1008 .cs-content {
        flex: none;
        width: 54%;
        max-width: 33.875rem;
    }
}

/*-- -------------------------- -->
<---   Side By Side Reverse     -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #RPsbsr-1008 {
        background-color: var(--primaryLight);
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #RPsbsr-1008 .cs-container {
        justify-content: flex-end;
    }
    #RPsbsr-1008 .cs-image-group {
        /* sends it to the right in the 2nd position */
        order: 2;
    }
    #RPsbsr-1008 .cs-seal {
        /* subtract 12px (.75rem) to account for the border */
        left: calc((clamp(6.5rem, 13vw, 11.875rem) * -0.5) + -0.75rem);
        right: auto;
    }
}

/*-- -------------------------- -->
<---           Steps            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #steps-1173 {
        padding: var(--sectionPadding);
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #steps-1173 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 44rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #steps-1173 .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;
    }

    #steps-1173 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 1.25rem;
    }
    #steps-1173 .cs-item {
        text-align: center;
        list-style: none;
        display: flex;
        grid-column: span 12;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    #steps-1173 .cs-item:last-of-type:after {
        display: none;
    }
    #steps-1173 .cs-item:nth-of-type(even):after {
        /* scaleX -1 flips it horizontally */
        transform: rotate(-135deg) scaleX(-1);
    }
    #steps-1173 .cs-item:after {
        content: "";
        position: relative;
        display: block;
        /* 54px - 84px */
        width: clamp(3.375rem, 6vw, 5.25rem);
        height: clamp(3.375rem, 6vw, 5.25rem);
        margin-top: 1.25rem;
        background: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Icons/curved-arrow-light.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 1;
        transform: rotate(135deg);
    }
    #steps-1173 .cs-picture {
        margin-bottom: 1.5rem;
        width: 5.5rem;
        height: 5.5rem;
        border: 1px solid #858585;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #steps-1173 .cs-icon {
        width: 2.5rem;
        height: auto;
        display: block;
    }
    #steps-1173 .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        text-align: inherit;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
    }
    #steps-1173 .cs-item-text {
        font-size: 1rem;
        line-height: 1.5em;
        text-align: inherit;
        max-width: 25.8125rem;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #steps-1173 .cs-graphic {
        width: 52.5rem;
        height: auto;
        opacity: 0.3;
        position: absolute;
        top: -5rem;
        left: -5rem;
        z-index: -1;
        transform: rotate(-10deg);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #steps-1173 .cs-container {
        max-width: 80rem;
    }
    #steps-1173 .cs-item {
        grid-column: span 4;
    }
    #steps-1173 .cs-item:nth-of-type(1):after {
        transform: rotate(45deg);
    }
    #steps-1173 .cs-item:nth-of-type(2):after {
        transform: rotate(135deg) scaleX(-1);
    }
    #steps-1173 .cs-item:after {
        margin: 0;
        position: absolute;
        right: -2.5rem;
        top: 0;
        transform: rotate(45deg);
    }
}


                                