.boxthumb{
    position: relative;
    perspective: 1000px;
	margin:8px;
}
.boxthumb .box-img{
    transform: rotateY(0);
    transition: all 0.50s ease-in-out 0s;
	border:1px solid #e5e5e5;
	padding:5px;
	background:rgba(255,255,255,0.75);
}
.boxthumb:hover .box-img{
    transform: rotateY(-90deg);
}
.boxthumb .box-img img{
    width: 100%;
    height: auto
}
.boxthumb .box-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 15px;
    text-align: center;
    background: rgba(0,128,255,0.7);
    transform: rotateY(90deg);
    transition: all 0.50s ease-in-out 0s;
}
.boxthumb:hover .box-content{
    transform: rotateY(0);
}
.boxthumb .title{
    font-size: 20px;
    color: #fff;
    text-transform: uppercase;
}
.boxthumb .description{
    font-size: 14px;
    line-height: 24px;
    color: #fff;
}
.boxthumb .title:after,
.boxthumb .description:after{
    content: "";
    width: 90%;
    display: block;
    border-bottom: 1px solid #fff;
    margin: 10px auto;
}
.boxthumb .links{
    padding: 0 30px 0 0;
    margin: 0;
    list-style: none;
    width: 100%;
    position: absolute;
    bottom: -100%;
    text-align: right;
    transition: all 0.5s ease 0s;
}
.boxthumb:hover .links{
    bottom: -2px;
}
.boxthumb .links li{
    display: inline-block;
    margin-right: 2px;
}
.boxthumb .links li a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50% 50% 0 0;
    background: #fff;
    text-align: center;
    transition: all 0.3s ease 0s;
}
.boxthumb .links li a .fa {
	color: #e74c3c;
}
.boxthumb .links li a:hover{
    background: #e74c3c;
}
.boxthumb .links li a:hover .fa {
    color: #fff;
}