.product img{
    float: right;
    max-width: 30% ;
    max-height: 500px;
}

/*1025 to 1440*/
@media only screen and (min-width: 1024px) and (max-width: 1439px){
    .product img{
        max-width: 25%;
        max-height: 400px;
    }
}

/*768 to 1024*/
@media only screen and (min-width: 768px) and (max-width: 1023px){
    .product img{
        max-width: 30%;
        max-height: 300px;
    }
}

/*425 to 767*/
@media only screen and (min-width: 425px) and (max-width: 767px){
    .product img{
        max-width: 30%;
        max-height: 230px;
        float: none;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
}

/*375 to 424*/
@media only screen and (min-width: 375px) and (max-width: 424px){
    .product img{
        max-width: 30%;
        max-height: 150px;
        float: none;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
}

/*320 to 374*/
@media only screen and (min-width: 320px) and (max-width: 374px){
    .product img{
        max-width: 30%;
        max-height: 150px;
        float: none;
        text-align: center;
        margin: 0 auto;
        display: block;
    }
}