.counts-section{
    padding: 100px 0;

}
.counts-section ul{
    list-style: none;
    padding: 0;
    -webkit-box-orient: horizontal;   
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.counts-section ul li{
    list-style: none;
    min-width: 250px;
    width: 33%;
    padding: 20px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
            flex-flow: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
            justify-content: center;
            -webkit-box-align: start;
            -ms-flex-align: start;
            align-items: flex-start;
}
.count-title{
    text-align: left;
    display: block;
    width: 100%;
    font-size: 3.375rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--l-white);
}
.count-title small{
    font-size: 1.125rem;
    margin-right: 10px;
}

.count-text{
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--l-white);
    max-width: 270px;
    margin-top: 10px;
}
@media screen and (max-width:767px) {
    .count-title{
        font-size: 2.125rem;
        text-align: center;

    }    
    .count-text{
        font-size: 1rem;
        text-align: center;
        margin-top: 10px;
    }

    .counts-section ul li{
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        list-style: none;
        min-width: 280px;
        width: 50%;
 
    }
    
}