.quote-container {
    border: 1px solid rgb(215,215,215);
    border-radius: 2rem;
    padding: 3.125rem 4.375rem;
    position: relative;
}

.quote-container:before {
    width: 69px;
    height: 58px;
    position: absolute;
    top: -20px;
    left: -20px;
    background-image: url(../png/quotes-01.png);
    background-size: 47px 40px;
    background-repeat: no-repeat;
    background-position: top left;
    background-color: #fafafa;
    content: ' ';
}

.quote-container:after {
    width: 69px;
    height: 58px;
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-image: url(../png/quotes-02.png);
    background-size: 47px 40px;
    background-repeat: no-repeat;
    background-position: bottom right;
    background-color: #fafafa;
    content: ' ';
}

.quote-container .quote-text {
    font-weight: 200;
    font-size: 1rem;
    line-height: 1.75rem;
}

@media screen and (min-width: 768px) {
    .quote-container .quote-text {
        font-weight: 200;
        font-size: 1.25rem;
        line-height: 2.3125rem;
    }
}

.quote-container .quote-logo {
    margin-top: 1rem;
    max-width: 150px;
    width: auto;
    height: auto;
}