h2.category-block_title {
    margin-bottom: 0;
    text-align: center;
    color: #fff;
}

.category-block__list {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

.card-item {
    flex-basis: calc((100% - 32px) / 3);
}
.category-block{
    position: relative;
}
.category-block__decor{
    position: absolute;
    left: 0;
    top: 30%;
}

@media screen and (min-width: 992px) {
    .category-block__header {
        padding-top: 49px;
        padding-bottom: 110px;
    }

    .category-block__list {
        margin-top: -61px;
    }
    .category-block__pt{
        padding-top: 100px;
    }
}

@media screen and (max-width: 991.98px) {
    .category-block__header {
        padding-top: 50px;
        padding-bottom: 50px;
    }
    .category-block__list {
        margin-top: -31px;
    }
    .category-block__pt{
        padding-top:30px;
    }
}
@media screen and (max-width: 765px){
    .card-item {
        flex-basis: calc((100% - 16px) / 2);
    }
}
@media screen and (max-width: 560px){
    .card-item {
        flex-basis: 100%;
    }
}