/* Quote */

.quote-container {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    padding: 1em 10%;
    text-align: center;
    margin: 0 auto 1.2em auto;
    display: flex;
    height: 100%;
    flex-direction: row;
    align-items: stretch;
    background-color: #fefefe;
}

.quote-content {
    padding-top: 2em;
    padding-bottom: 2em;
    position: relative;
    width: 100%;
}

.lend,
.rend {
    display: flex;
    flex-direction: column;
    width: 8%;
    position: relative;
}

.lend {
    justify-content: flex-end;
    margin-right: -1em;
}

.rend {
    justify-content: flex-start;
    margin-left: -1em;
}

.llcorner,
.urcorner {
    width: 100%;
}

.urcorner {
    transform: scaleX(-1) scaleY(-1);
}

.quote {
    font-size: 1.4em;
    line-height: 1.1em;
}

.author {
    font-size: 1.1em;
    font-variant: italic;
    text-align: right;
}

.author:before {
    content: "\2014\0020";
}

@media only screen and (max-width: 768px) {
    .lend,
    .rend {
        display: flex;
        flex-direction: column;
        width: 12%;
        position: relative;
    }
    .quote-container {
        width: 100%;
    }
    .divider-content {
        width: 20%;
    }
}

.divider-container {
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
    height: auto;
    justify-content: center;
    margin-top: 1em;
    margin-bottom: 1em;
}

.divider-left {
    order: 1;
    width: 46%;
}

.divider-right {
    width: 46%;
    order: 3;
}

.divider-content {
    width: 8%;
    order: 2;
}

.band {
    margin-top: 1em;
    margin-bottom: 1.6em;
    filter: grayscale(100%);
    border: 1px solid silver;
    width: 100%;
    background-repeat: repeat-x;
}