.he-style2 .he-box{
    position: relative;
    text-align: center;
    color: #fff;
    overflow: hidden;
}
.he-style2 .box-img{
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: translate3d(0px, 0px, 0px);
    transition: all 0.5s ease-in-out 0s;
}
.he-style2 .box-img img{
    width: 100%;
    height: auto;
}
.he-style2 .he-content{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    background: #354b60;
    padding: 0 20px;
    transform: translate3d(0px, 100%, 0px);
    transition: all 0.5s ease-in-out 0s;
}
.he-style2 .he-title{
    margin-top: 50px;
    color: #fff;
    text-transform: capitalize;
}
.he-style2 .he-description{
    font-size: 15px;
}
.he-style2 .he-title:after,
.he-style2 .he-description:after{
    content: "";
    display: block;
    width: 80%;
    border-bottom: 1px solid #fff;
    margin: 0 auto;
    padding-top: 10px;
}
.he-style2  .he-link{
    position: relative;
    top:40%;
    display: inline-block;
    padding: 7px 12px;
    background: #a264bb;
    color:#fff;
    margin-right: 10px;
}
.he-style2  .he-link:hover{
    color:#A264BB;
    background: #fff;
}
.he-style2  .he-option{
    position: absolute;
    top:25%;
    left:5%;
    width:90%;
    height:90%;
    text-align: center;
    transform:scale(0);
    transition: all 0.5s ease-in-out 0s;
}
.he-style2  .he-box:hover .he-option{
    transform:scale(1);
}
.he-style2 .he-box:hover .box-img{
    transform: translate3d(0px, -100%, 0px);
}
.he-style2 .he-box:hover .he-content{
    transform: translate3d(0px, 0px, 0px);
}

@media only screen and (max-width: 990px){
    .he-style2 .he-box{
        margin-bottom: 20px;
    }
}