.quote-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--grey-700);
    padding: 60px 0;
}

.quote-author {
    font-size: var(--font-size-18);
}

.quote-content {
    font-size: var(--font-size-20);
    text-align: center;
    margin: 0 58px;
}

.quote-vision {
    color: var(--green-text);
    font-size: var(--font-size-16);
    margin-top: 10px;
    text-align: center;
}


@media (min-width: 768px) {
    .quote-author {
        font-size: var(--font-size-24);
    }

    .quote-content {
        font-size: var(--font-size-30);
        padding: 0 126px;
        line-height: 28px;
    }

    .quote-container img {
        width: 17px;
    }

    .quote-vision {
        font-size: var(--font-size-24);
    }
}

@media(min-width:1024px) {
    .quote-author {
        font-size: var(--font-size-22);
        line-height: 44px;
    }

    .quote-container {
        padding: 30px 0;
    }

    .quote-container img {
        width: 14px;
    }

    .quote-content {
        font-size: var(--font-size-52);
        padding: 0 126px;
        line-height: 50px;
    }

    .quote-vision {
        font-size: var(--font-size-20);
    }




}


@media (min-width: 1366px) {
    .quote-author {
        font-size: 16px;
    }

    .quote-icon {
        font-size: 18px;
        padding-top: 10px;
    }

    .quote-content {
        max-width: 905px;
        font-size: 48px;
        padding: 0 110px;
    }

    .quote-vision {
        font-size: 16px;
    }
}