<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.masonry-gallery {
	position: relative;
	width: 100%;
	overflow: hidden;
	transition: all 0.5s ease 0s;
}

.img-wrapper-outer {
	overflow: hidden;
 	position: absolute;
 	opacity: 0;
 	transition: all 1s ease 0s;
}

.img-wrapper-inner {
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	transition: all 0.5s ease 0s;
}

.img-title {
	width: 100%;
    height: 40px;
    text-align: center;
    position: absolute;
    bottom: -40px;
    background-color: black;
    padding-top: 11px;
    color: lightgrey;
    transition: all 0.5s ease 0s;
    opacity: .7;
}
.img-wrapper-inner:hover .img-title, .img-wrapper-outer:hover .img-title {
	bottom: 0;
}

.img-title-top {
	width: 100%;
    height: 40px;
    text-align: center;
    position: absolute;
	top: -40px;
    padding-top: 11px;
    color: white;
    transition: all 0.5s ease 0s;
    opacity: .8;
    font-size: 20px;
}
.img-wrapper-inner:hover .img-title-top, .img-wrapper-outer:hover .img-title-top  {
	top: 0;
}

.img-desc-bottom {
	width: 100%;
    height: 40px;
    text-align: center;
    position: absolute;
    bottom: -40px;
    padding-top: 11px;
    color: white;
    transition: all 0.5s ease 0s;
    opacity: .8;
}
.img-wrapper-inner:hover .img-desc-bottom, .img-wrapper-outer:hover .img-desc-bottom {
	bottom: 0;
}

.img-title-line {
    left: -20px;
    text-align: center;
    position: absolute;
    top: 10px;
    color: white;
    transition: all 0.5s ease 0s;
    font-size: 20px;
    opacity: 0;
    cursor: pointer;
}
.img-line {
	position: absolute;
    border-top: 3px solid white;
    top: 85px;
    left: 7px;
    width: 70%;
/*     border-radius: 5px; */
    opacity: 0;
    cursor: pointer;
    transition: all 0.5s ease 0s;
}
.img-desc-line {
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: -10px;
    color: white;
    transition: all 0.5s ease 0s;
    font-size: 14px;
    opacity: 0;
    cursor: pointer;
}
</pre></body></html>