.bg-grey + .bg-grey {
    padding-top: 0;
}

.stat-card {
    background-color: #264B5B;
    padding: 32px;
    border-radius: 5px;
    color: #fff;
    position: relative;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.36);
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 16px;
}

.home-stats .row {
    display: flex;
    flex-wrap: wrap;
}

.home-stats .row:before,
.home-stats .row:after {
    display: none;
}
 
.stat-card .icon {
    width:60px;
    height: auto;
    margin-right: 32px;
}

.stat-card div {
    font-size: 14px;
    line-height: 1.25em;
}

.stat-card .big-text {
    font-weight: 700;
    color: #d37b4f;
    text-transform: uppercase;
}

@media(min-width:600px){
    .stat-card div{
        display: flex;
        flex-direction: column;
        margin-top: 10px;
    }

    .stat-card{
        height: 100%;
        flex-direction: column;
        text-align: center;
    }

    .home-stats .row [class*='col-']{
        margin-bottom: 32px;
    }

    .stat-card .icon{
        margin: 0 auto;
    }
    .stat-card .big-text{
        font-size: 19px;
        line-height: 1.25em;
        margin-bottom: 4px;
    }
}

@media(min-width:768px){
    .stat-card {
        padding: 45px 18px;
        margin-bottom: 0;
    }
}

@media(min-width:1200px){
    .stat-card .icon{
        width: 120px;
    }

    .stat-card div{
        font-size:16px;;
    }

    .stat-card .big-text{
        font-size: 24px;
    }
}
