.category-banner__wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    min-height: 198px;
    border-radius: 30px;
    overflow: hidden
}

.category-banner__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden
}

.category-banner__bg::before {
    content: "";
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gray-30)
}

.category-banner__bg img {
    position: relative;
    z-index: -1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.category-banner__row {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
    padding: 20px 20px 0;
    width: 100%
}

@media (min-width: 760px) {
    .category-banner__row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0 0 0 40px
    }

    .category-banner__row--centered {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .category-banner__row--centered .category-banner__image {
        padding: 0;
    }
}

.category-banner__bg-custom {
    display: none;
}

@media (min-width: 576px) {
    .category-banner__bg-custom {
        display: block;
    }
}

@media (min-width: 1200px) {
    .category-banner__wrapper {
        min-height: 270px
    }

    .category-banner__row {
        padding: 0 70px
    }
}

@media (min-width: 1650px) {
    .category-banner__wrapper {
        min-height: 300px
    }

    .category-banner__row {
        padding: 0 100px
    }
}

@media (min-width: 760px) {
    .category-banner__content {
        padding: 40px 0;
        width: 100%;
        margin-bottom: auto;
        max-width: 348px
    }
}

@media (min-width: 1200px) {
    .category-banner__content {
        padding: 73px 0 71px;
        max-width: 577px;
        margin-bottom: auto;
    }
}

@media (min-width: 1650px) {
    .category-banner__content {
        padding: 76px 0 77px;
        max-width: 750px;
        margin-bottom: auto;
    }
}

.category-banner__title {
    color: var(--black);
    text-transform: uppercase
}

.category-banner__description {
    color: var(--black-70);
    margin-top: 10px
}

.category-banner__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

@media (min-width: 760px) {
    .category-banner__image {
        width: 100%;
        padding-top: 50px;
        max-width: 280px
    }
}

@media (min-width: 1200px) {
    .category-banner__description {
        margin-top: 20px
    }

    .category-banner__image {
        max-width: 393px
    }
}

.category-banner__image img {
    width: auto;
    height: auto
}

.category-cards {
    margin-top: 35px
}

.category-cards__head {
    margin-bottom: 30px
}

.category-cards__head-label {
    font-size: var(--text-size-18);
    letter-spacing: var(--lt-sp-54);
    line-height: var(--lh-default);
    font-weight: var(--fw-normal);
    margin-bottom: 10px
}

@media (min-width: 1200px) {
    .category-cards {
        margin-top: 50px
    }

    .category-cards__head-label {
        font-size: var(--text-size);
        letter-spacing: var(--lt-sp-48);
        margin-bottom: 20px
    }

    .category-cards__head-filters-wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

@media (min-width: 1650px) {
    .category-banner__image {
        padding-top: 60px;
        max-width: 500px
    }

    .category-cards {
        margin-top: 70px
    }

    .category-cards__head-label {
        font-size: var(--text-size-18);
        letter-spacing: var(--lt-sp-54)
    }
}

.category-cards__head-filters {
    position: relative
}

.category-cards__head-filters-wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    overflow: auto;
    -ms-overflow-style: none;
    scrollbar-width: none
}

@media (min-width: 760px) and (max-width: 1199.98px) {
    .category-cards__head-filters {
        margin-right: calc(-20px * 2);
        margin-left: calc(-20px * 2)
    }

    .category-cards__head-filters-wrapper {
        padding-right: calc(20px * 2);
        padding-left: calc(20px * 2)
    }
}

@media (max-width: 759.98px) {
    .category-cards__head-filters {
        margin-right: -20px;
        margin-left: -20px
    }

    .category-cards__head-filters-wrapper {
        padding-right: 20px;
        padding-left: 20px
    }
}

.category-cards__head-filter {
    white-space: nowrap
}

.category-cards__head-download {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 30px;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.category-cards__grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns:(1fr) [ 2 ];
    grid-template-columns:repeat(2, 1fr);
    gap: 30px 0
}

@media (min-width: 760px) {
    .category-cards__grid {
        -ms-grid-columns:(1fr) [ 3 ];
        grid-template-columns:repeat(3, 1fr);
        gap: 30px 20px
    }
}

@media (min-width: 1034px) {
    .category-cards__grid {
        -ms-grid-columns:(1fr) [ 4 ];
        grid-template-columns:repeat(4, 1fr)
    }
}

@media (min-width: 1200px) {
    .category-cards__head-filter {
        white-space: initial
    }

    .category-cards__head-download {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        margin-top: 20px
    }

    .category-cards__grid {
        -ms-grid-columns:(1fr) [ 5 ];
        grid-template-columns:repeat(5, 1fr);
        gap: 50px 30px
    }
}

@media (min-width: 1650px) {
    .category-cards__head-download {
        margin-top: 30px
    }

    .category-cards__grid {
        gap: 60px 30px
    }
}

@media (max-width: 359.98px) {
    .category-cards__grid {
        -ms-grid-columns:(1fr) [ 1 ];
        grid-template-columns:repeat(1, 1fr)
    }
}