.he-style20 .he-box{
    position: relative;
    overflow: hidden;
    color: #fff;
    font-size: 16px;
    box-shadow:0 0 5px #bebebe;
    transform: translateZ(0);
    background: #5d4157;
    background: linear-gradient(to left, #5d4157 , #a8caba);
}
.he-style20 .he-box img{
    width: 100%;
    height: auto;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
    -webkit-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    transition: all 0.35s ease-in;
}
.he-style20 .he-box:hover img{
    -webkit-animation: box 1s linear;
    animation: box 1s linear;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
.he-style20 .he-box .he-box-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.he-style20 .he-box .he-box-content h4{
    font-size: 1.8em;
    font-weight: 900;
    padding: 0px 0 20px 0px;
    margin: 0 0 0 20px;
    text-transform: capitalize;
    -webkit-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    transform-origin: 0 100%;
    -webkit-transform: rotate(57deg);
    transform: rotate(57deg);
}
.he-style20 .he-box .he-box-content .description{
    display: none;
}
.he-style20 .he-box .he-read{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
@-webkit-keyframes box {
    32% {
        -webkit-transform: rotate(72deg);
        transform: rotate(72deg);
    }
    50% {
        -webkit-transform: rotate(50deg);
        transform: rotate(50deg);
    }
    70% {
        -webkit-transform: rotate(58deg);
        transform: rotate(58deg);
    }
    85% {
        -webkit-transform: rotate(56deg);
        transform: rotate(56deg);
    }
    100% {
        -webkit-transform: rotate(57deg);
        transform: rotate(57deg);
    }
}
@keyframes box {
    32% {
        -webkit-transform: rotate(72deg);
        transform: rotate(72deg);
    }
    50% {
        -webkit-transform: rotate(50deg);
        transform: rotate(50deg);
    }
    70% {
        -webkit-transform: rotate(58deg);
        transform: rotate(58deg);
    }
    85% {
        -webkit-transform: rotate(56deg);
        transform: rotate(56deg);
    }
    100% {
        -webkit-transform: rotate(57deg);
        transform: rotate(57deg);
    }
}
.he-style20 .he-box:hover .he-links{
    left: 50%;
    bottom: 25%;
    text-align: center;
}
.he-style20 .he-box .he-links{
    padding:0;
    margin:0;
    position: absolute;
}
.he-style20 .he-box .he-links li{
    display:inline-block;
    list-style:none;
    margin-right:15px;
}
.he-style20 .he-box .he-links li a{
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    border-radius:10%;
    color:#e74c3c;
    background:#fff;
}
.he-style20 .he-box .he-links li a i{
    transform: scale(1,1);
    transition: transform 0.50s ease;
}
.he-style20 .he-box .he-links li a:hover i{
    transform:scale(1.2,1.2);
}
@media only screen and (max-width: 990px){
    .he-style20 .he-box{
        margin-bottom: 20px;
    }
}