.valores{
    display: grid;
    grid-template-columns: 0.5fr 1fr 1fr;
    grid-template-rows: 200px 200px;
    margin-bottom: 90px;
}
.valores .valor.titulo{
    grid-row: 1/3;
    background-color: #F18A00;
    margin-bottom: 0px !important;
    color: #FFF;
}
html body #main .valores .valor.titulo h2{
    color: #FFF;
    text-transform: uppercase !important;
}
.valores .valor.titulo h2{
    font-size: 24px;
}
.valores .valor.titulo h2 strong{
    font-weight: 600;
    font-size: 30px;
}
.valores .valor{
    display: flex;
    align-items: center;
    text-align: center;
    flex-direction: column;
    padding: 20px 30px;
    justify-content: center;
    background-color: #B3C0CA;
}
.valores .valor:nth-child(3),
.valores .valor:nth-child(4){
    background-color: #acb8bf;
}
.valores .valor p{
    margin-bottom: 0px;
    margin-top: 0px;
}
.valores .valor h3{
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

@media (min-width: 0px) and (max-width: 768px) {
    .no-mt-mobile .grilla-uno{
        width: 100%;
        padding-top: 75px;
        max-width: 100%;
    }
    .valores{
        display: block;
        margin-bottom: 50px;
    }
    html body #main .valores .valor.titulo h2{
        margin-bottom: 0px !important;
        padding: 22px 40%;
    }
}