.testimonios{
    width: 100%;
    padding: 100px 80px;
}

.testimonios_titulo{
    font-family: "Poppins Light";
    font-size: 35px;
    color: #222222;
    letter-spacing: 1.7px;
    text-transform: uppercase;
    text-align: center;
}

.testimonios hr{
    width: 80px;
    border: 2px solid #333333;
    margin: 0 auto 20px auto;
}

.testimonios_subtitulo{
    display: block;
    font-family: "Poppins Light";
    font-size: 18px;
    letter-spacing: 0.9px;
    color: #333333;
    margin-bottom: 50px;
    text-align: center;
}

/*//////////////////////////////////////////////////////////*/

.testimonios_global_container{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 30px;
}

.flecha_testimonio{
    display: none;
}

.testimonios_slider_container{
    width: 100%;
    display: flex;
    align-items: center;
    max-width: 100%;
    overflow-x: hidden;
}

.testimonios_container{
    width: 100%;
    display: flex;
    justify-content: space-between;
    transition: all 0.5s ease;
}

.testimonio_item{
    width: 30%;
    padding: 30px;
    box-shadow: 4px 5px 10px rgba(0,0,0,0.25);
}


/*---------------------*/

.testimonio_item_logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px auto;
    text-align: center;
    font-family: "Poppins Bold";
    font-size: 40px;
    color: #fff;
    border-radius: 50%;
    background-color: var(--color-verde);
}

.testimonio_item_2 .testimonio_item_logo{
    background-color: var(--color-rosa);
}

/*---------------------*/

.testimonio_item_usuario{
    display: block;
    font-family: "Poppins";
    font-size: 17px;
    letter-spacing: 0.85px;
    text-align: center;
    margin-bottom: 20px;
} 

.testimonio_item_2 .testimonio_item_usuario{
    font-size: 13px;
}

/*---------------------*/

.contenedor_img_testimonio{
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border-radius: 50%;
    background-color: var(--color-verde);
    margin-bottom: 20px;
}

.contenedor_img_testimonio img{
    width: 25px;
}

.testimonio_item_2 .contenedor_img_testimonio{
    background-color: var(--color-rosa);
}

/*---------------------*/

.testimonio_item_parrafo{
    font-family: "Poppins Light";
    font-size: 11px;
    letter-spacing: 0.5px;
    color: #444444;
    line-height: 1.6;
    text-align: justify;
}

/*///////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////// RESPONSIVE /////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////////////////*/

@media (max-width: 700px) {

    .testimonios{
        padding: 40px 10px;
    }

    .testimonios_titulo{
        font-size: 25px;
        letter-spacing: 1.2px;
    }

    .testimonios hr{
        width: 50px;
        margin: 0 auto 15px auto;
    }

    .testimonios_subtitulo{
        font-size: 14px;
        letter-spacing: 0.7px;
        margin-bottom: 30px;
    }

    /*//////////////////////////////////////////////////////////*/

    .testimonios_container{
        width: 100%;
    }

    .testimonio_item{
        min-width: 92%;
        padding: 30px;
        margin: 0 4% 50px 4%;
    }

    .flecha_testimonio{
        display: block;
        width: 18px;
        cursor: pointer;
    }

    /*---------------------*/

    .testimonio_item_logo{
        width: 50px;
        height: 50px;
        margin: 0 auto 15px auto;
        font-size: 22px;
    }

    /*---------------------*/

    .testimonio_item_usuario{
        font-size: 14px;
        letter-spacing: 0.7px;
        margin-bottom: 15px;
    } 

    .testimonio_item_2 .testimonio_item_usuario{
        font-size: 12px;
    }

    /*---------------------*/

    .contenedor_img_testimonio{
        width: 30px;
        height: 30px;
    }

    .contenedor_img_testimonio img{
        width: 18px;
    }

    /*---------------------*/

    .testimonio_item_parrafo{
        font-size: 10px;
        letter-spacing: 0.5px;
    }



}