.he-style10 .he-box{
    position: relative;
    overflow: hidden;
}
.he-style10 .he-box .box-img{
    border:4px solid #cecdcd;
    transform:scale(1,1);
    opacity:1;
    transition: all 0.30s ease 0s;
}
.he-style10 .he-box .box-img img{
    width:100%;
    height: auto;
}
.he-style10 .he-box:hover .box-img{
    opacity:0;
    transform:scale(2,2);
}
.he-style10 .he-box .he-box-content{
    position: absolute;
    top:0;
    width:100%;
    height:100%;
    opacity:0;
    padding: 20% 4%;
    text-decoration:none;
    text-align:center;
    transform:scale(0.5,0.5);
    border:4px solid #cb95e1;
    background:#a56cbe;
    transition: all 0.30s ease 0s;
}
.he-style10 .he-box:hover .he-box-content{
    transform:scale(1,1);
    opacity:1;
}
.he-style10 .he-box .he-title{
    margin:0 0 1% 0;
    font-size:20px;
    color:#fff;
    text-transform:uppercase;
}
.he-style10 .he-box .he-title:after{
    content: "";
    display: block;
    width:80%;
    margin: 10% auto 3%;
    border-bottom:1px solid #fff;
}
.he-style10 .he-box .he-description{
    color:#fff;
    line-height:23px;
}
.he-style10 .he-box:hover .he-links{
    left: 35%;
    bottom: 30%;
    text-align: center;
}
.he-style10 .he-box .he-links{
    padding:0;
    margin:0;
    position: absolute;
}
.he-style10 .he-box .he-links li{
    display:inline-block;
    list-style:none;
    margin-right:15px;
}
.he-style10 .he-box .he-links li a{
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    border-radius:10%;
    color:#e74c3c;
    background:#fff;
}
.he-style10 .he-box .he-links li a i{
    transform: scale(1,1);
    transition: transform 0.50s ease;
}
.he-style10 .he-box .he-links li a:hover i{
    transform:scale(1.2,1.2);
}
@media only screen and (max-width: 990px) {
    .he-style10 .he-box{
        margin-bottom:20px;
    }
}