@charset "UTF-8";
/* CSS Document */
* {
    box-sizing: border-box;
}

/* 5 columns, percentage width
.grid-item,
.grid-sizer {
  width: 33.33333333%;
} */
.grid {
	z-index:3;
}
.grid:after {
  content: '';
  display: block;
  clear: both;
}
.grid-item,
.grid-sizer {
  width: 25%;
}
.grid-item {
	position:relative;
	overflow:hidden;
  	float: left;
	width:25%;
	text-align:center;
	padding-left:13px;
	padding-right:12px;
	margin-bottom:25px;
	-webkit-filter: drop-shadow(50px 50px 60px #000000a6);
    filter: drop-shadow(60px 85px 50px #000000a6);
}
.grid-item .img-responsive {
	display:inline;	
	width:100%;
	height:auto;
}
.grid-item--width2 { width: 50% }


.grid-item .image {
	position:relative;
	overflow:hidden;
	height: 0;
	padding-bottom:100%;	
}
.grid-item .image>img {
	position: absolute;
    margin: auto;
    display: block;
    min-height: 100%;
    min-width: 100%;
    top: -100%;
    right: -100%;
    bottom: -100%;
    left: -100%;
}
.grid-item .image .pic_frame {
	position:absolute;
	width:100%;
	height:100%;	
}
