/*======================================================
ICONOS DECORATIVOS EN LAS CARDS
======================================================*/

.testi-card{
    position: relative;
    overflow: hidden;
}

/* Icono decorativo */
.card-icon{
    position: absolute;

    /* Más hacia la esquina */
    right: 25px;
    bottom: -14px;

    /* Un poco más pequeño */
    font-size: 84px;

    /* Apariencia */
    color: #0b63ff;
    opacity: .055;

    pointer-events: none;
    z-index: 0;

    transition: all .35s ease;
}

/* El contenido siempre encima */
.testi-card p,
.testi-person{
    position: relative;
    z-index: 2;
}

/* Animación */
.testi-card:hover .card-icon{
    opacity: .10;
    transform: scale(1.04);
}

/* Responsive */

@media (max-width:992px){

    .card-icon{
        font-size: 74px;
        right: 4px;
        bottom: -10px;
    }

}

@media (max-width:768px){

    .card-icon{
        font-size: 66px;
        right: 2px;
        bottom: -8px;
    }

}