.v-testimonials #testimonials_list  .testimonials_wrapper {
  display: flex;
  flex-wrap: wrap;
}
.v-testimonials #testimonials_list a {
    flex: 0 0 100%;
    max-width: 100%;
    margin-right: 0;
    background: #fff;
    border-radius: 0.5rem;
    padding-top: 7.75rem;
    position: relative;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
@media(min-width:48em) {
    .v-testimonials #testimonials_list a {
        flex: 0 0 calc(50% - 0.25rem);
        max-width: calc(50% - 0.25rem);
        margin-right: calc(0.25rem * 2);
    }
    .v-testimonials #testimonials_list a:nth-child(2n) {
        margin-right: 0;
    }
}
@media(min-width:62em) {
    .v-testimonials #testimonials_list a {
        flex: 0 0 calc(33.333% - 0.25rem);
        max-width: calc(33.333% - 0.25rem);
        margin-right: calc((0.25rem * 3) / 2);
    } 
    .v-testimonials #testimonials_list a:nth-child(2n) {
        margin-right: calc((0.25rem * 3) / 2);
    }
    .v-testimonials #testimonials_list a:nth-child(3n) {
        margin-right: 0;
    }
}
@media(min-width:75em) {
    .v-testimonials #testimonials_list a {
        flex: 0 0 calc(25% - 0.5rem);
        max-width: calc(25% - 0.5rem);
        margin-right: calc((0.5rem * 4) / 3);
    }
    .v-testimonials #testimonials_list a:nth-child(2n) {
        margin-right: calc((0.5rem * 4) / 3);
    }
    .v-testimonials #testimonials_list a:nth-child(3n) {
        margin-right: calc((0.5rem * 4) / 3);
    }
    .v-testimonials #testimonials_list a:nth-child(4n) {
        margin-right: 0;
    }
}
@media(min-width:90em) {
    .v-testimonials #testimonials_list a {
        flex: 0 0 calc(25% - 1rem);
        max-width: calc(25% - 1rem);
        margin-right: calc((1rem * 4) / 3);
        margin-bottom: 1.5rem;
    }
    .v-testimonials #testimonials_list a:nth-child(2n) {
        margin-right: calc((1rem * 4) / 3);
    }
    .v-testimonials #testimonials_list a:nth-child(3n) {
        margin-right: calc((1rem * 4) / 3);
    }
    .v-testimonials #testimonials_list a:nth-child(4n) {
        margin-right: 0;
    }
}
.v-testimonials #testimonials_list a > div.thumb {
    height: 7.75rem;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.6;
}
.v-testimonials #testimonials_list a > div.thumb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff url(/images/common/video-link.svg) center center / 100% auto no-repeat;
    border: 0.16em solid rgb(0,173,239);
    width: 3em;
    height: 3em;
    border-radius: 50%;
    color: rgb(0,173,239);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.v-testimonials #testimonials_list a:hover {
    cursor: pointer;
}
.v-testimonials #testimonials_list a:hover > div.thumb {
    filter: grayscale(0%);
    opacity: 1;
}
.v-testimonials #testimonials_list a:hover > div.thumb::before {
    opacity: 1;
}
.v-testimonials #testimonials_list a > div:not(.thumb) {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.75rem 1rem;
    pointer-events: none;
    color: #000 !important;
    font-weight: 500;
    position: relative;
    height: 100%;
}
.v-testimonials #testimonials_list a > div:not(.thumb) > p {
    transition: all 0.3s ease;
    font-weight: bold;
}
.v-testimonials #testimonials_list a:hover > div:not(.thumb) > p {
    transform: rotateX(90deg)translateY(-1em);
    transform-origin: center top;
    opacity: 0;
}
.v-testimonials #testimonials_list a > div:not(.thumb) > .caption {
    opacity: 0;
    transition: all 0.3s ease;
    position: absolute;
    top: 0; bottom: 0; left: 0; right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    text-align: center;
    white-space: normal;
}
.v-testimonials #testimonials_list a > div:not(.thumb) > .caption > p {
    transform: rotateX(90deg)translateY(2em);
    transform-origin: center bottom;
    transition: all 0.3s ease;
    font-style: italic;
}
.v-testimonials #testimonials_list a:hover > div:not(.thumb) > .caption {
    opacity: 1;
}
.v-testimonials #testimonials_list a:hover > div:not(.thumb) > .caption > p {
    transform: rotateX(0deg)translateY(0);
}