.project-filter {
    padding: 0;
    margin: 0;
    list-style-type: none;
    display: flex;
}
.project-filter li {
    margin: 0 15px 10px 0;
    line-height: 1;
    cursor: pointer;
    padding: 12px 24px;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s;
    background-color: #101010;
}

.project-filter li:hover,
.project-filter li:focus,
.project-filter .mixitup-control-active {
    color: #101010;
    background-color: #f0f0eb;
}
.lr-projects {
    display: flex;
    flex-flow: row wrap;
    text-align: left;
    gap: 0px 76px;
}
.project-element {
    width: calc(48% - 20px);
    margin: 40px 0px;
    position: relative;
    font-size: 12px;
}
.project-element span {
    position: relative;
    display: inline-flex;
}
.project-element span::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #101010d1;
    opacity: 0;
    transition: all 0.3s;
}
.project-element span:hover::after {
    opacity: 0.5;
}
.project-element div {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 15px 5px;
    text-align: center;
}

.project-element p {
    font-size: 16px;
}

.project-element h3 {
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
}

.project-element .text-button {
    display: inline-block;
    font-family: "Maven Pro", Sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
}
.project-element .text-button::after {
    content: '';
    display: block;
    height: 2px;
    background-color: #101010;
    opacity: 0;
}
.project-element .text-button:hover::after {
    opacity: 1;
}
@media only screen and (max-width: 1200px) {
    .project-element {
        width: calc(100% / 3 - 20px);
    }
}

@media only screen and (max-width: 1024px) {
    .project-element {
        width: calc(50% - 20px);
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 768px) {
    .seocon-team-members {
        margin: 0;
    }
    .project-element {
        width: 100%;
    }
    .project-element h3 {
        font-size: 18px;
    }
}