.social-icon-container {
    position: relative;
}

.social-icon {
    transition: background-color 200ms cubic-bezier(0.86, 0.03, 0.27, 0.98);
    background: #F6F6F6;
    border-radius: 23.50px;
    margin: 0 4px;
    text-align: center;
    line-height: 30px;
    display: block;
    padding: 2px 10px;
    height: 36px;
    width: 36px;
}

.social-icon:hover {
    transition: background-color 200ms cubic-bezier(0.86, 0.03, 0.27, 0.98);
    background: #4794FF;
}

@media (max-width: 992px) {
    .social-icon {
        height: 46px;
        width: 46px;
    }

    .social-icon img {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 40%;
        height: 40%;
    }
}

.social-icon img {

}

.social-icon:hover img {
    filter: brightness(0) invert(1);
}