html {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
.footer-section {
    padding: 40px 0;
    @media (min-width: 960px) {
        padding: 70px 0 55px 0;
    }
}
.footer-menu__title {
    display: inline-block;
    font-weight: 700;
    font-size: 19px;
    color: #111111;
    margin-bottom: 17px;
    &:hover {
        color: #111111;
        text-decoration: none;
    }
}

.footer-menu-items > *:not(:last-child) > a {
    padding-bottom: 5px;
    font-size: 15px;
    transition: color .3s;
}

.footer-phone {
    font-weight: 700;
    font-size: 25px;
    color: #211d70;

    @media (min-width: 960px) {
        font-size: clamp(16px, 1.8vw, 25px);
    }

    &:hover {
        text-decoration: none;
        color: #211d70;
    }
}
body .footer-soc {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    & > * {
        padding: 5px;
        width: 42px;
        height: 35px;
        color: var(--seoGray);
        background-color: var(--white-color);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: color .3s;
        box-sizing: border-box;
        svg {
            opacity: .6;
        }
    }

    & > *:hover {
        color: #211d70;
    }
    @media (min-width: 960px) {
        gap: 10px;
        margin-top: 7px;
    }
}

body .footer-pay {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    & > * {
        color: var(--seoGray);
        background-color: var(--white-color);
        svg {
            path {
                stroke: none;
            }
        }
    }
    @media (min-width: 960px) {
        gap: 14px;
        margin-top: 7px;
    }
}
.footer-first-hr {
    margin: 40px 0;
    border-top: 1px solid rgba(81, 86, 93, 0.2);
    @media (min-width: 960px) {
        margin: 38px 0 50px 0;
    }
}

.footer-last-hr {
    margin: 40px 0;
    border-top: 1px solid rgba(81, 86, 93, 0.2);
    @media (min-width: 960px) {
        margin: 47px 0 34px 0;
    }
}
.footer-text {
    font-size: 13px;
    color: #575C63;
    & a {
        text-decoration: underline;
        color: #575C63;
    }
    &:has(+ div) {
        margin-bottom: 20px;
    }
}
.footer-btn {
    padding: 0 15px !important;
    height: 40px !important;
    font-size: 12px !important;
}