.boxthumb{
    text-align: center;
    overflow: hidden;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.3);
    position: relative;
	margin:8px;
	padding:5px;
	background:rgba(255,255,255,0.65);
}
.boxthumb img{
    width: 100%;
    height: auto;
}
.boxthumb .box-content,
.boxthumb .box-content:after{
    width: 100%;
    height: 100%;
    background: rgba(36, 50, 86, 0.7);
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease 0s;
}
.boxthumb:hover .box-content{
    opacity: 1;
}
.boxthumb .box-content:after{
    content: "";
    background: #f95b34;
}
.boxthumb:hover .box-content:after{
    opacity: 0.7;
    transform: skew(30deg);
}
.boxthumb .content{
    width: 100%;
    position: absolute;
    top: 10%;
    left: 0;
    color: #fff;
    z-index: 1;
	padding:0 45px;
}
.boxthumb .title{
    display: block;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    margin: 0 0 20px 0;
	line-height:1.3
}
.boxthumb .description{
    display: block;
    font-size: 15px;
    margin-bottom: 10px;
	line-height:1.3;
}
.boxthumb .box-content .icon{
    width: 100%;
    padding: 0 30px;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: 15px;
    left: 0;
	text-align:center;
	z-index:10;
}
.boxthumb .icon li{
    display: inline-block;
	margin:0 5px;
}

.boxthumb .icon li a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    color: #f95b34;
    margin: 0 5px;
    transition: all 0.3s ease 0s;
}
.boxthumb .icon li a:hover{
    border-radius: 0;
}