.he-style9 .he-box{
    position: relative;
    overflow: hidden;
    border:3px solid #e74c3c;
}
.he-style9 .he-box .box-img img{
    width:100%;
    height: auto;
    transform:scale(1,1);
    transition:all 0.50s ease 0s;
}
.he-style9 .he-box:hover .box-img img{
    transform:scale(1.1,1.1);
}
.he-style9 .he-box .box-img .he-over-layer{
    width:100%;
    height:100%;
    display: block;
    opacity:0;
    position: absolute;
    top:0;
    background:rgba(234, 97, 83,0.8);
    transition:all 0.50s ease 0s;
}
.he-style9 .he-box:hover .he-over-layer{
    opacity:1;
}
.he-style9 .he-box .box-content{
    position: absolute;
    top:0;
    width:100%;
    height:100%;
    opacity:0;
    padding:5%;
    text-align:center;
    transition: all 0.50s ease 0s;
}
.he-style9 .he-box:hover .box-content{
    opacity:1;
}

.he-style9 .he-box:hover .he-links{
    left: 35%;
    bottom: 30%;
    text-align: center;
}
.he-style9 .he-box .he-title{
    color:#fff;
    font-size:22px;
    margin-bottom:15px;
    text-transform:capitalize;
}
.he-style9 .he-box .he-description{
    color:#fff;
    font-size:15px;
    margin-bottom:20px;
}
.he-style9 .he-box .he-links{
    padding:0;
    margin:0;
    position: absolute;
}
.he-style9 .he-box .he-links li{
    display:inline-block;
    list-style:none;
    margin-right:15px;
}
.he-style9 .he-box .he-links li a{
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    border-radius:10%;
    color:#e74c3c;
    background:#fff;
}
.he-style9 .he-box .he-links li a i{
    transform: scale(1,1);
    transition: transform 0.50s ease;
}
.he-style9 .he-box .he-links li a:hover i{
    transform:scale(1.2,1.2);
}
@media only screen and (max-width: 990px) {
    .he-style9 .he-box{
        margin-bottom: 20px;
    }
}
@media only screen and (max-width: 479px) {
    .he-style9 .he-box .he-title{
        margin-top: 0;
    }
    .he-style9 .he-box .he-description{
        margin-bottom: 10px;
    }
}