

/*.testimonial{
    margin: 20px 15px 0;
}
*/


.testimonial {
    border: 2px solid #86898c;
    padding: 10px;
    border-radius: 10px;
    margin: 0 0 15px;
    transition: all 0.25s ease-in-out;
}

.testimonial:hover{
    border: 2px solid #050066;
    box-shadow: 1px 1px 5px rgba(0,0,0,0.4);
    
    transition: all 0.25s ease-in-out;
}

.testimonial .pic{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    float: left;
    border: 5px solid #fff;
    box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
    position: relative;
}



.testimonial .pic img{
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.testimonial .testimonial-content{
    padding: 10px;
    margin-left: 120px;
}

.testimonial .description{
    font-size: 14px;
    color: #555;
    line-height: 22px;
}

.testimonial .testimonial-title{
    font-size: 19px;
    color: #33d286;
    text-transform: capitalize;
    display: inline-block;
}

.testimonial .post{
    font-size: 14px;
    font-style: italic;
    color: #444;
    margin-top: 10px;
}

.owl-theme .owl-buttons{
    margin-top: 20px;
}

.owl-theme .owl-controls .owl-buttons div{
    padding: 5px 10px;
    background: #da5d5d;
    border-radius: 0;
    opacity: 1;
    border-bottom: 2px solid #9f3c3c;
}

.owl-theme .owl-controls .owl-buttons div:hover{
    background: #d04949;
}

.owl-prev:before,
.owl-next:before{
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
}

.owl-next:before{
    content: "\f054";
}

@media only screen and (max-width: 480px) {
    .testimonial{
        text-align: center;
        width: 100%;
        margin: 0;
    }
    .testimonial .pic{
        float: none;
        margin: 0 auto;
    }
    .testimonial .testimonial-content{
        margin-left: 0;
    }
    .owl-theme .owl-buttons{
        margin-top: 0;
    }
}