.networks {
    margin-bottom: var(--default-spacing);
}
.networks ul {
    display: flex;
    align-items: center;   
}
.networks a {
    display: block;
    width: 30px;
    height: 35px;
    font-size: 0;
    margin-left: 20px;
}
.networks a.fb {
    background: url('../img/fb.svg') no-repeat center center;
    background-size: 100%;
}
.networks a.ig {
    background: url('../img/ig.svg') no-repeat center center;
    background-size: 100%;
}
.networks a.ln {
    background: url('../img/ln.svg') no-repeat center center;
    background-size: 100%;
}
.networks a.yt {
    background: url('../img/yt.svg') no-repeat center center;
    background-size: 100%;
}
#footer .networks a {
    margin-left: 0;
    margin-right: 20px;
}
@media only screen and (min-width: 768px) {
    #footer .networks ul {
        /*justify-content: flex-end;*/
    }
    .networks a {
        width: 30px;
        height: 35px;
    }
    #footer .networks a {
        /*margin-left: 20px;
        margin-right: 0;*/
    }
}