.page .testimonial-small-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    box-shadow: 0 3px 8px 0 var(--shadow-color);
    transition: .3s;
}

.page .testimonial-small-card__header {
    padding: 1rem .625rem;
    border-radius: var(--border-radius);
    background: #EBF6FF;
}

.page .testimonial-small-card__img {
    max-width: 7.25rem;
    max-height: 1.875rem;
}

.page .testimonial-small-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: .625rem 1.25rem 1.25rem;
}

.page .testimonial-small-card__description {
    font-size: .875rem;
    line-height: 1.5;
    color: var(--color-middle);
}

.page .testimonial-small-card__content {
    flex: 1;
    margin-top: 1.75rem;
    font-size: .875rem;
    line-height: 1.5;
    height: 200px;
}

.page .testimonial-small-card__original {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1.25em;
    font-size: .875rem;
    line-height: 1.5;
    color: transparent;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    transition: .3s;
}

.page .testimonial-small-card__original:after {
    content: '';
    display: inline-block;
    width: 39px;
    height: 16px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMzkiIGhlaWdodD0iMTYiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTM4LjcwNyA4LjcwN2ExIDEgMCAwMDAtMS40MTRMMzIuMzQzLjkyOWExIDEgMCAxMC0xLjQxNCAxLjQxNEwzNi41ODYgOGwtNS42NTcgNS42NTdhMSAxIDAgMDAxLjQxNCAxLjQxNGw2LjM2NC02LjM2NHpNMCA5aDM4VjdIMHYyeiIgZmlsbD0iIzMzOTVGMiIvPjwvc3ZnPg==");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-filter: brightness(0) invert(87%);
    filter: brightness(0) invert(87%);
    -webkit-transform: translateY(-130%);
    transform: translateY(-130%);
    transition: .3s;
}

.page .testimonial-small-card:hover {
    box-shadow: 2px 6px 14px 0 var(--shadow-color);
}

.page .testimonial-small-card:hover .testimonial-small-card__original {
    color: var(--main-color);
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.page .testimonial-small-card:hover .testimonial-small-card__original:after {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-filter: none;
    filter: none;
}

.page .testimonials-small-block .swiper-wrapper {
    height: 400px;
    overflow: hidden;
}