.testimonials-carousel-wrapper {
    margin: 20px 0;
}

.testimonial-card {
    padding: 30px;
    text-align: center;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0px 3px 32px #4E4E4E29;
    border-radius: 7px;
}

.testimonial-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.testimonial-author h4,
.testimonial-author .testimonial-title{
    margin: 0 0 5px;
    color: #0F172A;
    font-weight: bold;
    font-size: 22px;
    line-height: 24px;
}
.testimonial-societe, .testimonial-societe p {
    line-height: 1.5;
    color: #64748B;
}

.testimonial-company {
    color: #888;
    font-size: 14px;
}

.testimonial-rating {
    margin-top: 15px;
    text-align:left
}

.testimonial-slide {
    padding: 2rem 72px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: #CED4DA;
    border-radius: 50%;
    overflow: hidden;
}

.wrap-avatar {
    flex-grow: 1;
    max-width: 90px;
}

.testimonial-content {
    flex-grow: 1;
    margin: 1rem 0 0;
    height: 97px;
    overflow: hidden;
}

.testimonial-avatar img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.star {
    color: #ddd;
    font-size: 18px;
}

.star.filled {
    color: #ffc107;
}

.testimonial-author{
    text-align: left;
}

.testimonial-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 30px;
}
/* Styles Slick */

.slick-dots li button:before {
    font-size: 12px;
    color: #ccc;
}

.slick-dots li.slick-active button:before {
    color: #007cba;
}

.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 1;
}

.slick-prev {
    left: -50px;
}

.slick-next {
    right: -50px;
}

.slick-prev:before,
.slick-next:before {
    font-size: 30px;
    color: #007cba;
}

.slick-dots  {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0;
}
.slick-dots button {
    overflow: hidden;
    padding: 0;
    border: 4px solid #9B9B9B;
    width: 16px;
    height: 16px;
    background: #9B9B9B;
    text-indent: 1000px;
    border-radius: 50%;
    transform: scale(.5);
}
.slick-dots .slick-active button {
    width: 16px;
    height: 16px;
    border-color: var(--primary-color);
    background: var(--white);
    border-radius: 50%;
    transform: scale(1);
}

@media (max-width: 1400px) {

    .testimonial-slide {
        padding: 2rem 36px;
    }
}
@media (max-width: 1200px) {

    .testimonial-slide {
        padding: 2rem 20px;
    }
}

@media (max-width: 768px) {
    .slick-prev {
        left: -25px;
    }
    .slick-next {
        right: -25px;
    }
    .testimonial-card {
        padding: 20px;
    }
    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }
    .testimonial-top{
        gap: 20px;
    }
}