/*================================= site-footer =============================*/
.site-footer {
    font-size: 14px;
    font-weight: 500;
    padding-top: 30px;
    padding-bottom: 56px;
    background: #005b88;
    flex: 0 0 auto;
    color: #ffffff;
    --link-color: currentColor;
    --link-color-hover: var(--link-color);
}
.site-footer__outer {}
.site-footer__left {
    text-align: center;
}
.site-footer__center {
    padding-top: 23px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.site-footer__right {
    line-height: 1.5;
    margin-top: 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    text-align: center;
}

.site-footer__logo {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}
.site-footer__copyright {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}
.site-footer__sitemap {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.49);
}
.site-footer__center-contact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: baseline;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-socials {
    padding: 11px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.footer-socials__item {
    width: 32px;
    height: 32px;
    text-align: center;
    border: 1px solid #ffffff;
    border-radius: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: top;
}
.footer-socials__item img {
    position: relative;
}

.footer-phone {
    font-weight: 700;
    vertical-align: top;
    text-decoration: none;
    display: inline-block;
}
.footer-email {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
    --link-line: underline;
    --link-line-hover: none;
}
.footer-email__title {
    font-size: 14px;
    font-weight: 700;
    display: none;
}

.footer-menu {
    font-size: 13px;
}
.footer-menu__list {
    padding: 0;
    margin: 0;
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px 15px;
}
.footer-menu__item {
    padding: 0;
    margin: 0;
}
.footer-menu__link {}

.footer-local {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.footer-local__head {}
.footer-local__title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    text-align: left;
    display: block;
}
.footer-local__select {}
.footer-local__contact {}
.footer-local__contact-item {
    display: none;
}
.footer-local__contact-item.active {
    display: block;
}

.footer-local-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-local-item__row {}

@media (min-width: 576px) {
    .site-footer__right {
        grid-column: 1 / -1;
    }
    .site-footer__center-contact {
        gap: 30px;
    }

    .footer-menu__list {
        gap: 5px 30px;
    }

    .footer-local {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 5px 30px;
    }
    .footer-local__contact {
        text-align: left;
    }
}
@media (min-width: 768px) {
    .site-footer__outer {
        display: grid;
        grid-template-columns: 1.1fr 2fr;
        gap: 35px 80px;
    }
    .site-footer__left {
        max-width: 200px;
        text-align: left;
    }
    .site-footer__center {
        padding-top: 20px;
        gap: 26px;
    }
    .site-footer__right {
        margin-top: 0;
    }
    .site-footer__logo {
        justify-content: stretch;
    }

    .footer-socials {
        justify-content: stretch;
    }

    .footer-email__title {
        display: inline;
    }

    .footer-menu {
        font-size: 14px;
    }

    .footer-local {
        grid-template-columns: 1.1fr 2fr;
        gap: 5px 80px;
    }
}
@media (min-width: 992px) {
    .site-footer__outer {
        grid-template-columns: 200px 1fr 230px;
        gap: 35px 60px;
    }
    .site-footer__left {
        max-width: none;
        padding-top: 24px;
    }
    .site-footer__center {
        padding-top: 45px;
    }
    .site-footer__right {
        grid-column: auto;
    }

    .footer-local {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
}
@media (min-width: 1200px) {
    .site-footer__outer {
        grid-template-columns: 200px 1fr 330px;
        gap: 35px 70px;
    }
    .site-footer__center-contact {
        grid-template-columns: repeat(2, minmax(205px, auto));
        justify-content: flex-start;
    }

    .footer-email {
        font-size: 14px;
    }

    .footer-menu__list {
        grid-template-columns: repeat(2, minmax(205px, auto));
        justify-content: flex-start;
    }

    .footer-local__title {
        padding-left: 30px;
    }
    .footer-local__contact {
        padding-left: 30px;
    }
}