.tax__list {
    display: flex;
    margin: 0 -10px;
}
.tax__item {
    flex: 1 0 0;
    padding: 0 10px;
}
.tax__content > * {
    z-index: 1;
}
.tax__content:after {
    content: '';
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    border: 1px solid #DDD;
    z-index: 0;
}
.tax__item figure {
    position: relative;
    background-size: auto 100%;
    transition: all 0.8s ease;
}
.tax__item:hover figure {
    background-size: auto 105%;
}
.tax__content {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background-color: #00000026;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    transition: all 0.3s ease;
}
.tax__item:hover .tax__content {
    background-color: #00000054;
}
.tax__content a {
    color: #FFF;
}

@media (max-width: 768px) {
    .tax__list {
        flex-wrap: wrap;
    }
    .tax__item {
        margin-bottom: 20px;
        flex: 1 1 50%;
    }
}
@media (max-width:576px) {
    .tax__item {
        margin-bottom: 10px;
        flex: 1 1 100%;
    }
    .tax__name {
        font-size: 26px;
    }
}
