#footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0;
    background: var(--white-color);
    color: var(--text-color);
    text-transform: uppercase;
    max-width: 1920px;
    margin: 0 auto;
}

#footer .footer__social {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

#footer .footer__social>a {
    font-size: 24px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    display: inline-block;
    text-align: center;
    border-radius: 50%;
    border: 1px solid var(--text-color);
    margin: 0 8px;
    color: var(--text-color);
}

#footer .footer__social>a:hover {
    opacity: 0.9;
}

#footer ul {
    display: flex;
    padding: 0;
    list-style: none;
    font-size: 18px;
    line-height: 1.6;
}

#footer li {
    margin: 0 10px;
}

#footer ul a {
    color: inherit;
    text-decoration: none;
    position: relative;
    transition: color 0.3s ease-in-out;
}

#footer ul a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background-color: var(--text-color);
    transition: width 0.3s ease-in-out;
}

#footer ul a:hover::after {
    width: 100%;
}

#footer .copyright {
    margin-top: 15px;
    text-align: center;
    font-size: 13px;
    margin-bottom: 0;
}


/* Fin Footer */