#footer{
    width: 100%;
}

#inner_footer {
    position: relative;
    padding: 30px 20px;
    width: 1000px;
    left: 50%;
    margin-left: -520px;
    font-size: 0;
}

.footer_elem {
    display: inline-block;
    font-size: 16px;
    margin-right: 5px;
    color: rgb(100,100,100);
}

.footer_buttons{
    text-decoration: none;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #000;
    font-weight: 500;
    padding: 0 5px;
    margin-left: 5px;
}

@media screen and (max-width: 1040px) {

    #inner_footer {
        width: calc(100% - 40px);
        left: 0;
        margin-left: 0;
    }

}