/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-407 {
        /* 112px - 200px */
        padding-top: 6.5rem;
        padding-left: 0;
    }

    #hero-407 .cs-container {
        width: 100%;
        /* changes to 100% at tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 36px - 100px */
        gap: clamp(2.25rem, 10vw, 6.25rem);
    }

    #hero-407 .cs-content {
        max-width: 39.375rem;
        padding-left: 1rem;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
    }

    #hero-407 .cs-title {
        /* 31px - 61px */
        font-size: clamp(1.9375rem, 4.4vw, 3.8125rem);
        font-weight: 900;
        line-height: 1.2em;
        text-align: left;
        max-width: 43.75rem;
        /* 12px - 24px */
        margin: 0 0 clamp(0.75rem, 1.5vw, 1.5rem);
        color: var(--headerColor);
        position: relative;
    }

    #hero-407 .cs-color {
        background: linear-gradient(to top, orange, gold);
        display: block;
        color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
        /*-webkit-text-stroke: 1px #444;*/
    }

    #hero-407 .cs-text {
        /* 16px - 25px */
        font-size: clamp(1rem, 2vw, 1.5625rem);
        line-height: 1.5em;
        text-align: left;
        width: 100%;
        max-width: 40.625rem;
        margin: 0;
        /* 24px - 40px */
        margin-bottom: clamp(1.5rem, 4.2vw, 3rem);
        color: var(--bodyTextColor);
    }

    #hero-407 .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;
        margin-right: 1.5rem;
        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;
    }

    #hero-407 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        transition: width 0.3s;
    }

    #hero-407 .cs-button-solid:hover:before {
        width: 100%;
    }

    #hero-407 .cs-button-transparent {
        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(--primary);
        min-width: 9.375rem;
        padding: 0 1.5rem;
        background-color: transparent;
        border-radius: 0.25rem;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
        transition: background-color 0.3s,
        color 0.3s;
    }

    #hero-407 .cs-button-transparent:hover {
        background-color: var(--primary);
        color: #fff;
    }

    #hero-407 .cs-header {
        /* 14px - 20px */
        font-size: clamp(0.875rem, 1.5vw, 1.25rem);
        line-height: 1.5em;
        /* 40px - 100px */
        margin: clamp(2.5rem, 5vw, 6.25rem) 0 0.75rem 0;
        width: 100%;
        color: var(--bodyTextColor);
        display: block;
    }

    #hero-407 .cs-logo-group {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    #hero-407 .cs-logo {
        width: auto;
        /* 18px - 32px */
        height: 100%;
        max-height: 6rem;
        padding: 10px;
    }

    #hero-407 .cs-stat-group {
        width: 100%;
        border-radius: 1.25rem;
        aspect-ratio: 0.92696629;
        /* clips the corners around the border radius */
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: flex-end;
        flex-wrap: nowrap;
        position: relative;
        z-index: 1;
    }

    #hero-407 .cs-stat-box {
        width: 50%;
        /* changes at tablet */
        height: 9.125rem;
        /* 24px - 48px */
        padding: clamp(1.5rem, 3vw, 3rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        color: #fff;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #hero-407 .cs-stat-box:nth-of-type(1) {
        background-color: var(--primaryDark)
    }

    #hero-407 .cs-stat-box:nth-of-type(2) {
        background-color: var(--primary)
    }

    #hero-407 .cs-stat {
        /* 25px - 61px */
        font-size: clamp(1.5625rem, 3.5vw, 3.8125rem);
        line-height: 1.2em;
        text-align: left;
        margin: 0;
        display: block;
    }

    #hero-407 .cs-desc {
        /* 14px - 20px */
        font-size: clamp(0.875rem, 1.6vw, 1.25rem);
        line-height: 1.2em;
        margin: 0.25rem 0 0 0;
        display: block;
    }

    #hero-407 .cs-background {
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        position: absolute;
        z-index: 1;
    }

    #hero-407 .cs-background img {
        position: absolute;
        top: -2rem;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: contain;
        z-index: 100;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #hero-407 {
        padding: var(--sectionPadding);
        /* 112px - 200px */
        padding-top: 6.5rem;
        padding-left: 0;
    }

    #hero-407 .cs-container {
        max-width: 100%;
        flex-direction: row;
        justify-content: flex-start;
    }

    #hero-407 .cs-content {
        width: 45%;
        padding: 0;
        /* sends it to the right */
        order: 2;
    }

    #hero-407 .cs-stat-group {
        width: 45%;
        max-height: 46.0625rem;
        aspect-ratio: 0.92647059;
        flex: none;
        border-radius: 0 1.25rem 1.25rem 0;
    }

    #hero-407 .cs-stat-box {
        /* 126px - 221px */
        height: clamp(7.875rem, 18vw, 13.8125rem);
    }
}


/*-- -------------------------- -->
<---           Stats            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #stats-1022 {
        padding: var(--sectionPadding);
    }

    #stats-1022 .cs-container {
        width: 100%;
        max-width: 80rem;
        /* 40px - 88px */
        padding: clamp(2.5rem, 6vw, 5.5rem);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        margin: auto;
        background-color: #f7f7f7;
        border-top: 2px solid var(--primary);
        border-bottom: 2px solid var(--primary);
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }

    #stats-1022 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 27.125rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #stats-1022 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #stats-1022 .cs-item {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    #stats-1022 .cs-item:last-of-type:after {
        display: none;
    }

    #stats-1022 .cs-item:after {
        /* divider line */
        content: "";
        /* 20px - 80px */
        margin: clamp(1.25rem, 6vw, 5rem) 0;
        width: 100%;
        height: 1px;
        background: var(--primary);
        display: block;
    }

    #stats-1022 .cs-item:hover .cs-desc {
        color: black;
    }

    #stats-1022 .cs-item:hover .cs-number {
        transform: scale(1.1);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }

    #stats-1022 .cs-number {
        /* 31px - 39px */
        font-size: clamp(1.9375rem, 4vw, 2.4375rem);
        font-weight: 900;
        text-align: center;
        line-height: 1.2em;
        /* 12px - 20px */
        margin: 0 0 clamp(0.75rem, 2vw, 1.25rem) 0;
        padding: 1.25rem 1.5rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        background-color: white;
        color: var(--headerColor);
        border-radius: 5rem;
        display: block;
        border: 2px solid var(--secondary);
        transition: box-shadow 0.3s, transform 0.6s;
    }

    #stats-1022 .cs-desc {
        font-size: 1rem;
        line-height: 1.2em;
        margin: 0;
        padding: 0;
        color: var(--bodyTextColor);
        transition: color .3s;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #stats-1022 .cs-card-group {
        width: auto;
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        flex: none;
        /* 88px - 120px */
        gap: clamp(5.5rem, 8vw, 7.5rem);
    }

    #stats-1022 .cs-item:after {
        width: 1px;
        height: 6.25rem;
        margin: 0;
        position: absolute;
        top: 0;
        /* 44px - 120px, half of the cs-card-group gap value */
        right: calc(clamp(2.75rem, 4.7vw, 4rem) * -1);
    }
}

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #stats-1022 .cs-container {
        flex-direction: row;
        justify-content: space-between;
    }

    #stats-1022 .cs-content {
        text-align: left;
        align-items: flex-start;
    }
}


/*-- -------------------------- -->
<---         Features           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #why-choose-1571 {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
        overflow: hidden;
        padding-bottom: 3rem;
    }

    #why-choose-1571 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 25rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }

    #why-choose-1571 .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-1571 .cs-title {
        max-width: 27ch;
        margin: 0;
    }

    #why-choose-1571 .cs-topper {
        color: var(--secondary);
    }

    #why-choose-1571 .cs-card-wrapper {
        width: 100%;
        display: grid;
        grid-auto-flow: row;
        /* 16px - 20px */
        column-gap: clamp(1rem, 2vw, 1.25rem);
        row-gap: 2.5rem;
    }

    #why-choose-1571 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        /* 24px - 60px */
        gap: clamp(1.5rem, 5vw, 3.75rem);
    }

    #why-choose-1571 .cs-item {
        list-style: none;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.25rem;
    }

    #why-choose-1571 .cs-icon-wrapper {
        /* 60px - 80px */
        width: clamp(3.75rem, 5vw, 5rem);
        height: clamp(3.75rem, 5vw, 5rem);
        border: 1px solid var(--primary);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
        aspect-ratio: 1;
    }

    #why-choose-1571 .cs-icon-wrapper::before {
        content: "";
        width: 100%;
        height: 100%;
        background-color: var(--primary);
        opacity: 0.1;
        position: absolute;
        top: 0;
        left: 0;
    }

    #why-choose-1571 .cs-icon {
        /* 24px - 36px */
        width: 3rem;
        height: auto;
    }

    #why-choose-1571 .cs-h3 {
        font-size: 1.25rem;
        font-weight: 700;
        line-height: 1.2em;
        margin: 0 0 0.5rem;
        color: var(--headerColor);
    }

    #why-choose-1571 .cs-item-text {
        font-size: 0.875rem;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
    }

    #why-choose-1571 .cs-image {
        /* all these change on tablet */
        width: 70vw;
        max-width: 18.75rem;
        height: 70vw;
        max-height: 18.75rem;
        margin: auto;
        display: flex;
        justify-content: center;
        position: relative;
    }

    #why-choose-1571 .cs-image img {
        width: 100%;
        height: 100%;
        max-height: 18.75rem;
        object-fit: contain;
        z-index: 1;
    }

    #why-choose-1571 .cs-image::before {
        content: '';
        width: 100%;
        height: 100%;
        background-color: #ffcd37;
        opacity: 0.1;
        border-radius: 50%;
        position: absolute;
        top: 0;
        left: 0;
    }

    #why-choose-1571 .cs-image::after {
        content: '';
        width: 75%;
        height: 75%;
        background-color: #ffcd37;
        opacity: 0.3;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #why-choose-1571 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }

    #why-choose-1571 .cs-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }

    #why-choose-1571 .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 3rem;
        background-color: var(--primary);
        border-radius: 0.5rem;
        overflow: hidden;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }

    #why-choose-1571 .cs-button-solid:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width .3s;
    }

    #why-choose-1571 .cs-button-solid:hover:before {
        width: 100%;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #why-choose-1571 .cs-container {
        max-width: 80rem;
    }

    #why-choose-1571 .cs-card-wrapper {
        align-items: center;
        grid-template-columns: repeat(3, 1fr);
    }

    #why-choose-1571 .cs-item {
        text-align: left;
        align-items: start;
        padding: 10px;
    }

    #why-choose-1571 .cs-image {
        width: 30vw;
        max-width: 26.75rem;
        height: 30vw;
        max-height: 26.875rem;
    }

    #why-choose-1571 .cs-image img {
        max-height: 40rem;
        height: 40rem;
        position: relative;
        top: -9rem;
    }

    #why-choose-1571 .cs-icon {
        /* 24px - 36px */
        width: 3.5rem;
        height: auto;
    }
}

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #why-choose-1571 .cs-item {
        flex-direction: row;
    }

    #why-choose-1571 .cs-image img {
        height: 32rem;
        width: 32rem;
        top: -4rem;
    }

    #why-choose-1571 .cs-content {
        margin-bottom: 5rem;
    }

}


/*-- -------------------------- -->
<---         Why Choose         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #why-choose-892 {
        /* Centers Button */
        text-align: center;
        padding: var(--sectionPadding);
        padding-top: 0;
        padding-bottom: 3rem;
        /* prevents the arrow from causing an overflow */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

    #why-choose-892 .cs-container .cs-topper {
        font-size: 1.5rem;
    }

    #why-choose-892 .cs-container {
        width: 100%;
        /* changes to 1280px at tablet */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        position: relative;
    }

    #why-choose-892 .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;
        padding-top: 4.5rem;
    }

    #why-choose-892 .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(--secondary);
        margin-bottom: 0.25rem;
        display: block;
    }

    #why-choose-892 .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        max-width: 43.75rem;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }

    #why-choose-892 .cs-text {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        max-width: 40.625rem;
        margin: 0;
        color: var(--bodyTextColor);
    }

    #why-choose-892 .cs-text {
        max-width: 62.5rem;
    }

    #why-choose-892 .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;
    }

    #why-choose-892 .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;
    }

    #why-choose-892 .cs-button-solid:hover:before {
        width: 100%;
    }

    #why-choose-892 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(6, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }

    #why-choose-892 .cs-item {
        width: 100%;
        text-align: left;
        list-style: none;
        /* 20px - 32px */
        padding: clamp(1.25rem, 2.3vw, 2rem);
        background-color: rgba(98, 169, 46, 0.1);
        border-radius: 1rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        grid-column: span 6;
        position: relative;
        z-index: 1;
    }

    #why-choose-892 .cs-icon {
        width: 3rem;
        height: auto;
        margin: 0 0 1.25rem 0;
        display: block;
    }

    #why-choose-892 .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.5em;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
        transition: color 0.3s;
    }

    #why-choose-892 .cs-item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        transition: color 0.3s;
    }

    #why-choose-892 .cs-floater {
        width: 21.9375rem;
        height: auto;
        display: none;
        position: absolute;
        top: -13.75rem;
        right: -3.75rem;
        transform: rotate(-66deg);
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #why-choose-892 .cs-container {
        max-width: 80rem;
    }

    #why-choose-892 .cs-item {
        grid-column: span 2;
    }

    #why-choose-892 .cs-floater {
        display: block;
    }
}


/*-- -------------------------- -->
<---          Content           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #content-1450 {
        padding: var(--sectionPadding);
    }

    #content-1450 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }

    #content-1450 .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;
    }

    #content-1450 .cs-title,
    #content-1450 .cs-text {
        max-width: 100%;
    }

    #content-1450 .cs-text {
        /* 16px - 20px */
        font-size: clamp(1rem, 2vw, 1.25rem);
        margin: 0 0 2rem 0;
    }

    #content-1450 .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 3rem;
        background-color: var(--primary);
        border-radius: 0.5rem;
        overflow: hidden;
        display: inline-block;
        position: relative;
        z-index: 1;
        /* prevents padding from adding to the width */
        box-sizing: border-box;
    }

    #content-1450 .cs-button-solid:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 0%;
        background: #000;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width .3s;
    }

    #content-1450 .cs-button-solid:hover:before {
        width: 100%;
    }
}


/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    .swiper {
        width: 80vw;
    }

    #reviews-1672 {
        padding: var(--sectionPadding);
    }

    #reviews-1672 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 40px - 64px */
        gap: clamp(2.5rem, 4.5vw, 4rem);
    }

    #reviews-1672 .cs-content {
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #reviews-1672 .cs-title {
        margin: 0rem;
    }

    /*#reviews-1672 .cs-card-group {*/
    /*    width: 100%;*/
    /*    padding: 0;*/
    /*    margin: 0;*/
    /*    display: grid;*/
    /*    grid-template-columns: repeat(12, 1fr);*/
    /*    !* 16px - 20px *!*/
    /*    gap: clamp(1rem, 2.5vw, 1.25rem);*/
    /*}*/
    #reviews-1672 .cs-item {
        list-style: none;
        width: 100%;
        /* 20px - 40px top & bottom */
        /* 20px - 40px left & right */
        padding: clamp(1.25rem, 3.15vw, 2.5rem) clamp(1.25rem, 3.15vw, 2.5rem);
        background-color: #f7f7f7;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
        display: flex;
        grid-column: span 12;
        justify-content: start;
        align-items: flex-start;
        flex-direction: column;
        position: relative;
        /* 24px - 48px */
        /*gap: clamp(1.5rem, 4vw, 3rem);*/
        gap: 1.5rem;
        border-radius: 8px;
    }

    #reviews-1672 .cs-flex-group {
        /* this margin top auto will push everything up and force the cs-flex-group to the bottom of the container. This is to account for review cards with different heights because of more or less text and makes the cards more responsive to changing text */
        display: flex;
        align-items: flex-start;
        gap: 0.75rem;
        min-height: 80px;
    }

    #reviews-1672 .cs-profile {
        width: 3.25rem;
        height: auto;
        border-radius: 50%;
        position: relative;
        display: block;
    }

    #reviews-1672 .cs-profile img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes the image behave like a background image */
        object-fit: cover;
    }

    #reviews-1672 .cs-name {
        /* 20px - 25px */
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        /* in case one card has more text than the other, this pushes up against the review text so the name and title are always at the bottom. Only works if parent is a flexbox */
        color: var(--headerColor);
        display: block;
    }

    #reviews-1672 .cs-job {
        /* 14px - 16px */
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 400;
        margin: 0;
        color: var(--bodyTextColor);
        display: block;
    }

    #reviews-1672 .wrapper {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    #reviews-1672 .cs-review {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.6vw, 1.25rem);
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        z-index: 1;
        max-height: 240px;
        overflow: auto;
        min-height: 240px;
        padding-bottom: 2rem;
    }

    #reviews-1672 .cs-quote {
        width: 5.375rem;
        height: auto;
        position: absolute;
        right: 0rem;
        bottom: 0rem;
        z-index: 0;
    }
}

.swiper:after {
    content: "";
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    pointer-events: none;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 90%);
    width: 100%;
    height: 4em;
}


