.holidays-mosaic {
	padding: 2rem 0;
	background: rgba(0,141,210, .05);	
}

.holidays-mosaic .mosaic-item {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	overflow: hidden;
}

.holidays-mosaic .mosaic-item::before {
	display: block;
	content: "";
	padding-top: 100%;
}

.holidays-mosaic .mosaic-item .item-image {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	object-fit: cover;
	z-index: 1;
}

.holidays-mosaic .mosaic-item .item-name {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border: 0;
	background-color: rgba(0,0,0,0.25);
	padding: 1rem;
	transition: all 0.2s ease-in-out;	
	z-index: 10;
}

.holidays-mosaic .mosaic-item .item-name:hover {
	background: rgba(51, 122, 183, .9);
}

.holidays-mosaic .mosaic-item .item-name span{
	font-size: 1.5rem;
	font-weight: 600;
	text-align: center;
	color: rgba(255,255,255,.9);
}