.QuoteBlock {
    position: relative;
    overflow: hidden;
    text-align: center;
    background: #fff;
    border: 0;
    box-shadow: 0 0 0 1px rgba(0,0,0,.1) inset;
}

.QuoteBlock__container {
    padding: 20px;
    transition: transform 0.5s ease;
    will-change: transition;
}

.QuoteBlock__blog {
    padding: 20px 5%;
    text-align: center;
}

.QuoteBlock__imageWrapper {
    padding: 0 20px 30px;
}

.QuoteBlock__image {
    display: block;
    width: 100%;
    margin: 0 auto;
    border-radius: 50%;
    transition: transform 0.5s ease;
    will-change: transition;
}

.QuoteBlock__title {
    margin: .15em 0 .3em
}

.QuoteBlock__subTitle {
    margin-top: 20px;
    padding-top: 20px;
    background: transparent url(QuoteBlock__wave.png) repeat-x 0 0;
    background-size: 14px;
}

.QuoteBlock__readMore {
    color: #0081ab;
}

.QuoteBlock__readMore:before {
    content: '\27a1';
}

.QuoteBlock:hover .QuoteBlock__image {
    transform: scale(1.04);
}

.QuoteBlock__noImage:hover .QuoteBlock__container {
    transform: translate(0, -5px);
}