/*
The quote stylesheet
*/

.quote_ct {
    /* font-weight: 400; */
    font-style: italic;
    /* width: 100%; */
}
.quote_ct {
    padding: 3rem 2rem 15rem;
}
.quote_p {
    text-align: center;
    font-family: 'Minion Pro', serif;
    font-size: var(--fs-quote);
}
.quote_q {
    quotes: "\201C" "\201D";
}
.quote_q::before,
.quote_q::after {
    padding: 0 1rem;
}
.quote_span {
    font-weight: 700;
}
@media all and (max-width: 1100px) {
    .quote_ct {
        padding: 3rem 1.5rem 12rem;
    }
}
@media all and (max-width: 1000px) {
    .quote_ct {
        padding: 3rem 1.5rem 10rem;
    }
    .quote_q::before,
    .quote_q::after {
        padding: 0 .5rem;
    }
}
@media all and (max-width: 900px) {
    .quote_ct {
        padding: 1rem 1rem 8rem;
    }
}
@media all and (max-width: 700px) {
    .quote_ct {
        padding: 0 0 6rem;
    }
}