#industries .item {
    position: relative;
    width: 25%;
    float: left;
}
#industries .item .wrap {
    position: relative;
    display: block;
    margin: 10px;
    overflow: hidden;
}
#industries .item .title {
    position: relative;
    color: white;
    display: block;
    font-size: 18px;
    line-height: 20px;
    font-weight: bold;
    padding: 15px 15px;
    background: #5c5c5c;
    -webkit-transition: background .3s ease-out 0s;
    -moz-transition: background .3s ease-out 0s;
    -ms-transition: background .3s ease-out 0s;
    -o-transition: background .3s ease-out 0s;
    transition: background .3s ease-out 0s;
}
#industries .item .pic {
    position: relative;
    width: 100%;
    padding: 0;
}
#industries .item .pic img {
    width: 100%;
    -webkit-transition: all .5s ease-out 0s;
    -moz-transition: all .5s ease-out 0s;
    -ms-transition: all .5s ease-out 0s;
    -o-transition: all .5s ease-out 0s;
    transition: all .5s ease-out 0s;
}
#industries .item:hover .title { 
	background: #5f8194;
}
#industries .item:hover .pic img { 
	-webkit-transform: scale(1.05); 
	-moz-transform: scale(1.05);
	-ms-transform: scale(1.05);
	-o-transform: scale(1.05);
	transform: scale(1.05);
}
