$('.technology-all__img').each(function () {
var randomColor = Math.random() < 0.5 ? '#f8f8f8' : 'transparent'; // Randomly choose between two colors
$(this).css('background', randomColor);
});
$('.technology-all__img').each(function () {
var randomColor = Math.random() < 0.5 ? '#f8f8f8' : 'transparent'; // Randomly choose between two colors
$(this).css('background', randomColor);
});