.footer{
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
    margin: auto;
    max-width: 1400px;
    position: relative;
    background-color: white;
}
.footer div{
    flex: 1;
}

#f1{
    text-align: left;
}
#f2{
    text-align: center;
}
#f2 a{
    color: #181818;
}
#f3{
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.footerSocial{
    height: 100%;
    cursor: pointer;
}
#f3 a{
    margin-left: 30px;
    height: 30px;
    transition: 0.3s;
}

#f3 a:hover{
    transform: scale(1.2);
}
