.Product_card {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 10px 10px 10px 10px;
    margin-top: 0px;
    transition: 0.3s;
    background: #558c4626;
    border-radius: 8px;
}

.Product_card:hover {
    /* margin-top: -10px; */
    transition: 0.3s;
}

.Product_card .img_div {
    position: relative;
}

.Product_card .img_div .prod_img {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    object-fit: contain;
    position: relative;
    z-index: 9;
    margin-top: 0px;
    transition: 0.3s;
}

.Product_card:hover .img_div .prod_img {
    margin-top: -10px;
    transition: 0.3s;
}

.Product_card:hover .img_div .sociallinks {
    position: absolute;
    top: auto;
    bottom: 0px;
    z-index: 99;
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 3px;
    opacity: 1;
    transition: 0.3s ease-out;
    box-shadow: 0px 0px 15px 0px #00000033;
    border-radius: 5px;
}

.Product_card .img_div .sociallinks {
    position: absolute;
    top: auto;
    bottom: -60px;
    z-index: 99;
    width: 100%;
    text-align: center;
    background: #fff;
    padding: 3px;
    opacity: 0;
    transition: 0.3s ease-in;
    box-shadow: 0px 0px 15px 0px #00000033;
    border-radius: 5px;
}



.Product_card .img_div .sociallinks .icons {
    width: 30px;
    height: auto;
    margin: 0px 5px;
}

.Product_card .overlaybg {
    position: absolute;
    width: 100%;
    height: 0%;
    top: 0px;
    left: 0px;
    background: linear-gradient(0deg, rgba(243, 243, 243, 0) 0%, #fff 100%);
    transition: 0.3s;
    border-radius: 0px 0px 5px 5px;
}

.Product_card:hover .overlaybg {
    height: 100%;
    transition: 0.3s;
}

.Product_card .prd_details {
    padding-top: 15px;
    position: relative;
}

.Product_card .prd_details .modelno {
    font-weight: 500;
    font-size: 21px;
    color: #1a1a1a;
    margin-bottom: 0px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    position: relative;
    z-index: 9;

}

.Product_card .prd_details .prd_name {
    font-weight: 500;
    font-size: 17px;
    margin-bottom: 0px;
    color: #1b6500;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    position: relative;
    z-index: 9;
    padding-bottom: 3px;
}

.Product_card .prd_details .btndiv {
    opacity: 0;
    width: 85px;
    margin: -10px auto 0px auto;
    transition: 0.3s;
    position: relative;
    z-index: 9;
}

.Product_card:hover .prd_details .btndiv {
    opacity: 1;
    margin: 0px auto 0px auto;
    transition: 0.3s;
}

.Product_card .prd_details .btndiv .viewbtn {
    background-color: #50883f;
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    border: 0px;
    padding: 1px 15px;
    border-radius: 5px 5px 0px 0px;
    cursor: pointer;
    text-wrap-mode: nowrap;
}

@media (min-width:0px) and (max-width:767.98px) {
    .Product_card .prd_details .modelno {
        font-size: 17px;
    }

    .Product_card .img_div .sociallinks .icons {
        width: 20px;
    }

    .Product_card .prd_details .prd_name {
        font-weight: 500;
        font-size: 13px;
        -webkit-line-clamp: 2;
        padding-bottom: 2px;
    }

    .Product_card .prd_details .btndiv .viewbtn {
        font-size: 10px;
        padding: 1px 15px;
        border-radius: 5px 5px 0px 0px;
    }
}



@media (min-width:768px) and (max-width:1200px) {
    .Product_card .prd_details .prd_name {
        font-size: 16px;
    }

    .Product_card .prd_details .modelno {
        font-size: 19px;
    }
}