footer {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 1;
    background: var(--primaryColor);
    border-radius: 50px 50px 0px 0px;
}

footer img {
    width: 110px;
}

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;
    margin: 1rem 0 0;
}

footer .menu-footer-container ul li a {
    color: var(--lightColor);
    padding: 0 0 5px 0;
    font-size: 1rem;
    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 .newsletter-form form {
    display: flex;
    gap: 10px;
    margin: 0.5rem 0;
}
footer .newsletter-form input[type="email"] {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid white;
    color: white;
    background: transparent;
    min-width: 18rem;
}
footer .newsletter-form input[type="email"]::placeholder {
    color: #fefefe;
}
footer .newsletter-form input[type="submit"] {
    border: 1px solid white;
    background: transparent;
    color: white;
    padding: 0.75rem 1rem 0.65rem;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.75rem;
    transition: all 0.2s;
}
footer .newsletter-form input[type="submit"]:hover {
    background: white;
    color: var(--primaryColor);
}
footer .newsletter-form input[type="submit"]:focus {
    outline: none;
}

footer .newsletter-form p {
    font-size: 0.7rem;
    line-height: 1.1rem;
    color: white;
}

.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;
}
