.testimonial-listing {
    padding: 50px 20px;
}
.tesDetail {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}
.tesLhs {
    width: 30%;
}
.tesDetailCont {
    width: calc(70% - 60px);
    margin: 0 0 0 60px;
}
.quote-symbol{
    position: relative;
}
.quote-symbol:before {
    content: "";
    position: absolute;
    background: url(../images/quote.png) no-repeat left top;
    width: 30px;
    height: 30px;
    left: -35px;
    top: 7px;
}
.quote-name {
    color: #2e2e2e;
    font-size: 24px;
    font-family: 'poppinsregular';
    margin: 20px 0 0;
}
.quote-desig {
    color: rgba(55, 55, 55, .8);
    display: block;
    margin: 10px 0 0;
}
.shift-in {
    margin-left: 35px;
}
/* Media queries start here */
@media screen and (max-width:767px){
    .tesDetail {
        flex-direction: column;
    }
    .tesLhs, .tesRhs{
        width: 100%;
    }
    .tesDetailCont {
        width: calc(100% - 35px);
        margin: 0 0 0 35px;
    }
}
/* Media queries end here */