
.aninstagramfeed-item {
 float: left;
 overflow: hidden;
 padding-right: 1px;
}
.aninstagramfeed-img {
 position: relative;
}
.aninstagramfeed-info {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background-color: #000;
    opacity: 0;
    transition: all .5s;
}
.aninstagramfeed-info-block {
    position: absolute;
    top: 50%;
    left: calc(50% - 25px);
    transform: translate(0,-50%) scale(0);
    display: inline-block;
    width: 50px;
    height: 50px;
    background: url(../img/insta.png) no-repeat center center;
    transition: all .3s .1s;
}
.aninstagramfeed-item:hover .aninstagramfeed-info {
  opacity: .7;
}
.aninstagramfeed-item:hover .aninstagramfeed-info-block {
    transform: translate(0,-50%) scale(1);
}

