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

    #sbs-521 .cs-text {
        margin-bottom: 1rem;
    }
    #sbs-521 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
    #sbs-521 .cs-ul {
        width: 80%;
        /* 32px - 36px */
        margin: 0 0 clamp(2rem, 4vw, 2.25rem) 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        /* 24px - 32px */
        row-gap: clamp(1.5rem, 4vw, 2rem);
    }
    #sbs-521 .cs-li {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        list-style: none;
        line-height: 1.5em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 2rem;
    }
    #sbs-521 .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;
        overflow: hidden; 
    }
    #sbs-521 .cs-button-solid:before {
        content: "";
        position: absolute;
        height: 100%;
        width: 0%;
        background: var(--primaryLight);
        top: 0;
        left: 0;
        z-index: -1;
        border-radius: 0.25rem;
        opacity: 0; 
        transition: opacity 0.4s ease; 
        inset: 0;
    }
    #sbs-521 .cs-button-solid:hover:before {
        width: 100%;
        opacity: 1; 
    }
    #sbs-521 .cs-image-group {
        width: 100%;
        max-width: 39.375rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        /* 40px - 48px */
        row-gap: clamp(2.5rem, 6vw, 3rem);
        /* sends it to the top in the first position */
        order: -1;
    }
    #sbs-521 .cs-stat-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1rem;
    }
    #sbs-521 .cs-stat {
        list-style: none;
        max-width: 14.375rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    #sbs-521 .cs-number {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 5vw, 3.8125rem);
        line-height: 1.2em;
        font-weight: 900;
        color: var(--headerColor);
    }
    #sbs-521 .cs-desc {
        font-size: clamp(0.875rem, 1rem, 1.25rem);
        line-height: 1.5em;
        font-weight: 400;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #sbs-521 .cs-picture {
        width: 100%;
        /* 244px - 339px, changes clamp at tablet */
        height: clamp(14rem, 62vw, 21.1875rem);
        display: block;
        position: relative;
    }
    #sbs-521 .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #sbs-521 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        align-items: flex-start;
    }
    #sbs-521 .cs-content {
        width: 71%;
        max-width: 33.75rem;
    }
    #sbs-521 .cs-image-group {
        width: 68%;
    }
    #sbs-521 .cs-stat-group {
        justify-content: flex-start;
    }
    #sbs-521 .cs-picture {
        /* 340px - 461px */
        height: clamp(21.25rem, 35vw, 28.8125rem);
    }
}

                                