
.contacts-wrapper {
    display: flex;
    flex-direction: row;
    padding-top: 15px;
    flex-wrap: wrap;
    justify-content: space-around;
}

.user-name {
    text-align: center;
}

.face-mob {
    display: none;
}

@media screen and (min-width: 768px) {
    .contacts-wrapper {
        justify-content: left;
    }

    .contacts {
        padding: 0;
    }

    .user-name {
        text-align: left;
    }

    #face .face-mob {
        display: none;
    }
}