.section-quote{
    padding: 88px 0;
}
.section-quote .inner-wrapper{
    max-width: 788px;
    margin: auto;
    display: grid;
    column-gap: 48px;
    grid-template-columns: 58px 1fr;
}
.section-quote .inner-wrapper .left-part svg{
    max-width: 100%;
}
.section-quote .inner-wrapper .quote{
    font-family: var(--font-campton);
    font-weight: 500;
    color: var(--color-oja-blue);
    margin-bottom: 24px;
}
.section-quote .inner-wrapper .quote:last-child{
    margin-bottom: 0;
}
.section-quote .inner-wrapper .name{
    font-weight: 500;
    color: var(--color-black);
}
@media only screen and (max-width:768px){
    .section-quote{
        padding: 16px 20px;
    }
}
@media only screen and (max-width:500px){
    
    .section-quote .inner-wrapper .left-part svg{
        width: 40px;
    }
    .section-quote .inner-wrapper{
        column-gap: 24px;
    }
}