.footer-wrapper {
    background-color: var(--color-primary);
    padding: 34px 16px 26px 16px;
}

.footer {
    max-width: 1180px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 41px;
}

.footer__header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 19px;
}

.slimivex-logo {
    height: 48px;
    width: auto;
}

.footer__links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.footer__link {
    color: #F4E4D3;
    font-weight: 450;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: inline;
    font-family: var(--font-primary);
}

.email-text {
    color: #F4E4D3;
    font-weight: 450;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    margin-top: 12px;
}

.footer-address {
    color: #F4E4D3;
    font-weight: 450;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    margin-top: 12px;
}

.footer-info-text {
    font-weight: 450;
    font-size: 13px;
    line-height: 20px;
    color: #CDCDCD;
}

@media (min-width: 1024px) {
    .footer-wrapper {
        padding: 37px 24px 40px 24px;
    }

    .footer {
        flex-direction: row;
        justify-content: space-between;
    }

    .slimivex-logo {
        height: 42px;
    }

    .footer__header {
        flex-direction: row;
        gap: 39px;
    }

    .footer__link {
        text-align: right;
    }

    .footer__link:hover {
        color: #F6887B;
    }

    .email-text {
        text-align: right;
    }

    .email-text:hover {
        color: #F6887B;
    }

    .footer-address {
        text-align: right;
    }

    .footer-info-text {
        max-width: 440px;
        justify-self: flex-start;
    }
}