.category-page {
    padding: 32px 0 0;
    margin-bottom: 100px;
}
.category-page h1.title {
    font-size: 24px;
    line-height: 32px;
    color: #1A1A1A;
    margin-bottom: 4px;
}
.category-page p {
    font-weight: 500;
    color: #454B54;
}
.category-block {
    box-shadow: 0 10px 50px 0 rgba(61, 66, 69, .18);
    border-radius: 18px;
    width: calc(25% - 15px);
    overflow: hidden;
    background-color: #fff;
    transition: 0.3s all;
}
.category-block>a {
    padding: 16px;
    display: block;
}
.category-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.category-img {
    position: relative;
    padding-bottom: 76%;
    text-align: center;
}
.category-img img {
    width: 100%;
    height: 100%;
    position: absolute;
    margin-inline: auto;
    left: 0;
    right: 0;
    top: 0;
    object-fit: cover;
    border-radius: 12px;
}
.category-title-text {
    padding: 20px 0 10px;
    text-align: center;
}
.category-page .title-wrapper {
    margin-bottom: 32px;
}
.category-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 2px;
}
.category-text {
    font-size: 14px;
    line-height: 16px;
    color: #878D99;
}
.category-block:hover {
    box-shadow: 0 10px 50px 0 rgba(61, 66, 69, .38);
}

@media (max-width: 1280px) {
    .category-block {
        width: calc(33.33% - 14px);
    }
}
@media (max-width: 1024px) {
    .category-page {
        padding: 24px 0 0;
        margin-bottom: 80px;
    }
    .category-page .title-wrapper {
        margin-bottom: 24px;
    }
}
@media (max-width: 991px) {
    .category-block {
        width: calc(50% - 10px);
    }
}
@media (max-width: 767px) {
    .category-page {
        margin-bottom: 60px;
    }
}
@media (max-width: 479px) {
    .category-block {
        width: 100%;
    }
}