.testimonial{
    text-align: center;
    margin: 20px 30px 40px;
}
.testimonial .pic{
    display: inline-block;
    width: 100px;
    height: 100px;
    border-radius: 25px;
    border: 4px solid #DB0102;
    box-shadow: 0 7px rgba(0, 0, 0, 0.1), 0 5px #999;
    margin-bottom: 15px;
    overflow: hidden;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
}
.testimonial .description{
    padding: 0 20px 20px;
    font-size: 15px;
    /*color: #333;*/
    line-height: 30px;
    border-radius: 25px;
    border-bottom: 4px solid #DB0102;
    box-shadow: 0 7px rgba(0, 0, 0, 0.1), 0 5px #999;
    margin-bottom: 25px;
}
.testimonial .title{
    display: block;
    margin: 0 0 7px 0;
    font-size: 20px;
    font-weight: 600;
    color: #DB0102;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.testimonial .post{
    display: block;
    font-size: 15px;
    color: #333;
    text-transform: capitalize;
}
.owl-theme .owl-dots{ margin-top: 0; }
.owl-theme .owl-dots .owl-dot span{
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #DB0102;
    opacity: 0.8;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.45);
    transition: all 0.3s ease 0s;
}
.owl-theme .owl-dots .owl-dot.active span{ background: #999; }
@media only screen and (max-width: 479px){
    .testimonial{ padding: 20px 15px 40px; }
    .testimonial .description{ padding: 0 5px 20px; }
}