#footer {
    background-color: #ffffff;
    padding: 64px 0;
    position: relative;
}

.inner {
    width: 1440px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.icons {
    color: rgba(0, 0, 0, .6);
    margin-right: 2em;
}

.icon {
    display: inline-block;
}

.icon i {
    font-size: 32px;
}

.copyright {
    color: rgba(0, 0, 0, .6);
    list-style: none;
    padding: 0;
    font-size: 12px;
    margin: 0 2em;
    word-break: keep-all;
}

.copyright li {
    display: inline-block;
    line-height: 1.5em;
    vertical-align: top;
}

.copyright li:first-child {
    margin-right: 80px;
    font-size: 16px;
}

@media screen and (max-width: 736px) {
    #footer {
        background-color: #ffffff;
        position: relative;
    }

    .inner {
        width: 100%;
        padding: 0 24px;
        flex-direction: column-reverse;
        transform: scale3d(1, 1, 1);
    }

    .icons {
        margin-right: 0;
        margin-bottom: 24px;

    }

    .icon:first-child {
        margin-right: 32px;
    }

    .copyright {
        margin: 0;
    }

    .copyright li {
        display: block;
        text-align: center;
    }

    .copyright li:first-child {
        margin-right: 0;
        margin-bottom: 8px;
    }
}