.he-style5 .he-box{
    border:5px solid #e8c575;
    border-radius:50%;
    position:relative;
    overflow: hidden;
}
.he-style5 .he-box .box-img{
    transform: rotateX(0deg);
    transition:all 0.40s linear 0s;
}
.he-style5 .he-box:hover .box-img{
    transform: rotateX(180deg);
}
.he-style5 .he-box .box-img img{
    width:100%;
    height: auto;
    border-radius:50%;
}
.he-style5 .he-box .he-content{
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    padding:5%;
    border-radius:50%;
    text-align:center;
    z-index:-10;
    background:#e67e22;
    transform:rotateX(-180deg);
    transition:transform 0.40s linear;
}
.he-style5 .he-box:hover .he-content{
    transform:rotateX(0deg);
    z-index:0;
}
.he-style5 .he-box .he-title{
    color: #fff;
    font-size: 20px;
    margin: 32% 0 0;
    text-transform: capitalize;
}
.he-style5 .he-box .he-description{
    color:#fff;
    line-height:23px;
}
.box .title:after,
.he-style5 .he-box .he-description:after{
    content: "";
    border-bottom: 1px solid #fff;
    display: block;
    margin:10px auto;
    width: 57%;
}
.he-style5 .he-link{
    position: relative;
    top:40%;
    display: inline-block;
    padding: 7px 12px;
    background: #333333;
    color:#fff;
    margin-right: 10px;
}
.he-style5 .he-link:hover{
    color:#333333;
    background: #fff;
}
.he-style5 .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-style5 .he-box:hover .he-option{
    transform:scale(1);
}
@media only screen and (max-width: 990px) {
    .he-style5 .he-box{
        margin-bottom:20px;
    }
}