:root {
    --swiper-navigation-size: 28px;
    --swiper-theme-color: #1a1a1a;
}
.testimonials-wrapper {
    position: relative;
    padding:0 40px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    box-sizing: border-box;
}

.testimonial-content {
    margin-bottom: 28px;
    display: flex;
    gap: 10px;
}

.testimonial-quote{
    font-size:45px;
    color:#B6863B;
    line-height:1;
}

.testimonial-text {
    font-size: 14px;
    line-height: 1.5;
    color: #535455;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author-image {
    flex-shrink: 0;
}

.testimonial-author-image img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-designation {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: #1A1A1A;
}

.testimonial-company {
    margin: 4px 0 0;
    font-size: 14px;
    color: #1A1A1A;
}

.testimonials-slider {
    overflow: hidden;
    padding-left: 2px;
}

.testimonial-prev {
    left:0;
}
.testimonial-next{
    right:0;
}
.swiper-button-next:after, .swiper-button-prev:after{
    font-weight:700;
}
.swiper-wrapper{
    align-items: stretch;
}
.swiper-slide{
    height: auto;
    display: flex;
}

@media screen and (max-width:767px) {
    .testimonials-wrapper{
        padding:0;
    }
    .testimonial-prev, .testimonial-next{
        display:none;
    }
    .testimonials-slider .swiper-wrapper{
        flex-direction: column;
        gap:12px;
    }
}