.wlth-footer {
    background: #000;
    color: #fff;
    padding: 40px 0 20px;
}


/* TOP WHITE BAR */

.footer-top-bar {
    background: #e9e9e9;
    border-radius: 12px;
    padding: 14px 20px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    height: 34px;
}

.footer-social a {
    color: #000;
    font-size: 18px;
    margin-left: 14px;
}


/* NEWSLETTER */

.footer-newsletter {
    margin-top: 25px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-newsletter p {
    max-width: 500px;
    color: #aaa;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    background: #e9e9e9;
    border: none;
    border-radius: 50px;
    padding: 10px 18px;
    width: 260px;
}

.newsletter-form button {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 8px 20px;
}


/* Divider */

.footer-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 30px 0;
}


/* Links */

.footer-links-row h6 {
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-links-row ul {
    list-style: none;
    padding: 0;
}

.footer-links-row li {
    margin-bottom: 8px;
}

.footer-links-row a {
    color: #aaa;
    text-decoration: none;
}

.footer-links-row a:hover {
    color: #fff;
}


/* Bottom bar */

.footer-bottom-bar {
    background: #e9e9e9;
    border-radius: 8px;

    padding: 12px 18px;
    margin-top: 30px;

    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    color: #000;
}

.footer-contact span {
    margin-right: 20px;
}

.footer-copy {
    font-size: 14px;
}