.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 var(--transition-time);
}

/* .contentSimpleGallery .item .text { bottom: 0; } */

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

}
.contentSimpleGallery {
  margin-top: 50px;
  padding: 0 5px;
}

.contentSimpleGallery .item {
  background-color: transparent;
  padding: 1rem;
  box-shadow: 6px 6px 18px rgba(var(--shadow-color-rgb), 0.35);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;  
}
.contentSimpleGallery .item{
position: relative;
overflow: hidden;
}

.contentSimpleGallery .item img{
display: inline;
max-width: 100%;
transition: transform 0.3s ease;
}

.contentSimpleGallery .item::before{
content: "";
position: absolute;
inset: 0;
background: var(--logo-color-1);
opacity: 0;
transition: opacity 0.3s ease;
z-index: 1;
pointer-events: none;
}

.contentSimpleGallery .item:hover img{
transform: scale(1.1);
}

.contentSimpleGallery .item:hover::before{
opacity: 0.2;
}

