:root {
    --main-color: #ff9800;
}
/* Start Testimonials */
.testimonials::before,
.testimonials::after {
    content: "";
    width: 50%;
    position: absolute;
    top: 0;
    height: 100%;
}
.testimonials:before {
    background-color: var(--main-color);
    left: 0;
}
.testimonials:after {
    background-color: #333;
    right: 0;
}
.testimonials h2 {
    color: white;
    z-index: 2;
}
.testimonials .ts-box {
    width: calc(98% / 3);
    z-index: 2;
}
.testimonials .ts-box:not(:last-of-type) {
    margin-right: 1%;
}
.testimonials .ts-box > p {
    margin: 0 0 20px;
    line-height: 1.5;
    font-size: 18px;
    color: #707070;
    font-style: italic;
}
.testimonials .ts-box .person-info {
    overflow: hidden;
}
.testimonials .ts-box .person-info img {
    float: left;
    border-radius: 50%;
    margin-right: 15px;
}
.testimonials .ts-box .person-info h4 {
    margin: 14px 0 5px;
}
.testimonials .ts-box .person-info p {
    color: #707070;
    margin: 0;
}
/* End Testimonials */
@media (max-width: 991px) {
    .testimonials h2 {
        text-align: center;
    }
    .testimonials .ts-box {
        width: 100%;
        margin-bottom: 20px;
        float: none;
    }
    .testimonials .ts-box .person-info {
        text-align: center;
        overflow-y: visible;
    }
    .testimonials .ts-box .person-info img {
        float: none;
        margin-right: 0;
    }
}