*,*::before,*::after{
    box-sizing: border-box;
}

footer {
    display: flex;
    flex-flow: row wrap;
    padding: 40px;
    color: #fff;
    background-color: rgb(110, 110, 110);
    font-family: 'Roboto';
    margin-top: 40px;
}

.footer > *{
    flex: 1 100%;
}

.footer-left {
    margin-right: 1.25em;
    margin-bottom: 2em;
}

.footer-left img {
    width: 50%;
}

h2 {
    font-weight: 500;
    font-size: 21px;
}

.footer ul {
    list-style: none;
    padding-left: 0;
}

.footer li {
    line-height: 1.5em;
    font-family: 'Roboto';
}

.footer a {
    text-decoration: none;
}

.footer-right {
    display: flex;
    flex-flow: row wrap;
}

.footer-right > *{
    flex: 1 50%;
    margin-right: 1em;
}

.box a {
    color: rgb(182, 182, 182);
}

.box a:hover {
    color: #fff;
}

.footer-bottom{
    text-align: center;
    color: #999;
    padding-top: 30px;
}

.footer-left p{
    padding-right: 20%;
    color: #999;
}

.socials a {
    background: rgb(165, 165, 165);
    border-radius: 5px;
    width: 40px;
    height: 40px;
    display: inline-block;
    margin-right: 10px;
}

.socials a i {
    color: rgb(255, 255, 255);
    padding: 10px 12px;
    font-size: 20px;
}

@media screen and (min-width: 620px){
    .footer-right > *{
        flex: 1;
    }
    .footer-left {
        flex: 1 0px;
    }
    .footer-right {
        flex: 2 0px;
    }
}

@media (max-width: 620px){
    .footer{
        padding: 15px;
    }
}

