.testimonials-content{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    gap: 10px;

}

.testimonials-content .testimonials-item{
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px;
    border-radius: 20px;
    border: 2px solid #121212;
}

.testimonials-content .testimonials-img{
    width: 100%;
    display: block;
    max-width: 70px;
    height: 70px;
    border-radius: 50%;
    object-position: center;
    object-fit: cover;
}
@media screen and (min-width: 768px) {
    .testimonials-content .testimonials-img {
        max-width: 120px;
        height: 120px;
    }
}
.testimonials-content .testimonials-text-block{
    width: 100%;
}
.testimonials-content .testimonials-title{
    font-size: 20px;
    margin-bottom: 10px;
    line-height: 1.1;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
}
.testimonials-content .testimonials-text{
    font-size: 16px;
    line-height: 1.1;
    margin-bottom: 0;
    font-weight: 400px;
}

.testimonials-content .testimonials-accent{
    color: #fd291a;
    font-weight: 700;

}
