.footer {
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    height:60px;
    background:#ffffff;
    display:flex;
    align-items:center;
    z-index:1000;
}



@media(max-width:768px){
.footer{
    height:60px;
}
}


@media(min-width:769px) and (max-width:1200px){

}

@media(min-width:1201px){


}


/* navegación */

.footer-nav{

    margin-left:10px;

    height:40px;

    display:flex;

    flex-wrap:wrap;

    align-content:center;

    gap:2px 18px;

}



.footer-nav a{

    width:calc(50% - 9px);

    text-decoration:none;

    color:#444444;

    font-size:13px;

    font-weight:500;

    transition:all .25s ease;

}



.footer-nav a:hover{

    color:#000000;

    text-decoration:underline;

}



/* móviles */

@media(max-width:768px){

.footer-nav{

    width:100%;

    margin-left:0;

    justify-content:center;

    align-items:center;

    flex-wrap:nowrap;

    gap:12px;

}


.footer-nav a{

    width:auto;

    font-size:11px;

    white-space:nowrap;

    text-align:center;

}

}



/* tablets */

@media(min-width:769px) and (max-width:1200px){

.footer-nav{

    margin-left:10px;

    gap:4px 16px;

}


.footer-nav a{

    font-size:12px;

}

}



/* escritorio */

@media(min-width:1201px){

.footer-nav{

    margin-left:10px;

}


.footer-nav a{

    font-size:13px;

}

}

