testimonial style : demo 31

HTML

                        

CSS

                        
                        

                        .demo{
                            background: -webkit-linear-gradient(to left, #f99da6, #ffc371, #f99da6);
                            background:  linear-gradient(to left, #f99da6, #ffc371, #f99da6);
                        }
                        .testimonial{
                            text-align: center;
                            margin: 50px 10px 0;
                            padding: 0 10% 1%;
                            background: #fff;
                        }
                        .testimonial .pic{
                            width: 100px;
                            height: 100px;
                            border-radius: 50%;
                            border: 5px solid rgba(255,255,255,0.3);
                            display: inline-block;
                            margin-top: -50px;
                            overflow: hidden;
                            box-shadow:0 2px 6px rgba(0, 0, 0, 0.15);
                        }
                        .testimonial .pic img{
                            width: 100%;
                            height: auto;
                        }
                        .testimonial .description{
                            font-size: 16px;
                            font-style: italic;
                            color: #808080;
                            line-height: 30px;
                            margin: 10px 0 20px;
                        }
                        .testimonial .testimonial-title{
                            font-size: 14px;
                            font-weight: bold;
                            margin: 0;
                            color: #333;
                            text-transform: uppercase;
                        }
                        .testimonial .post{
                            display: block;
                            font-size: 13px;
                            color: #777;
                            margin-bottom: 15px;
                            text-transform: capitalize;
                        }
                        .testimonial .post:before{
                            content: "";
                            width: 30px;
                            display: block;
                            margin: 10px auto;
                            border: 1px solid #d3d3d3;
                        }
                        .testimonial .testimonial-rating{
                            margin: 0 0 15px 0;
                            padding: 0;
                            list-style: none;
                        }
                        .testimonial .testimonial-rating li{
                            color: #d3d3d3;
                            display: inline-block;
                        }
                        .testimonial .testimonial-rating li.fa-star{
                            color: #333;
                        }
                        .owl-theme .owl-controls{
                            margin-top: 30px;
                        }
                        .owl-theme .owl-controls .owl-pagination{
                            width: 140px;
                            padding: 10px;
                            margin: 0 auto;
                            line-height: 13px;
                            background: #fe7f8b;
                        }
                        .owl-theme .owl-controls .owl-page span{
                            width: 12px;
                            height: 12px;
                            border-radius: 0;
                            background: transparent;
                            border: 1px solid #fff;
                        }
                        .owl-theme .owl-controls .owl-page.active span,
                        .owl-theme .owl-controls.clickable .owl-page:hover span{
                            border: 4px solid #fff;
                        }
                    

JavaScript

(Testimonial depend on jQuery and Owl carousel.)
                        
                        

                        $(document).ready(function(){
                            $("#testimonial-slider").owlCarousel({
                                items:1,
                                itemsDesktop:[1000,1],
                                itemsDesktopSmall:[979,1],
                                itemsTablet:[768,1],
                                pagination: true,
                                autoPlay:false
                            });
                        });
                    
License Terms