/* Bootstrap-style columns */
.column {
  position: relative;
  float: left;
  min-height: 1px;
  width: 25%;
  padding-left: 4px;
  padding-right: 4px;
  
  /* Space between tiles */
  margin-top: 8px;
}

.col-span {
  width: 50%;
}

.my-sizer-element {
  width: 8.33333%;
}

/* default styles so shuffle doesn't have to set them (it will if they're missing) */
.my-shuffle {
  position: relative;
  overflow: hidden;
}

/* Ensure images take up the same space when they load */
/* https://vestride.github.io/Shuffle/images */
.aspect {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}

.aspect__inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.aspect--16x9 {
  padding-bottom: 56.25%;
}

.aspect--9x80 {
  padding-bottom: calc(112.5% + 8px);
}

.aspect--32x9 {
  padding-bottom: calc(28.5% - 3px);
}

.aspect__inner img {
  display: block;
  width: 100%;
  
  max-width: none;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
     border-radius: 10px;
}

figure {
  margin: 0;
  padding: 0;
}
.aspect__inner:hover .overlayBox{
    opacity: 1;
    top: 50%;
}
@media(max-width: 767px){
  .column{
    width: 50%;
  }
}
@media(max-width: 575px){
  .column{
    width: 100%;
  }
}