/* footer */

.footer {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: 2rem;

    @media (max-width: 900px) {
        padding: 1rem;
    }
}

.footer-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    @media (max-width: 640px) {
        flex-direction: column;
        align-items: center;
    }
}

.footer-logo {
    height: 5rem;
    width: auto;

    @media (max-width: 768px) {
        height: 3.5rem;
    }

    @media (max-width: 640px) {
        margin-bottom: 2rem;
    }
}

.footer-links-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    @media (max-width: 640px) {
        align-items: center;
    }
}

.footer-social-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-social-links a svg {
    width: 35px;
}

.copyrights-note {
    font-size: 14px;
    margin-bottom: 1rem;
    text-align: center;
}

.footer-simple-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-end;

    @media (max-width: 640px) {
        justify-content: center;
    }
}

.footer-simple-links a {
    font-size: 18px;
    color: var(--pico-color);
    text-decoration: none;
    text-wrap: nowrap;
    text-align: center;
}