.footer{    
    height: 34rem;
    background-color: var(--cardprimary);
}

/*-----------------Article---------------------*/
.footer article{
    height: 30rem;
    display: flex;
    justify-content: center;
}
article{
    display: flex;        
    flex-direction: column;
}

.anio{    
    height: 10rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.anio img {
    width: 100px;
    object-fit: cover;
    transition: all 0.4s ease-out;  
}

.letrabig{
    margin-top: 15px;
    font-family: var(--fuenteTituloPrincipal);
    font-size: 2rem;    
    font-weight: 600;    
    font-style: bold;
}

.letrasmall{    
    font-family: var(--fuenteTituloPrincipal);
    font-size: 1.1rem;    
    font-weight: 600;    
    font-style: bold;    
}

.anio__img p{    
    line-height: 0;
    text-align: center;
}

.anio__img{            
    color: var(--cardblanco);
    z-index: 1;
    position: absolute;    
    color: var(--oscuro);
    font-style:  inherit;
}

/*Estadisticas**/
.estadisticas{
    margin: 10px 10px;
    height: 10rem;
    width: 100%;    
    display: flex;
    justify-content: center;
    color: var(--blanco);
}

.est__item span {
    font-family: var(--fuenteHeading);
    font-size: 20px;
    font-weight: 600;  
    padding-left: 1.6rem;
    margin-top: 3rem;
}

.est__item p {
    font-family: var(--fuenteBtn);
    font-size: 12px;
    font-weight: 200; 
    padding-left: 15px; 
    padding-right: 15px; 
    line-height:1.5625px;  
}

.logo{    
    height: 10rem;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    transition: all 0.4s ease-out;  
}

/*---------------------------- INICIO MQ 768PX--------------------------*/
@media (min-width: 768px) {
    article {             
        flex-direction: row;
        text-align: center;
        align-items: center;
        height: 20rem;
    }
    .anio{    
        height: 20rem;
    }
    .anio img {
        width: 180px;
        height: 180px;
    }

    .letrabig{                
        font-size: 4rem;    
        font-weight: 800;    
        font-style: bold;
    }
    
    .letrasmall{    
        font-family: var(--fuenteTituloPrincipal);
        font-size: 2rem;    
        font-weight: 600;    
        font-style: bold;    
    }
    
    .anio__img p{    
        line-height: 0;
        text-align: center;
    }
    .logo{
        height: 20rem;
    }
    .logo img {
        width: 180px;
        height: 180px;
    }
}
/*---------------------------- FIN MQ 768PX--------------------------*/
/*--------------------------- INICIO MQ 1400PX---------------------------------*/
@media (min-width: 1400px) {
    article {                     
        height: 30rem;
    }
    .anio{    
        height: 29rem;
    }

    .anio img {
        width: 280px;
        height:280px;
    }

    .letrabig{                
        font-size: 6rem;    
        font-weight: 800;    
        font-style: bold;
    }
    
    .letrasmall{    
        font-family: var(--fuenteTituloPrincipal);
        font-size: 2.8rem;    
        font-weight: 600;    
        font-style: bold;    
    }
    
    .anio__img p{    
        line-height: 0;
        text-align: center;
    }

    /*Estadisticas*/
    .est__item span {
        font-size: 35px;
        line-height:1.5625px;  
    }
    
    .est__item p {
        font-size: 15px;
        padding-left: 22px; 
    }

    .logo{
        height: 29rem;
    }
    .logo img {
        width: 280px;
        height: 280px;
    }
}
/*--------------------------- FIN MQ 1400PX---------------------------------*/


/*--------------------copyRight----------------*/
.copy {
    height: 2rem;     
    display: flex;
    justify-content: center;
}

.copy p{
    font-family: var(--fuenteHeading);
    font-size: 10px;
    color: var(--blanco);
    margin: 0;
}
.copy a{    
    color: var(--blanco);
}

@media (min-width: 768px) {
    .copy {
        height: 2.5rem;         
    }
    .copy p{    
        font-size: 15px;    
        margin: 0;
    }

}

@media (min-width: 768px) {
    .copy a{    
        padding-left: 3rem;
    }
}