footer-view {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;


    height: 520px;
    width: 960px;
    margin-left: auto;
    margin-right: auto;
}

footer-view img {
    width: 181px;
    margin-bottom: 48px;
}

footer-view>nav:first-of-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 24px;
    width: 100%;
    margin-bottom: 48px;
    border-bottom: 1px solid #E1E1E1;
}

footer-view>nav:first-of-type a {
    color: #DA827D;
    font-size: 16px;
    font-weight: 700;
    line-height: 23.1px;
    text-transform: uppercase;
    text-decoration: none;
}

footer-view>nav:first-of-type a:hover {
    color: #702A2A;
}


footer-view>nav:last-of-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 96px;
    width: 100%;
    position: relative;
}

footer-view>nav:last-of-type span {
    color: #DA827D;
    font-size: 14px;
    line-height: 20.8px;
}

footer-view>nav:last-of-type>nav:first-of-type {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
}

footer-view>nav:last-of-type>nav:last-of-type {
    display: flex;
    align-items: center;
    gap: 16px;
}

footer-view>nav:last-of-type>nav:last-of-type a {
    color: #D98682;
    font-size: 16px;
    line-height: 20.8px;
    text-decoration: none;
}

footer-view>nav:last-of-type>nav:last-of-type a:hover {
    color: #702A2A;
}


@media screen and (min-width: 800px) and (max-width: 1000px) {
    footer-view {
        max-width: 720px;
        height: 389px;
    }

    footer-view>nav:last-of-type>nav:first-of-type {
        left: 0;
        transform: unset;
        top: calc(100% + 16px);
    }
}

@media screen and (max-width: 800px) {
    footer-view {
        max-width: 720px;
        padding-left: 24px;
        padding-right: 24px;
        box-sizing: border-box;
        height: 600px;
    }

    footer-view>nav:last-of-type {
        flex-direction: column-reverse;
        gap: 16px;
        margin-bottom: unset;
    }

    footer-view>nav:last-of-type>nav:first-of-type {
        position: unset;
        transform: unset;
    }
}

@media screen and (max-width: 720px) {
    footer-view {
        max-width: 500px;
    }

    footer-view>nav:first-of-type {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media screen and (max-width: 720px) {
    footer-view {
        max-width: calc(100% - 32px);
    }
}



footer-view {
    padding-bottom: var(--zammad-chat);
}

@media screen and (max-width: 768px) {
    footer-view {
        --zammad-chat: 58px;
    }
}