.section__testimonials {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.section__testimonials__testimonial {
    position: relative;
    display: flex;
    align-items: center;
    padding: 1.2rem;
    width: 80%;
    margin: 0 auto;
}
.section__testimonials__testimonial + .section__testimonials__testimonial {
    margin-top: 30px;
    padding-top: 45px;
}
.section__testimonials__testimonial + .section__testimonials__testimonial:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 20%;
    height: 3px;
    border-radius: 2px;
    background-color: #6183ff;
}
.section__testimonials__testimonial__image {
    min-width: 80px;
    max-width: 80px;
    width: 80px;
    min-height: 80px;
    max-height: 80px;
    height: 80px;
    border-radius: 50%;
    margin-right: 2rem;
}
.section__testimonials__testimonial__quote {
    font-size: 1.2rem;
}
.section__testimonials__testimonial__quote * {
    margin: 0;
    padding: 0;
    display: inline;
    font-size: 1.2rem;
}
.section__testimonials__testimonial__quote:before,
.section__testimonials__testimonial__quote:after {
    content: '"';
    font-style: italic;
    font-size: 1.2rem;
}
.section__testimonials__testimonial__author {
    font-style: italic;
    font-size: 1.2rem;
    text-align: right;
    font-weight: 600;
}
@media (max-width: 719px) {
    .section__testimonials__testimonial {
        flex-direction: column;
    }
    .section__testimonials__testimonial + .section__testimonials__testimonial:before {
        width: 40%;
    }
    .section__testimonials__testimonial__image {
        margin-right: 0;
        margin-bottom: 1.5rem;
    }
    .section__testimonials__testimonial__quote {
        text-align: center;
    }
    .section__testimonials__testimonial__author {
        margin-top: 1rem;
    }
}