.case-study--client-stats {
    margin-top: 3rem;
    margin-bottom: 3rem;
    .flex {
        display:flex;
    }
    .inline-flex {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    .gap-x-8 {
        column-gap: 2rem;
    }
    .gap-x-3 {
        column-gap: 0.75rem;
    }
    .stat-label{
        color: #212C64;
        font-weight:700;
        font-size: 1rem;
        @media only screen and (max-width: 460px) {
            line-height:1;
        }
    }
    .stat-number {
        color: #212C64;
        font-weight:700;
        background:#f19dd8;
        padding-left:8px;
        padding-right:8px;
        width:2.5rem;
        height:2.5rem;
        line-height:2rem;
        text-align: center;
        border-radius: 9999px;
    }
    .stat-wide{
        width:6rem;
        height:2.5rem;
        padding-left:4px;
        padding-right:4px;
    }
}