.NyProduct {
    padding: 0;
    position: relative;
    display: flex;
    flex-wrap: wrap;
}

.Categories {
    position: absolute;
    right: 0;
    padding-left: 45px;
    overflow: hidden;
    width: 300px;
    height: 100%;
}

.Categories.on {
    position: fixed;
    top: 150px;
    right: var(--positionRight);
    height: auto;
}

.Categories::after {
    content: "";
    display: block;
    width: 1px;
    height: 200%;
    background: #D9D9D9;
    position: absolute;
    left: 0;
    top: -25%;
}

.Categories a {
    width: 100%;
    padding: 10px 30px;
    border-radius: 50px;
    color: #3E3E3E;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: 30px;
    display: flex;
}

.Categories a:hover,
.Categories a.cur {
    background: #FFF;
    color: var(--color);
}

.NyProductList {
    width: calc(100% - 300px);
    display: flex;
    flex-wrap: wrap;
}

.NyProductList .title {
    width: 100%;
    color: #000;
    font-size: 48px;
    line-height: 1;
    margin-bottom: 75px;
}

.NyProductList_2 {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.NyProductList .item {
    margin: 0 25px;
    margin-bottom: 60px;
    padding: 30px 0 45px;
    border-bottom: 1px solid #D9D9D9;
    width: calc(33.333% - 50px);
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.NyProductList .item:hover {
    border-radius: 12px;
    background: #fff;
}

.NyProductList .item .text {
    display: block;
}

.NyProductList .item .text h1 {
    color: #000;
    font-size: 20px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    transition: 0.5s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.NyProductList .item:hover .text h1 {
    color: var(--color);
}

.NyProductList .item .text .desc {
    color: #ADADAD;
    font-size: 14px;
    padding: 0 30px;
    line-height: 1;
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.NyProductList .item .img {
    overflow: hidden;
    width: 100%;
    margin: 20px 0;
}

.NyProductList .item .img img {
    width: 100%;
    transition: 0.5s;
}

.NyProductList .item:hover .img img {
    transform: scale(1.08);
}

.NyProductList .item span {
    color: #000;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    transition: 0.5s;
}

.NyProductList .item:hover span {
    color: var(--color);
}

@media (max-width: 1440px) {
    .NyProductList .title {
        font-size: 40px;
        margin-bottom: 45px;
    }
}

@media (max-width: 992px) {
    .NyProductList .title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .NyProductList .item {
        width: calc(50% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }

    .Categories {
        width: 200px;
        height: 100%;
        padding-left: 10px;
    }

    .Categories a {
        padding: 10px 20px;
    }

    .NyProductList {
        width: calc(100% - 200px);
    }

    .NyProductList_2 {
        margin-left: -15px;
        margin-right: -15px;
    }
}

@media (max-width: 640px) {
    .Categories {
        position: unset !important;
        width: 100%;
        padding: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .Categories::after {
        display: none;
    }

    .Categories a {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 15px;
    }

    .NyProductList .title {
        margin-top: 60px;
        font-size: 28px;
        text-align: center;
        line-height: 1.5;
    }

    .NyProductList {
        width: 100%;
    }

    .NyProductList_2 {
        margin: 0;
    }

    .NyProductList .item {
        width: 100%;
        margin: 0;
    }
}