<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.grup-item {
	position: relative;
	max-width: 360px;
	margin: 0 auto;
	overflow: hidden;
}
.grup-item img {
	display: block;
}
.grup-item div {
	position: absolute;
	width: 100%;
	height: 50px;
	left: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, .75);
	color: white;
	text-align: center;
	box-sizing: border-box;
	padding-top: 10px;
	font-weight: 300;
	font-size: 24px;
	
    -webkit-transition: height .3s ease-in-out;
    transition: height .3s ease-in-out;
}
.grup-item:hover div {
	height: 75px;
}
.grup-item:hover {
	-webkit-box-shadow: 0px 0px 2px 0px rgba(50, 50, 50, 0.75);
	-moz-box-shadow:    0px 0px 2px 0px rgba(50, 50, 50, 0.75);
	box-shadow:         0px 0px 2px 0px rgba(50, 50, 50, 0.75);
}
.grup-item img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
.grup-item:hover img {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}
</pre></body></html>