@charset "utf-8";

main {
	opacity: 1 !important;
}

section.gallery {
	margin: 50px 0 0;
}

section.gallery img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.gallery .col {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
}
section.gallery .col + .col {
	margin-top: 6px;
}

section.gallery .col > span {
	width: calc(50% - 3px);
}
section.gallery .col .row {
	display: flex;
	flex-direction: column;
	width: calc(50% - 3px);
}
section.gallery .col .row span + span {
	margin-top: 6px;
}

section.gallery .col.full > span {
	width: 100%;
}






section.gallery span {
	position: relative;
	overflow: hidden;
	display: block;
}
section.gallery span img {
	opacity: 0;
	transform: scale(1.1);
	transition: all 1500ms ease-out;
}
section.gallery span.show img {
	opacity: 1;
	transform: scale(1.0);
}




























































