.testimonialList {
    display:         flex;
    flex-flow:       row wrap;
    justify-content: center;
}

.testimonial {
    flex:               1 1 auto;
    max-width:          31%;
    min-width:          300px;
    margin:             0 1%;
    background-color:   #fff;
    position:           relative;
    padding:            20px 20px 50px;
    box-sizing:         border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing:    border-box;
    text-align:         center;
}

@media only all and (max-width: 990px) {
    .testimonial {
        margin-bottom: 70px;
    }
}

.testimonial-content p {
    color: #777777;
}

.testimonial .testimonial-image {
    margin:                -70px auto 0;
    width:                 90px;
    height:                90px;
    overflow:              hidden;
    border-radius:         50px;
    -moz-border-radius:    50px;
    -webkit-border-radius: 50px;
    border:                6px solid #edeaea;
}

.testimonial-heading {
    margin-top: 30px;
}

.testimonial-position {
    font-family: "Titillium Web", Arial, sans-serif;
    padding:     10px 0px;
    color:       #006ab3;
    font-size:   16px;
}

.testimonial-name {
    display: none;
}

@media (max-width: 425px) {
    .testimonial {
        max-width: 100%;
        min-width: 100%;
    }
}