/********** MOBILE - 360PX ***************/
/*****************************************/
@media only screen and (min-width: 0rem) {
    /*************** HERO ********************/
    /*****************************************/
    #hero-445 {
        /* Centers button */
        text-align: left;
        /* 144px - 300px - leaving extra space for the navigation */
        padding: clamp(9rem, 25.95vw, 23rem) 1rem 0;
        padding-bottom: 0;
        position: relative;
        z-index: 1;
    }
    #hero-445 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #hero-445 .cs-background:before {
        /* Overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: #1a1a1a;
        mix-blend-mode: multiply;
        opacity: 0.4;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
        /* prevents the cursor from interacting with it */
        pointer-events: none;
    }
    #hero-445 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #hero-445 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        gap: 2.5rem;
    }
    #hero-445 .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 700;
        line-height: 1.2em;
        text-align: left;
        max-width: 51.8125rem;
        /* 16px - 24px */
        margin: 0 auto clamp(1rem, 4vw, 1.5rem) 0;
        color: var(--bodyTextColorWhite);
        position: relative;
    }
    #hero-445 .cs-text {
        /* 16px - 20px */
        font-size: clamp(1rem, 1.95vw, 1.25rem);
        line-height: 1.5em;
        text-align: left;
        width: 100%;
        /* 464px - 622px */
        max-width: clamp(29rem, 60vw, 38.785rem);
        margin: 0 auto 0 0;
        color: var(--bodyTextColorWhite);
    }
    #hero-445 .cs-cta {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1.25rem);
        text-decoration: none;
        /* 16px - 20px */
        text-align: center;
        /* 141px - 200px */
        width: clamp(8.8125rem, 17vw, 12.25rem);
        height: clamp(8.8125rem, 17vw, 12.25rem);
        margin-left: auto;
        background-color: var(--primary);
        color: var(--bodyTextColorWhite);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: relative;
        /* place it higher on the z index to be on top of the glowing ball effects */
        z-index: 10;
        transition:
            background-color 0.3s,
            color 0.3s;
    }
    #hero-445 .cs-cta:hover {
        background-color: var(--bodyTextColorWhite);
        color: var(--primary);
    }
    #hero-445 .cs-cta:hover .cs-arrow {
        transform: translateX(3.75rem);
        opacity: 0;
    }
    #hero-445 .cs-cta:hover .cs-cta-text {
        transform: translateY(-0.9375rem);
    }
    #hero-445 .cs-arrow {
        width: 2.5rem;
        height: auto;
        transition:
            transform 0.3s,
            opacity 0.3s;
    }
    #hero-445 .cs-cta-text {
        transition: transform 0.3s;
    }
    #hero-445 .cs-card-group {
        width: 100%;
        padding: 0;
        margin-bottom: 1.5rem;
        background-color: #fff;
        filter: drop-shadow(0px 24px 54px rgba(87, 107, 147, 0.12));
        /* 12px - 24px */
        border-radius: clamp(0.75rem, 2vw, 1.5rem);
        display: flex;
        justify-content: center;
        align-items: stretch;
        flex-wrap: wrap;
    }
    #hero-445 .cs-item {
        list-style: none;
        width: 50%;
        margin: 0;
        /* 16px - 48px top and bottom */
        /* 12px - 110px top and bottom */
        padding: clamp(1rem, 3.7vw, 3rem) clamp(0.75rem, 3vw, 6.875rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        border-right: 1px solid #dcdcdd;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    #hero-445 .cs-item:nth-of-type(2) {
        border: none;
    }
    #hero-445 .cs-item:last-of-type {
        width: 100%;
        border-top: 1px solid #dcdcdd;
        border-right: none;
    }
    #hero-445 .cs-number {
        /* 31px - 61px */
        font-size: clamp(1.9375rem, 4vw, 3.8125rem);
        line-height: 1.2em;
        font-weight: 700;
        text-align: center;
        color: var(--primary);
        margin: 0 0 0.25rem 0;
        display: block;
    }
    #hero-445 .cs-desc {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.2em;
        font-weight: 400;
        text-align: center;
        max-width: 12.5rem;
        margin: 0;
        color: var(--bodyTextColor);
        display: block;
    }
    /*********** WHY CHOOSE US ***************/
    /*****************************************/
    #why-choose-441 {
        padding: var(--sectionPadding);
        padding-top: clamp(3.75rem, 7.82vw, 6.25rem);
        background-color: white;
    }
    #why-choose-441 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 34.375em;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        /* gap: clamp(3rem, 6vw, 4rem); */
    }
    #why-choose-441 .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;
    }
    #why-choose-441 .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;
    }
    #why-choose-441 .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 43.75rem;
        margin: 1rem 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #why-choose-441 .cs-text {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        max-width: 40.625rem;
        margin: 1.5rem;
        color: var(--bodyTextColor);
    }
    #why-choose-441 .cs-card-group {
        width: 100%;
        margin: 3rem;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        /* 12px - 20px */
        gap: clamp(0.75rem, 1.5vw, 1.25rem);
    }
    #why-choose-441 .cs-item {
        list-style: none;
        width: 100%;
        /* changes on tablet */
        max-width: 28.875rem;
        /* 24px - 40px top & bottom */
        /* 24px - 40px left & right */
        padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        border-radius: 1rem;
        background-color: #fff;
        border: 1px solid #dad9e3;
        box-shadow: 0px 24px 54px rgba(87, 107, 147, 0.12);
        position: relative;
        transition:
            background-color 0.3s,
            transform 0.3s,
            box-shadow 0.3s,
            border 0.3s;
    }
    #why-choose-441 .cs-item:before {
        /* green border on hover */
        content: "";
        width: 100%;
        height: 100%;
        background: transparent;
        border: 4px solid var(--primary);
        border-radius: 0.75rem;
        /* prevents border from affecting height and width */
        box-sizing: border-box;
        /* prevents the mouse from interacting with it */
        pointer-events: none;
        opacity: 0;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        transition: opacity 0.3s;
    }
    #why-choose-441 .cs-item:hover {
        background-color: #fff;
        transform: translateY(-0.4375rem);
        border-color: var(--primary);
    }
    #why-choose-441 .cs-item:hover:before {
        opacity: 1;
    }
    #why-choose-441 .cs-link {
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #why-choose-441 .cs-picture {
        /* 40px - 72px */
        width: clamp(2.5rem, 6.5vw, 4.5rem);
        /* 40px - 72px */
        height: clamp(2.5rem, 6.5vw, 4.5rem);
        margin: 0;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background-color: var(--primary);
        position: relative;
        z-index: 1;
    }
    #why-choose-441 .cs-icon {
        /* 24px - 32px */
        height: clamp(1.5rem, 2vw, 2rem);
        width: auto;
    }
    #why-choose-441 .cs-number {
        font-size: var(--headerFontSize);
        font-weight: 400;
        text-align: center;
        line-height: 1.2em;
        margin: 0;
        margin-bottom: 0.25rem;
        color: var(--headerColor);
        transition: color 0.3s;
    }
    #why-choose-441 .cs-desc {
        /* 14px - 20px */
        font-size: clamp(0.875rem, 1.5vw, 1.25rem);
        text-align: center;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        transition: color 0.3s;
    }
    /*************** SERVICES ****************/
    /*****************************************/
    #services-448 {
        padding: var(--sectionPadding);
    }
    #services-448 .cs-container {
        width: 100%;
        /* changes at 1280px at tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }
    #services-448 .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;
    }

    #services-448 .cs-card-group {
        width: 100%;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 16px - 20px */
        column-gap: clamp(1rem, 1.5vw, 1.25rem);
        /* 24px - 60px */
        row-gap: clamp(1.5rem, 5vw, 3.75rem);
    }
    #services-448 .cs-item {
        list-style: none;
        width: 100%;
        max-width: 22.5rem;
        /* changes at desktop */
        padding-top: 9rem;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #services-448 .cs-item:hover .cs-picture img {
        transform: scale(1.2);
        opacity: 0.4;
    }
    #services-448 .cs-item:hover .cs-flex:before {
        opacity: 1;
    }
    #services-448 .cs-picture {
        width: 100%;
        /* changes at desktop */
        height: 15.625rem;
        border-radius: 0.5rem;
        background-color: var(--primary);
        /* clips the corners of the image */
        overflow: hidden;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #services-448 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes it behave like a background image */
        object-fit: cover;
        /* positions top of image to the top of the container */
        object-position: top;
        transition:
            transform 0.9s,
            opacity 0.5s;
    }
    #services-448 .cs-flex {
        text-align: center;
        width: 88%;
        padding: 0 1.5rem 1.5rem 1.5rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        border: 1px solid #dad9e3;
        border-radius: 0.75rem;
        background-color: #fff;
        box-shadow: 0px 24px 54px rgba(87, 107, 147, 0.12);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
    }
    #services-448 .cs-flex:before {
        /* hover border box */
        content: "";
        background: transparent;
        /* prevents the mouse from interacting with it */
        pointer-events: none;
        border: 4px solid var(--primary);
        border-radius: 0.75rem;
        /* prevents border from affecting height and width */
        box-sizing: border-box;
        opacity: 0;
        position: absolute;
        display: block;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        transition: opacity 0.5s;
    }
    #services-448 .cs-wrapper {
        /* 80px - 120px */
        width: clamp(5rem, 9.2vw, 7.5rem);
        height: clamp(5rem, 9.2vw, 7.5rem);
        /* 20px - 24px */
        margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
        /* we use the same clamp value for height & width, but multiple by -.5 so it will be a negative value, and be half of the height.  Negative margins pull things toward the element so they overlap them, in this case we want the .cs-wrapper to overlap .cs-flex by half its height, so we use the same clamp for height and half it for the margin top value */
        margin-top: calc(clamp(5rem, 9.2vw, 7.5rem) * -0.5);
        border-radius: 50%;
        border: 4px solid var(--primary);
        background-color: #fff;
        /* prevents border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 10;
    }
    #services-448 .cs-icon {
        /* 48px - 64px */
        width: clamp(3rem, 4.3vw, 4rem);
        height: auto;
        display: block;
    }
    #services-448 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 1.9vw, 1.5625rem);
        line-height: 1.2em;
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        color: var(--headerColor);
    }
    #services-448 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        font-weight: 400;
        /* 20px - 24px */
        margin: 0 0 clamp(1.25rem, 1.5vw, 1.5rem);
        color: var(--bodyTextColor);
    }
    #services-448 .cs-link {
        /* 16px - 20px */
        font-size: clamp(1rem, 1.5vw, 1.25rem);
        line-height: 1.5em;
        font-weight: 700;
        text-transform: uppercase;
        text-decoration: none;
        margin: 0;
        color: var(--primary);
        display: inline-block;
        position: relative;
    }
    #services-448 .cs-link:hover:before {
        width: 100%;
    }
    #services-448 .cs-link:before {
        /* animated underline */
        content: "";
        width: 0%;
        height: 3px;
        background: currentColor;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -0.125rem;
        left: 0;
        transition: width 0.3s;
    }
    /************* WHAT WE DO ****************/
    /*****************************************/
    #sbs-449 {
        padding: var(--sectionPadding);
        background-color: #f7f7f7;
        /* prevent overflow from .cs-container pseudo mask */
        overflow: hidden;
        position: relative;
    }
    #sbs-449 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }
    #sbs-449 .cs-container:before {
        /* covers the .cs-background on the left edge */
        content: "";
        width: 50%;
        height: 31.25rem;
        background: #f7f7f7;
        opacity: 1;
        position: absolute;
        display: block;
        top: -3.125rem;
        /* pushes it to the left 100% width of the parent, making it's right side rest flush with the parents left edge */
        right: 100%;
        z-index: 10;
    }
    #sbs-449 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 34.375rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #sbs-449 .cs-text {
        margin-bottom: 1rem;
    }
    #sbs-449 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-449 .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-449 .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-449 .cs-button-solid:hover:before {
        width: 100%;
    }
    #sbs-449 .cs-image-group {
        font-size: min(2.4vw, 0.6em);
        /* changes at tablet */
        width: 100%;
        /* changes to 100% at tablet */
        max-width: 25rem;
        height: auto;
        display: flex;
        /* push person image to the right of the box */
        justify-content: center;
        order: -1;
        position: relative;
        z-index: 1;
    }
    #sbs-449 .cs-person {
        width: auto;
        height: 40.75em;
        margin-right: 4em;
    }
    #sbs-449 .cs-person img {
        width: auto;
        height: 100%;
        filter: drop-shadow(30px 0px 54px rgba(0, 0, 0, 0.25));
    }
    #sbs-449 .cs-wrapper {
        /* changes at tablet */
        width: 46.875em;
        height: 41.375em;
        border-radius: 0 0 1.5em;
        /* clips corners around the border radius */
        overflow: hidden;
        display: block;
        position: absolute;
        bottom: 0;
        /* 40px - 120px */
        right: clamp(2rem, 5vw, 7rem);
        z-index: -1;
    }
    #sbs-449 .cs-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
    }
    #sbs-449 .cs-background:before {
        /* green overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary);
        opacity: 0.6;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
    }
    #sbs-449 .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        z-index: -1;
    }
    #sbs-449 .cs-mask {
        width: 100%;
        height: auto;
        position: absolute;
        /* ensures there's no gap for the picture to show at the edge */
        top: -2px;
        left: 0;
        z-index: 100;
    }
    #sbs-449 .cs-mask path {
        width: 100%;
    }
    #sbs-449 .cs-info {
        /* 20px - 31px */
        font-size: clamp(1.25rem, 3vw, 1.9375rem);
        font-weight: 700;
        line-height: 1.2em;
        /* 16px - 24px top and bottom */
        /* 24px - 32px left and right */
        padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 2.3vw, 2rem);
        border-radius: 0.75rem 0.75rem 0 0;
        color: var(--headerColor);
        background-color: #fafbfc;
        border-bottom: 4px solid var(--primaryLight);
        position: absolute;
        bottom: 0;
        right: 0;
    }
    #sbs-449 .cs-job {
        /* 13px - 16px */
        font-size: clamp(0.8125rem, 1.5vw, 1rem);
        line-height: 1.2em;
        font-weight: 400;
        text-transform: uppercase;
        color: var(--headerColor);
        display: block;
    }
    #sbs-449 .cs-floater {
        display: none;
        position: absolute;
    }
    /************** ABOUT US *****************/
    /*****************************************/
    #sbs-412 {
        margin-top: 4rem;
        padding: var(--sectionPadding);
        /* clips svg as the screen grows so it doesn't overflow */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #sbs-412 .cs-container {
        width: 100%;
        /* changes to 1280 at tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 108px */
        gap: clamp(3rem, 7.1vw, 6.75rem);
    }
    #sbs-412 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 33.875rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #sbs-412 .cs-text {
        margin-bottom: 1rem;
    }
    #sbs-412 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-412 .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-412 .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-412 .cs-button-solid:hover:before {
        width: 100%;
    }
    #sbs-412 .cs-image-group {
        font-size: min(2.5vw, 1em);
        width: 36.1875em;
        height: 33.875em;
        /* sends it to the top of the flexbox */
        order: -1;
        position: relative;
    }
    #sbs-412 .cs-picture {
        border-radius: 1.25em;
        /* clips the img tag corners */
        overflow: hidden;
        position: absolute;
        display: block;
    }
    #sbs-412 .cs-picture:hover:before {
        opacity: 0.6;
    }
    #sbs-412 .cs-picture:hover img {
        transform: scale(1.1);
    }
    #sbs-412 .cs-picture:before {
        /* Hover Box */
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary);
        opacity: 0;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 10;
        transition: opacity 0.3s;
    }
    #sbs-412 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.6s;
    }
    #sbs-412 .cs-picture1 {
        width: 12.75em;
        height: 19.625em;
        top: 0;
        left: 0;
    }
    #sbs-412 .cs-picture2 {
        width: 21.75em;
        height: 19.625em;
        top: 0;
        right: 0;
    }
    #sbs-412 .cs-picture3 {
        width: 36.1875em;
        height: 12.625em;
        bottom: 0;
        left: 0;
    }
}

/********** IN-BETWEEN - 650PX ***********/
/*****************************************/
@media only screen and (min-width: 40.625rem) {
    /**************** HERO *******************/
    /*****************************************/
    #hero-445 .cs-card-group {
        /* 40px - 80px */
        margin-top: clamp(2.5rem, 6vw, 5rem);
        flex-wrap: nowrap;
    }
    #hero-445 .cs-item {
        width: 33.33%;
    }
    #hero-445 .cs-item:nth-of-type(2) {
        border-right: 1px solid #dcdcdd;
    }
    #hero-445 .cs-item:last-of-type {
        width: 33.33%;
        border: none;
    }

}

/************** TABLET - 768PX ***********/
/*****************************************/
@media only screen and (min-width: 48rem) {
    /**************** HERO *******************/
    /*****************************************/
    #hero-445 .cs-content {
        width: 70%;
    }
    /*********** WHY CHOOSE US ***************/
    /*****************************************/
    #why-choose-441 .cs-container {
        max-width: 80rem;
    }
    #why-choose-441 .cs-card-group {
        flex-direction: row;
        justify-content: center;
        flex-wrap: nowrap;
    }
    #why-choose-441 .cs-item {
        width: 100%;
    }
    /*************** SERVICES ****************/
    /*****************************************/
    #services-448 .cs-container {
        max-width: 80rem;
    }
    #services-448 .cs-card-group {
        flex-direction: row;
    }
    #services-448 .cs-item {
        width: 47%;
    }
    /************* WHAT WE DO ****************/
    /*****************************************/
    #sbs-449 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }
    #sbs-449 .cs-container:before {
        display: none;
    }
    #sbs-449 .cs-image-group {
        font-size: min(1.2vw, 1em);
        width: 33.4375em;
        max-width: 100%;
    }
    #sbs-449 .cs-wrapper {
        width: 53.125em;
        right: 1.875rem;
    }
}

/******** SMALL DESKTOP - 1024PX *********/
/*****************************************/
@media only screen and (min-width: 64rem) {
    /*************** SERVICES ****************/
    /*****************************************/
    #services-448 .cs-card-group {
        flex-wrap: nowrap;
    }
    #services-448 .cs-item {
        width: 100%;
        /* 144px - 274px */
        padding-top: clamp(9rem, 17.5vw, 17.125rem);
    }
    #services-448 .cs-picture {
        /* 224px - 428px */
        height: clamp(14rem, 28vw, 26.75rem);
    }
    /************** ABOUT US *****************/
    /*****************************************/
    #sbs-412 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    #sbs-412 .cs-content {
        width: 48%;
    }
    #sbs-412 .cs-image-group {
        font-size: min(1.15vw, 1em);
        flex: none;
    }

}

/******** LARGE DESKTOP 1300PX ***********/
/*****************************************/
@media only screen and (min-width: 81.25rem) {
    /************* WHAT WE DO ****************/
    /*****************************************/
    #sbs-449 .cs-content {
        margin-right: 5.625rem;
    }
    #sbs-449 .cs-floater {
        display: block;
        top: 0;
        /* places left edge at the center line of the container */
        left: 50%;
        /* pushes X amount of pixels from the center line */
        margin-left: 31.25rem;
        /* flip horizontally */
        transform: scaleX(-1);
    }

}

/************** DARK MODE ****************/
/*****************************************/
@media only screen and (min-width: 0rem) {
    /**************** HERO *******************/
    /*****************************************/
    body.dark-mode #hero-445 .cs-background:before {
        opacity: 0.85;
    }
    body.dark-mode #hero-445 .cs-card-group {
        background-color: var(--accent);
    }
    body.dark-mode #hero-445 .cs-number,
    body.dark-mode #hero-445 .cs-desc {
        color: var(--bodyTextColorWhite);
    }
    /************ WHY CHOOSE US **************/
    /*****************************************/
    body.dark-mode #why-choose-441 {
        background-color: rgba(0, 0, 0, 0.2);
    }
    body.dark-mode #why-choose-441 .cs-topper {
        color: var(--primaryLight);
    }
    body.dark-mode #why-choose-441 .cs-title,
    body.dark-mode #why-choose-441 .cs-text,
    body.dark-mode #why-choose-441 .cs-h3,
    body.dark-mode #why-choose-441 .cs-desc,
    body.dark-mode #why-choose-441 .cs-number {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #why-choose-441 .cs-picture {
        background-color: var(--accent);
    }
    body.dark-mode #why-choose-441 .cs-item {
        position: relative;
        background-color: rgba(0, 0, 0, 0.2);
    }
    /*************** SERVICES ****************/
    /*****************************************/
    body.dark-mode #services-448 .cs-topper {
        color: var(--primaryLight);
    }
    body.dark-mode #services-448 .cs-title {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #services-448 .cs-text {
        color: var(--bodyTextColorWhite);
        opacity: 0.8;
    }
    body.dark-mode #services-448 .cs-flex,
    body.dark-mode #services-448 .cs-wrapper {
        background-color: var(--medium);
    }
    body.dark-mode #services-448 .cs-icon {
        filter: grayscale(1) brightness(2000%);
    }
    body.dark-mode #services-448 .cs-h3,
    body.dark-mode #services-448 .cs-item-text {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #services-448 .cs-link {
        color: var(--primaryLight);
    }
    /************* WHAT WE DO ****************/
    /*****************************************/
    body.dark-mode #sbs-449 {
        background-color: var(--dark);
    }
    body.dark-mode #sbs-449 .cs-container:before {
        background-color: var(--dark);
    }
    body.dark-mode #sbs-449 .cs-topper {
        color: var(--primaryLight);
    }
    body.dark-mode #sbs-449 .cs-title,
    body.dark-mode #sbs-449 .cs-text,
    body.dark-mode #sbs-449 .cs-info,
    body.dark-mode #sbs-449 .cs-job {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #sbs-449 .cs-text {
        opacity: 0.8;
    }
    body.dark-mode #sbs-449 .cs-background::before {
        filter: brightness(30%);
        opacity: 0.8;
    }
    body.dark-mode #sbs-449 .cs-mask path {
        /* change the mask color */
        fill: var(--dark);
    }
    body.dark-mode #sbs-449 .cs-info {
        background-color: var(--accent);
    }
    /************** ABOUT US *****************/
    /*****************************************/
    body.dark-mode #sbs-412 .cs-topper {
        color: var(--primaryLight);
    }
    body.dark-mode #sbs-412 .cs-title,
    body.dark-mode #sbs-412 .cs-text {
        color: var(--bodyTextColorWhite);
    }
}