.sociallinks {
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
}

.sociallink {
    position: relative;
    width: 30px;
    height: 30px;
    background: none;
    margin-right: 10px;
}

.sociallinks a {
    transition: all 0s ease;
}

#sociallink-fb {
    background: url(../img/icons/facebook.svg) center center no-repeat;
    background-size: 100% 100%;
}

#sociallink-fb:hover {
    background: url(../img/icons/facebook2.svg) center center no-repeat;
}

#sociallink-ig {
    background: url(../img/icons/instagram.svg) center center no-repeat;
    background-size: 100% 100%;
}

#sociallink-ig:hover {
    background: url(../img/icons/instagram2.svg) center center no-repeat;
}

