testimonial style : demo 63

HTML

                        

CSS

                        
                        

                        .testimonial{
                            background: #fff;
                            text-align: center;
                            margin: 0 20px;
                        }
                        .testimonial .description{
                            padding: 40px 30px;
                            margin-bottom: 50px;
                            border-top: 1px solid #2660a4;
                            border-left: 1px solid #2660a4;
                            font-size: 15px;
                            color: #887e7f;
                            line-height: 30px;
                            text-align: left;
                            position: relative;
                        }
                        .testimonial .description:before{
                            content: "\f10e";
                            font-family: "Font Awesome 5 Free";
                            font-weight: 900;
                            display: inline-block;
                            float: left;
                            padding: 0 15px 5px 0;
                            font-size: 30px;
                            color: #ff5a5f;
                            text-align: center;
                            position: relative;
                            top: 8px;
                            left: 0;
                        }
                        .testimonial .description:after{
                            content: "";
                            width: 50%;
                            height: 1px;
                            background: #2660a4;
                            position: absolute;
                            bottom: 0;
                            left: 0;
                        }
                        .testimonial .testimonial-content{ position: relative; }
                        .testimonial .testimonial-content:before{
                            content: "";
                            width: 1px;
                            height: 20px;
                            background: #2660a4;
                            position: absolute;
                            top: -50px;
                            left: 50%;
                        }
                        .testimonial .testimonial-content:after{
                            content: "";
                            width: 2px;
                            height: 40px;
                            background: #2660a4;
                            position: absolute;
                            top: -70px;
                            left: 50%;
                            transform: skewX(-45deg);
                            transform-origin: 100% 100% 0;
                        }
                        .testimonial .pic{
                            display: inline-block;
                            width: 80px;
                            height: 80px;
                            border-radius: 50%;
                            margin-right: 7px;
                        }
                        .testimonial .pic img{
                            width: 100%;
                            height: auto;
                            border-radius: 50%;
                        }
                        .testimonial .title{
                            display: inline-block;
                            font-size: 22px;
                            font-weight: 700;
                            color: #2660a4;
                            letter-spacing: 1px;
                            text-transform: capitalize;
                        }
                        .owl-theme .owl-controls{
                            margin-top: 30px;
                        }
                        .owl-theme .owl-controls .owl-page span{
                            width: 15px;
                            height: 10px;
                            border-radius: 0;
                            background: #ff5a5f;
                            opacity: 0.8;
                            transition: all 0.3s ease 0s;
                        }
                        .owl-theme .owl-controls .owl-page.active span{
                            width: 35px;
                            background: #2660a4;
                        }
                    

JavaScript

(Testimonial depend on jQuery and Owl carousel.)
                        
                        

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