footer {
    padding: 4rem 0 3rem;
    position: relative;
    z-index: 1;
    background: var(--secondaryColor);
}

footer img {
    height: 6rem
}

footer p {
    font-size: 1.1rem;
    line-height: 140%;
}

footer h4 {
    font-size: 1.35rem;
    line-height: 130%;
}

footer hr {
    height: 1px;
    border: 0;
    background: white;
    width: 100%;
    margin: 3rem 0 2rem;
}

footer .menu-footer-container ul {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    list-style: none;
    padding: 0;
}

footer .menu-footer-container ul li a {
    color: var(--lightColor);
    padding: 0 0 5px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid transparent;
    text-transform: uppercase;
}

footer .menu-footer-container ul li a:hover {
    border-bottom: 1px solid var(--lightColor);
    color: var(--lightColor);
}

.footer-copyright {
    text-align: right;
}

.footer-copyright p {
    font-size: 0.85rem;
    line-height: 1.1rem;
    text-transform: uppercase;
}

.footer-copyright a {
    font-weight: bold;
    text-decoration: underline;
}

