.testimonial {
    background: var(--primary-blue);
}

.testimonial .row {
    max-width: 746px;
}

.testimonial .quote {
    position: relative;
    text-align: center;
}
.testimonial .quote:after {
    content: "";
    position: absolute;
    width: 42%;
    height: 2px;
    top: 50%;
    left: 0;
    background: var(--light-blue);
    display: block;
    z-index: 1;
}
.testimonial .quote:before {
    content: "";
    position: absolute;
    width: 42%;
    height: 2px;
    top: 50%;
    right: 0;
    background: var(--light-blue);
    display: block;
    z-index: 1;
}

.testimonial .content {
    color: #fff;
    font-size: 26px;
    font-style: italic;
    font-weight: 400;
    line-height: 38px;
    margin-top: 27px;
    text-align: center;
}

.testimonial .author-title {
    font-size: 20px;
    color: #fff;
    text-align: center;
    margin-top: 20px;
}

@media only screen and (max-width:767px){
    .testimonial .quote svg {
        max-width: 40px;
    }
    .testimonial .quote:before,
    .testimonial .quote:after{
        width: 35%;
    }
    .testimonial .row {
        text-align: center;
    }
    .testimonial .content {
        font-size: 20px;
        line-height: 28px;
        margin-top: 15px;
    }
    .testimonial .author-title {
        font-size: 16px;
    }
}