/*hover image 2 ------------------------*/
.hover-info i {
    background: #d41e82 none repeat scroll 0 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    color: #ffffff;
    font-size: 30px;
    height: 50px;
    line-height: 50px;
    position: relative;
    text-align: center;
    width: 50px;
    z-index: 1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    margin-bottom: 25px;
}
.hover-info i::after {
    border: 2px solid #d41e82;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    content: "";
    height: 60px;
    left: -5px;
    position: absolute;
    top: -5px;
    width: 60px;
    z-index: -1;
    transition: all 0.35s ease-in-out;
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
}
.hover-box{
    margin:0 0 10px 0;
    overflow: hidden;
}
.hover-box .hover-img{
    position: relative;
    overflow: hidden;
}
.hover-box .hover-img img{
    width:100%;
    height:auto;
}
.hover-box .hover-img .over-layer{
    position: absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    padding:40% 10%;
    text-align: center;
    background:rgba(0,0,0,0.6);
    transform: rotateY(90deg);
    transition: all 0.50s ease 0.4s;
}
.hover-box:hover .over-layer{
    transform: rotateY(0deg);
}
.hover-box .hover-img::before{
    content: "";
    position: absolute;
    width:100%;
    height:100%;
    left:0;
    top:0;
    opacity:1;
    border:2px solid #fff;
    transform: scale(0.9,0.9);
    transition: all 0.50s ease 0s;
}
.hover-box:hover .hover-img::before{
    transform: scale(1,1);
    opacity:0;
}
.hover-box .hover-img .over-layer h3{
    color:#fff;
    margin:0 0 10px;
}
.hover-box .hover-img .over-layer .hover-info{
    display:inline-block;
    padding:10px;
    color:#fff;
    margin:0 0 10px;
}
.hover-box .hover-img .over-layer .hover-info >i{
    margin:0 5px;
    font-size:14px;
}
.hover-box .hover-img .over-layer .hover-info >span{
    text-transform:uppercase;
    font-size:14px;
}
.hover-box .hover-img .over-layer .links{
    margin:0;
    padding:0;
}
.hover-box .hover-img .over-layer .links li{
    list-style:none;
    display:inline-block;
    margin:0 5px ;
}
.hover-box .hover-img .over-layer .links li a{
    color:#fff;
    width:35px;
    height:35px;
    display: block;
    line-height:35px;
    text-align: center;
    background:#00BFF3;
    border-radius:5px;
}
.hover-box .hover-img .over-layer .links li a:hover{
    text-decoration:none;
}
/*hover image 2 ------------------------*/