/*media query*/
/*less than 575px*/
@media only screen and (max-width:480px) 
{ 
.product_outer .product_img{
    margin-bottom: 5px;
    width: 100%;
    height: 400px;
    object-fit: contain;
    object-position: bottom;
}

.product_outer_mst{
  margin-bottom: 25px;
}

 

}
@media only screen and (max-width:577px)  and (min-width:480px)
{  
 .product_outer .product_img{
    margin-bottom: 5px;
    width: 100%;
    height: 434px;
    object-fit: contain;
    object-position: bottom;
}

.product_outer_mst{
  margin-bottom: 25px;
}


  
 

}

/*less than 767px*/
@media only screen and (max-width:768px) and (min-width:577px)
{  

.product_outer .product_img{
    margin-bottom: 5px;
    width: 100%;
    height: 434px;
    object-fit: contain;
    object-position: bottom;
}

  
}

/*less then 992px and less than 768*/
@media only screen and (max-width:993px) and (min-width:768px)
{  

  
}

/*less then 1201 and greater than 993*/
@media only screen and (max-width:1201px) and (min-width: 993px)
{ 

  

}

/*less then 1400px and greater than 993*/
@media only screen and (max-width:1400px) and (min-width:1201)
{

}
