.seoc-team-filter {
    margin: 0 0 40px 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}
.seoc-team-filter li {
    margin: 0 15px 10px 0;
    line-height: 1;
    cursor: pointer;
    padding: 10px;
    text-transform: uppercase;
    font-size: 18px;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.seoc-team-filter li:hover, .seoc-team-filter li:focus, .seoc-team-filter .mixitup-control-active {
    color: #fff;
    background-color: #1f1f1f;
}
.seocon-team-members {
    display: flex;
    flex-flow: row wrap;
    margin: 0 -10px;
    text-align: center;
}
.seocon-team {
    width: calc(25% - 20px);
    margin: 40px 10px;
    position: relative;
    font-size: 12px;
}
.seocon-team .team-side {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.2s;
}
.seocon-team:hover .team-side {
    opacity: 1;
}
.seocon-team div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 5px;
    text-align: center;
}
.seocon-team h2 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 5px;
    line-height: 1.5;
}
.seocon-team p {
    margin-bottom: 5px;
}
@media only screen and (max-width: 1200px) {
    .seocon-team {
        width: calc(100% / 3 - 20px);
    }
}
@media only screen and (max-width: 1024px) {
    .seocon-team {
        width: calc(50% - 20px);
        margin-top: 20px;
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 768px) {
    .seocon-team-members {
        margin: 0;
    }
    .seocon-team {
        width: 100%;
    }
}