/*===============================
	Features CSS 
=================================*/
.features {	
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}
.features .single-feature {
	position: relative;
	text-align: center;
	margin-top: 30px;
}
.features .icon-img {
	width: 150px;
	height: 150px;

	line-height: 80px;
	border-radius: 100%;
	position: relative;
	text-align: center;
	left: 0;
	display: inline-block;
	overflow:hidden;
}
.features .icon-img:before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 100%;
	z-index: 3;
	opacity: 1;
	-webkit-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	transition: all 0.3s ease 0s;
}
.features .single-feature:hover .icon-img:before {
	opacity: 0.5;
}
.features .icon-img img {
	position: absolute;
	top: 0;
	left: 0;  
	width: 100%;
	height: 100%;
	border-radius: 100%;
	opacity: 1;
	visibility:visible;
}
.features .single-feature:hover .icon-img img{
	opacity:1;
	visibility:visible;
	transform:scale(1.2);
}

.features .feature-content .f-title a,
.features .feature-content .f-title {
	font-size: 18px;
  font-weight:700;
	margin: 15px 0;
	color: #fff;
    text-decoration:none;
}

.features .section-title h2 {
  color: #fff;
}

.features .feature-content p {
	color: #ccc;
}
/*===============================
	End Features CSS 
=================================*/