

.products-container .box img {
	background-color: white;
}

.products-container .box {
	transform: perspective(0.2px) translateZ(0);
	transition-duration: 0.3s;
	transition-property: transform;
}
.products-container .box:hover {
	transform: perspective(0.2px) translateZ(0);
	transform: scale(1.1);
}