:root {
    --footer-height: 72px;
    --footer-padding: 13px var(--page-vertical-padding);
    --footer-text-margin-bottom: 3px;
    --footer-text-fs: 16px;
}

.footer {
    background-color: var(--accient-color);
    justify-content: space-between;
    padding: var(--footer-padding);
    border-top: var(--nav-border);
    height: var(--footer-height);
    box-sizing: border-box;
    flex-direction: row;
    position: sticky;
    display: flex;
    width: 100%;
    bottom: 0;
}

.footer > .info_container {
    justify-content: space-between;
    flex-direction: column;
    align-items: start;
    display: flex;
}

.footer > .info_container.contacts {
    align-items: end;
}

.footer > .info_container > .contact {
    line-height: var(--usual-text-line-height);
    font-weight: var(--usual-text-font-weight);
    color: var(--accient-block-text-color);
    letter-spacing: var(--letter-spacing);
    transition: var(--nav-transition);
    font-size: var(--footer-text-fs);
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
}

.footer > .info_container > .contact:hover {
    text-decoration: underline;
}

@media only screen and (max-width: 1080px) {
    :root {
        --footer-height: 67px;
        --footer-z-index: 10;
        --footer-text-fs: 14px;
    }

    .footer {
        z-index: var(--footer-z-index);
    }
}








/* DISABLE STYLES */
@media only screen and (max-width: 960px) {
    :root {
        --footer-z-index: 1;
    }

    .footer {
        position: relative;
    }
}

@media only screen and (max-width: 680px) {
    :root {}
}

@media only screen and (max-width: 586px) {
    :root {
        --footer-text-margin-bottom: 5px;
        --footer-text-fs: 16px;
        --footer-height: unset;
    }

    .footer {
        flex-direction: column-reverse;
        justify-content: start;
        width: 100%;
    }

    .footer > .info_container.address, .footer > .info_container.contacts {
        align-items: center;
        width: 100%;
    }

    .footer > .info_container.contacts {
        margin-bottom: calc(3 * var(--footer-text-margin-bottom));
    }
}

@media only screen and (max-width: 425px) {
    :root {
        --footer-text-fs: 14px;
    }
}
