/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 19 2024 | 22:51:51 */
.bottom-slider-container {
	width: 100%;
	display: flex;
	overflow-x: scroll;
	pointer-events: none;
	scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
}
	
	.bottom-slider-container::-webkit-scrollbar { 
		width: 0;
		height: 0;
	}
	.bottom-slider-container img {
		width: calc(100%/6);
		height: auto;
		aspect-ratio: 1;
		object-fit: cover; 
	}

@media screen and (max-width: 1024px) { 
	.bottom-slider-container img {
		width: calc(100%/4);
	}
	
	.bottom-slider-container img.hide-tablet {
		display: none;
	}
}

@media screen and (max-width: 480px) { 
	.bottom-slider-container img {
		width: calc(100%/3);
	}
	
	.bottom-slider-container img.hide-mobile {
		display: none;
	}
}
