.ig-images-container{
   width:100%;
   display:flex;
   justify-content:space-evenly;
   flex-wrap:wrap;
}
.ig-image-wrapper{
   display:block;
   overflow: hidden;
   position: relative;
   width:calc(99%/4);
   margin-bottom:5px;
}
.ig-image-wrapper img{
   max-height:300px;
   max-width:300px;
   height:100%;
   width:100%;
   object-fit: cover;
}
.ig-image-wrapper p{
   background-color: rgba(0,0,0,0.5);
   position: absolute;
   top: 0;
   margin:0;
   padding:8px;
   color:white;
   font-size:12px;
   line-height:normal;
   -webkit-font-smoothing: antialiased;
}
.ig-image-wrapper p{
   display:none;
}
.ig-image-wrapper:hover .ig-caption{
   display:block;
}