#footer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 350px;
    background-color: #000000;
}

#footerMovil{
    display: none;
}

.footer-item{
    display: flex;
    flex-direction: column;
    width: 180px;
    height: 200px;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 0;
}

.tituloFooter{
    color: #FFFFFF;
    font-size: 1.3rem;
    /*letter-spacing: 1px;*/
    text-align: left;
    font-family: 'arial';
    font-style: normal;
    font-weight: 700;
    padding-top: 0;
    margin-top: 0;
}

.linkFooter{
    color: #A3A3A3;
    font-size: 1.1rem;
    /*letter-spacing: 1px;
    line-height: 20px;*/
    text-align: left;
    font-family: 'arial';
    font-style: normal;
    font-weight: 400;
    text-decoration: none;
    margin-bottom: 5px;
}

.linkFooter:hover{
    color: #FFFFFF;
}

.active{
    color: #FFFFFF;
}

/*CELULARES*/
@media only screen and (max-width: 899px) {
    #footer{
        display: none;
    }

    #footerMovil{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background-color: #000000;
        padding-bottom: 50px;
    }

    .footer-item{
        display: flex;
        flex-direction: column;
        width: 80%;
        height: auto;
        padding-right: initial;
        padding-left: initial;
        padding-top: 30px;
        padding-bottom: 10px;
        border-bottom-style: solid; 
        border-bottom-color: white; 
        border-bottom-width: 1px;
    }
}