.footer {
    width: 100%;
    padding: 24px 20px 14px;

    display: flex;
    flex-direction: column;
    align-items: center;

    background: #ffffff;
    color: #000000;

    border-top: 3px solid #000000;

    font-family: 'Inter', sans-serif;
}


/* NAVIGATION */

.footer-links {
    display: flex;
    align-items: center;

    gap: 50px;

    margin-bottom: 20px;
}

.footer-links a {
    color: #222222;

    font-size: 16px;
    font-weight: 400;

    text-decoration: none;

    transition: opacity 0.2s ease;
}

.footer-links a:hover {
    opacity: 0.5;
}


/* LOGO */

.footer-logo {
    display: flex;

    margin-bottom: 7px;

    text-decoration: none;
}

.footer-logo img {
    width: 75px;
    height: 75px;
    border-radius: 60px;
    object-fit: contain;
}


/* COPYRIGHT */

.footer-copyright {
    margin: 0;

    font-size: 10px;
    font-weight: 400;
}


@media (max-width: 500px) {

    .footer {
        padding: 22px 15px 14px;
    }

    .footer-links {
        width: 100%;

        display: grid;
        grid-template-columns: repeat(2, auto);

        justify-content: center;

        column-gap: 45px;
        row-gap: 15px;

        margin-bottom: 22px;
    }

    .footer-links a {
        font-size: 13px;
        text-align: center;
    }

    .footer-logo img {
        width: 60px;
        height: 60px;
    }

    .footer-copyright {
        font-size: 9px;
        text-align: center;
    }
}
