footer {
    background-color: var(--dark-blue);
    color: var(--white);
    font-size: 9pt;
    padding: 15px 30px;
    padding-bottom: 0;
}

footer img {
    width: 70px;
}

.footer-lg {
    font-size: clamp(10px, 1.4vw, 18px);
    font-weight: bold;
    line-height: 17pt;
    flex: 1 1 auto;
    white-space: nowrap;
    font-family: "Noto Serif", serif;
    margin-right: auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

footer>div {
    display: flex;
    padding: 15px 0px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap-reverse;
    gap: 25px;
}

footer a {
    color: inherit;
}

footer a:hover {
    text-decoration: none;
}

.socials svg {
    width: 25px;
    height: 25px;
    background-color: var(--white);
    border-radius: 60%;
}

.socials path {
    scale: 0.6;
    transform-origin: center;
    fill: var(--dark-blue);
}

.socials {
    display: flex;
    gap: 6px;
}

@media screen and (max-width: 900px) {
    footer {
        padding: 15px 10px;
    }

    footer img {
        width: 60px;
    }

    .footer-lg {
        line-height: 13pt;
        white-space: nowrap;
        overflow: hidden;
        gap: 3px;
    }

    footer>div {
        justify-content: center;
    }
}