

/* Footer */
footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0 0 0;
    background-color: white;
}
footer img.logo {
    width: 200px;
    margin-bottom: 10px;
}
.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 10px;
}
.footer-links a {
    margin: 5px 10px;
    text-decoration: none;
    color: black;
    font-size: 12px;
    font-weight: 600;
}
.footer-social {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
}
.footer-social a {
    margin: 0 10px;
    font-size: 24px;
    color: black;
}
.footer-info {
    text-align: center;
    font-size: 12px;
    color: #888;
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
}
.footer-info .liens{
    text-align: left;
    margin: 0 20px;
}
.footer-info .padel{
    text-align: right;
    margin: 0 20px;
}
.footer-info a{
    color: black;
    text-decoration: none;
}
.footer-info a:hover{
    color: #D3D828;
}