.team-member-testimonials .item{
    border: 1px solid #C6D5EA;
    border-radius: 4px;
    background-color: #F8FBFF;
    padding: 30px 20px 30px 35px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}

.team-member-testimonials .item .s1{
    width: 128px;
    line-height: 0;
}
.team-member-testimonials .item .s1 img{
    border-radius: 100%;
}
.team-member-testimonials .item .s2{
    width: calc(100% - 128px);
    padding-left: 5px;
}
.team-member-testimonials .item .s2::before{
    content: url(images/mtmico-quote.svg);
    line-height: 0;
    display: inline-block;
    margin-bottom: 10px;
}
.team-member-testimonials .item .text{
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 10px;
}
.team-member-testimonials .item .text p{
    margin-bottom: 10px;
}
.team-member-testimonials .item .text:after{
    content: '';
    display: block;
    height: 1px;
    width: 20px;
    background-color: #2151A4;
    position: absolute;
    bottom: 0px;
    left: 0px;
}
.team-member-testimonials .item .bottom{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
.team-member-testimonials .item .name{
    font-weight: bold;
    margin-bottom: 0px;
}
.team-member-testimonials .rating i{
    line-height: 0;
    display: inline-block;
    margin: 0 3px;
}
.team-member-testimonials .rating i:before{
    content: url(images/mtmico-star.svg);
    display: inline-block;
}

@media only screen and (max-width:767px){
    .team-member-testimonials .item .text:after {
        transform: translateX(-50%);
        left: 50%;
    }
    .team-member-testimonials .item{    
        padding: 35px 10px 25px;
        justify-content: center;
    }
    .team-member-testimonials .item .s2{
        width: 100%;
        padding-left: 0px;
        text-align: center;
    }
    .team-member-testimonials .item .bottom{
        justify-content: center;
    }
}