body {
    display: flex;
    flex-direction: column;
}

#main-content {
    flex: 1;
}

footer.page-footer {
    background-color: var(--color-section-grey);
    padding: 30px 20px 15px;
}

footer.page-footer > .container {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
}

footer.page-footer ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

footer.page-footer > .container::before,
footer.page-footer > .container::after {
    display: none;
}

footer.page-footer > .container > div {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 15px;
}

footer.page-footer ul.social {
    display: flex;
    align-items: center;
    gap: 15px;
}

footer.page-footer address {
    margin-bottom: 0;
}

footer.page-footer address a {
    color: #337AB7 !important;
}

footer.page-footer li {
    white-space: nowrap;
}

footer.page-footer li,
footer.page-footer a {
    color: var(--color-font-primary);
}

@media(max-width: 767px) {
    footer.page-footer > .container {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
    footer.page-footer ul {
        flex-wrap: wrap;
    }
}