.catalog-card__items.new {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 10rem;
}

@media (min-width: 1160px) {
    .catalog-card__items.new {
        font-size: 18px;
        font-size: calc( 0.00789 * 100vw + 4.84211px);
    }
}

@media (min-width: 1920px) {
    .catalog-card__items.new {
        font-size: 20px;
    }
}

.catalog-card__items.new.fluid .catalog-cards {
    width: 100%;
    padding-top: 0;
}

.catalog-card__items.new .catalog-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 1.5rem;
    width: 76%;
}

.catalog-card__items.new .catalog-cards.one {
    width: calc(76% / 3);
}

.catalog-card__items.new .catalog-cards.one .catalog-card__item:nth-child(n) {
    width: calc((100% - 0rem) / 1);
}

.catalog-card__items.new .catalog-cards.two .catalog-card__item:nth-child(n) {
    width: calc((100% - (3rem / 2)) / 2);
}

.catalog-card__items.new .catalog-cards.four .catalog-card__item:nth-child(-n+2) {
    width: calc((100% - (3rem / 2)) / 2);
}

.catalog-card__items.new .catalog-cards.four .catalog-card__item:nth-child(3) {
    width: calc((100% - (3rem / 1)) / 3);
}

.catalog-card__items.new .catalog-cards.four .catalog-card__item:nth-child(4) {
    width: calc((100% - (100% / 3)) - .5rem);
}

.catalog-card__items.new .catalog-cards.six .catalog-card__item:nth-child(-n+2) {
    width: calc(50% - .75rem);
}

.catalog-card__items.new .catalog-cards.six .catalog-card__item:nth-child(4) {
    width: calc((100% - (100% / 3)) - .5rem);
}

.catalog-card__items.new .catalog-cards.six .catalog-card__item:nth-last-child(-n+2) {
    width: calc(50% - .75rem);
}

.catalog-card__items.new .catalog-cards.eight .catalog-card__item:nth-child(n+6) {
    width: calc((100% - 3rem) / 3);
}

.catalog-card__items.new .catalog-cards.ten .catalog-card__item:nth-child(n+8) {
    width: calc((100% - 3rem) / 3);
}

.catalog-card__items.new .catalog-cards.even .catalog-card__item:nth-last-child(-n+3) {
    width: calc((100% - 3rem) / 3);
}

.catalog-card__items.new .catalog-card__item {
    display: inline-block;
}

.catalog-card__items.new .catalog-card__item:nth-child(-n+3) {
    width: calc((100% - 3rem) / 3);
}

.catalog-card__items.new .catalog-card__item:nth-child(-n+3) .catalog-card__item-link {
    width: auto;
}

.catalog-card__items.new .catalog-card__item:nth-child(4n) {
    width: calc((100% - 3rem) / 3);
}

.catalog-card__items.new .catalog-card__item:nth-child(4n) .catalog-card__item-link {
    width: auto;
}

.catalog-card__items.new .catalog-card__item:nth-child(4n+5) {
    width: calc((100% - (100% / 3)) - .5rem);
}

.catalog-card__items.new .catalog-card__item:nth-child(4n+5) .catalog-card__item-link {
    width: auto;
}

.catalog-card__items.new .catalog-card__item:nth-child(4n+6),
  .catalog-card__items.new .catalog-card__item:nth-child(4n+7) {
    width: calc(50% - .75rem);
}

.catalog-card__items.new .catalog-card__item:nth-child(4n+6) .catalog-card__item-link,
    .catalog-card__items.new .catalog-card__item:nth-child(4n+7) .catalog-card__item-link {
    width: auto;
}

.catalog-card__items.new .catalog-card__item-link {
    display: block;
    background-color: #ebebeb;
    width: 199px;
    height: 160px;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
}

.catalog-card__items.new .catalog-card__item-link:hover .catalog-card__item-name span {
    color: #69a94d;
}

.catalog-card__items.new .catalog-card__item-link:hover .catalog-card__item-name span::after {
    background-image: url("../images/icons/arrow-right--hover.svg");
}

.catalog-card__items.new .catalog-card__item-link:hover::after {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.75)), color-stop(70%, rgba(196, 196, 196, 0)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.75) 0%, rgba(196, 196, 196, 0) 70%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(196, 196, 196, 0) 70%);
}

.catalog-card__items.new .catalog-card__item-link::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #000;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.55)), color-stop(70%, rgba(196, 196, 196, 0)));
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.55) 0%, rgba(196, 196, 196, 0) 70%);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.55) 0%, rgba(196, 196, 196, 0) 70%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.catalog-card__items.new .catalog-card__item-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.catalog-card__items.new .catalog-card__item-img img {
    width: auto;
    height: auto;
    min-height: 100%;
    max-height: 100%;
    margin: 0 auto;
}

.catalog-card__items.new .catalog-card__item-name {
    padding: 2rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
}

.catalog-card__items.new .catalog-card__item-name span {
    color: #fff;
    display: inline-block;
    position: relative;
    padding-right: 22px;
}

.catalog-card__items.new .catalog-card__item-name span + span {
    font-size: 12px;
    font-weight: 400;
}

@media (min-width: 1160px) {
    .catalog-card__items.new .catalog-card__item-name span + span {
        font-size: 18px;
        font-size: calc( 0.00526 * 100vw + 5.89474px);
    }
}

@media (min-width: 1920px) {
    .catalog-card__items.new .catalog-card__item-name span + span {
        font-size: 16px;
    }
}

.catalog-card__items.new .catalog-card__item-name span::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 10px;
    background-image: url("../images/icons/arrow-right.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.catalog-card__items.new .catalog__show-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 24%;
    padding-left: 1.5rem;
}

.catalog-card__items.new .catalog__show-more .catalog-card__item {
    padding: 0;
    min-height: 100%;
}

.catalog-card__items.new .catalog__show-more .catalog-card__item:nth-child(n) {
    border: none;
    width: 100%;
}

.catalog-card__items.new .catalog__show-more .catalog-card__item-link {
    width: 183px;
    min-height: inherit;
    background-color: #69a94d;
}

.catalog-card__items.new .catalog__show-more .catalog-card__item-link:hover {
    background-color: #ffce50;
}

.catalog-card__items.new .catalog__show-more .catalog-card__item-link:hover .catalog-card__item-name span {
    color: #303030;
}

.catalog-card__items.new .catalog__show-more .catalog-card__item-link:hover .catalog-card__item-name span:not(:last-child)::after {
    background-image: url("../images/icons/arrow-right-show-more--hover.svg");
}

.catalog-card__items.new .catalog__show-more .catalog-card__item-link::after {
    display: none;
}

.catalog-card__items.new .catalog__show-more .catalog-card__item-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 3rem;
    top: 0;
}

.catalog-card__items.new .catalog__show-more .catalog-card__item-name span {
    color: #fff;
}

.catalog-card__items.new .catalog__show-more .catalog-card__item-name span:last-child::after {
    display: none;
}

.catalog-card__items.new .catalog__show-more .catalog-card__item-name span:not(:last-child)::after {
    background-image: url("../images/icons/arrow-right-show-more.svg");
}

@media (min-width: 320px) and (max-width: 374px) {
    .catalog-card__items.new .catalog-card__item-name span {
        padding-right: 0;
    }

    .catalog-card__items.new .catalog-card__item-name span::after {
        display: none;
    }

    .catalog-card__items.new .catalog-card__item-name span + span {
        padding-left: 2rem;
    }
}

@media (min-width: 320px) and (max-width: 919px) {
    .catalog-card__items.new {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }

    .catalog-card__items.new .catalog-cards.one {
        width: calc(100% / 1);
    }

    .catalog-card__items.new .catalog-cards.one .catalog-card__item:nth-child(n) {
        width: calc((100% - 0rem) / 1);
    }

    .catalog-card__items.new .catalog-cards.six .catalog-card__item:nth-child(n), .catalog-card__items.new .catalog-cards.eight .catalog-card__item:nth-child(n), .catalog-card__items.new .catalog-cards.ten .catalog-card__item:nth-child(n) {
        width: calc(50% - .75rem);
    }

    .catalog-card__items.new .catalog-cards.six .catalog-card__item:nth-child(3n), .catalog-card__items.new .catalog-cards.eight .catalog-card__item:nth-child(3n), .catalog-card__items.new .catalog-cards.ten .catalog-card__item:nth-child(3n) {
        width: calc(100%);
    }

    .catalog-card__items.new .catalog-cards.even .catalog-card__item:nth-last-child(-n+3) {
        width: initial;
    }

    .catalog-card__items.new .catalog-cards.even .catalog-card__item:nth-child(n) {
        width: calc(50% - .75rem);
    }

    .catalog-card__items.new .catalog-cards.even .catalog-card__item:nth-child(3n) {
        width: calc(100%);
    }

    .catalog-card__items.new .catalog-cards.joint .catalog-card__item:nth-last-child(-n+2) {
        width: calc(50% - .75rem);
    }

    .catalog-card__items.new .catalog-card__item:nth-child(n) {
        width: calc(50% - .75rem);
        min-height: 16rem;
        height: 34.53125vw;
    }

    .catalog-card__items.new .catalog-card__item:nth-child(n) .catalog-card__item-link {
        width: auto;
        min-height: inherit;
        height: inherit;
    }

    .catalog-card__items.new .catalog-card__item:nth-child(3n) {
        width: calc(100%);
    }

    .catalog-card__items.new .catalog-card__item:nth-child(3n) .catalog-card__item-link {
        width: auto;
    }

    .catalog-card__items.new .catalog-card__item-name span {
        display: inline-block;
        overflow: hidden;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }

    .catalog-card__items.new .catalog-cards {
        padding-top: 3rem;
        width: 100%;
    }

    .catalog-card__items.new .catalog__show-more {
        width: 100%;
        padding-left: 0;
        height: 7rem;
        min-height: 7rem;
    }

    .catalog-card__items.new .catalog__show-more .catalog-card__item:nth-child(n) {
        width: inherit;
        height: inherit;
        min-height: inherit;
    }

    .catalog-card__items.new .catalog__show-more .catalog-card__item:nth-child(n) .catalog-card__item-link {
        height: inherit;
        min-height: inherit;
    }

    .catalog-card__items.new .catalog__show-more .catalog-card__item-name {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding: 2.5rem 3rem;
    }

    .catalog-card__items.new .catalog__show-more .catalog-card__item-name::after {
        content: '';
        position: absolute;
        width: 12px;
        height: 10px;
        background-image: url("../images/icons/arrow-right-show-more.svg");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center center;
        top: 50%;
        right: 3rem;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .catalog-card__items.new .catalog__show-more .catalog-card__item-name span {
        overflow: initial;
    }

    .catalog-card__items.new .catalog__show-more .catalog-card__item-name span:not(:last-child)::after {
        display: none;
    }

    .catalog-card__items.new .catalog__show-more .catalog-card__item-link:hover .catalog-card__item-name::after {
        background-image: url("../images/icons/arrow-right-show-more--hover.svg");
    }
}

@media (min-width: 640px) and (max-width: 919px) {
    .catalog-card__items.new .catalog-cards {
        gap: 1.5rem;
    }

    .catalog-card__items.new .catalog-card__item:nth-child(n) {
        width: calc(50% - .75rem);
    }

    .catalog-card__items.new .catalog-card__item:nth-child(3n) {
        width: calc(100%);
    }

    .catalog-card__items.new .catalog-card__item:nth-child(3n) .catalog-card__item-link {
        width: auto;
    }
}

@media (min-width: 920px) {
    .catalog-card__items.new.fluid .catalog-card__item-link {
        height: calc(13.79310344827586vw * 1.3125);
    }

    .catalog-card__items.new .catalog-card__item-link {
        height: 13.79310344827586vw;
    }
}

@media (min-width: 1920px) {
    .catalog-card__items.new.fluid .catalog-card__item-link {
        height: calc(14.375vw * 1.3125);
    }

    .catalog-card__items.new .catalog-card__item-link {
        height: 14.375vw;
    }
}