.footer-wrapper {
    padding: 80px 20px;
    background-color: #E5E7EC;
    z-index: 9;
    position: relative;
    font-family: "Be Vietnam Pro", sans-serif;
}

.footer-wrapper * {
    box-sizing: border-box;
    color: #000000;
}

.footer-wrapper .container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;

}

.footer-wrapper .logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;

}

.footer-wrapper .first-wrapper {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-bottom: 80px;
}

.footer-wrapper .first-wrapper a {
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease-in-out all;
}

.footer-wrapper .first-wrapper a:hover {
    text-decoration: underline;
}

.footer-wrapper .first-wrapper nav {
    gap: 32px;
    height: auto !important;
}

.footer-wrapper .last-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid #00000026;

}

.footer-wrapper .last-wrapper .privacy-wrapper {
    max-width: 165px;
    width: 100%;
    font-size: 14px;
}

.footer-wrapper .extra-links-wrapper {
    display: flex;
    gap: 24px;

}

.footer-wrapper .extra-links-wrapper a {
    font-size: 14px;
    font-weight: 400;
    transition: 0.3s ease-in-out all;
    text-decoration: underline;
}

.footer-wrapper .extra-links-wrapper a:hover {

    text-decoration: none;
}
.footer-wrapper .footer-socials-wrapper img,
.footer-wrapper .footer-socials-wrapper svg{
    max-width:22px;
    width: 100%;
    height: auto;
}
.footer-wrapper .footer-socials-wrapper i{
    font-size: 22px;
}
.footer-wrapper .footer-socials-wrapper img.nextdoor-logo {
    max-width: 60px;
    width: 100%;
}
.footer-wrapper .footer-socials-wrapper img:hover,
.footer-wrapper .footer-socials-wrapper svg:hover,
.footer-wrapper .footer-socials-wrapper i:hover {
    opacity: 0.8;
}
@media (max-width:767px) {
    .footer-wrapper .first-wrapper{
        padding-bottom: 48px;
    }
    .footer-wrapper .last-wrapper{
        flex-direction: column-reverse;
        gap: 32px;
        padding-top: 24px;
    }
}
@media (max-width:991px) {
    .footer-wrapper {
        padding: 48px 20px;
    }
}

@media (max-width:575px) {
    .footer-wrapper {
            padding: 48px 20px;
            text-align: center;
        }
    .footer-wrapper .first-wrapper nav {
        flex-direction: column;
        gap: 24px;
        flex-wrap: nowrap !important;
        height: auto !important;
    }

    .footer-wrapper .first-wrapper {
        align-items: center;
    }

    .footer-wrapper .last-wrapper {
        flex-direction: column-reverse;
        gap: 32px;
    }

    .footer-wrapper .extra-links-wrapper {
        flex-direction: column;
        gap: 16px;
    }

    .footer-wrapper .last-wrapper .privacy-wrapper {
        max-width: 100%;
        text-align: center;
    }

    .footer-wrapper .last-wrapper .privacy-wrapper br {
        display: none;
    }
}