

/* #### Team Section Start#### */
.member_item {
	text-align:center;
	position: relative;
	overflow: hidden;
	min-height: 450px;
	max-width: 280px;
	padding: 20px;
	padding-top:25px;
	margin: 0px auto 20px auto;
	background-color: white;
	-moz-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.member_item:hover {
	transform: translateY(-15px);
	-o-transform: translateY(-15px);
	-moz-transform: translateY(-15px);
	-ms-transform: translateY(-15px);
	-webkit-transform: translateY(-15px);
	
	
}
.member_item:before {
	content: '';
	position: absolute;
	z-index: 10;
	left: 15px;
	right: 15px;
	bottom: 0;
	height: 0;
	background-color: rgba(0,0,0,0.15);
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.member_img {

	position: relative;
	z-index: 10;
	width: 220px;
	height: 220px;
	margin: 0 auto 35px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
.member_img img {
	max-width: 220px;
}
.member_item:hover .member_img {
	transform: scale(0);
	-o-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);	
	-webkit-transform: scale(0);
}
.member_descr {
	position: absolute;
	z-index: 1;
	left: 25px;
	right: 25px;
	top: 230px;
	-webkit-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	
	
}
.member_item:hover .member_descr {
	top: 10px;
	color:#ffffff;
}
.member_name {
	font-weight: 700;
	line-height: 26px;
	font-size: 20px;
	margin-top: 60px;
	text-align: center;
	text-transform: uppercase;
	margin-bottom:10px;
	
}




.member_post {
	padding-bottom: 33px;
	font-size: 16px;

	text-align: center;
	
}
.member_item .member_social {
	padding-bottom: 33px;
}
.member_item .member_social a {
	display: inline-block;
	width: 50px;
	height: 48px;
	border-radius: 6px;
	-webkit-border-radius: 6px;
	line-height: 48px;
	font-size: 22px;
	color: #fff;
	background-color: #fff;
	margin-left: 12px;
}
.twitter, .facebook, .gplus {
	text-align: center;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.twitter i {
	color: #2dc5eb;
}
.twitter:hover i {
	color: #fff;
}
.facebook i {
	color: #4d72bf;
}
.facebook:hover i {
	color: #fff;
}
.gplus i {
	color: #e5683c;
}
.gplus:hover i {
	color: #fff;
}
.member_item .member_social a.twitter:hover {
	box-shadow: 0 0 0 25px #2dc5eb inset;
}
.member_item .member_social a.facebook:hover {
	box-shadow: 0 0 0 25px #4d72bf inset;
}
.member_item .member_social a.gplus:hover {
	box-shadow: 0 0 0 25px #e5683c inset;
}
.member_about, .skill-member {
	height: 0;
	line-height: 20px;
	font-size: 14px;
	opacity: 0;
	color: #ffffff;
	-o-transform: scale(0);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
	
}
.member_item:hover .member_about, .member_item:hover .skill-member {
	opacity: 1;
	height: auto;
	transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	-webkit-transform: scale(1);
}


.member_item:hover {
	background-color:#0195BD;
	color:#ffffff;
	
}




/* #### Team Section End#### */