@charset "utf-8";
/* CSS Document */


/*============ Team Section Start============ */

.team{
    position: relative;
}
.team img{
	width:100%;
	background-color: #f7f7f7;
}
.team-content{
	position: absolute;
	bottom: 0px;
	text-align: center;
	left: 0px;
	right: 0px;
	background: #696969;/*Name and Post background strip colour*/
	padding: 10px;
	z-index:5;
	-webkit-transform:translateY(0px);
		-ms-transform:translateY(0px);
			transform:translateY(0px);
	-webkit-transition: 0.3s all;
		transition:0.3s all;
}
.team-content h3{
	color:#fff;
	margin-bottom:0px;
}
.team-content p{
	color:#FFFFFF; /*post held colour*/
	margin-bottom:0px;
	text-transform:uppercase;
	font-size:14px;
	padding-bottom:20px;
 }
.team-social{
	text-align:center;
	display:table;
	table-layout: fixed;
	width:100%;
}
.team-social a{
	display:table-cell;
	line-height:40px;
	background-color:#000000;/*social icons background colour*/
	color:#FFFFFF;/*social icons colour*/
	border-left:1px solid #FFFFFF;/*social icons seperation line colour*/
	-webkit-transition: 0.3s all;
		transition:0.3s all;
}
.team-social a:nth-child(1){
	border-left:none;
}
.team-social a:hover{
	color:#FFA0A0;/*social icons hover colour*/
	background-color:#57FFFF;/*social icons background hover colour*/
}
.team:hover .team-content{
	-webkit-transform:translateY(-40px);
		-ms-transform:translateY(-40px);
			transform:translateY(-40px);
}
.team h3 {
	font-size:21px;
	font-weight:500;
	color:#FFFFFF;/*Name of person colour*/
	margin-bottom:5px;
}

/*============ Team Section End============ */
