footer {
    width: 100%;
    background-color: #008dfe;
}

.footer {
    display: flex;
    max-width: 960px;
    min-height:120px;
    color: #fff;
    text-align: center;
    align-items: center;
    font-size: 12px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 16px;
}

.footer ul {
    margin-left: auto;
    width: 634px;
    list-style-type: none;
    padding-inline-start: 0;
    color: #ffffff;
    display: flex;
    list-style: none;
    justify-content: space-between;
}

.footer li {
    padding-left: 16px;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 864px) {
    .footer {
        flex-direction:column-reverse;
        justify-content: center;
        padding-bottom: 1em;
    }

    .footer ul {
        flex-direction:column;
        margin-left: 0;
        width: auto;
    }

    .footer li {
        padding-left: 0;
        padding-bottom: 8px;
    }
}