.footer {
    display: block;
    height: 100px;
    
    text-align: center;
    background-color: #54626f;
}
.footer .inside {
    display: inline-block;
    width: 100%;
    height:100px;
    max-width: 1000px;
    
    clear: both;
}
.footer .company {    
    font-family: 'Open Sans', sans-serif;
    font-size: 13.89px;
    font-weight: 400;
    line-height: 100px;
    
    color: #ffffff;
    
    float: left;
}
.footer .company a {
    color: #f5c60a; 
    font-weight: 600;
    padding-left: 10px;
    text-decoration: none;
}
.footer .shareSection {
    padding-top: 33px;
    padding-right: 10px;
    height: 40px;
    
    float: right;
}
.footer .shareSection a {
    text-decoration: none;
}
.footer .shareSection img {
    display: inline-block;
    height: 34px;
    width: 34px;
    cursor: pointer;
    margin-left: 2px;
    margin-right: 2px;
}
.footer .shareSection img:hover {
    padding-bottom: 5px;
    margin-top: -5px;
}

/* Deal with the mobile device */
@media screen and (max-width: 1000px){
    .footer .inside {
        width: 100%;
        box-sizing: border-box;
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (max-width: 500px){
    .footer {
        height: auto;
    }
    .footer .inside {
        width: 100%;
        height:auto;
        text-align: center;
    }
    .footer .company {
        width: 100%;
        text-align: center;
        float:none;
        
        line-height: 30px;

        padding-top: 20px;
        padding-bottom: 30px;
    }
    .footer .shareSection {
        width: 100%;
        padding-top: 30px;
        padding-bottom: 0px;
        padding-right: 0px;


        float: none;
    }
}