:root {
                --primary: #ff6a3e;
                --primaryLight: #ffba43;
                --secondary: #ffba43;
                --secondaryLight: #ffba43;
                --headerColor: #1a1a1a;
                --bodyTextColor: #4e4b66;
                --bodyTextColorWhite: #fafbfc;
                /* 13px - 16px */
                --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
                /* 31px - 49px */
                --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
                --bodyFontSize: 1rem;
                /* 60px - 100px top and bottom */
                --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
            }
            .gradient-text {
                background-image: linear-gradient(342deg, #001f1f00 69%, #7a9deb), linear-gradient(29deg, hsla(148.06451612903226, 100%, 75.69%, 0) 25%, hsla(180, 100%, 43.92%, 0) 42%, #98e7ff),
                    linear-gradient(to bottom, hsla(0, 0%, 100%, 1), hsla(0, 0%, 100%, 1));
                position: relative;
                background-clip: text;
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

            .bg-theme {
                background-image: url(assets/images/edesk/bg.png);
                background-size: cover;
            }

            .bg-background-gradient {
                background-image: linear-gradient(25deg, #4027c8, #dc00ca);
            }

            .shimmer {
                background: linear-gradient(to right, #ffffff 10%, #98e7ff 30%, #39468d 60%, #ffffff 90%);
                /*background: linear-gradient(to right, #ffffff 10%, #b9e7ff 30%, #5a82c4 60%, #ffffff 90%);*/
                /* linear-gradient(to right, #efe8ff 20%, #b9e7ff 30%, #7a9deb 70%, #00437b 80%); */
                -webkit-background-clip: text;
                background-clip: text;
                -webkit-text-fill-color: transparent;
                /* text-fill-color: transparent; */
                background-size: 500% auto;
                animation: textShine 10s ease-in-out infinite alternate;
            }

            @keyframes textShine {
                0% {
                    background-position: 0% 50%;
                }

                50% {
                    background-position: 100% 50%;
                }

                100% {
                    background-position: 0% 50%;
                }
            }

            .bounces {
                animation: bounce 3s linear 0s infinite;
            }

            @keyframes bounce {
                0% {
                    transform: translateY(0);
                }

                50% {
                    transform: translateY(16px);
                }

                100% {
                    transform: translateY(0);
                }
            }

            .bg-gradient-180 {
                background-image: linear-gradient(180deg, var(--uc-gradient-stops)) !important;
            }

            .swrapper {
                margin-top: 100px;
                padding-top: 150px;
                padding-bottom: 150px;
                max-width: 95%;
                margin: 0 auto;
                position: relative;
            }

            .scard {
                position: sticky;
                background-color: #fff;
                padding: 40px;
                margin-bottom: 40px;
                height: 600px;
                top: 0;
                transition: transform 0.3s ease, scale 0.3s ease, opacity 0.3s ease;

                border-radius: 15px;
            }

            .scard h2 {
                padding: 0;
            }

            .scard span {
                display: block;
                font-size: 14px;
                color: #0c4eb9;
            }

            /* Set Initial Scale for Stacking */
            .scard:nth-child(1) {
                top: 0px;
            }

            .scard:nth-child(2) {
                top: 30px;
            }

            .scard:nth-child(3) {
                top: 60px;
            }

            .scard:nth-child(4) {
                top: 90px;
            }

            .scard:nth-child(5) {
                top: 120px;
            }

            .scard:nth-child(6) {
                top: 150px;
            }

            .scard:nth-child(7) {
                top: 180px;
            }

            .scard:nth-child(8) {
                top: 210px;
            }

            /* Mobile - 360px */
            @media only screen and (min-width: 0rem) {
                @keyframes floatAnimation {
                    0% {
                        transform: translateY(0);
                    }

                    50% {
                        transform: translateY(-2rem);
                    }

                    100% {
                        transform: translateY(0);
                    }
                }

                @keyframes floatAnimation2 {
                    0% {
                        transform: translateY(0);
                    }

                    50% {
                        transform: translateY(-3rem);
                    }

                    100% {
                        transform: translateY(0);
                    }
                }

                #sbsr-1363 {
                    padding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
                    position: relative;
                    overflow: hidden;
                    z-index: 1;
                    background: linear-gradient(to bottom, #d3e3fd3d, #ffffffbd), url(/assets/images/edesk/why-choose-us-bg.jpg);
                    background-size: cover;
                }

                #sbsr-1363 .cs-container {
                    width: 100%;
                    /* changes to 1280px at desktop */
                    max-width: 36.5rem;
                    margin: auto;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    /* 48px - 64px */
                    gap: clamp(3rem, 6vw, 4rem);
                }

                #sbsr-1363 .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;
                }

                #sbsr-1363 .cs-topper {
                    color: #767676;
                }

                #sbsr-1363 .cs-title {
                    /* 23 characters wide including spaces */
                    max-width: 26ch;
                }

                #sbsr-1363 .cs-text {
                    margin-bottom: 1rem;
                }

                #sbsr-1363 .cs-text:last-of-type {
                    margin-bottom: 1.5rem;
                }

                #sbsr-1363 .cs-card-group {
                    width: 100%;
                    max-width: 39.375rem;
                    margin: 0 0 1.5rem 0;
                    padding: 0;
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(15.625rem, 1fr));
                    align-items: center;
                    gap: clamp(1rem, 2vw, 1.25rem);
                }

                #sbsr-1363 .cs-item {
                    list-style: none;
                    /* 16px - 24px */
                    padding: clamp(1rem, 3vw, 1.5rem);
                    /* prevents padding from affecting height and width */
                    box-sizing: border-box;
                    background-color: #ffffff;
                    border-radius: 1rem;
                    border: 1px solid #e8e8e8;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 0.75rem;
                    height: 100%;
                }

                #sbsr-1363 .cs-h3 {
                    font-size: 1rem;

                    font-weight: 700;
                    margin: 0;

                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                    gap: 0.5rem;
                }

                #sbsr-1363 .cs-h3-icon {
                    width: 2rem;
                    height: auto;
                    display: block;
                }

                #sbsr-1363 .cs-item-text {
                    font-size: 0.8rem;
                    line-height: 1.5em;
                    margin: 0;
                    min-height: 80px;
                }

                #sbsr-1363 .cs-ul {
                    width: 100%;
                    margin: 0 0 1.5rem 0;
                    padding: 0;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 0.75rem;
                }

                #sbsr-1363 .cs-li {
                    list-style: none;
                    line-height: 1.5em;
                    width: 100%;

                    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;
                }

                #sbsr-1363 .cs-icon {
                    width: 1.5rem;
                    height: auto;
                    /* adds extra space between the icon and top of parent so it's more centered */
                    margin-top: 1px;
                    display: block;
                }

                #sbsr-1363 .cs-button-solid {
                    font-size: 1rem;
                    line-height: 3.5rem;
                    text-decoration: none;
                    font-weight: 700;
                    overflow: hidden;
                    margin: 0;
                    color: #fff;
                    padding: 0 3rem;
                    border-radius: 1.875rem;
                    background-color: #ff6a3e;
                    display: inline-block;
                    position: relative;
                    z-index: 1;
                    transition: color 0.3s;
                }

                #sbsr-1363 .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;
                }

                #sbsr-1363 .cs-button-solid:hover {
                    color: #ff6a3e;
                }

                #sbsr-1363 .cs-button-solid:hover:before {
                    width: 100%;
                }

                #sbsr-1363 .cs-image-group {
                    width: 100%;
                    max-width: 36.625rem;
                    /* Changes to auto at desktop */
                    height: 32.5rem;
                    /* 32px - 48px */
                    border-radius: clamp(2rem, 4vw, 3rem);
                    /* clips the corners of the children around the border radius */
                    overflow: hidden;
                    position: relative;
                }

                #sbsr-1363 .cs-background {
                    width: 100%;
                    height: 100%;
                    /* makes it cover the parent dimensions */
                    object-fit: cover;
                    display: block;
                }

                #sbsr-1363 .cs-background img {
                    width: 100%;
                    height: 100%;
                    /* makes it cover the parent like a backgorund image */
                    object-fit: cover;
                    display: block;
                }

                #sbsr-1363 .cs-box {
                    text-align: left;
                    width: 100%;
                    max-width: 19rem;
                    padding: 2rem;
                    /* prevents padding from affecting height and width */
                    box-sizing: border-box;
                    background-color: #3f358d;
                    /* 48px - 80px */
                    border-radius: 2rem;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 1.5rem;
                    position: absolute;
                    /* 12px - 20px */
                    right: clamp(0.75rem, 1.9vw, 1.5rem);
                    /* 12px - 20px */
                    bottom: clamp(0.75rem, 1.9vw, 1.5rem);
                }

                #sbsr-1363 .cs-box-icon {
                    width: 3.75rem;
                    height: auto;
                    display: block;
                }

                #sbsr-1363 .cs-desc {
                    font-size: 1.25rem;
                    line-height: 1.2em;
                    text-align: inherit;
                    font-weight: 700;
                    width: 100%;
                    margin: 0;
                    color: #fafbfc;
                }

                #sbsr-1363 .cs-bubbles {
                    font-size: min(2.5vw, 0.7em);
                    width: 26.1875em;
                    height: 26.6875em;
                    position: absolute;
                    /* reset at larger desktop */
                    right: -16.25em;
                    /* changes to 30px at desktop */
                    bottom: -3.125em;
                    z-index: -1;
                }

                #sbsr-1363 .cs-bubbles:before {
                    /* white border bubble */
                    content: '';
                    width: 20.625em;
                    height: 20.625em;
                    background: #8888883d;
                    border: 1px solid #e3e3e3;
                    border-radius: 50%;
                    opacity: 1;
                    position: absolute;
                    display: block;
                    top: 0;
                    right: 0;
                    animation-name: floatAnimation;
                    animation-duration: 5s;
                    animation-timing-function: ease-in-out;
                    animation-fill-mode: forwards;
                    animation-iteration-count: infinite;
                }

                #sbsr-1363 .cs-bubbles:after {
                    /* orange bubble */
                    content: '';
                    width: 16.25em;
                    height: 16.25em;
                    background: #7a91ff;
                    opacity: 0.15;
                    border-radius: 50%;
                    display: block;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    z-index: -1;
                    animation-name: floatAnimation2;
                    animation-duration: 14s;
                    animation-timing-function: ease-in-out;
                    animation-fill-mode: forwards;
                    animation-iteration-count: infinite;
                }
            }

            /* Small Desktop - 1024px */
            @media only screen and (min-width: 64rem) {
                #sbsr-1363 .cs-container {
                    max-width: 80rem;
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: stretch;
                }

                #sbsr-1363 .cs-image-group {
                    height: auto;
                    /* sends it to the right in the 2nd position */
                    order: 2;
                }

                #sbsr-1363 .cs-bubbles {
                    font-size: min(2.5vw, 1em);
                    right: -6.25rem;
                    bottom: 0rem;
                }
            }

            /* Large Desktop 1600px */
            @media only screen and (min-width: 100rem) {
                #sbsr-1363 .cs-bubbles {
                    margin-right: 46.875rem;
                    left: auto;
                    right: 50%;
                }
            }

            /*-- -------------------------- -->
            <---          Services          -->
            <--- -------------------------- -*/

            /* Mobile - 360px */
            @media only screen and (min-width: 0rem) {
                #services-1628 {
                    padding: var(--sectionPadding);
                    background-color: #ffffff; /* #f7f7f7 */
                }
                #services-1628 .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);
                }
                #services-1628 .cs-content {
                    /* set text align to left if content needs to be left aligned */
                    text-align: left;
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    /* centers content horizontally, set to flex-start to left align */
                    align-items: flex-start;
                }
                #services-1628 .cs-title {
                    max-width: 20ch;
                }
                #services-1628 .cs-text {
                    max-width: 40rem;
                    position: relative;
                    z-index: 1;
                }
                #services-1628 .cs-text:after {
                    /* divider line */
                    content: '';
                    width: 100%;
                    height: 1px;
                    margin-top: 1.5rem;
                    background: var(--primary);
                    opacity: 1;
                    display: block;
                    position: relative;
                }
                #services-1628 .cs-chevron {
                    --chevronColor: var(--primary);
                    width: 3rem;
                    height: auto;
                }
                #services-1628 .cs-card-group {
                    width: 100%;
                    margin: 0;
                    padding: 0;
                    display: grid;
                    grid-template-columns: repeat(12, 1fr);
                    /* 16px - 20px */
                    column-gap: clamp(1rem, 2.5vw, 1.25rem);
                    /* 28px - 40px */
                    row-gap: clamp(1.75rem, 2.5vw, 2.5rem);
                }
                #services-1628 .cs-item {
                    list-style: none;
                    width: 100%;
                    display: flex;
                    grid-column: span 12;
                    flex-direction: column;
                    align-items: flex-start;
                }
                #services-1628 .cs-item:hover .cs-picture img {
                    opacity: 0.5;
                    transform: scale(1.2);
                }
                #services-1628 .cs-link {
                    text-decoration: none;
                    height: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                }
                #services-1628 .cs-picture {
                    width: 100%;
                    height: 15rem;
                    margin-bottom: 1.5rem;
                    background-color: #000;
                    overflow: hidden;
                    display: block;
                    position: relative;
                }
                #services-1628 .cs-picture img {
                    position: absolute;
                    top: 0;
                    left: 0;
                    height: 100%;
                    width: 100%;
                    object-fit: cover;
                    transition: transform 0.6s, opacity 0.3s;
                    object-position: 0px;
                }
                #services-1628 .cs-h3 {
                    font-size: 1.25rem;
                    line-height: 1.2em;
                    font-weight: 700;
                    text-align: left;
                    margin: 0 0 0.75rem 0;
                    color: var(--headerColor);
                    min-height: 48px;
                }
                #services-1628 .cs-item-text {
                    font-size: 1rem;
                    line-height: 1.5em;
                    text-align: left;
                    margin: 0 0 1.5rem 0;
                    color: var(--bodyTextColor);
                }
                #services-1628 .cs-fake-link {
                    font-size: 1rem;
                    line-height: 1.2em;
                    font-weight: 700;
                    margin: 0;
                    margin-top: auto;
                    color: var(--primary);
                    display: inline-flex;
                    justify-content: flex-start;
                    align-items: center;
                    gap: 0.5rem;
                }
                #services-1628 .cs-fake-link:hover .cs-icon {
                    transform: translateX(0.5rem);
                }
                #services-1628 .cs-icon {
                    width: 1.25rem;
                    height: auto;
                    display: block;
                    transition: transform 0.3s;
                }
            }
            /* Tablet - 768px */
            @media only screen and (min-width: 48rem) {
                #services-1628 .cs-container {
                    max-width: 80rem;
                }
                #services-1628 .cs-content {
                    flex-direction: row;
                    justify-content: center;
                    align-items: center;
                }
                #services-1628 .cs-flex {
                    text-align: left;
                    width: 40vw;
                    max-width: 40rem;
                    flex: none;
                }
                #services-1628 .cs-title {
                    margin: 0;
                }
                #services-1628 .cs-text {
                    padding: 0.75rem 0 0.75rem 1.5rem;
                }
                #services-1628 .cs-text:after {
                    width: 1px;
                    height: 100%;
                    margin: 0 1.5rem 0 0;
                    order: -1;
                    position: absolute;
                    left: 0;
                    top: 0;
                }
                #services-1628 .cs-item {
                    grid-column: span 6;
                }
                #services-1628 .cs-picture {
                    /* 240px - 420px */
                    height: clamp(15rem, 33vw, 26.25rem);
                }
            }
            /* Large Desktop - 1300px */
            @media only screen and (min-width: 81.25rem) {
                #services-1628 .cs-item {
                    grid-column: span 4;
                }
            }

            /*-- -------------------------- -->
            <---          Services          -->
            <--- -------------------------- -*/

            /* Mobile - 360px */
            @media only screen and (min-width: 0rem) {
                #services-2051 {
                    padding: var(--sectionPadding);
                    background-color: #ffffff;
                    overflow: hidden;
                    position: relative;
                    z-index: 1;
                }
                #services-2051::before {
                    /* black background, removed at tablet */
                    content: '';
                    width: 100%;
                    background-color: #211a43;
                    /* prevents the mouse from interacting with it */
                    pointer-events: none;
                    position: absolute;
                    top: 0;
                    bottom: 36.25rem;
                    left: 0;
                    z-index: -1;
                }
                #services-2051 .cs-container {
                    width: 100%;
                    /* changes to 1280px at desktop */
                    max-width: 36.5rem;
                    margin: auto;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    /* 48px - 64px */
                    gap: clamp(3rem, 6vw, 4rem);
                }
                #services-2051 .cs-wrapper {
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    /* 48px - 64px */
                    gap: clamp(3rem, 6vw, 4rem);
                    position: relative;
                    z-index: 1;
                }
                #services-2051 .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;
                }
                #services-2051 .cs-topper {
                    color: var(--secondary);
                }
                #services-2051 .cs-title {
                    /* 23 characters wide including spaces */
                    max-width: 26ch;
                    color: var(--bodyTextColorWhite);
                }
                #services-2051 .cs-text {
                    margin-bottom: 0.75rem;
                    color: var(--bodyTextColorWhite);
                }
                #services-2051 .cs-text:last-of-type {
                    margin-bottom: 0;
                }
                #services-2051 .cs-button-solid {
                    font-size: 1rem;
                    font-weight: 700;
                    line-height: 3.5rem;
                    text-decoration: none;
                    margin: 2rem 0 0;
                    padding: 0 3rem;
                    background-color: var(--primary);
                    overflow: hidden;
                    color: #fff;
                    border-radius: 0.5rem;
                    display: inline-block;
                    position: relative;
                    z-index: 1;
                    transition: color 0.3s;
                }
                #services-2051 .cs-button-solid:before {
                    content: '';
                    width: 0;
                    height: 100%;
                    background: #1a1a1a;
                    opacity: 1;
                    display: block;
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: -1;
                    transition: width 0.3s;
                }
                #services-2051 .cs-button-solid:hover {
                    color: var(--primary);
                }
                #services-2051 .cs-button-solid:hover:before {
                    width: 100%;
                }
                #services-2051 .cs-picture-group {
                    width: 100%;
                    min-height: 32.5rem;
                    display: flex;
                    position: relative;
                    z-index: 1;
                }
                #services-2051 .cs-picture {
                    width: 100%;
                    min-height: 22.625rem;
                    /* clips img tag corners */
                    overflow: hidden;
                    border-radius: 0.5rem;
                    display: block;
                    position: relative;
                    z-index: 1;
                }
                #services-2051 .cs-picture img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    display: block;
                    position: absolute;
                    top: 0;
                    left: 0;
                }
                #services-2051 .cs-box {
                    text-align: left;
                    width: 88%;
                    max-width: 19.0625rem;
                    /* prevents padding from affecting height and width */
                    box-sizing: border-box;
                    padding: 2rem;
                    border-radius: 0.5rem;
                    background-color: #fff;
                    position: absolute;
                    /* 16px - 40px */
                    bottom: clamp(1rem, 4vw, 2.5rem);
                    /* 16px - 40px */
                    left: clamp(1rem, 4vw, 2.5rem);
                    z-index: 1;
                }
                #services-2051 .cs-box:before {
                    /* background color */
                    content: '';
                    width: 100%;
                    height: 100%;
                    background-color: var(--primary);
                    opacity: 0.05;
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: -1;
                }
                #services-2051 .cs-box-icon {
                    width: 3.75rem;
                    height: auto;
                    margin: 0 0 1rem;
                    display: block;
                }
                #services-2051 .cs-box-number {
                    font-size: 1.9375rem;
                    font-weight: 900;
                    line-height: 1.2em;
                    margin: 0 0 0.75rem;
                    color: var(--headerColor);
                    display: block;
                }
                #services-2051 .cs-box-desc {
                    font-size: 1rem;
                    line-height: 1.5em;
                    color: var(--bodyTextColor);
                    display: block;
                }
                #services-2051 .cs-stat-group {
                    display: flex;
                    flex-direction: column;
                    /* 48px - 64px */
                    gap: clamp(3rem, 6vw, 4rem);
                    position: relative;
                    z-index: 10;
                }
                #services-2051 .cs-stats {
                    width: 100%;
                    max-width: 39.375rem;
                    margin: 0;
                    padding: 0;
                    display: flex;
                    /* 16px - 24px */
                    gap: clamp(1rem, 2.5vw, 1.5rem);
                }
                #services-2051 .cs-li {
                    list-style: none;
                    margin: 0;
                    padding: 0;
                    display: flex;
                    flex-direction: column;
                    gap: 1rem;
                }
                #services-2051 .cs-icon {
                    /* 64px - 80px */
                    width: clamp(4rem, 8vw, 5rem);
                    height: auto;
                    display: block;
                    flex: none;
                }
                #services-2051 .cs-stat {
                    /* 31px - 39px */
                    font-size: clamp(1.9375rem, 3vw, 2.4375rem);
                    font-weight: 900;
                    line-height: 1.2em;
                    margin: 0 0 0.25rem;
                    color: var(--bodyTextColorWhite);
                    display: block;
                }
                #services-2051 .cs-stat-text {
                    /* 14px - 16px */
                    font-size: clamp(0.875rem, 1.8vw, 1rem);
                    line-height: 1.5em;
                    text-align: left;
                    margin: 0;
                    color: var(--bodyTextColorWhite);
                    opacity: 0.8;
                }
                #services-2051 .cs-card-group {
                    width: 100%;
                    margin: 0 auto;
                    padding: 0;
                    display: grid;
                    grid-template-columns: repeat(12, 1fr);
                    /* 16px - 20px */
                    gap: clamp(1rem, 2vw, 1.25rem);
                }
                #services-2051 .cs-item {
                    text-align: left;
                    list-style: none;
                    width: 100%;
                    margin: 0 auto;
                    /* prevents padding and border from affecting height and width */
                    /* 16px - 32px */
                    /* padding: clamp(1rem, 4.5vw, 2rem); */
                    background-color: #fff;
                    border-radius: 0.5rem;
                    box-sizing: border-box;
                    display: flex;
                    flex-direction: column;
                    grid-column: span 12;
                    grid-row: span 1;
                    gap: 2rem;
                    position: relative;
                    z-index: 1;
                    border: 1px solid transparent;
                    transition: border-color 0.3s;
                }
                #services-2051 .cs-item:hover {
                    border-color: var(--primary) !important;
                }
                #services-2051 .cs-flex {
                    display: flex;
                    flex-direction: column;
                    padding: clamp(1rem, 4.5vw, 2rem);
                }
                #services-2051 .cs-h3 {
                    /* 20px - 25px */
                    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
                    font-weight: 700;
                    line-height: 1.2em;
                    text-align: inherit;
                    margin: 0 0 1rem 0;
                    color: var(--headerColor);
                    transition: color 0.3s;
                }
                #services-2051 .cs-item-text {
                    /* 14px - 16px */
                    font-size: clamp(0.875rem, 1.5vw, 1rem);
                    line-height: 1.5em;
                    max-width: 28.125rem;
                    margin: 0;
                    margin-bottom: 1.5rem;
                    padding: 0;
                    color: var(--bodyTextColor);
                }
                #services-2051 .cs-link {
                    font-size: 1rem;
                    font-weight: 700;
                    line-height: 1.2em;
                    text-align: inherit;
                    text-decoration: none;
                    max-width: fit-content;
                    margin-top: auto;
                    color: var(--primary);
                    border-bottom: 1px solid var(--primary);
                    display: flex;
                    justify-content: flex-start;
                    align-items: center;
                }
                #services-2051 .cs-item-picture {
                    margin: 0;
                    padding: 3.625rem 0 0 7.1875rem;
                    border-radius: 0.5rem;
                    overflow: hidden;
                    display: flex;
                    justify-content: flex-end;
                    align-items: flex-end;
                    position: relative;

                    background-size: cover;
                    background-position: 50%;
                    height: clamp(23rem, 25vw, 26.25rem);
                }
                #services-2051 .cs-item-picture:before {
                    /* background color */
                    content: '';
                    width: 100%;
                    height: 100%;
                    background-color: var(--primary);
                    opacity: 0.05;
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: -1;
                }
                #services-2051 .cs-item-picture img {
                    width: 100%;
                    height: auto;
                    display: block;
                }
            }
            /* Tablet - 768px */
            @media only screen and (min-width: 48rem) {
                #services-2051:before {
                    /* 100px - 200px */
                    top: clamp(6.25rem, 15vw, 12.5rem);
                    bottom: 0;
                    background: linear-gradient(to right, rgb(33 26 67), rgb(18 0 105 / 70%)), url(assets/images/edesk/line.png);
                }
                #services-2051 .cs-container {
                    max-width: 80rem;
                    align-items: flex-start;
                }
                #services-2051 .cs-content {
                    width: 50%;
                    /* 140px - 200px top */
                    /* 48px - 64px right */
                    /* 20px - 80px bottom*/
                    padding: clamp(8.75rem, 20vw, 12.5rem) clamp(3rem, 6vw, 4rem) clamp(1.25rem, 6vw, 5rem) 0;
                }
                #services-2051 .cs-wrapper {
                    flex-direction: row;
                    justify-content: flex-start;
                }
                #services-2051 .cs-picture-group {
                    width: 50vw;
                    position: absolute;
                    top: 0;
                    left: 50%;
                    bottom: 0;
                }
                #services-2051 .cs-picture {
                    border-radius: 0.5rem 0 0 0.5rem;
                }
                #services-2051 .cs-stat-group {
                    flex-direction: row;
                }
                #services-2051 .cs-item {
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: stretch;
                    grid-column: span 6;
                }
                #services-2051 .cs-item-picture {
                    width: 50%;
                    max-width: 11.5625rem;
                    height: auto;
                    padding: 3.8125rem 0 0 0.25rem;
                    flex: none;
                }
            }
            /* Small Desktop - 1024px */
            @media only screen and (min-width: 64rem) {
                #services-2051 .cs-picture-group {
                    margin-left: 2.5rem;
                }
                #services-2051 .cs-li {
                    flex-direction: row;
                    align-items: center;
                }
            }

            /*-- -------------------------- -->
            <---         Services           -->
            <--- -------------------------- -*/

            /* Mobile - 360px */
            @media only screen and (min-width: 0rem) {
                #services-1267 {
                    padding: var(--sectionPadding);
                    overflow: hidden;
                    position: relative;
                    z-index: 1;
                }
                #services-1267 .cs-container {
                    width: 100%;
                    /* changes to 1280px at tablet */
                    max-width: 34.375rem;
                    margin: auto;
                    display: flex;
                    flex-direction: column;
                    align-items: flex-start;
                    /* 48px - 64px */
                    gap: clamp(3rem, 6vw, 4rem);
                }
                #services-1267 .cs-content {
                    width: 100%;
                    max-width: 32.625rem;
                    margin: 0;
                    display: flex;
                    flex-direction: column;
                    /* centers content horizontally, set to flex-start to left align */
                    align-items: flex-start;
                    /* set text align to center if content needs to be centrally aligned */
                    text-align: left;
                }

                #services-1267 .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;
                }
                #services-1267 .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;
                }
                #services-1267 .cs-button-solid:hover:before {
                    width: 100%;
                }
                #services-1267 .cs-card-group {
                    margin: 0 auto;
                    padding: 0;
                    display: grid;
                    grid-template-columns: repeat(12, 1fr);
                    /* 16px - 20px */
                    gap: clamp(1rem, 2.75vw, 1.25rem);
                }
                #services-1267 .cs-item {
                    border-radius: 1rem;
                    margin-left: 0;
                    background-color: #fff;
                    width: 100%;
                    box-sizing: border-box;
                    grid-column: span 12;
                    /* 20px - 24px */
                    padding: clamp(1.25rem, 2.4vw, 1.5rem);
                    list-style: none;
                    box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.1);
                }
                #services-1267 .cs-h3 {
                    font-size: 1.25rem;
                    line-height: 1.2em;
                    margin: 0 0 1.25rem 0;
                    color: var(--headerColor);
                    display: flex;
                    align-items: center;
                    gap: 1rem;
                }
                #services-1267 .cs-picture {
                    width: 2.25rem;
                    height: 2.25rem;
                    border-radius: 50%;
                    background-color: var(--primaryLight);
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }
                #services-1267 .cs-icon {
                    height: 0.75rem;
                    width: auto;
                }
                #services-1267 .cs-number {
                    display: block;
                    margin: 0 0 0.75rem 0;
                    font-size: 2rem;
                    font-weight: 700;
                    color: var(--primary);
                }
                #services-1267 .cs-item-text {
                    margin: 0;
                    font-size: 1.1rem;
                    line-height: 1.5em;
                    color: var(--bodyTextColor);
                }
                #services-1267 .cs-background {
                    z-index: -1;
                    position: absolute;
                    bottom: 0;
                    right: 0;
                    height: 60%;
                    width: 100%;
                }
                #services-1267 .cs-background img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    position: absolute;
                    top: 0;
                    left: 0;
                }
            }
            /* Tablet - 768px */
            @media only screen and (min-width: 48rem) {
                #services-1267 .cs-container {
                    max-width: 80rem;
                }
                #services-1267 .cs-item {
                    grid-column: span 6;
                }
                #services-1267 .cs-item:nth-of-type(3) {
                    order: 4;
                }
                #services-1267 .cs-background {
                    height: 45%;
                }
            }
            /* Desktop - 1024px */
            @media only screen and (min-width: 64rem) {
                #services-1267 .cs-container {
                    flex-direction: row;
                    justify-content: space-between;
                    align-items: center;
                    gap: 2.5rem;
                }
                #services-1267 .cs-content {
                    width: 42%;
                    max-width: 32.625rem;
                }
                #services-1267 .cs-wrapper {
                    width: 52%;
                    max-width: 39.375rem;
                    /* sends it to the left */
                    order: 0;
                    position: relative;
                }
                #services-1267 .cs-item {
                    grid-column: span 6;
                }
                #services-1267 .cs-background {
                    height: 150%;
                    width: 115%;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                }
            }

            .chat-ui {
                width: 100%;
                background: white;
                border-radius: 12px;
                box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
                display: flex;
                flex-direction: column;
                overflow: hidden;
            }
            .chat-header {
                padding: 16px;
                background: #003366;
                color: white;
                font-weight: bold;
            }
            .chat-body {
                flex: 1;
                padding: 16px;
                overflow-y: auto;
                display: flex;
                flex-direction: column;
                gap: 12px;
                min-height: 420px;
                max-height: 420px;
            }
            .bubble {
                max-width: 85%;
                padding: 10px 14px;
                border-radius: 20px;
                font-size: 14px;
                line-height: 1.5;
                opacity: 0;
                transform: translateY(10px);
                transition: all 0.3s ease;
            }
            @media only screen and (min-width: 0rem) {
                .bubble {font-size: 12px;}
            }
            .user {
                align-self: flex-end;
                background: #d2e3fc;
            }
            .ai {
                align-self: flex-start;
                background: #f4f4f4;
            }
            .bubble.show {
                opacity: 1;
                transform: translateY(0);
            }
            .typing-box {
                border-top: 1px solid #ddd;
                padding: 12px;
                display: flex;
                align-items: center;
                background: #fff;
            }
            .fake-input {
                flex: 1;
                background: #f1f1f1;
                border-radius: 20px;
                padding: 10px 16px;
                color: #666;
                font-size: 14px;
                font-family: monospace;
                white-space: nowrap;
                overflow: hidden;
                min-height: 41px;
            }
            .typing-indicator {
                display: inline-block;
                margin-left: 10px;
                width: 24px;
                text-align: center;
            }
            .dot {
                display: inline-block;
                width: 6px;
                height: 6px;
                margin: 0 1px;
                background-color: #666;
                border-radius: 50%;
                animation: bounce 1.4s infinite ease-in-out both;
            }
            .dot:nth-child(1) {
                animation-delay: -0.32s;
            }
            .dot:nth-child(2) {
                animation-delay: -0.16s;
            }
            .dot:nth-child(3) {
                animation-delay: 0s;
            }
            @keyframes bounce {
                0%,
                80%,
                100% {
                    transform: scale(0);
                }
                40% {
                    transform: scale(1);
                }
            }
            .pause-btn {
                background: #003366;
                color: white;
                padding: 8px 14px;
                font-size: 13px;
                border: none;
                cursor: pointer;
                border-radius: 6px;
                margin: 8px;
                align-self: flex-end;
                display: none;
            }
            svg *:not([fill='none']) {
                fill: rgb(246 246 246);
            }

            .ai-dashboard-container {
                /* max-width: 1000px; */
                margin: auto;
                width: 100%;
            }

            .ai-dashboard-chat {
                background-color: #e5f1ff;
                padding: 20px;
                border-radius: 12px;
                margin-bottom: 30px;
                position: relative;
                animation: ai-dashboard-fadeIn 1s ease-out;
                margin-left: 35px;
            }

            .ai-dashboard-chat::before {
                content: '🤖';
                position: absolute;
                top: 20px;
                left: -40px;
                font-size: 24px;
            }

            .ai-dashboard-message.typing::after {
                content: ' ⠋';
                animation: ai-dashboard-dots 1s steps(3, end) infinite;
            }

            @keyframes ai-dashboard-dots {
                0% {
                    content: ' ⠋';
                }
                33% {
                    content: ' ⠙';
                }
                66% {
                    content: ' ⠹';
                }
                100% {
                    content: ' ⠋';
                }
            }
            @keyframes rotate-center {
                0% {
                    -webkit-transform: rotate(0);
                    transform: rotate(0);
                }

                100% {
                    -webkit-transform: rotate(360deg);
                    transform: rotate(360deg);
                }
            }
            .ai-dashboard-grid {
                display: grid;
                /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
                gap: 24px;
                /* margin: 0 40px; */
            }

            .ai-dashboard-card {
                background: white;
                padding: 20px;
                border-radius: 12px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
                animation: ai-dashboard-fadeIn 1s ease-in;
                width: 100%;
            }

            .ai-dashboard-skeleton {
                height: 200px;
                background: linear-gradient(90deg, #e0e0e0 25%, #f0f0f0 50%, #e0e0e0 75%);
                background-size: 200% 100%;
                animation: ai-dashboard-loading 1.5s infinite;
                border-radius: 8px;
            }

            @keyframes ai-dashboard-loading {
                0% {
                    background-position: 200% 0;
                }
                100% {
                    background-position: -200% 0;
                }
            }

            @keyframes ai-dashboard-fadeIn {
                from {
                    opacity: 0;
                    transform: translateY(20px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            canvas {
                width: 100% !important;
                height: 200px !important;
            }

            .sim-scanner-container {
                position: relative;
                width: 240px;
                min-height: 380px;
                margin: auto;
            }

            .sim-document {
                position: relative;
                width: 100%;
                height: 100%;
                background: white;
                border-radius: 12px;
                box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
                overflow: hidden;

                box-sizing: border-box;
            }

            .sim-document-content {
                font-size: 14px;
                line-height: 1.6;
                color: #333;
            }

            .sim-scanner-line {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 8px;
                background: rgba(0, 140, 255, 0.4);
                animation: sim-scanDown 3s ease-out forwards;
                z-index: 10;
            }

            @keyframes sim-scanDown {
                0% {
                    top: 0;
                }
                100% {
                    top: 100%;
                }
            }

            .sim-bubble {
                position: absolute;
                background: #e5f1ff;
                padding: 7px 10px;
                border-radius: 20px;
                font-size: 10px;
                box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
                opacity: 0;
                transform: scale(0.8);
                animation: sim-showBubble 0.5s ease forwards;
            }

            @keyframes sim-showBubble {
                to {
                    opacity: 1;
                    transform: scale(1);
                }
            }

            .sim-bubble-invoiceid {
                top: 50px;
                right: -25px;
                animation-delay: 3s;
            }

            .sim-bubble-vendor {
                top: 120px;
                right: -40px;
                animation-delay: 4s;
            }

            .sim-bubble-date {
                bottom: 210px;
                left: -50px;
                animation-delay: 5s;
            }

            .sim-doc-tag {
                position: absolute;
                bottom: -50px;
                left: 50%;
                transform: translateX(-50%);
                background: #007bff;
                color: white;
                padding: 6px 16px;
                border-radius: 16px;
                font-weight: 600;
                opacity: 0;
                animation: sim-fadeInTag 0.6s ease forwards;
                animation-delay: 5.8s;
                width: 210px;
            }

            @keyframes sim-fadeInTag {
                to {
                    opacity: 1;
                    bottom: -20px;
                }
            }

            .animate1 {
                position: relative;
                animation-name: animate1;
                animation-duration: 2s;
                animation-iteration-count: infinite;
                animation-direction: alternate;
                animation-timing-function: ease-in-out;
            }

            /*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
            /* Mobile - 360px */
            @media only screen and (min-width: 0rem) {
                #cta-697 {
                    padding: var(--sectionPadding);
                    background-color: var(--primary);
                    position: relative;
                    z-index: 1;
                }
                #cta-697 .cs-container {
                    width: 100%;
                    max-width: 80rem;
                    margin: auto;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    /* 48px - 64px */
                    gap: clamp(3rem, 6vw, 4rem);
                }
                #cta-697 .cs-content {
                    /* set text align to left if content needs to be left aligned */
                    text-align: center;
                    width: 100%;
                    display: flex;
                    flex-direction: column;
                    /* centers content horizontally, set to flex-start to left align */
                    align-items: center;
                    /* 48px - 64px */
                    gap: clamp(3rem, 6vw, 4rem);
                }
                #cta-697 .cs-title {
                    color: var(--bodyTextColorWhite);
                }
                #cta-697 .cs-button-solid {
                    font-size: 1rem;
                    /* 46px - 56px */
                    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
                    text-decoration: none;
                    font-weight: 700;
                    text-align: center;
                    margin: 0;
                    color: var(--bodyTextColorWhite);
                    min-width: 9.375rem;
                    padding: 0 1.5rem;
                    background-color: var(--secondary);
                    border-radius: 0.25rem;
                    display: inline-block;
                    position: relative;
                    z-index: 1;
                    /* prevents padding from adding to the width */
                    box-sizing: border-box;
                }
                #cta-697 .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;
                }
                #cta-697 .cs-button-solid:hover:before {
                    width: 100%;
                }
                #cta-697 .cs-background {
                    width: 100%;
                    height: 100%;
                    display: block;
                    position: absolute;
                    top: 0;
                    left: 0;
                    z-index: -1;
                    /* makes it act like a background image */
                    object-fit: cover;
                }
            }
            /* Small Desktop - 1024px */
            @media only screen and (min-width: 64rem) {
                #cta-697 .cs-content {
                    text-align: left;
                    flex-direction: row;
                    justify-content: space-between;
                }
            }
            .ai-gradient {
                transform: translateY(0px);
                background-clip: text;
                -webkit-text-fill-color: transparent;
                background-image: linear-gradient(to right, #501e9c 0%, #8169f1 30%, #8169f1 30%, #a44cee 73%, #ff847f 100%);
            }

              .edesk-section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 20px;
      text-align: center;
      background-color: #fff;
    }

    .edesk-section .badge {
      display: inline-block;
      background-color: #e0f2ff;
      color: #0077cc;
      font-weight: 600;
      padding: 6px 12px;
      border-radius: 999px;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .edesk-section h1 {
          font-size: 3.3rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.2;
    background-image: linear-gradient(180deg, #7F5BC4 0%, #60A3E6 100%);
    /* background-color: transparent; */
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    /* text-fill-color: transparent!important; */
    }

    .edesk-section .emoji {
      font-size: 2.5rem;
      margin: 20px 0;
    }

    .edesk-section p.description {
      font-size: 1.125rem;
      color: #555;
      max-width: 600px;
      margin: 0 auto 30px;
    }

    .feature-list {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 30px;
      margin-top: 40px;
      margin-bottom: 40px;
      
    }

    .feature-list .feature-item {
        width: 200px;
        background-color: rgb(242, 248, 255);
        font-size: 0.9rem;
        font-weight: 500;
        color: rgb(51, 51, 51);
      
        padding: 16px;
        border-radius: 12px;
        transition: transform 0.3s, background-color 0.3s;
        box-shadow: 0px 7px 7px 0 rgb(27 32 75 / 9%);
        border: 1px solid #d9d6ff;

    }

    .feature-list .feature-item:hover {
      transform: translateY(-5px);
      background-color: #e6f2ff;
    }

    .footer-note {
      font-size: 0.95rem;
      color: #777;
      margin-top: 20px;
    }

    .footer-note a {
      color: #0077cc;
      text-decoration: none;
      font-weight: 500;
    }

    .footer-note a:hover {
      text-decoration: underline;
    }

    @media only screen and (min-width: 48rem) {
      .edesk-section h1 {
        font-size: 2.25rem;
      }

      .edesk-section .emoji {
        font-size: 2rem;
      }

      .edesk-section p.description {
        font-size: 1rem;
      }

      .feature-list .feature-item {
        width: 100%;
        max-width: 300px;
      }
    }

    @media only screen and (min-width: 0rem) {
        .feature-list .feature-item {
        width: 100%;
                max-width: 170px;
        font-size: 12px;
      }
    }
    .aitext{
            background-image: linear-gradient(1519deg, rgb(255, 61, 163) -105%, rgb(33, 121, 242) 180%);
  
    background-clip: text;
    -webkit-text-fill-color: transparent;
    }