.quotes-custom {
    display: flex;
    gap:20px;
    justify-content: flex-start;
}
.quote-text {
    font-size: 29px;
    max-width: 60%;
    width: 100%;
    line-height: 1.5;
}
.quote-image {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 40%;
    align-items: center;
    max-width: 100%;
}
.autor-name {
    max-width: 200px;
    margin: 0 auto;
    text-align: center;
    font-weight: 500;
}
.quotes-custom .c-quote--image {
    width: 200px;
    height: 200px;
    border-radius: 100%;
    padding: 0;
}
@media (max-width: 991px) {
    .quotes-custom {
        gap:50px;
        flex-direction: column-reverse;
    }
    .quote-text { 
        max-width: 85%;
        text-align: left;
    }
    .quote-text, .quote-image { 
        width: 100%;
    }
    .quote-image {
        justify-content: flex-start;
        align-items: flex-start;
    }
    .autor-name { 
        text-align: left;
        max-width: 50%;
        margin: 0;
    }
}
 @media (max-width: 767px) {
    .quote-text { 
        max-width: 100%;
        text-align: center;
    }
    .quotes-custom {
        justify-content: center;
    }
    .quote-image {
        justify-content: center;
        align-items: center;
    }
    .autor-name { 
        text-align: center;   
        max-width: 100%;         
    }
}