.footer-wave {
    fill: #fdf8f0;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: auto;
    vertical-align: bottom;
}

.footer {
    background-color: #fdf8f0;
    color: hsl(22, 18%, 15%);
    font-family: 'poppins', sans-serif;
    padding: 0px 60px 20px 60px;
    margin-top: -8px;
}

.footer-logo {
    width: 25%;
    padding-bottom: 30px;
}

.links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.footer hr {
    border: none;
    border-top: 1px solid #000;
    margin: 20px 10px 20px 10px;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: space-evenly;
}

.links h4 {
    color: hsl(22, 18%, 15%);
    font-weight: 700;
    margin-bottom: 10px;
}

.links ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.links ul a {
    color: hsl(22, 18%, 15%);
    text-decoration: none;
}

.links ul a:hover {
    color: var(--accent-color);
}

.contact-info address {
    display: inline;
    margin: 0;
    text-align: left;
}

.socials i {
    color: hsl(22, 18%, 15%);
    font-size: 30px;
    margin-bottom: 10px;
}

.socials a:hover i {
    color: var(--accent-color);
}

.links ul li {
    margin-bottom: 5px;
}

.contact-mobile {
    display: none;
}

.contact-desktop {
    display: list-item;
}

.socials-mobile {
    display: none;
}

.socials-desktop {
    display: list-item;
}

@media (max-width: 450px) and (min-width: 320px) {
    .footer {
        padding: 0;
        overflow: hidden;
    }

    .links {
        flex-direction: row;
        align-items: center;
        display: flex;
        padding: 10px;
    }

    .socials ul {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 24px;
        margin-top: 20px;
    }

    .contact-mobile {
        display: list-item;
    }

    .contact-desktop {
        display: none;
    }

    .socials-mobile {
        display: list-item;
    }

    .socials-desktop {
        display: none;
    }

}

@media (max-width: 768px) {
    .m3 {
        padding-right: 0px;
    }
}

@media (min-width: 1024px) {
    .navigation {
        height: 80px;
    }

    .nav-bar {
        padding-top: 10px;
    }
}

@media (min-width: 1440px) {
    .navigation {
        height: 90px;
    }

    .nav-bar {
        padding-top: 15px;
    }
}