.instabox
{
    position: relative;
    overflow: hidden;
    color: #fff !important;
    text-decoration: none !important;
    display: block;
    margin-bottom: 30px;
    text-align: center;
}
.instabox div
{
    position: absolute;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;

    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.instabox img
{
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #83130F;
    background-position: center center;
    -webkit-filter: blur(0px) grayscale(0);
    -moz-filter: blur(0px) grayscale(0);
    -o-filter: blur(0px) grayscale(0);
    filter: blur(0px) grayscale(0);
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;

}
.instabox:hover img
{
    -webkit-filter: blur(8px) grayscale(1);
    -moz-filter: blur(8px) grayscale(1);
    -o-filter: blur(8px) grayscale(1);
    filter: blur(8px) grayscale(1);
}

.insta-bgcolor
{
    z-index: 1;
    background: #83130F;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
.w-100
{
    width: 100%;
}
.instabox:hover  .insta-bgcolor
{
    opacity: .7;
}


.insta-data, .insta-text
{
    z-index: 2;
    color: #fff;
    left: 20px;
    right: 20px;
}

.insta-data
{
    top: -100px;
    font-weight: bold;
    font-size: 15px;
}

.insta-text
{
    bottom: -100px;
    font-size: 12px;
}

.instabox:hover  .insta-data
{
    top: 6px;
}

.instabox:hover  .insta-text
{
    bottom: 10px;
}


.insta-comments, .insta-loves
{
    top: 50%;
    line-height: 40px;
    margin-top: -20px;
    font-size: 18px !important;
    z-index: 3;
}



.insta-loves
{
    left: -50%;
    right: 100%;
}
.insta-comments
{
    left: 100%;
    right: -50%;
}

.instabox:hover .insta-loves
{
    left: 0;
    right: 50%;
}
.instabox:hover .insta-comments
{
    left: 50%;
    right: 0;
}