.footer {
    margin-top: auto;
    padding-top: 14rem;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 4.5rem;
    padding-bottom: 4.6rem;
}

.footer__content:last-child {
    flex-grow: 2;
}

.logo-footer {
    display: block;
    width: 53rem;
    height: auto;
    margin-bottom: 2.9rem;
}

.logo-footer img {
    display: block;
    width: 100%;
    height: auto;
}

.footer a.pdf-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: var(--black) !important;
    text-decoration: none;
}

.footer a.pdf-link:hover {
    color: var(--blue) !important;
}

.footer a.pdf-link img {
    height: 5.3rem;
    width: auto;
    margin-right: 0.2rem;
}

.footer .pdf-link__info div:first-child {
    font-size: 2rem;
    font-weight: 600;
    line-height: 120%;
    margin-bottom: 0.4rem;
}

.footer .pdf-link__info div:last-child {
    color: var(--gray) !important;
}

.footer a.pdf-link:hover .pdf-link__info div:last-child {
    color: var(--gray) !important;
}

.footer__content-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 4rem;
    padding-bottom: 1.4rem;
}

.footer__contacts-inner {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 1.5rem;
}

.footer__contacts-inner a {
    text-decoration: none;
    color: var(--blue) !important;
    font-weight: 600;
    white-space: nowrap;
    font-size: 2rem;
    line-height: 120%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer__contacts-inner a:hover {
    color: var(--light-blue) !important;
}

.footer__contacts-inner a svg {
    width: 2.4rem;
    height: 2.4rem;
    margin-right: 0.4rem;
    display: inline-block;
    margin-bottom: -0.1rem;
}

.footer__contacts-inner a svg path {
    fill: var(--blue) !important;
}

.footer__contacts-inner a:hover svg path {
    fill: var(--light-blue) !important;
}

.footer__title {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

ul.bottom-menu {
    list-style: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.6rem;
    font-size: 2rem;
    line-height: 120%;
    flex-direction: column;
    white-space: nowrap;
    font-weight: 600;
}

ul.bottom-menu li a {
    color: var(--black) !important;
    text-decoration: none;
}

ul.bottom-menu li.current-menu-item a {
    color: var(--gray) !important;
    pointer-events: none;
}

ul.bottom-menu li a:hover {
    color: var(--black-alpha-60) !important;
}

.copyright {
    color: var(--gray);
}

.footer__content:first-child .copyright {
    display: none;
    margin-top: 2.4rem;
}

@media (max-width: 1319px) {
    .footer__content-top {
        flex-direction: column;
        padding-bottom: 0;
    }

    .footer__contacts:last-child {
        order: -1;
    }

    .copyright {
        display: none;
    }

    .footer__content:first-child .copyright {
        display: block;
    }
}

@media (max-width: 1024px) {
    .footer {
        flex-direction: column;
    }

    .footer__content:last-child {
        order: -1;
    }

    .logo-footer {
        width: 100%;
        max-width: 53rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 7rem;
        gap: 2.4rem;
    }

    .footer__content:first-child {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer .pdf-link {
        order: -1;
        margin-bottom: 2.4rem;
    }

    .footer .pdf-link__info div:first-child {
        font-weight: 500;
        font-size: 1.6rem;
        line-height: 137%;
        margin-bottom: 0.2rem;
    }

    .footer .pdf-link__info div:last-child {
        font-size: 1.4rem;
    }

    .logo-footer {
        margin-bottom: 0;
    }

    .footer__content-top {
        gap: 2.4rem;
    }

    .footer__title {
        margin-bottom: 0.4rem;
    }

    .footer__contacts-inner {
        gap: 1.2rem;
    }

    .footer__contacts-inner a {
        font-weight: 500;
        font-size: 1.6rem;
        line-height: 137%;
    }

    .footer__contacts-inner a svg {
        height: 2rem;
        width: 2rem;
        margin-right: 0.1rem;
        margin-bottom: 0;
    }

    ul.bottom-menu {
        font-weight: 500;
        font-size: 1.8rem;
        line-height: 139%;
    }
}