.team h2 { text-align: center; }

.team .member {
    text-align: center;
    border: 1px solid #CCC;
    border-radius: 5px;
    box-sizing: border-box;
    box-shadow: 0px 4px 10px 0 rgba(0,0,0,.1);
}

.team .member img {
    width: 80%;
    border-radius: 5px;
    vertical-align: top;
    margin-top: -50px;
}

.team .member .visitka { padding: 20px; }

@media all and (max-width: 640px) {
    .team { padding: 20px; }
    .team .member { margin: 100px 0 20px 0; }
}

@media all and (min-width: 641px) {
    .team { padding: 20px 40px; }

    .team .member { margin: 100px 40px 20px 40px; }
}

@media all and (min-width: 961px) {
    .team .members {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .team .member { width: calc(50% - 80px); }
}