/* Common Styles - COPY AND PASTE INTO GLOBAL STYLE SHEET */
/* this media query has all the base variables that each section shares. Grab these styles and add them to your global stylesheet then remove it from this sheet */

@media only screen and (min-width: 0rem) {
    body {
    }
    .cs-topper {
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: inherit;
        letter-spacing: 0.1em;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 0.25rem;
        display: block;
    }
    .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 43.75rem;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    .cs-text {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        max-width: 40.625rem;
        margin: 0;
        color: var(--bodyTextColor);
    }
    .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);
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    .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;
    }
    .cs-button-solid:hover:before {
        width: 100%;
    }
}

/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #banner-1106-1112 {
        padding: var(--sectionPadding);
        padding-top: 20rem;
        padding-bottom: 7.5rem;
        /* clips the line from causing overflow issues for going off screen */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #banner-1106-1112 .cs-container {
        text-align: center;
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }
    #banner-1106-1112 .cs-int-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        margin: 0;
        color: var(--bodyTextColorWhite);
        position: relative;
    }
    #banner-1106-1112 .cs-breadcrumbs {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #banner-1106-1112 .cs-link {
        font-size: 1rem;
        line-height: 1.2em;
        text-decoration: none;
        color: var(--bodyTextColorWhite);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #banner-1106-1112 .cs-link:last-of-type {
        /* remove the chevron on the last list item */
    }
    #banner-1106-1112 .cs-link:last-of-type::after {
        display: none;
    }
    #banner-1106-1112 .cs-link:after {
        /* chevron */
        content: "";
        width: 0.4375rem;
        height: 0.75rem;
        margin: 0 1rem;
        background: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Icons/white-chev.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        position: relative;
        display: block;
    }
    #banner-1106-1112 .cs-link.cs-active {
        color: var(--secondary);
    }
    #banner-1106-1112 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #banner-1106-1112 .cs-background:before {
        /* background color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        background: -moz-linear-gradient(
            left,
            rgba(26, 26, 26, 0.94) 0%,
            rgba(26, 26, 26, 0) 100%
        );
        /* FF3.6-15 */
        background: -webkit-linear-gradient(
            left,
            rgba(26, 26, 26, 0.94) 0%,
            rgba(26, 26, 26, 0) 100%
        );
        /* Chrome10-25,Safari5.1-6 */
        opacity: 1;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #banner-1106-1112 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
    }
}

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-1095-1112 {
        padding: var(--sectionPadding);
    }
    #sbs-1095-1112 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #sbs-1095-1112 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 32.625rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #sbs-1095-1112 .cs-text {
        margin-bottom: 1rem;
    }
    /* #sbs-1095-1112 .cs-text:last-of-type {
        margin-bottom: 2rem;
    } */
    /* #sbs-1095-1112 .cs-list {
        max-width: 39.375rem;
        margin: 0 0 2rem 0;
        padding: 0;
        overflow: hidden;
    }
    #sbs-1095-1112 .cs-li {
        list-style: none;
        margin: 0 0 0.5rem 0;
        color: var(--bodyTextColor);
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 0.75rem;
        position: relative;
    }
    #sbs-1095-1112 .cs-li:before {
        content: "";
        width: 1rem;
        height: 1rem;
        margin-top: 0.1875rem;
        margin-left: -0.5rem;
        background: var(--secondary);
        border-radius: 50%;
        display: block;
        flex: none;
    } */
    #sbs-1095-1112 .cs-info {
        width: 100%;
        padding-top: 2rem;
        border-top: 1px solid #e8e8e8;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.75rem;
        position: relative;
    }
    #sbs-1095-1112 .cs-icon {
        width: 3.25rem;
        height: auto;
        display: block;
        transition: transform 0.3s;
    }
    #sbs-1095-1112 .cs-flex {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    #sbs-1095-1112 .cs-name {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 4vw, 1.5625rem);
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
        display: block;
    }
    #sbs-1095-1112 .cs-desc {
        font-size: 0.875rem;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        display: block;
    }
    #sbs-1095-1112 .cs-image-group {
        /* scales the whole group based on the view width size and stop when that vales equals .789em, resets at desktop */
        font-size: min(2.09vw, 0.789em);
        width: 43.375em;
        height: 43em;
        display: block;
        position: relative;
        z-index: 1;
    }
    #sbs-1095-1112 .cs-picture {
        width: 33.875em;
        height: 38em;
        position: absolute;
        bottom: 0;
        left: 5.5em;
        z-index: -1;
    }
    #sbs-1095-1112 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
    #sbs-1095-1112 .cs-stripes {
        width: 32.625em;
        height: auto;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #sbs-1095-1112 .cs-graphic {
        width: 11.5em;
        height: auto;
        display: block;
        position: absolute;
        bottom: 5em;
        right: 0;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbs-1095-1112 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    #sbs-1095-1112 .cs-image-group {
        font-size: min(1.2vw, 1em);
        flex: none;
    }
}

/*-- -------------------------- -->
<---   Side By Side Reverse     -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbsr-1100-1112 {
        padding: var(--sectionPadding);
        background-color: #f7f7f7;
    }
    #sbsr-1100-1112 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #sbsr-1100-1112 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 32.625rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #sbsr-1100-1112 .cs-text {
        margin-bottom: 1rem;
    }
    #sbsr-1100-1112 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbsr-1100-1112 .cs-ul {
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    #sbsr-1100-1112 .cs-li {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    #sbsr-1100-1112 .cs-h3 {
        /* 20px - 25px */
        font-size: 1.25rem, 3vw, 1.5625rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.75rem;
    }
    #sbsr-1100-1112 .cs-li-text {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        max-width: 39.375rem;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #sbsr-1100-1112 .cs-image-group {
        /* scales the whole group based on the view width size and stop when that vales equals .8em, resets at desktop */
        font-size: min(2.235vw, 0.8em);
        width: 40.5em;
        height: 37.125em;
        display: block;
        position: relative;
        z-index: 1;
    }
    #sbsr-1100-1112 .cs-picture {
        position: absolute;
    }
    #sbsr-1100-1112 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    #sbsr-1100-1112 .cs-picture1 {
        width: 20.1875em;
        height: 27.9375em;
        top: 0;
        right: 0;
        z-index: 10;
    }
    #sbsr-1100-1112 .cs-picture2 {
        width: 19.0625em;
        height: 27.5625em;
        bottom: 0;
        left: 0;
    }
    #sbsr-1100-1112 .cs-stripes {
        width: 34.25em;
        height: auto;
        display: block;
        position: absolute;
        top: 5em;
        left: 2.5em;
        z-index: -1;
    }
    #sbsr-1100-1112 .cs-graphic {
        width: 11.5em;
        height: auto;
        position: absolute;
        bottom: 5em;
        left: 13.875em;
        z-index: 10;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbsr-1100-1112 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    #sbsr-1100-1112 .cs-image-group {
        font-size: min(1.2vw, 1em);
        flex: none;
        /* sends it to the right in the 2nd position */
        order: 2;
    }
}

/*-- -------------------------- -->
<---           Stats            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #stats-340-1112 {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
    }
    #stats-340-1112 .cs-background {
        width: 100%;
        height: 100%;
        background-color: #1a1a1a;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        z-index: -1;
    }
    #stats-340-1112 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        opacity: 0.16;
        object-fit: cover;
    }
    #stats-340-1112 .cs-card-group {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 37.5rem;
        margin: auto;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 2.5rem;
    }
    #stats-340-1112 .cs-item {
        list-style: none;
        min-width: auto;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
    }
    #stats-340-1112 .cs-picture {
        /* 60px - 80px */
        width: clamp(3.75rem, 7.9vw, 5rem);
        height: clamp(3.75rem, 7.9vw, 5rem);
        margin-right: 1rem;
        border-radius: 50%;
        border: 1px solid #bababa;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents border from adding to height and width */
        box-sizing: border-box;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #stats-340-1112 .cs-icon {
        /* 28px - 40px */
        width: clamp(1.75rem, 3.9vw, 2.5rem);
        height: auto;
    }
    #stats-340-1112 .cs-flex-group {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
    }
    #stats-340-1112 .cs-number {
        font-size: var(--headerFontSize);
        color: var(--bodyTextColorWhite);
        font-weight: 900;
        line-height: 1.2em;
        margin: 0;
        display: block;
    }
    #stats-340-1112 .cs-desc {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.4vw, 1rem);
        line-height: 1.5em;
        color: var(--bodyTextColorWhite);
        display: block;
    }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #stats-340-1112 .cs-card-group {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 3.125rem;
        row-gap: 3.75rem;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #stats-340-1112 .cs-card-group {
        max-width: 80rem;
        flex-wrap: nowrap;
        justify-content: space-evenly;
    }
}

/*-- -------------------------- -->
<---       Meet The Team        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #meet-team-1102-1112 {
        padding: var(--sectionPadding);
    }
    #meet-team-1102-1112 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 44rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #meet-team-1102-1112 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 40.625rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }
    #meet-team-1102-1112 .cs-card-group {
        width: 100%;
        /* changes at tablet */
        max-width: 25.8125rem;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 1.8vw, 1.25rem);
        position: relative;
    }
    #meet-team-1102-1112 .cs-item {
        list-style: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: center;
        grid-column: span 12;
        position: relative;
    }
    #meet-team-1102-1112 .cs-picture {
        width: 100%;
        min-height: 18.75rem;
        /* removed at tablet */
        aspect-ratio: 1.17142857;
        /* clips img tag from overflowing it on hover */
        overflow: hidden;
        display: block;
        position: relative;
        z-index: 1;
    }
    #meet-team-1102-1112 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* makes sure the top of the image is at the top of the parent, heads won't get cut off this way */
        object-position: top;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        transition: transform 0.7s;
    }
    #meet-team-1102-1112 .cs-info {
        text-align: center;
        width: 90%;
        /* negative margin will pull it up and overlap the image, changes to -60px at desktop */
        margin-top: -6.25rem;
        /* 20px - 24px */
        padding: clamp(1.25rem, 2vw, 1.5rem);
        /* prevents padding from affecting the height and width */
        box-sizing: border-box;
        background-color: #f7f7f7;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 10;
    }
    #meet-team-1102-1112 .cs-name {
        text-align: inherit;
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.25rem 0;
        color: var(--headerColor);
        display: block;
    }
    #meet-team-1102-1112 .cs-job {
        text-align: inherit;
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0 0 1rem;
        color: var(--bodyTextColor);
        display: block;
    }
    #meet-team-1102-1112 .cs-social-group {
        width: 100%;
        margin: 0;
        padding: 1rem 0 0;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        border-top: 1px solid #e8e8e8;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
    #meet-team-1102-1112 .cs-link {
        width: 2rem;
        height: 2rem;
        background-color: #e8e8e8;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s;
    }
    #meet-team-1102-1112 .cs-link:hover {
        background-color: var(--primary);
    }
    #meet-team-1102-1112 .cs-link:hover .cs-icon {
        filter: grayscale(0) brightness(10000%);
    }
    #meet-team-1102-1112 .cs-icon {
        width: 0.75rem;
        height: auto;
        z-index: 10;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #meet-team-1102-1112 .cs-card-group {
        max-width: 100%;
        align-items: stretch;
    }
    #meet-team-1102-1112 .cs-item {
        max-width: 100%;
        grid-column: span 6;
    }
    #meet-team-1102-1112 .cs-item:hover .cs-picture img {
        transform: scale(1.12);
        opacity: 0.4;
    }
    #meet-team-1102-1112 .cs-picture {
        height: 100%;
        /* 280px - 350px, resets at desktop */
        min-height: clamp(17.5rem, 33vw, 21.875rem);
        background-color: #000;
        overflow: hidden;
        aspect-ratio: initial;
    }
    #meet-team-1102-1112 .cs-picture img {
        transition:
            transform 0.6s,
            opacity 0.3s;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #meet-team-1102-1112 .cs-container {
        max-width: 80rem;
    }
    #meet-team-1102-1112 .cs-item {
        grid-column: span 3;
    }
    #meet-team-1102-1112 .cs-info {
        margin-top: -3.75rem;
    }
    #meet-team-1102-1112 .cs-picture {
        /* 245px - 338px */
        height: clamp(15.3125rem, 27vw, 21.125rem);
        min-height: 15.3125rem;
    }
}/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-481 {
        padding: var(--sectionPadding);
        background-color: #f7f7f7;
    }
    #sbs-481 .cs-container {
        width: 100%;
        /* changes to 1280px at 1024px */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #sbs-481 .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;
    }

    #sbs-481 .cs-text {
        margin-bottom: 1rem;
    }
    #sbs-481 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-481 .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);
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }
    #sbs-481 .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;
    }
    #sbs-481 .cs-button-solid:hover:before {
        width: 100%;
    }
    #sbs-481 .cs-picture {
        width: 100%;
        max-width: 32.625rem;
        height: auto;
        aspect-ratio: 1;
        border-radius: 50%;
        display: block;
        position: relative;
    }
    /* #sbs-481 .cs-picture:before { */
       /* yellow shape */
        /* content: ""; */
        /* 80px - 164px, changes at 1024px */
        /* width: clamp(5rem, 20vw, 10.2rem);
        height: clamp(5rem, 20vw, 10.2rem);
        background: var(--primaryLight);
        border: clamp(6px, 2vw, 12px) solid #f7f7f7;
        border-radius: 2rem 2rem 100% 2rem;
        opacity: 1;
         position: absolute;
        display: block; */
        /* wrapped in a calc function to multiple the clamp value by -1 to get a negative number */
        /* bottom: calc(clamp(6px, 2vw, 12px) * -1);
        right: calc(clamp(6px, 2vw, 12px) * -1);
        z-index: 10; */
    /* } */
    #sbs-481 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* border-radius: 50%; */
        object-fit: cover;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbs-481 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }
    #sbs-481 .cs-content {
        width: clamp(46.6%, 45.7vw, 51%);
    }
    #sbs-481 .cs-picture {
        width: 41%;
    }
    #sbs-481 .cs-picture:before {
        /* 125px - 164px */
        width: clamp(7.8125rem, 13vw, 10.2rem);
        height: clamp(7.8215rem, 13vw, 10.2rem);
        border-radius: 1rem 1rem 50% 1rem;
        bottom: -2.25rem;
    }
    #sbs-481 .cs-picture:after {
        height: 31.25rem;
    }
}

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

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cta-481 {
        padding: var(--sectionPadding);
        padding-top: 0;
        position: relative;
    }
    #cta-481:before {
        content: "";
        width: 100%;
        height: clamp(30%, 50vw, 40%);
        background: #f7f7f7;
        border-bottom: 1px solid #b4b2c7;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #cta-481 .cs-container {
        width: 100%;
        /* changes to 1440px at desktop */
        max-width: 34.375rem;
        margin: auto;
    }
    #cta-481 .cs-card-group {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 16px - 20px */
        gap: clamp(1rem, 1.7vw, 1.25rem);
    }
    #cta-481 .cs-item {
        list-style: none;
        width: 100%;
        /* 20px - 40px */
        padding: clamp(1.25rem, 4vw, 2.5rem);
        background-color: #1c1b1b;
        /* prevents padding from affecting width and height */
        box-sizing: border-box;
        /* 12px - 24px */
        border-radius: .5rem;
        box-shadow: 0px 24px 54px rgba(87, 107, 147, 0.12);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* 24px - 40px */
        gap: clamp(1.5rem, 4vw, 2.5rem);
        position: relative;
    }
    #cta-481 .cs-item:hover .cs-picture img {
        transform: scale(1.1);
    }
    #cta-481 .cs-number {
        /* 16px - 20px */
        font-size: clamp(1rem, 1.7vw, 1.25rem);
        line-height: 1.2em;
        font-weight: 700;
        letter-spacing: 0.1em;
        /* 12px - 32px */
        margin: 0 0 clamp(0.75rem, 3vw, 2.25rem) 0;
        color: var(--primaryLight);
        display: block;
    }
    #cta-481 .cs-h2 {
        /* 20px - 39px */
        font-size: clamp(1.25rem, 3.3vw, 1.9375rem);
        line-height: 1.2em;
        font-weight: bold;
        width: 100%;
        max-width: 22ch;
        /* 24px - 100px, adjusts at desktop */
        /* margin: 0 0 clamp(1.5rem, 3.5vw, 6.25rem) 0; */
        color: var(--bodyTextColorWhite);
    }
    #cta-481 .cs-color {
        color: var(--primaryLight);
        /* makes it sit on its own line */
        /* display: block; */
    }
    #cta-481 .cs-link {
        text-decoration: none;
        padding: 0.5rem;
        width: 100%;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.12);
        border-radius: .25rem;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
    }
    #cta-481 .cs-link:hover .cs-fake-button {
        left: 50%;
    }
    #cta-481 .cs-link:hover .cs-link-text {
        opacity: 0;
    }
    #cta-481 .cs-fake-button {
        /* 14px - 20px */
        font-size: 1rem;
        text-align: center;
        font-weight: 700;
        /* 36px - 46px */
        line-height: clamp(2.25rem, 5vw, 2.875rem);
        /* 16px - 24px */
        padding: 0 clamp(1rem, 2vw, 1.5rem);
        margin: 0 1.25rem 0 0;
        color: var(--bodyTextColorWhite);
        background-color: var(--primary);
        border-radius: 0.25rem;
        position: absolute;
        top: 50%;
        left: 0.5rem;
        z-index: 10;
        transform: translateY(-50%);
        transition: left 0.5s;
    }
    #cta-481 .cs-link-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        /* 36px - 46px */
        line-height: clamp(2.25rem, 5vw, 2.875rem);
        text-transform: initial;
        font-weight: 400;
        /* 24px - 78px, clamp removed at desktop */
        margin: 0 clamp(1.5rem, 3.4vw, 4.875rem) 0 0;
        color: var(--bodyTextColorWhite);
        display: block;
        position: relative;
        transition: opacity 0.3s;
    }
    #cta-481 .cs-arrow {
        width: 1.25rem;
        height: auto;
        margin: 0;
        display: block;
    }
    #cta-481 .cs-picture {
        width: 100%;
        /* changes to 306px at desktop */
        height: 9.5625rem;
        /* 8px - 24px */
        border-radius: clamp(0.5rem, 2vw, 1.5vw);
        /* clips the corners of the image */
        overflow: hidden;
        display: block;
        position: relative;
    }
    #cta-481 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.6s;
    }
    #cta-481 .cs-text {
        color: var(--bodyTextColorWhite);
        padding-bottom: 2rem;
        
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #cta-481 .cs-container {
        max-width: 90rem;
    }
    #cta-481 .cs-card-group {
        flex-direction: row;
    }
    #cta-481 .cs-item {
        overflow: hidden;
    }
    #cta-481 .cs-item:before {
        content: "";
        width: 43.6875rem;
        height: 8.5625rem;
        background: #f1f1f4;
        opacity: 0.46;
        -webkit-filter: blur(132px);
        filter: blur(132px);
        transform: rotate(-45deg);
        position: absolute;
        display: block;
        top: -6.25rem;
        right: -15.625rem;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #cta-481 .cs-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
    #cta-481 .cs-h2 {
        margin-bottom: 6.25rem;
    }
    #cta-481 .cs-link {
        max-width: 25rem;
    }
    #cta-481 .cs-link-text {
        /* 48px - 76px */
        margin-right: clamp(3rem, 4.5vw, 4.75rem);
    }
    #cta-481 .cs-picture {
        width: 10.5625rem;
        height: 19.125rem;
    }
}


/*-- -------------------------- -->
<---        Requirements        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    .cs-checklist {
        list-style: none;
        padding: 0;
        margin: 2rem 0;
    }

    .cs-checklist li {
        padding: 0.5rem 0 0.5rem 2rem;
        position: relative;
    }

    .cs-checklist li:before {
        content: "✓";
        position: absolute;
        left: 0;
        color: #E40C0C;
        font-weight: bold;
        font-size: 1.2em;
    }
    #requirements-481 {
        padding: var(--sectionPadding);
        padding-top: 0;
        position: relative;
    }
    #requirements-481:before {
        content: "";
        width: 100%;
        height: clamp(30%, 50vw, 40%);
        background: #E40C0C;
        border-bottom: 1px solid #b4b2c7;
        opacity: 1;
        position: absolute;
        display: block;
        top: 2rem;
        left: 0;
        z-index: -1;
    }
    #requirements-481 .cs-container {
        width: 100%;
        /* changes to 1440px at desktop */
        max-width: 34.375rem;
        margin: auto;
    }
    #requirements-481 .cs-card-group {
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 16px - 20px */
        gap: clamp(1rem, 1.7vw, 1.25rem);
    }
    #requirements-481 .cs-item {
        list-style: none;
        width: 100%;
        /* 20px - 40px */
        padding: clamp(1.25rem, 4vw, 2.5rem);
        background-color: #1c1b1b;
        /* prevents padding from affecting width and height */
        box-sizing: border-box;
        /* 12px - 24px */
        border-radius: .5rem;
        box-shadow: 0px 24px 54px rgba(87, 107, 147, 0.12);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        /* 24px - 40px */
        gap: clamp(1.5rem, 4vw, 2.5rem);
        position: relative;
    }
    #requirements-481 .cs-item:hover .cs-picture img {
        transform: scale(1.1);
    }
    #requirements-481 .cs-number {
        /* 16px - 20px */
        font-size: clamp(1rem, 1.7vw, 1.25rem);
        line-height: 1.2em;
        font-weight: 700;
        letter-spacing: 0.1em;
        /* 12px - 32px */
        margin: 0 0 clamp(0.75rem, 3vw, 2.25rem) 0;
        color: var(--primaryLight);
        display: block;
    }
    #requirements-481 .cs-h2 {
        /* 20px - 39px */
        font-size: clamp(1.25rem, 3.3vw, 1.9375rem);
        line-height: 1.2em;
        font-weight: bold;
        width: 100%;
        max-width: 22ch;
        /* 24px - 100px, adjusts at desktop */
        /* margin: 0 0 clamp(1.5rem, 3.5vw, 6.25rem) 0; */
        color: var(--bodyTextColorWhite);
    }
    #requirements-481 .cs-color {
        color: var(--primaryLight);
        /* makes it sit on its own line */
        /* display: block; */
    }
    #requirements-481 .cs-link {
        text-decoration: none;
        padding: 0.5rem;
        width: 100%;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background: rgba(255, 255, 255, 0.12);
        border-radius: .25rem;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        position: relative;
    }
    #requirements-481 .cs-link:hover .cs-fake-button {
        left: 50%;
    }
    #requirements-481 .cs-link:hover .cs-link-text {
        opacity: 0;
    }
    #requirements-481 .cs-fake-button {
        /* 14px - 20px */
        font-size: 1rem;
        text-align: center;
        font-weight: 700;
        /* 36px - 46px */
        line-height: clamp(2.25rem, 5vw, 2.875rem);
        /* 16px - 24px */
        padding: 0 clamp(1rem, 2vw, 1.5rem);
        margin: 0 1.25rem 0 0;
        color: var(--bodyTextColorWhite);
        background-color: var(--primary);
        border-radius: 0.25rem;
        position: absolute;
        top: 50%;
        left: 0.5rem;
        z-index: 10;
        transform: translateY(-50%);
        transition: left 0.5s;
    }
    #requirements-481 .cs-link-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        /* 36px - 46px */
        line-height: clamp(2.25rem, 5vw, 2.875rem);
        text-transform: initial;
        font-weight: 400;
        /* 24px - 78px, clamp removed at desktop */
        margin: 0 clamp(1.5rem, 3.4vw, 4.875rem) 0 0;
        color: var(--bodyTextColorWhite);
        display: block;
        position: relative;
        transition: opacity 0.3s;
    }
    #requirements-481 .cs-arrow {
        width: 1.25rem;
        height: auto;
        margin: 0;
        display: block;
    }
    #requirements-481 .cs-picture {
        width: 100%;
        /* changes to 306px at desktop */
        height: 9.5625rem;
        /* 8px - 24px */
        border-radius: clamp(0.5rem, 2vw, 1.5vw);
        /* clips the corners of the image */
        overflow: hidden;
        display: block;
        position: relative;
    }
    #requirements-481 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.6s;
    }
    #requirements-481 .cs-text {
        color: var(--bodyTextColorWhite);
        padding-bottom: 2rem;
        
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #requirements-481 .cs-container {
        max-width: 90rem;
    }
    #requirements-481 .cs-card-group {
        flex-direction: row;
    }
    #requirements-481 .cs-item {
        overflow: hidden;
    }
    #requirements-481 .cs-item:before {
        content: "";
        width: 43.6875rem;
        height: 8.5625rem;
        background: #f1f1f4;
        opacity: 0.46;
        -webkit-filter: blur(132px);
        filter: blur(132px);
        transform: rotate(-45deg);
        position: absolute;
        display: block;
        top: -6.25rem;
        right: -15.625rem;
    }
    #requirements-481 ul {
        list-style-type: none;
        margin: 0;
        padding: 0;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 81.25rem) {
    #requirements-481 .cs-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }
    #requirements-481 .cs-h2 {
        margin-bottom: 2rem;
    }
    #requirements-481 .cs-link {
        max-width: 25rem;
    }
    #requirements-481 .cs-link-text {
        /* 48px - 76px */
        margin-right: clamp(3rem, 4.5vw, 4.75rem);
    }
    #requirements-481 .cs-picture {
        width: 10.5625rem;
        height: 19.125rem;
    }
}
                                

/*-- -------------------------- -->
<---          About             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {

    #title-1451 {
        padding: var(--sectionPadding);
        padding-bottom: 2rem;
      }
      #title-1451 .cs-container {
        width: 100%;
        /* changes to 1280px at large desktop */
        max-width: 59rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 100px */
        gap: clamp(3rem, 6vw, 6.25rem);
        position: relative;
        z-index: 1;
      }
    
    #about-1451 {
      padding: var(--sectionPadding);
    }
    #about-1451 .cs-container {
      width: 100%;
      /* changes to 1280px at large desktop */
      max-width: 59rem;
      margin: auto;
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 48px - 100px */
      gap: clamp(3rem, 6vw, 6.25rem);
      position: relative;
      z-index: 1;
    }
    #about-1451 .cs-content {
      width: 100%;
      /* padding left and right added on tablet */
      padding: 0 0 4rem 0;
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      position: relative;
      z-index: 1;
    }
    #about-1451 .cs-info {
      width: 100%;
      /* 16px - 48px */
      padding: 0 clamp(1rem, 5vw, 3rem);
      /* prevents padding from affecting height and width */
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      /* 16px - 20px */
      gap: clamp(1rem, 2vw, 1.25rem);
      position: relative;
      z-index: 1;
    }
    #about-1451 .cs-info:before {
      /* grey background, moves to the cs-content at tablet */
      content: '';
      width: 100%;
      height: 85%;
      background: #F7F7F7;
      opacity: 1;
      position: absolute;
      display: block;
      bottom: 0;
      left: 0;
      z-index: -1;
    }
    #about-1451 .cs-header {
      font-size: var(--headerFontSize);
      line-height: 1.2em;
      text-align: inherit;
      font-weight: 900;
      /* 12px - 24px */
      margin: 0 0 clamp(0.75rem, 1.5vw, 1.5rem);
      color: var(--headerColor);
      display: block;
    }
    #about-1451 .cs-text {
      /* 14px - 16px */
      font-size: clamp(0.875rem, 1.5vw, 1rem);
      max-width: 43.75rem;
    }
    #about-1451 .cs-text {
      /* Override.  cs-topper cs-title and first cs-text should be removed and put into your global css sheet so it can control every instance of them on your site and is consistent. This selector is a section specific override that stays inside this stitch */
      margin-bottom: 1rem;
    }
    #about-1451 .cs-text:last-of-type {
      margin-bottom: 0rem;
    }
    #about-1451 .cs-picture {
      /* width and height changes at tablet */
      width: 85%;
      max-width: 21.875rem;
      height: 20.625rem;
      display: block;
      position: relative;
      z-index: 10;
    }
    #about-1451 .cs-picture img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      /* positions the top of the image to line up wiht the top of the parent */
      object-position: top;
      position: absolute;
      top: 0;
      left: 0;
    }
    #about-1451 .cs-floater {
      /* 100px - 192px */
      width: clamp(6.25rem, 15vw, 12rem);
      height: auto;
      display: none;
      position: absolute;
      right: 3.125rem;
      top: -4.6875rem;
    }
  }
  /* Tablet - 768px */
  @media only screen and (min-width: 48rem) {
    #about-1451 .cs-info {
      flex-direction: row;
      padding: 0;
    }
    #about-1451 .cs-info:nth-of-type(even) .cs-content {
      padding-left: 2.25rem;
      padding-right: 1.25rem;
    }
    #about-1451 .cs-info:nth-of-type(even) .cs-content:before {
      left: 0;
      right: auto;
    }
    #about-1451 .cs-info:nth-of-type(even) .cs-picture {
      /* sends it to the right in the 2nd position */
      order: 2;
    }
    #about-1451 .cs-info:before {
      display: none;
    }
    #about-1451 .cs-content {
      /* 40px - 148px */
      margin-top: clamp(2.5rem, 7vw, 7.8125rem);
      /* 32px - 148px */
      padding: clamp(2rem, 10vw, 9.375rem) 2.25rem 4rem 1.25rem;
    }
    #about-1451 .cs-content:before {
      /* grey background */
      content: '';
      width: 120%;
      height: 100%;
      background: #F7F7F7;
      opacity: 1;
      position: absolute;
      display: block;
      bottom: 0;
      right: 0;
      z-index: -1;
    }
    #about-1451 .cs-picture {
      /* width and height changes again on larger desktop */
      width: 38%;
      max-width: 16.25rem;
      /* 260px - 348px */
      height: clamp(16.25rem, 36vw, 21.75rem);
    }
    #about-1451 .cs-floater {
      display: block;
    }
  }
  /* Large Desktop 1300px */
  @media only screen and (min-width: 81.25rem) {
    #about-1451 .cs-container {
      max-width: 80rem;
    }
    #about-1451 .cs-info {
      align-items: stretch;
    }
    #about-1451 .cs-picture {
      height: auto;
      min-height: 43.5rem;
      width: 32.625rem;
      max-width: 32.625rem;
      margin-bottom: 4rem;
      /* prevents flexbox from squishing it */
      flex: none;
    }
  }
  /* Larger Desktop 1600px */
  @media only screen and (min-width: 100rem) {
    #about-1451 .cs-info:nth-of-type(even) .cs-picture {
      margin-left: 0;
    }
    #about-1451 .cs-picture {
      margin-left: -5.5rem;
    }
  }
                                  