*{
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.testimonials
{
    padding: 40px 0;
    background: #f1f1f1;
    color: #434343;
    text-align: center;
}
.inner
{
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}
.border
{
    width: 160px;
    height: 5px;
    background: #6ab04c;
    margin: auto;
}
.row
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.col
{
    flex: 33.33%;
    box-sizing: border-box;
    padding: 15px;
}
.testimonial img
{
    width: 100px;
    height: 100px;
    border-radius: 50%;
}
.name
{
    font-size: 20px;
    text-transform: uppercase;
    margin: 20px 0;
}
.stars
{
    color: #6ab04c;
    margin-bottom: 20px;
}
@media screen and (max-width:960px) 
{
 .col
 {
    flex: 100%;
    max-width: 80%;
 }    
}
@media screen and (max-width:960px) 
{
 .col
 {
    flex: 100%;
    max-width: 100%;
 }    
}