/* image gallery, list and layer, 10:36 PM 2022-06-21 */
DIV.img-gal{
	position:relative;
	margin:2em 0;			
}
DIV.img-gal UL,
DIV.img-gal UL>LI{
	list-style:none;
	margin:0;
	padding:0;	
}
DIV.img-gal UL{
	box-sizing:border-box;
	display:grid;
	grid-template-columns:repeat(5,1fr);
	grid-template-rows:auto;
	column-gap:20px;
	row-gap:20px;
	justify-items:stretch;
	align-items:start;
}
@media (min-width:0px) and (max-width:500px){
	DIV.img-gal UL{
		grid-template-columns:repeat(2,1fr);
		column-gap:10px;
		row-gap:10px;		
	}
}
@media (min-width:501px) and (max-width:900px){
	DIV.img-gal UL{
		grid-template-columns:repeat(3,1fr);
	}
}
@media (min-width:901px) and (max-width:1200px){
	DIV.img-gal UL{
		grid-template-columns:repeat(4,1fr);
	}
}

DIV.img-gal UL LI{
	box-sizing:border-box;
	position:relative;
	cursor:pointer;
	transform:perspective(300px);
	transform-style:preserve-3d;
	box-shadow:none;
	border-radius:1em;
}
DIV.img-gal UL LI .img-gal-data{display:none;}
DIV.img-gal UL *{transition:all 300ms ease;}
DIV.img-gal UL LI IMG{
	aspect-ratio:1/1;
	border-radius:1em;
}
DIV.img-gal UL LI DIV{
	position:relative;
	border-radius:1em;
	overflow:hidden;	
	z-index:1;
	background:#FFFFFF url('/assets/images/ui/loading-bar-001.gif') no-repeat center center;
}
DIV.img-gal UL LI DIV:after{
	content:'';
	position:absolute;
	top:-100%;
	left:-100%;
	width:200%;
	height:100%;
	background:linear-gradient(0deg,rgba(255,255,255,0) 0%,rgba(255,255,255,1) 30%,rgba(255,255,255,1) 50%,rgba(255,255,255,0) 100%);
	z-index:102;
	transform:rotate(-35deg);
	transition:all 300ms ease;
	mix-blend-mode:overlay;
}
DIV.img-gal UL LI:hover{
	z-index:100;
	transform:scale(1.4) !important;
	box-shadow:rgba(1,28,38,.8) 0 0 50px 0;
}
DIV.img-gal UL LI:hover DIV{
	transform:rotateY(0deg) rotateX(0deg);
}
DIV.img-gal UL LI:hover DIV:after{top:100%;left:0%;}
DIV.img-gal UL LI:hover DIV IMG{filter:brightness(1.2);}


/*8:16 PM 2024-01-29*/
.composition .layer.image-gallery .section{background:#FFFFFF url('/assets/images/backgrounds/composition-l-001.png') no-repeat top left;}
.composition .layer.image-gallery .l-ui.default{display:none;}
.composition .layer.image-gallery .l-ui .btn-container{float:right;}
.composition .layer.image-gallery .img-gal-image{position:relative;}
.composition .layer.image-gallery .img-gal-image IMG{
	aspect-ratio:1/1;
	position:absolute;
	top:0;
	z-index:2;
	border-radius:1em;
}
.composition .layer.image-gallery .img-gal-image IMG.placeholder{position:static;}
.composition .layer.image-gallery .img-gal-image DIV.loading{
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:1;
	background:transparent url('/assets/images/ui/loading-bar-001.gif') no-repeat center center;
}
@media only screen{
	.composition .layer.image-gallery .xs-columns.x2>.xs-column:nth-child(2n){margin-top:2em;}
}
@media (min-width:751px){
	.xs-columns.x2{grid-template-columns:61% 31%;}
}
.composition .layer.image-gallery .xs-columns.x2>.xs-column P.count{}
.composition .layer.image-gallery .xs-columns.x2>.xs-column P.date{margin-top:2em;}
.composition .layer.image-gallery .xs-columns.x2>.xs-column P.date SPAN{
	background-color:#011C26;
	display:block;
	padding:.3em .6em;
	color:#FFFFFF;
	border-radius:.5em;
	line-height:1em;
}
.composition .layer.image-gallery .xs-columns.x2>.xs-column P.count{
	font-style:italic;
	opacity:.8;
}