.section--works-filter {
    margin-top: 80px;
    margin-bottom: 40px;
}

@media only screen and (max-width: 768px) {
    .section--works-filter {
        margin-top: 60px;
    }
}

.container--works-filter h4 {
    display: inline-block;

    margin-right: 15px;
    margin-bottom: 15px;

    line-height: 35px;
}

.work-filter-list {
    width: 100%;
}

@media only screen and (max-width: 1024px) {
    .work-filter-list {
        width: 85%;
    }
}

@media only screen and (max-width: 768px) {
    .work-filter-list {
        width: 100%;
    }
}

.work-filter-list-industries {
    margin-bottom: 24px;
}

.work-filter-item {
    float: left;

    margin-right: 10px;
    margin-bottom: 10px;
}

.work-filter-item span {
    display: block;

    margin: 0;
    padding: 3px 15px;

    cursor: pointer;
    transition: all var(--translation_duration);

    color: var(--brand);
    border: 1px solid var(--brand);
    border-radius: 40px;
    background-color: transparent;

    font-weight: var(--font_weight--semibold);
    line-height: 27px;
}

@media only screen and (min-width: 1024px) {
    .work-filter-item:hover span {
        color: var(--white);
        background-color: var(--brand);
    }
}

.work-filter-item.active span {
    color: var(--white);
    background-color: var(--brand);
}
