.contat.nav-pills {
    width: 100%; /* Ajusta el ancho según tus necesidades */
  }
  
  .nav-pills li a {
    width: 120px; /* Ajusta el ancho según tus necesidades */
    border-radius: 4px; /* Hace los bordes más cuadrados */
    transition: background-color 0.3s ease; /* Agrega una transición suave */
  }
  
  .nav-pills li a:hover {
    background-color: #003865; /* Cambia el color de fondo al pasar el mouse */
    color: white; /* Cambia el color del texto al pasar el mouse */
  }
  


  .cardi-image {
    display: block;
    min-height: 20rem; /* layout hack */
    background: #fff center center no-repeat;
    background-size: cover;
  
  }
  
  .cardi-image > img {
    display: block;
    width: 100%;
    
  }
  
 
  
  .cardi-list {
    display: block;
    margin: 1rem auto;
    padding: 0;
    font-size: 0;
    text-align: center;
    list-style: none;
  }
  
  .cardi {
    display: inline-block;
    width: 120%;
    max-width: 42rem;
    margin: 1rem;
    font-size: 1rem;
    text-decoration: none;
    overflow: hidden;
    box-shadow: 0 0 3rem -1rem rgba(0,0,0,0.5);
    transition: transform 0.1s ease-in-out, box-shadow 0.1s;
  }
  
  .cardi:hover {
    transform: translateY(-0.5rem) scale(1.0125);
    box-shadow: 0 0.5em 3rem -1rem rgba(0,0,0,0.5);
  }
  
  .cardi-description {
    display: block;
    padding: 1em 0.5em;
    color: #515151;
    text-decoration: none;
  }
  
  .cardi-description > h2 {
    margin: 0 0 0.5em;
  }
  
  .cardi-description > p {
    margin: 0;
  }