.team-section{
	text-align: center;
}



.team-section h3{
	margin: 0;
    text-transform: none;
    color: var(--color-black);
}
.team-section h3 span{
	color:var(--color-legacy-blue);
}


.team-section .image{
	display: block;
}



.team-section p.name{
	font-size: 23px;
	margin:0;
	font-weight: bold;
	text-transform: uppercase;
	color: var(--color-black);
}
.team-section p.role{
	font-size: 18px;
	margin:0;
	color:var(--color-black);
}


.team-section .social{
	display: flex;
	align-items: center;
	justify-content: center;
}

.team-section .social li{
	float: left;
	padding: 0 5px;
}
.team-section .social li a{
	background-color: var(--color-white);
	border-radius: 50%;
	height: 40px;
	width: 40px;
	display: block;
	line-height: 41px;
	color: var(--color-grey-light);
}
.team-section .item{
	position: relative;
}
.team-section .item .text{
	position: absolute;
	top: 0;
	width: 100%;
	background-color: var(--color-white)b8;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	opacity: 0;
	transition: 0.3s;
}
.team-section .item:hover .text{
	opacity: 1;
}