
/* .car-img{
  max-height:200px;
} */
 /* style="max-height:180px;" */
 /* Styles for screens smaller than 600px (e.g., smartphones) */
 @media only screen and (max-width: 600px) {
   /* Your CSS styles for small screens go here */
    .car-img-div{
       max-height:100%;
     }
 }

 /* Styles for screens between 601px and 900px (e.g., tablets) */
 @media only screen and (min-width: 601px) and (max-width: 900px) {
   /* Your CSS styles for medium-sized screens go here */
   .car-img-div{
     max-height:267px;
     overflow: hidden;
   }
 }

 /* Styles for screens between 901px and 1200px (e.g., larger tablets) */
 @media only screen and (min-width: 901px) and (max-width: 1200px) {
   /* Your CSS styles for larger tablets go here */
   .car-img-div{
     max-height:267px;
     overflow: hidden;
   }
 }

 /* Styles for screens larger than 1200px (e.g., desktops) */
 @media only screen and (min-width: 1201px) {
   /* Your CSS styles for desktop screens go here */
   .car-img-div{
     max-height:267px;
     overflow: hidden;
   }
 }
