footer{
    width: 100%;
    background-color: #fff;
    padding: 94px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 24px 24px 0px 0px;
}

footer h6{
    color: var(--primary-600);
}

.logo{
    text-align: left;
}

@media (max-width: 768px) {
    footer{
        display: flex;
        flex-direction: column;
        gap: 24px;
        padding: 64px 32px;
    }

    .logo{
        text-align: center;
        justify-content: center;
    }

    .links-footer{
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}
