.social-list {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-item {
    font-size: 0;
    text-decoration: none;
    display: inline-block;
}

.social-icon {
    -webkit-transition: fill .2s linear;
    transition: fill .2s linear;
}

.social-icon__black {
    fill: #000;
}

.social-icon__gold {
    fill: currentColor;
}

.social-item:hover .social-icon__gold {
    fill: #fff;
}

@media (min-width: 992px) {
    .social-list {
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
}
