.stats-wrapper {
    padding: 10px;
    box-shadow: 0 0 2px 0 #b1bec4;
    border-radius: 5px;
    margin-bottom: 60px;
    background-color: #f6f6f6;
}

.stats-heading {
    text-align: center;
    border-radius: 6px;
    padding: 10px;
    color: #272626;
    font-weight: 600;
    font-size: 19px;
}

.stats-box {
    display:flex;
    flex-direction: column;
}

.stats-box-card
{
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: transparent;
    padding: 15px;
    margin: 0;
    line-height: initial;
    border-bottom: 1px solid rgba(66,82,110,.15);
}

.stats-box-card:first-child {
    border-top: 1px solid rgba(66,82,110,.15);
}

.stats-box-card:last-child {
    border: 0;
}

.stats-strong {
    color: black;
    font-size: 50px;
    font-weight: 800;
    text-align: left;
    margin: 0 !important;
}

.stats-bold {
    color: black;
    font-size: 16px;
    margin: 0 !important;
}

@media only screen and (min-width: 1370px) {
    .stats-box-card
    {
        max-width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        text-align: left;
        background: transparent;
        padding: 15px;
        border-bottom: 0px;
        border-right: 1px solid rgba(66,82,110,.15);
    }

    .stats-box-card:first-child {
        border-top: 0;
    }

    .stats-box-card:last-child {
        border: 0;
    }

    .stats-bold {
        color: black;
        font-size: 16px;
        padding-left: 10px;
        margin: 0 !important;
    }            

    .stats-box {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
    }
    
}