testimonial style : demo 73

HTML

                        

CSS

                        
                        

                        .testimonial{
                            border: 10px solid #662a66;
                            padding: 40px 0 25px 0;
                            margin: 50px;
                            text-align: center;
                            position: relative;
                        }
                        .testimonial:before{
                            content: "\f10d";
                            font-family: "Font Awesome 5 Free";
                            width: 100px;
                            height: 100px;
                            line-height: 100px;
                            background: #fff;
                            margin: 0 auto;
                            font-size: 70px;
                            font-weight: 900;
                            color: #f1971f;
                            position: absolute;
                            top: -60px;
                            left: 0;
                            right: 0;
                        }
                        .testimonial .title{
                            padding: 7px 0;
                            margin: 0 -30px 20px;
                            border: 7px solid #fff;
                            background: #e8326f;
                            font-size: 22px;
                            font-weight: 700;
                            color: #fff;
                            letter-spacing: 1px;
                            text-transform: uppercase;
                            position: relative;
                        }
                        .testimonial .title:before{
                            content: "";
                            border-top: 15px solid #662a66;
                            border-left: 15px solid transparent;
                            border-bottom: 15px solid transparent;
                            position: absolute;
                            bottom: -37px;
                            left: 0;
                        }
                        .testimonial .title:after{
                            content: "";
                            border-top: 15px solid #662a66;
                            border-right: 15px solid transparent;
                            border-bottom: 15px solid transparent;
                            position: absolute;
                            bottom: -37px;
                            right: 0;
                        }
                        .testimonial .post{
                            display: inline-block;
                            font-size: 14px;
                            font-weight: 700;
                            color: #fff;
                            text-transform: capitalize;
                        }
                        .testimonial .description{
                            padding: 0 20px;
                            margin: 0;
                            font-size: 15px;
                            color: #6f6f6f;
                            letter-spacing: 1px;
                            line-height: 30px;
                        }
                        .owl-theme .owl-controls{ margin-top: 0; }
                        .owl-theme .owl-controls .owl-buttons div{
                            display: inline-block;
                            width: 40px;
                            height: 40px;
                            line-height: 35px;
                            background: #f1971f;
                            color: #fff;
                            border-radius: 0;
                            margin-right: 5px;
                            opacity: 1;
                        }
                        .owl-prev:before,
                        .owl-next:before{
                            content: "\f060";
                            font-family: "Font Awesome 5 Free";
                            font-size: 20px;
                            font-weight: 900;
                        }
                        .owl-next:before{ content: "\f061"; }
                        @media only screen and (max-width: 990px){
                            .testimonial{ margin: 30px; }
                        }
                    

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:false,
                                navigation:true,
                                navigationText:["",""],
                                autoPlay:true
                            });
                        });
                    
License Terms