footer {
    padding: 5rem 0 2rem;
    position: relative;
    z-index: 1;
    background: var(--primaryColor);
}

.footer-cta {
    flex: 0 1 40%;
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.newsletter-signup {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-signup form input[type="email"] {
    padding: 1rem !important;
    color: white;
    font-size: 1rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.50);
    background: rgba(255, 255, 255, 0.05);
    width: 100%;
    font-size: 0.85rem;
}
.newsletter-signup form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.75);
}
.newsletter-signup form input[type="submit"] {
    padding: 1rem;
    border: 1px solid var(--secondaryColor);
    border-radius: 5px;
    font-size: 0.85rem;
    background: var(--secondaryColor);
    color: white;
    cursor: pointer;
    text-transform: uppercase;
}

footer img {
    width: 70px;
    margin-bottom: 1rem;
}

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

footer h4 {
    color: white;
    font-size: 1.65rem;
    line-height: 130%;
}

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

footer .menu-footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

footer .menu-footer-container p { 
    text-transform: uppercase;
    font-weight: bold;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}

footer .menu-footer-container ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    column-gap: 8rem;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 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;
    display: inline;
}

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) !important;
    color: var(--lightColor) !important;
}

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

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

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

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