.feedback {
    background: url(/img/fundo-clientes.webp) no-repeat center center;
    background-size: cover;
    padding: 60px 10px;
}
.feedback-grid > p {
    font-style: italic;
    font-weight: 600;
}
.feedback-grid > h5 {
    font-family: "ethnocentric", sans-serif;
    font-size: 1.45rem;
}
.feedback-content {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 30px;
}
.feedback-content div {
    background-color: #2F2B26;
    color: #fff;
    border-radius: 15px;
    padding: 20px;
    padding-bottom: 50px;
    text-align: center;
    position: relative;
}
.feedback-content div img {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: #ED3232;
    padding: 10px;
    border-radius: 10px;
}
.feedback-content div p:nth-child(2) {
    font-style: italic;
    margin-top: 10px;
}
.feedback-content div p:nth-child(1) {
    font-family: "ethnocentric", sans-serif;
}

@media only screen and (min-width:460px) and (max-width:880px) {

    .feedback-content {
        grid-template-columns: 1fr;
    }
    
}
@media only screen and (min-width:400px) and (max-width:459px) {

    .feedback-content {
        grid-template-columns: 1fr;
    }
    .feedback-grid {
        text-align: center;
    }
    .feedback-grid > h5 {
        max-width: 250px;
        margin-left: auto;
        line-height: 1.15em;
        margin-right: auto;
    }
    
}
@media only screen and (min-width:0px) and (max-width:399px) {

    .feedback-content {
        grid-template-columns: 1fr;
    }
    .feedback-grid {
        text-align: center;
    }
    .feedback-grid > h5 {
        font-size: 1.1rem;
        max-width: 200px;
        margin-left: auto;
        line-height: 1.15em;
        margin-right: auto;
    }
    .feedback-grid > p {
        font-size: .8rem;
    }
    .feedback-content div p:nth-child(2) {
        font-size: .75rem;
    }
    
}