/* Generic styling */
footer * {
    box-sizing: border-box;
    /* font-family: "Lato", sans-serif; */
}
footer ul {
    list-style: none;
    padding-left: 0;
}
footer {
    background-color: #555;
    color: #bbb;
    line-height: 1.3;
}
footer a {
    text-decoration: none;
    color: #eee;
}

.ft-main {
    background-color: black;
    font-size: 11px !important;
    color: #fff;
}

.ft-main > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-transform: uppercase;
    line-height: 1.5;
}


/* Footer social */
.ft-social {
    padding: 0;
}
.ft-social-list {
    display: flex;
    justify-content: center;
    /* border-top: 1px #777 solid; */
    padding-top: 0.7rem;
}
.ft-social-list li {
    margin: 0.5rem;
    font-size: 1.25rem;
}

/* Footer legal */
.ft-legal {
    padding-top: 5px;
    padding-bottom: 5px;
    flex-direction: column;
    font-size: 11px;
}
.ft-legal-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}
.ft-legal-list li {
    margin: 0.125rem 0.625rem;
}

/* one before the last child */
.ft-legal-list li:nth-last-child(2) {
    flex: 1;
}

@media only screen and (max-width: 767px) {
    .ft-legal-list {
        justify-content: center;
        display: block !important;
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {

    .ft-main ul  {
        justify-content: center;
        display: block !important;
        text-align: center;
        flex-direction: column !important;
        line-height: 1.5;
    }

    .ft-main > div  {
        flex-direction: column !important;
        text-transform: uppercase;
    }    
        
    .ft-main ul  {
        justify-content: center;
        display: block !important;
        text-align: center;
        flex-direction: column !important;
        line-height: 1.5;
    }

    .ft-main ul li  {
        justify-content: center;
        flex-direction: column !important;
        display: block !important;
        text-align: center;
        flex-direction: column;
        line-height: 1.5;
    }    

}





