.testimonials {
    padding-top: 25px;
    padding-bottom: 60px;
}

.testimonials-header {
    margin-bottom: 25px;
}

.testimonials-header h1 {
    font-size: 24px;
    color: #1C1C1C;
    font-weight: 400;
    margin: 0;
}

.testimonials-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonials-items .testimonial {
    width: calc(33.3% - 15px);
}

@media (max-width: 991px){
    .testimonials-items {
        flex-direction: column;
    }
    
    .testimonials-items .testimonial {
        width: 100%;
    }    
}