/* FOOTER */
.footer {
    background-color: #1f2937;
    background-image: url("../images/minifoot.svg");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center bottom -20px;
    color: white;
    padding: 60px 0;
}

@media screen and (max-width: 768px) {
    .footer {
        background-image: none;
        padding: 30px 0;
    }

}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 80px;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 32px;
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-nav a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-nav a:hover {
    opacity: 0.75;
}

.footer-nav img {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
}

.footer-copy {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.9;
}