.feature-item {
    background: #fff;
    padding: 30px 20px;
    display: block;
	transition: all 0.5s ease-out 0s;
	margin-top: 0;
}
.feature-item:hover {
    background-color: #0484c9;
}
.feature-item .feature-icon {
    color: #a4a4a4;
}
.feature-item .feature-desc {
    color: #8d8d8d;
}
.feature-item:hover .feature-desc {
    color: rgba(255,255,255,0.6);
}
.content-box h4 {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 12px 0;
	color: #222;
}
.feature-item:hover .feature-icon, 
.feature-item:hover h4 {
    color: #fff;
}