/* --------------------------------------IMAGEN NAV------------------------------------------- */

.nav-img{
    width: 100%;
    z-index: 0;
}
.nav-img > img{
    width: 100%;
    height: 38rem;
    object-fit: cover;
}
.contenedor-tarjetas{
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.tarjeta{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    padding: 3rem;
}
.tarjeta-img, .tarjeta-texto{
    width: 35rem;
    margin: 0.5rem;
}
.tarjeta > .tarjeta-img > img{
    width: 100%;
    height: 19rem;
    border-radius: 5rem 0 5rem 0;
    box-shadow: 0rem 0rem 0.5rem 0.5rem rgba(240, 159, 29, 0.25);
    object-fit: cover;
}
.tarjeta-texto > h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #0d41a1;
    margin-bottom: 1rem;
}
.tarjeta-texto > p {
    font-size: 1rem;
    font-weight: 300;
    text-align: justify;
}
.tarjeta-texto > ul {
    margin: 1rem;
}
.tarjeta-texto > ul > li {
    font-size: 1rem;
    font-weight: 300;
    text-align: left;
    list-style: decimal;
    margin: 0.5rem;
}