footer .footer-logo-and-trustpilot {
    display: flex;
    justify-content: space-between
}

footer .footer-logo-and-trustpilot .footer-logo {
    filter: brightness(0) invert(1);
    max-width: 400px;
}

footer .footer-info a {
    text-decoration: underline;
    text-underline-offset: 2px;
}

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

footer .footer-info {
    border-bottom: solid 1px grey;
    padding-bottom: var(--spacing-m);
    margin-bottom: var(--spacing-m);
}

footer .footer-socials a {
    width: 30px;
    height: 30px;
    padding: 10px;
    box-sizing: content-box;
    background: var(--c-accent);
    transition: all 0.2s;
}

footer .footer-socials a:hover {
    background: var(--bg-bright-1)
}

footer .footer-socials a img {
    width: 100%;
    height: 100%;
}

footer .footer-partners img {
    max-width: 30%;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

@media screen and (max-width: 749px) {
    footer .footer-logo-and-trustpilot {
        align-items: center;
        gap: var(--spacing-l);
        flex-direction: column;
    }

    footer .footer-logo-and-trustpilot img {
        width: 75%;
    }

    footer .footer-logo-and-trustpilot .trustpilot-widget {
        width: 60%;
    }

    footer .footer-lower {
        gap: var(--spacing-xl);
    }

    footer .footer-socials {
        justify-content: center;
    }

    footer .footer-partners img {
        max-width: 50%;
    }

    footer .footer-copyright {
        text-align: center;
    }
}