.testimonials {
    background: #FAFAFA;
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.testimonials-holder__top {
    text-align: center;
    margin-bottom: 40px;
}

.testimonials-holder__top h2 {
    color: #333;
    font-size: 44px;
    font-family: Literata, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 48px;
}

.testimonials-holder__top p {
    width: 60%;
    margin-left: 20%;
    color: #888;
    text-align: center;
    font-size: 18px;
    font-family: Figtree, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
}

.testimonials-holder__card-holder {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.testimonials-holder__card-holder__single {
    border-radius: 16px;
    background: #FFF;
    padding: 24px;
    flex: 0 0 auto;
    max-width: 32%;
}

.testimonials-holder__card-holder__single-img {
    display: flex;
    margin-bottom: 20px;
}

.testimonials-holder__card-holder__single-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
}

.testimonials-holder__card-holder__single-content {
    display: flex;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.testimonials-holder__card-holder__single-content p,
.testimonials-holder__card-holder__single-content span {
    display: flex;
    flex-flow: row;
    width: 100%;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.testimonials-holder__card-holder__single-content span {
    color: #888;
    font-family: 'Figtree';
    font-size: 14px;
    font-weight: 400;
    line-height: 1.57;
}

.testimonials-holder__card-holder__single-content p {
    color: #333;
    font-family: 'Literata';
    font-size: 18px;
    font-weight: 400;
    line-height: 1.33;
}

@media only screen and (max-width: 992px) {
    .testimonials {
        margin-bottom: 100px;
    }

    .testimonials-holder__top {
        margin-bottom: 32px;
    }

    .testimonials-holder__top h2 {
        font-size: 38px;
        line-height: 32px;
    }

    .testimonials-holder__top p {
        width: 100%;
        margin-left: 0;
    }

    .testimonials-holder__card-holder__single {
        max-width: 100%;
        margin-bottom: 32px;
    }

    .testimonials-holder__card-holder__single:last-of-type {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 575px) {
    .testimonials {
        padding-top: 40px;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .testimonials-holder__top,
    .testimonials-holder__top p {
        text-align: left;
    }

    .testimonials-holder__top h2 {
        font-size: 32px;
    }
}