.contentSimpleGallery .item {
  background-color: unset;
}

.contentSimpleGallery .item .text {
	position: absolute;
	display: flex;
	flex-direction: column;
  	justify-content: center;
	bottom: -110%; 
	background-color: rgba( var(--logo-color-1-rgb), 0.9); 
	width: 100%;
	height: 100%;
	padding: 5px;
	transition: bottom calc( var(--transition-time) * 4);
}
.contentSimpleGallery .item:hover .text { bottom: 0; }

.contentSimpleGallery .item .text .title, .contentSimpleGallery .item .text p { 
	color: var(--font-color-light); 
  	hyphens: none;

}
.contentSimpleGallery {
margin-top: 50px;
}

.contentSimpleGallery .item {
  box-shadow: 6px 6px 18px rgba(var(--shadow-color-rgb), 0.35);
  
}

.contentSimpleGallery .item img { position: relative; z-index: -1; }
