
/**
 * Grid styles
 */
.grid__sizer,
.grid__item {
 position: relative;
 width: 32%;
 //min-width: 50rem;
}

@media screen and (min-width: 500px) and (max-width: 800px)
{
  .grid__sizer,
  .grid__item {
    position: relative;
    width: 47%;
  }
}

@media screen and (max-width: 500px)
{
  .grid__sizer,
  .grid__item {
    position: relative;
    width: 100%;
  }
}

.grid__item {
 margin-bottom: .9375rem;
 border-radius: 0.25rem;
 overflow: hidden;
}
img.masonry_thumb {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.featherlight-image {
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 90vh;
}
.featherlight .featherlight-content {
   overflow: hidden; 
}

.hower {
  display: block;
  opacity: 0; 
  position: absolute;
  text-align: center;
  overflow: hidden;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.3);
  color: #FFF;
  padding: 10px;
  text-shadow: 0 1px 0 #000; 
  transition: opacity 0.5s ease-in-out;
}
a:hover .hower { 
  opacity: 1;
}
.gallery {
  position: relative;
  display: block;
}






		

