.ProductsMain{
    display: flex;
    flex-direction: column;
    /* margin: auto; */
    justify-content: center;
    align-items: left;
    padding: 4% 8%;
    /* border: 2px solid #000; */
    /* width: fit-content; */
    max-width: 1600px;
    margin: auto;
}
.ProductsHead{
    width: fit-content;
}
.ProductsRow{
    display: flex;
    align-items: start;
    margin-top: 4%;
    flex-wrap: wrap;
    justify-content: center;
    /* width: fit-content; */
}
.ProductsHead img{
    height: 50px;
}
.ProductsText p{
    font-size: 20px;
    letter-spacing: .5px;
}
.ProductsText{
    margin-top: 1%;
    width: fit-content;
}
.Pro{
    margin: 10px;
}
.ProductImg{
    width: 250px;
    height: 300px;
    gap: 15px;
    /* border: 2px solid #000; */
    /* margin-right: 15px; */
    background-color: #f2f2f2;
    object-fit: contain;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}
.ProductImg img{
    width: auto;
    height: 270px;
    padding: 5%;
}
.ProductName{
    margin-top: 7px;
    font-weight: 200;
}
.ProductName h5{
    font-weight: 400;
}
.ProductSMbutton p{
    background-color: #444444;
    color: #fff;
    padding: 5px 9px;
}
.ProductSMbutton{
    display: flex;
    justify-content: end;
}

@media (max-width: 992px) {
    .ProductsMain{
        padding-top: 10%;
        padding-bottom: 10%;
    }
    .ProductsHead img{
        height: 30px;
    }
    .ProductsText p{
        font-size: 12px;
        letter-spacing: .5px;
    }
    .ProductSMbutton{
        display: flex;
        position: relative;
        justify-content: center;
        align-items: center;
    }
    .ProductImg img{
        object-fit: contain;
    }
    .ProductImg{
        object-fit: contain;
    }
}

