/* --------------------------------- */
/*          General Styling          */
/* --------------------------------- */
.green-quote {
    background-color: #00E267;
    margin-left: 0px;
    margin-right: 0px;
    max-width: none;
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.green-quote .quote-div {
    max-width: 611px;
    padding: 100px 0px;
}
.green-quote .quote-div .quote {
    font-weight: 700;
    text-align: center;
}
.green-quote .quote-div .author {
    text-align: center;
}
.green-quote .quote-mark p {
    font-family: 'cabinet grotesk', sans-serif;
    margin-top: -0.17em;
    margin-bottom: -0.65em;
}
/* ------------------------------------ */
/*          Responsive Styling          */
/* ------------------------------------ */
@media screen and (max-width: 500px) {
    .green-quote .quote-div .quote {
        font-size: 18px;
    }
}
@media screen and (max-width: 700px) {
    .green-quote .quote-mark {
        display: none;
    }
}
@media screen and (min-width: 500px) and (max-width: 850px) {
    .green-quote .quote-div .quote {
        font-size: 22px;
    }
    .green-quote .quote-mark p {
        font-size: 150px;
    }
}
@media screen and (max-width: 1100px) {
    .green-quote {
        padding-left: 50px;
        padding-right: 50px;
    }
}
@media screen and (min-width: 850px) {
    .green-quote .quote-div .quote {
        font-size: 28px;
    }
    .green-quote .quote-mark p {
        font-size: 220px;
    }
}