.site-footer {
    padding: var(--section-base) 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.site-footer::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    background: url('001.png') no-repeat;
    background-size: cover;
    background-position: right bottom 15%;
    opacity: 0.3;
    top: 0;
    left: 0;
    filter: grayscale(1);
    z-index: -1;
}

.footer-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.footer-menu li a {
    font-size: var(--font-size-small);
    text-transform: uppercase;
}

.footer-menu .pll-parent-menu-item {
    display: none !important;
}