/*==================================
IDENTIDAD CORPORATIVA
==================================*/

.identidad{

    padding:120px 8%;

    background:#f6f9fc;

}

.identidad-grid{

    margin-top:70px;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

}

.identidad-card{

    background:white;

    border-radius:20px;

    padding:45px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.4s;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.identidad-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:5px;

    background:#D71920;

}

.identidad-card:hover{

    transform:translateY(-12px);

}

.identidad-card .icono{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background:#005EB8;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:25px;

}

.identidad-card .icono i{

    font-size:38px;

    color:white;

}

.identidad-card h3{

    color:#005EB8;

    font-size:28px;

    margin-bottom:20px;

}

.identidad-card p{

    line-height:30px;

    color:#666;

}

.identidad-card ul{

    list-style:none;

    padding:0;

}

.identidad-card ul li{

    padding:12px 0;

    border-bottom:1px solid #eee;

    color:#555;

    font-weight:500;

}

.identidad-card ul li:last-child{

    border-bottom:none;

}

@media(max-width:992px){

.identidad-grid{

grid-template-columns:1fr;

}

}

