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

footer img {
    height: 7.5rem;
}

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

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

footer hr {
    height: 1px;
    border: 0;
    background: var(--secondaryColor);
    width: 100%;
    margin: 3rem 0 2rem;
    opacity: .2;
}

footer .menu-footer-container ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    column-gap: 6rem;
    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.8rem;
    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 .menu-footer-container ul li.current-menu-item a {
    border-bottom: 1px solid var(--lightColor);
    color: var(--lightColor);
}

footer .socials {
    display: flex;
    gap: 15px;
    align-items: center;
    font-size: 1.2rem;
    transition: 0.2s all;
}
footer .socials:hover {
    color: var(--secondaryColor);
}

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

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

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

.footer-contact a {
    font-weight: 400;
    text-decoration: none;
    font-size: 0.85rem;
    line-height: 1.1rem;
}

.footer-contact a i {
    margin-right: 6px;
}
