footer {
    background-color: var(--footer-color);
    padding: 20px 15px;
}

footer * {
    color: var(--footer-text);
}

footer ul, footer li {
    line-height: 1;
}

footer .footer-container .title, footer .footer-container a {
    text-decoration: none;
    color: var(--footer-text);
    font-size: 15px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    text-shadow: none;
}

footer .footer-container {
    display: grid;
    max-width: 980px;
    margin: auto;
    min-height: 155px;
    gap: 20px;
    grid-template-columns: 1fr;
    place-content: center;
    place-items: center;
}

footer .footer-container > div.logo a {
    display: grid;
    width: 100%;
    place-content: start;
    padding: 0 0 0 10px;
}

footer .footer-container > div:not(.logo) {
    display: flex;
    flex-flow: row;
    justify-content: space-evenly;
    align-items: center;
    gap: 45px;
}



.prefooter.bg-image {
    min-height: 55px;
    background-repeat: no-repeat;
    background-size: auto;
    width: 100%;
    background-position: right;
}


