.quote-section {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 6rem 1rem;
    background-image: url("../../components/sub/images/background-pattern.svg");
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
}

.quote-custom {
    display: flex;
    max-width: 43.75rem;
}

.quote-text {
    font-family: 'Poppins', sans-serif;
    color: var(--Gray-900);
    font-size: 2.25rem;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 2rem;
}

.quote-custom .quote-author {
    color: var(--Gray-900);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.3125rem;
}

.quote-custom .quote-author-position {
    color: var(--Gray-600);
    font-size: 1rem;
    font-weight: 700;
    padding-left: 1.25rem;
    margin-bottom: 0;
}

.quote-custom .quote-author-school {
    color: var(--Gray-600);
    font-size: 1rem;
    font-weight: 400;
    padding-left: 1.25rem;
}

.quote-custom svg {
    padding-right: 1.875rem;
    min-width: 5.0625rem;
}

/* Desktop */
@media only screen and (max-width: 992px) {}
@media only screen and (max-width: 1200px) {}

/* Mobile */
@media only screen and (max-width: 768px) {
    .quote-custom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .quote-text {
        font-size: 1.75rem;
    }
}

@media only screen and (max-width: 576px) {
    .quote-section {
        padding: 2rem 1.5rem;
    }
}
