.lae-ig-grid {
  display: flex;
}
.lae-igp {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  background-image: linear-gradient(to left bottom, #000000, #121212, #1d1d1d, #282828, #333333);
}
.lae-igp::before {
  content: '';
  display: block;
  padding-top: 100%;
}
.lae-igp::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 20;
}
.lae-igp > .loader {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  padding: 0 16px;
  transform: translateY(-50%);
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 8px rgba(0,0,0,.4);
  z-index: 0;
}
.lae-igp > iframe {
  position: absolute;
  top: -55px;
  left: 0;
  width: 105%;
  overflow: hidden;
  height: calc(105% + 55px);
  max-width: none;
  z-index: 10;
  transition: opacity .2s ease-in-out;
}
.lae-igp > iframe + .loader {
  display: none;
}
.lae-igp > img {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform: scale(1.05);
  transition: opacity .2s ease-in-out;
}
.lae-igp:hover > iframe,
.lae-igp:hover > img,
.lae-igp:focus > iframe,
.lae-igp:focus > img {
  opacity: .8;
}