/* DODGE Colors: Red: #d50000; Hover: #a40005; Dark Gray: #222; Med Gray: #636363; Black: #000; FONTS: font-family: 'Barlow Condensed', 'Roboto', sans-serif; 400,600,700; font-family: 'Roboto', sans-serif; 400,500,700;*/ /* INVENTORY RESEARCH MODELS*/ /* ** */ .available-models { display: grid; justify-content: center; background: #f5f5f5; padding-bottom: 20px; } .available-models .btn-good3 { width: 100%; margin-bottom: 11px; } .available-models .bx-viewport { height: auto !important; min-height: 370px !important; background: #f5f5f5; overflow: visible !important; } .available-models .bxslider2 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 35px; /* Adjust gap as needed */ padding: 0; margin: 0; list-style: none; width: auto !important; } .available-models .bxslider2 li { border-radius: 20px; padding: 15px; background: #ffffff; } .available-models .bx-controls { display: none; } .carousel-inner>.item>a>img { margin: auto; } /* Responsive adjustments */ @media (max-width: 1300px) { .available-models .bxslider2 { grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */ } } @media (max-width: 992px) { .available-models .bxslider2 { grid-template-columns: repeat(1, 1fr); /* 2 columns on tablets */ } } @media (max-width: 600px) { .available-models .bxslider2 { grid-template-columns: 1fr; /* 1 column on smaller screens */ gap: 20px; /* Reduce gap for smaller screens */ } .available-models .bxslider2 li { padding: 10px; /* Adjust padding for mobile */ } } /* /end INVENTORY MODELS*/
