._contain {
  width:100%;
  overflow: hidden;
}
#gallery-grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  /* overflow: hidden; */
  width:calc(100% + 30px);
}
.gallery-wrap {
  width:calc(100% + 100px);
}

#gallery-grid,
#gallery-grid li {
  margin:0;
  padding:0;
  list-style-type:none;

}
#gallery-grid li {
  box-sizing: border-box;
  width:33.333333%;
  float:left;
  padding:0 30px 30px 0;
}
#gallery-grid .gallery-inner:after {
  content:'';
  padding-bottom:100%;
  display:block;
}
#gallery-grid .gallery-inner {
  cursor:pointer;
  position:relative;
  background-size: cover;
  background-position: center center;
}
#gallery-grid .gallery-inner:hover > .overwash {
  background-color:rgba(0,0,0,0.5);
}
.overwash {
  pointer-events: none;
  width:100%;
  height:100%;
  position:absolute;
  background-color:rgba(0,0,0,0);
  transition:all .25s ease-in-out;
  -moz-transition:all .25s ease-in-out;
  -webkit-transition:all .25s ease-in-out;
}




@media screen and (max-width: 800px) {
  #gallery-grid li {
    width:100%;
    padding-bottom:15px;
  }
}





/*  */
