.quote {
    margin-top: 100px;
}
.quote .wrapper {
    display: flex;
    align-items: center;
}
.quote .quote-block {
    position: relative;
    background: var(--color-section);
    min-height: 349px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    border-radius: 0 52px 52px 0;
    color: white;
    padding-right: 64px;
}
.quote .quote-block::before {
    content: "";
    position: absolute;
    height: 100%;
    width: 3000px;
    left: -3000px;
    background: var(--color-section);
}
.quote .quote-block p {
    font-size: 37px;
    font-family: var(--font-rubrik);
    color: #222222;
    font-weight: 600;
    text-align: right;
    max-width: 650px;
    font-style: italic;
    line-height: 1.2;
}
.quote .author {
    font-size: 20px;
    font-family: var(--font-osans);
    font-weight: bold;
    max-width: 250px;
    margin-left: 40px;
}

@media screen and (max-width: 620px) {
    .quote .quote-block p {
        font-size: 27px;
    }
}

@media screen and (max-width: 450px) {
    .quote .quote-block p {
        font-size: 20px;
    }
    .quote .author {
        font-size: 16px;
    }
}
