
.ih-item.square {
    position: relative;
    
  
}
.ih-item.square .info {
    position: absolute;
    
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.ih-item.square .img {
    opacity: 1;
    -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    
}

.ih-item.square .info {
    
    visibility: hidden;
    -webkit-transition: all 0.3s 0.3s ease-in-out;
    -moz-transition: all 0.3s 3s ease-in-out;
    transition: all 0.3s 0.3s ease-in-out;
    
}


.ih-item.square a:hover .img {
    -webkit-transform: rotate(720deg) scale(0);
    -moz-transform: rotate(720deg) scale(0);
    -ms-transform: rotate(720deg) scale(0);
    -o-transform: rotate(720deg) scale(0);
    transform: rotate(720deg) scale(0);
    opacity: 0;
}

.ih-item.square a:hover .info {
	-webkit-transform: rotate(360deg) scale(1);
    -moz-transform: rotate(360deg) scale(1);
    -ms-transform: rotate(360deg) scale(1);
    -o-transform: rotate(360deg) scale(1);
    transform: rotate(360deg) scale(1);
     
    visibility: visible;
    
}





