.testimonios{
    max-width: 1220px;
    margin-left: auto;
    margin-right: auto;
    border-top-color: #606060;
    border-top-style: solid;
    border-top-width: 1px;
    padding-top: 12px;
}

.testimonios h2{
    width: 100%;
    max-width: 1200px;
    color: #606060;
    font-size: 3.3rem;
    margin-left: auto;
    margin-right: auto;
}

.testimonios h3{
    font-size: 2rem;
}

.bloques{
    width: 100%;
    max-width: 1200px;
    height: 460px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto;
    column-gap: 6px;
    transition: 250ms;
    margin-left: auto;
    margin-right: auto;
    padding: 36px 0;
}

.bloque1{
    grid-template-columns: 2fr 1fr 1fr;
}

.bloque2{
    grid-template-columns: 1fr 2fr 1fr;
}

.bloque3{
    grid-template-columns: 1fr 1fr 2fr;
}


.bloque{
    display: flex;
    flex-direction: row;
    overflow: hidden;
}

.bloque .texto {
    width: 300px;
    /*overflow: hidden;*/
    /*hyphens: auto;*/
    font-size: 1.3rem;
    padding-top: 24px;
    padding-left: 30px;
    padding-right: 30px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--principal) white;
}


.bloque .texto::-webkit-scrollbar {
    width: 11px;
}

.bloque .texto::-webkit-scrollbar-track {
    background: white;
}

.bloque .texto::-webkit-scrollbar-thumb {
    background-color: var(--principal) ;
    border-radius: 6px;
    border: 3px solid white;
}

.bloque .imagen{
    cursor: pointer;
    width: 300px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.bloque .espacio{
    width: 300px;
}

.item{
    width: 100%;
    border: 0;
    /* overflow: hidden;*/
    /*display: inline-block;*/
    /*padding-left: 12px;*/
}

@media screen and (max-width: 1200px) {
    .testimonios h2{
        text-align: center;
        font-size: 16vw;
    }
    .bloques{
        grid-template-columns: 1fr;
        height: auto;
    }

    .bloque{
        width: 100%;
        height: 430px;
        flex-direction: column;
    }

    .bloque .imagen{
        width: 100%;
        height: 320px;
    }

    .bloque .texto{
        width: auto;
        padding-left: 6px;
        padding-right: 6px;
        padding-bottom: 18px;
    }

    .bloque1, .bloque2, .bloque3{
        grid-template-columns: 1fr;
    }
}