/*********************** Testimonials ************************/
.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
}

.testimonial {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30%;
    background-color: var(--white);
    box-shadow: 0px 5px 10px #00000014;
    border-radius: 10px;
    padding: 35px;
    box-sizing: border-box;
    margin-bottom: 45px;
}

.testimonial i {
    color: var(--light-blue);
    font-size: 22px;
    display: flex;
}

.testimonial i:last-of-type {
    justify-content: end;
}

.testimonial p {
    padding: 0 22px 0 30px;
    line-height: 1.4;
}

.testimonial h3 {
    display: flex;
    justify-content: end;
    margin-bottom: 0;
    font-size: 18px;
    color: var(--grey);
}

.testimonial_wrapper .button {
    margin: 0 auto;
}

@media (max-width: 1330px) {
    .testimonial {
        width: 48%;
        margin-bottom: 0;
    }

    .testimonial:last-of-type {
        margin: 45px auto;
    }
}

@media (max-width: 950px) {
    .testimonials,
    .intro_content {
        flex-direction: column;
    }

    .testimonial,
    .checklist,
    .intro_content .image {
        width: 80%;
    }

    .testimonial {
        margin: 0 auto 45px auto;
    }

    .testimonial:last-of-type {
        margin-top: 0;
    }
}

@media (max-width: 600px) {
    .testimonial,
    .checklist,
    .intro_content .image {
        width: 100%;
    }

    .testimonial_wrapper .button {
        width: 100%;
    }
}

