@charset "UTF-8";
.image_small {
	    -webkit-filter: opacity(95%) brightness(90%);
    filter: opacity(95%) brightness(90%);
}
.image_large {
	display: none;
	    -webkit-filter: opacity(95%) brightness(90%);
    filter: opacity(95%) brightness(90%);
}
.image_gradient {
	width: 100%;
	height: 40%;
	position: absolute;
	bottom: 0;
	z-index: 5;
	background: rgb(0,0,0);
	background: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
}
.image_header {
	width: 100%;
	height: auto;
	position: relative;
	box-sizing: border-box;
	font-size: 0;
}
.image_header_text {
	position: absolute;
	color: white;
	z-index: 10;
	font-size: 35px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	pointer-events: none;
	text-align: center;
}
.back_text {
	position: absolute;
	color: white;
	z-index: 10;
	font-size: 20px;
	bottom: 20px;
	left: 20px;
}
.back_text:hover {
	text-decoration: underline;
}
.image_grid_container {
	width: 100%;
	padding: 5px 5px 0;
	box-sizing: border-box;
	font-size: 0;
	margin-left: auto;
}
.image_grid_wrap {
	width: 100%;
}
.image_row, .image_album {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
    -webkit-touch-callout:none;
	-moz-touch-callout:none;
	-ms-touch-callout:none;
	-o-touch-callout:none;
	-touch-callout:none;
}
.image_row_3 {
	width: 33.333%;
	display: inline-block;
	vertical-align: top;
}
.image_row_2 {
	width: 50%;
	display: inline-block;
	vertical-align: top;
}
.image_row_3_portrait {
	width: 23.8%;
	display: inline-block;
	vertical-align: top;
}
.image_row_3_landscape {
	width: 52.4%;
	display: inline-block;
	vertical-align: top;
}
.image_container {
	margin: 5px 5px 10px;
	overflow: hidden;
}
.image_container_row {
	margin: 5px 5px 5px;
	overflow: hidden;
}
.image_item {
	/* cursor: pointer; */
	overflow: hidden;
	/* -webkit-animation: fadein 2s; /* Safari, Chrome and Opera > 12.1 */
    /*   -moz-animation: fadein 2s; /* Firefox < 16 */
     /*   -ms-animation: fadein 2s; /* Internet Explorer */
      /*   -o-animation: fadein 2s; /* Opera < 12.1 */
        /*    animation: fadein 2s;
	-webkit-transition: all .6s;
	-moz-transition: all .6s;
	-o-transition: all .6s;
	-ms-transition: all .6s;
	transition: all .6s; */
}

.image_hover:hover {
	/*    -webkit-filter: opacity(95%) brightness(70%);
    filter: opacity(95%) brightness(70%);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1); */
}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}


@media screen and (max-width:758px){
	
	.image_grid_container {
		width: 100%;
		padding: 2.5px 2.5px 0;
	}
	.image_small {
		display: none;
	}
	.image_large {
		display: block;
	}
	.image_header_text {
		font-size: 25px;
	}
	.back_text {
		font-size: 10px;
		left: 10px;
		bottom: 10px;
	}
	.image_grid_wrap {
		padding: 0;
		box-sizing: border-box;
	}
	.image_container {
		margin: 2.5px 2.5px 5px;
	}
	.image_container_row {
		margin: 2.5px 2.5px 2.5px;
	}
}


