  @charset "utf-8";
/* CSS Document */

/*  Flex Gallery  */

.flex-box-gallery-wrapper {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
}

.flex-box-gallery-wrapper > a {
	display: flex;
	flex-direction: column;
	margin: 1.0rem;
}

.flex-box-gallery-image {
	display: flex;
	padding-top: 0.5rem;
	transition: all 0.1s ease-in;
}

.flex-box-gallery-wrapper > a:hover {
	text-decoration: none;
}

.flex-box-gallery-wrapper > a:hover .flex-box-gallery-image {
	padding-top: 0;
	padding-bottom: 0.5rem;
}

.flex-box-gallery-wrapper > a:hover .flex-box-gallery-image > img {
	box-shadow: 0 8px 6px -6px #333;
}

.flex-box-gallery-text {
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 0.75rem;
	margin-bottom: 0.5rem;
}

.flex-box-gallery-text > span {
	display: flex;
	color: #333;
}

.flex-box-gallery-text > span:first-child {
	font-style: italic;
}

.flex-box-gallery-text > span:last-child {
	font-weight: bold;
}