


/*===========================
     12.Testimonial css 
===========================*/


.testimonial-area{}

.single-testimonial{
    & .testimonial-author{
        & img{
            border-radius: 50%;
        }
    }
    & .testimonial-content{
        padding-left: 65px;
	    text-align: left;
        
        @media #{$xs}{
            padding-left: 0;
            padding-top: 30px;
        }
        @media #{$sm}{
            padding-left: 30px;
            padding-top: 0px;
        }
        
        & p{
            font-weight: 400;
            font-size: 18px;
            line-height: 28px;
            color: $white;
            
            @media #{$xs}{
                font-size: 16px;
            }
        }
        & .author-name{
            position: relative;
            font-size: 24px;
            font-weight: 500;
            line-height: 1;
            color: $white;
            display: block;
            text-transform: capitalize;
            margin-top: 20px;
            
            @media #{$xs}{
                font-size: 20px;
            }
        }
        & .designation{
            font-weight: 400;
            font-size: 15px;
            line-height: 1;
            color: $white;
            margin-top: 10px;
            
            @media #{$xs}{
                font-size: 14px;
            }
        }
    }
}

.testimonial-active{
    & .slick-dots{
        text-align: center;
        margin-top: 30px;
        
        & li{
            display: inline-block;
            margin: 0 5px;
            
            & button{
                border: 0;
                width: 13px;
                height: 13px;
                border-radius: 50%;
                background-color: rgba($white, 0.7);
                font-size: 0;
                cursor: pointer;
            }
            
            &.slick-active{
                & button{
                    background-color: $white;
                }
            }
        }
    }
}




