.he-style1 .he-box{
    position: relative;
    text-align: center;
    color:#fff;
}
.he-style1 .box-img:before{
    content: "";
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, 0.6) inset, 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease-in-out 0s;
}
.he-style1 .box-img img{
    width: 100%;
    height: auto;
}
.he-style1 .he-content{
    position: absolute;
    top:0;
    left:0;
    width: 100%;
    height:100%;
    padding: 0 30px;
    background: rgba(160, 97, 186, 0.9);
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.6) inset, 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: all 0.8s ease-in-out 0s;
}
.he-style1 .he-content > .he-title{
    font-size: 22px;
    text-transform: uppercase;
    color: #fff;
    margin-top: 50px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.he-style1 .he-content > .he-description{
    font-size: 13px;
    color: #fff;
}
.he-link{
    position: relative;
    top:40%;
    display: inline-block;
    padding: 7px 12px;
    background: #a264bb;
    color:#fff;
    margin-right: 10px;
}
.he-link:hover{
    color:#A264BB;
    background: #fff;
}
.he-option{
    position: absolute;
    top:15%;
    left:5%;
    width:90%;
    height:90%;
    text-align: center;
    transform:scale(0);
    transition: all 0.5s ease-in-out 0s;
}
.he-box:hover .he-option{
    transform:scale(1);
}
.he-style1 .he-box:hover .he-content{
    opacity: 1;
}
@media only screen and (max-width: 990px){
    .he-style1 .he-box{
        margin-bottom: 20px;
    }
}