.clientes {
    background-color: #181617;
    background: url(/img/bg-contato.webp) no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding-top: 70px;
    padding-bottom: 70px;
}
.clientes-title span {
    display: block;
    content: "";
    height: 1px;
    width: 100px;
    background-color: #E3312D;
}
.clientes-title {
    display: flex;
    align-items: center;
    grid-gap: 8px;
    margin-bottom: 30px;
    margin-left: 120px;
}
.clientes-title h6 {
    color: #fff;
}
.clientes-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
    justify-items: center;
}

@media only screen and (min-width:370px) and (max-width:715px) {

    .clientes-content {
        grid-template-columns: 1fr 1fr 1fr;
        grid-gap: 20px;
    }

    .clientes-title {
        margin-bottom: 30px;
        margin-left: 0px;
    }
    
}
@media only screen and (min-width:0px) and (max-width:369px) {

    .clientes-content {
        grid-template-columns: 1fr 1fr;
        grid-gap: 20px;
    }

    .clientes-title {
        margin-bottom: 30px;
        margin-left: 0px;
    }

    .clientes-title span {
        width: 50px;
    }
    
}