.he-style13 .he-box{
    border:4px solid #fff;
    box-shadow:0 0 4px grey;
    position:relative;
}
.he-style13 .he-box:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0) linear-gradient(45deg, #141414 0%, #691100 40%, #1b1b1b 100%);
    opacity: 0.3;
    transition:all 0.5s ease;
}
.he-style13 .he-box img{
    width:100%;
    height: auto;
}
.he-style13 .he-box .he-box-content{
    background: rgba(0,0,0,0);
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 38px;
    transition: all 0.35s ease 0s;
}
.he-style13 .he-box:hover .he-box-content{
    background: rgba(0,0,0,0.5);
}
.he-style13 .he-box .he-box-content:after{
    content: "";
    border: 7px solid #fff;
    position: absolute;
    top:21px;
    left: 20px;
    right: 30px;
    height: 35%;
    transition: all 0.35s ease 0s;
}
.he-style13 .he-box:hover .he-box-content:after{
    top:60%;
}
.he-style13 .he-box .he-title{
    color:#fff;
    font-size:20px;
    font-weight: bolder;
    text-transform:uppercase;
}
.he-style13 .he-box .he-description{
    position: relative;
    top:5%;
    color:#fff;
    opacity:0;
    transition: all 0.35s ease 0s;
}
.he-style13 .he-box:hover .he-description{
    top:55%;
    opacity:1;
}
.he-style13 .he-box:hover .he-links{
    left: 35%;
    bottom: 30px;
    text-align: center;
    opacity: 1;
}
.he-style13 .he-box .he-links{
    padding:0;
    margin:0;
    opacity: 0;
    position: absolute;
}
.he-style13 .he-box .he-links li{
    display:inline-block;
    list-style:none;
    margin-right:15px;
}
.he-style13 .he-box .he-links li a{
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    border-radius:10%;
    color:#e74c3c;
    background:#fff;
}
.he-style13 .he-box .he-links li a i{
    transform: scale(1,1);
    transition: transform 0.50s ease;
}
.he-style13 .he-box .he-links li a:hover i{
    transform:scale(1.2,1.2);
}
@media only screen and (max-width: 990px) {
    .he-style13 .he-box{
        margin-bottom:15px;
    }
}
@media only screen and (max-width: 479px) {
    .he-style13 .he-box .he-title{ font-size: 15px;}
    .he-style13 .he-box .he-description{ font-size: 13px; }
    .he-style13 .he-box:hover .he-description{ top:48%; }
}