.networks__list {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.networks__item {
    margin: 0 10px 0 10px;
}

li.networks__item::marker {
    content: none;
}

.networks__link {
    align-items: center;
    background: #fff;
    border-radius: 50%;
    display: flex;
    height: 35px;
    justify-content: center;
    transition: all 0.4s ease;
    width: 35px;
}

.networks__link:hover {
    background: #E31F26;
}

.networks__link:hover img{
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%);
}

.networks__link span {
    display: none;
}

.networks__title h3 {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    margin: 0 0 10px 0;
    text-align: center;
}

@media(min-width:768px){

    .networks__title h3 {
        margin: 0;
        text-align: right;
    }

    .networks__list {
        justify-content: start;
    }
}