.he-style16 .he-box{
    position: relative;
    overflow: hidden;
}
.he-style16 .he-box .box-img{
    border:4px solid #cecdcd;
    opacity:1;
    transform:translateY(0);
    transition: all 0.50s ease 0s;
}
.he-style16 .he-box:hover .box-img{
    opacity:0;
    transform:translateY(-100%);
}
.he-style16 .he-box .box-img img{
    width:100%;
    height: auto;
}
.he-style16 .he-box .he-box-content{
    display: block;
    position: absolute;
    top:0;
    width:100%;
    height:100%;
    padding: 20% 4%;
    text-align:center;
    border:4px solid #76c3f9;
    background:#3498db;
    opacity:0;
    transform:scale(0.1,0.1);
    transition: all 0.50s ease 0s;
}
.he-style16 .he-box:hover .he-box-content{
    transform:scale(1,1);
    opacity:1;
}
.he-style16 .he-box .he-title{
    margin-top: 0;
    padding-bottom: 15px;
    font-size:20px;
    color:#fff;
    border-bottom: 1px solid #fff;
    text-transform:uppercase;
}
.he-style16 .he-box .he-description{
    color:#fff;
    line-height:23px;
}
.he-style16 .he-box:hover .he-links{
    left: 35%;
    bottom: 25%;
    text-align: center;
    opacity: 1;
    z-index: 999;
}
.he-style16 .he-box .he-links{
    padding:0;
    margin:0;
    opacity: 0;
    position: absolute;
}
.he-style16 .he-box .he-links li{
    display:inline-block;
    list-style:none;
    margin-right:15px;
}
.he-style16 .he-box .he-links li a{
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    border-radius:10%;
    color:#e74c3c;
    background:#fff;
}
.he-style16 .he-box .he-links li a i{
    transform: scale(1,1);
    transition: transform 0.50s ease;
}
.he-style16 .he-box .he-links li a:hover i{
    transform:scale(1.2,1.2);
}
@media only screen and (max-width: 990px) {
    .he-style16 .he-box{
        margin-bottom:20px;
    }
    .he-style16 .he-box .he-box-content{
        padding: 15% 4%;
    }
}
@media only screen and (max-width: 480px) {
    .he-style16 .he-box .he-box-content{
        padding: 10% 4%;
    }
}