<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.crazy-grid {
	margin: 0 ;
	padding-top: 0
}


.crazy-grid .grid-sizer {
	width: calc(33.3333% / 2);
	margin-bottom: 30px
}
.crazy-grid__box {
	float: left;
	width: 33.3333%;
	padding: 15px
}

.crazy-grid__box--half {
	width: calc(33.3333% / 2)
}

.crazy-grid__box img {
	width: 100%
}
.crazy-grid__box a {
	overflow: hidden;
	display: block
}
.crazy-grid__box a img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}
.crazy-grid__box a:after {
	content: '';
	background: #FF674D;
	opacity: 0.6;
	position: absolute;
	z-index: 2;
	width: calc(100% - 30px);
	height: 0;
	bottom: 15px;
	left: 15px;
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out
}
.crazy-grid__box a:before {
	content: none;
	position: absolute;
	z-index: 3;
	right: 40px;
	bottom: 30px;
	opacity: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease
}
.crazy-grid__box a:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1)
}
.crazy-grid__box a:hover:after {
	height: calc(100% - 30px)
}
.crazy-grid__box a:hover:before {
	opacity: 1
}

</pre></body></html>