.new-product {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.new-product .product-wrapper {
    width: 23.333333%;
    max-height: 355px;
    min-height: 350px;
    overflow: hidden;
    margin-bottom: 20px;
    transition: transform 0.2s;
}
.new-product .product-wrapper:hover {
    transform: scale(1.05);
}
.new-product .product-wrapper .product {
    position: relative;
    border-radius: 10px;
}
.new-product .product-wrapper .product:hover .go-buy .btn {
    background: #88c057;
    border-color: #88c057;
    color: #fff;
}
.new-product .product-wrapper .product:hover .cheats {
    display: flex;
    justify-content: center;
    align-items: center;
}
.new-product .product-wrapper .product:hover .block .info {
     display: none;
 }
.new-product .product-wrapper span:hover,
.new-product .product-wrapper a:hover{
    color: #ffffff;
}
.new-product .product-wrapper .m-img {
    height: 200px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    width: 100%;
    object-fit: cover;
}
.product-wrapper .block{
    padding: 20px;
    border-radius: 10px;
    background: rgb(54 57 65 / 48%);
    margin-top: -43px;
    backdrop-filter: blur(15px);
    height: 180px;
    transition: .2s all;
    align-items: center;
    flex-direction: column;
    display: flex;
}
.product-wrapper .product:hover .block {
    height: 250px;
    transform: translateY(-50px);
}
.product-wrapper .block .icon {
    border-radius: 50%;
    margin-top: -40px;
    height: 40px;
    width: 40px;
    min-height: 40px;
    min-width: 40px;
    margin-bottom: 10px;
    background: rgba(35, 37, 42, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-wrapper .block .name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 20px;
}
.product-wrapper .block .info span:last-child {
    color: #0bc40b;
}
.product-wrapper .block .go-buy {
    margin-top: auto;
    width: 100%;
    position: absolute;
    bottom: 0;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}
.product .block .info {
    font-size: 14px;
    font-weight: 400;
}

.product-wrapper .block .price {
    font-size: 22px;
    flex-direction: column;
    display: flex;
}
.price i {
    font-style: normal;
    display: inline-block;
    vertical-align: middle;
}
.product-wrapper .block .go-buy .btn {
    background: 0;
    border: 2px solid rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .2);
    text-transform: none;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 400;
    transition: .3s all;
    padding: 12px 15px;
    border-radius: 10px;
    cursor: pointer;
}
.product-wrapper .product .block .price span {
    color: rgba(255, 255, 255, .4);
    font-size: 13px;
}
.product-wrapper .product .cheats {
    display: none;
    width: 100%;
    flex-wrap: wrap;
}
.product-wrapper .product .cheats .cheat-wrapper {
    padding: 10px;
    padding-left: 0;
    padding-top: 0;
    width: 50%;
}
.product-wrapper .product .cheats .cheat-wrapper .cheat {
    padding: 10px;
    border-radius: 5px;
    transition: .4s all;
    background: rgba(255, 255, 255, .1);
    align-items: center;
    display: flex;
    justify-content: center;
}
.product-wrapper .product .cheats .cheat-wrapper .cheat img {
    height: 30px;
    width: 30px;
    border-radius: 5px;
    margin-right: 5px;
    transition: .4s all;
}
.product-wrapper .product .cheats .cheat-wrapper .cheat-info {
    flex-direction: column;
    display: flex;
}
.product-wrapper .product .cheats .cheat-wrapper .cheat .cheat-info .cheat-name {
    font-size: 11px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.product-wrapper .product .cheats .cheat-wrapper .cheat:hover {
    background: #9e9e9e;
}
.new-product .product-wrapper .new-item{
    background: #88C057;
    position: absolute;
    color: orange;
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(40px);
    background: rgba(35, 37, 42, .48);
    background: linear-gradient(90deg, red, orange, yellow, green, #ffffff, #b70be5, violet);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: rainbow-text 7s linear infinite;
    top: -197px;
    right: 4px;
    z-index: 6;
    overflow: hidden;
    font-size: 14px;
    font-weight: 400;
}

.new-product .product-wrapper .popular {
    position: absolute;
    color: orange;
    padding: 5px 10px;
    border-radius: 5px;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background: rgba(35, 37, 42, .48);
    top: -198px;
    left: 4px;
    z-index: 6;
    align-items: center;
    display: flex;
    font-size: 14px;
    font-weight: 400;
}

@keyframes rainbow-text {
    0% {
        background-position: 100% 50%;
    }
    50% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}


@media screen and (max-width: 960px) {
    .new-product .product-wrapper{
        width: 50%;
        padding: 0 10px;
    }
}
@media screen and (max-width: 600px) {
    .new-product .product-wrapper{
        width: 100%;
    }
}