.ss-testimonial-slide .inner-bx, .ss-testimonial-grid .inner-bx {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    margin: auto;
}
.test-img, .testimonial-caption {
    width: 50%;
}
.test-img {
    padding: 20px;
}
.test-img img {
    border-radius: 12px;
    box-shadow: -18px 18px 0 var(--e-global-color-accent);
    transition: 0.3s;
}
.test-img img:hover {
    box-shadow: 18px -18px 0 0 var(--e-global-color-accent);
}
.testimonial-caption {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.testimonial-caption svg path {
    fill: var(--e-global-color-accent);
}
/* Grid Style */
.ss-testimonial-grid-layout {
    display: flex;
    flex-wrap: wrap;
    margin: 0px -15px;
}
.ss-testimonial-grid {
    width: 50%;
    padding: 0px 15px;
    margin-bottom: 30px;
}
@media only screen and (max-width: 767px) {
.ss-testimonial-grid {
    width: 100%;
}
.ss-testimonial-slide .inner-bx, .ss-testimonial-grid .inner-bx {
    flex-direction: column;
}
.test-img, .testimonial-caption {
    width: 100%;
}
.testimonial-caption {
    gap: 10px;
}
}