.testimonial{
   
    padding: 30px 30px 30px 130px;
    margin: 0 30px 45px 30px;
    overflow: hidden;
    position: relative;
    background: #fff;
    border-radius: 0px;
    filter: drop-shadow(0px 3px 2px rgba(0,0,0,.3));
    border-top: 10px solid #333333;
    
                
}
.testimonial:before{
    /*
    content: "";
    position: absolute;
    bottom: -4px;
    right: -25px;
    border-top: 25px solid #fff;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(180deg);
    */
    content: "";
    position: absolute;
    bottom: -4px;
    left: -17px;
    /*border-top: 25px solid #00cede; GREEEEN*/
    border-top: 25px solid #fff;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(45deg);
}
.testimonial:after{
    content: "";
    position: absolute;
    top: -4px;
    left: -17px;
    border-top: 25px solid #fff;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform: rotate(135deg);
}
.testimonial .pic{
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    position: absolute;
    top: 34px;
    left: 23px;
}
.testimonial .pic img{
    width: 100%;
    height: auto;
    filter: drop-shadow(0px 3px 2px rgba(0,0,0,.3));
    border-radius: 50px;
}
.testimonial .description{
    color: #3f3f3f;
    margin-bottom: 28px;
    font-size: 16px;
    font-weight: 300;
}
.testimonial .title{
    display: inline-block;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 1px;
    color: #333333;
    margin: 0;
}
.testimonial .post{
    display: block;
    color: #ffffff;
    font-style: italic;
    font-size: 16px;
    box-shadow: none;
    margin-top: 10px;
    background-color: #333333;
    width: fit-content;
    padding: 3px 28px;


}
.owl-theme .owl-controls .owl-page span{
    border: none;
    background: #fff !important;
  border-radius:0 !important;
    opacity: 1;
}
.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls .owl-page:hover span{
    background: #3f3f3f !important;
  border:none;
}
@media only screen and (max-width: 767px){
    .testimonial{
        padding: 20px;
        text-align: center;
    }
    .testimonial .pic{
        display: block;
        position: static;
        margin: 0 auto 15px;
    }
}