/* -----------------------
   FOOTER MENU GRID
----------------------- */

.foot-menu-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
}
.foot-menu-item{
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:60px;
    border:2px solid #fff;
    color:#fff;
    background:#000;
    text-decoration:none;
    text-transform:uppercase;
    font-weight:bold;
    letter-spacing:1px;
    transition:0.3s;
    padding: 5px;
}
/* Hover */
.foot-menu-item:hover{
    background:#fff;
    color:#000;
}
/* Active Page */
.foot-menu-item.active{
    color:red;
    border:2px solid red;
}
