.footer
{
    width: 100%;
    position: absolute;
    bottom: 0;
}
.footer-wave
{
    width: 100%;
}
.footer-content
{
    padding: 1.5% 5vw;
    background-color: #6b70ff;
    align-items: center;
    justify-content: space-between;
    color: var(--theme-color-text-secondary);
}
.footer-content > img
{
    width: 20%;
}
.footer-links
{
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5vw;
}
.footer-links > .text
{
    color: #f3f4ff;
    cursor: pointer;
}
.socials
{
    align-items: center;
}
.socials > img
{
    width: 2.5vw;
    cursor: pointer;
}
.copyright
{
    justify-content: center;
}

@media screen and (max-width: 1024px)
{
    .footer-content
    {
        flex-direction: column;
        justify-content: center;
        gap: 10px;
    }
    .footer-content > img
    {
        width: 150px;
    }
    .socials > img
    {
        width: 30px;
    }
}