.testimonials-section{
    padding:60px 0;
    overflow:hidden;
}

.testimonialSlider{
    padding:15px 5px 70px;
}

.swiper-slide{
    height:425px;
    display:flex;
}

.testimonial-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
/*     box-shadow:0 15px 40px rgba(0,0,0,.08); */
    transition:.4s ease;
    display:flex;
    flex-direction:column;
    width:100%;
    height:100%;
    position:relative;
    border:1px solid #edf0f4;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.12);
}

.stars{
    color:#ffbf00;
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:15px;
}

.quote-icon{
    font-size:60px;
    color:#86BC25;
    opacity:1;
    line-height:1;
    margin-bottom:15px;
}

.testimonial-card p{
    font-size:16px;
    line-height:1.8;
    color:#000;
    margin:0 0 35px;
    flex:1;
	font-weight: 500;
}

.client-info{
    border-top:1px solid rgba(0,0,0,.08);
    padding-top:20px;
}

.client-info h4{
    font-size:18px;
    margin:0 0 6px;
    font-weight:700;
    color:#222;
}

.client-info span{
    font-size:14px;
    color:#000;
	font-weight:400;
}

/* Navigation */

.swiper-button-next,
.swiper-button-prev{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#fff;
    color:#86BC25;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
    transition:.3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background:#86BC25;
    color:#fff;
}

.swiper-button-next:after,
.swiper-button-prev:after{
    font-size:16px;
    font-weight:700;
}

/* Pagination */

.swiper-pagination{
    bottom:0 !important;
}

.swiper-pagination-bullet{
    width:10px;
    height:10px;
    background:#d2d8df;
    opacity:1;
    transition:.3s;
}

.swiper-pagination-bullet-active{
    width:28px;
    border-radius:30px;
    background:#86BC25;
}

/* Responsive */

@media(max-width:991px){

.testimonial-card{
padding:30px;
}

}

@media(max-width:767px){

.testimonials-section{
padding:40px 0;
}

.testimonial-card{
padding:25px;
}

.testimonial-card p{
font-size:15px;
line-height:1.7;
}

.swiper-button-next,
.swiper-button-prev{
display:none;
}

}