.team-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0px auto;
    justify-content: flex-start;
	gap: 2%;
}
.team-wrapper .team-item.featured {
	width:100%;
	display:flex;
	justify-content:space-between;
	margin-bottom:70px;
}
.team-wrapper .team-item {
    width: 23%;
    position: relative;
	margin-bottom:50px;
}
.team-wrapper .team-item .photo {
	background-size:cover;
	background-position:center center;
	position:relative;
	background-repeat:no-repeat ;
	margin-bottom:20px;
}
.team-wrapper .team-item.featured .photo {
	width:45%;
	background-size:100% auto;
	background-position:top left;
	margin-bottom:0;
}
.team-wrapper .team-item .photo::after {
	display:block;
	width:100%;
	content:"";
	padding-top:111%;
}
.team-wrapper .team-item h3 {
	margin-bottom:3px;
}
.team-wrapper .team-item .details {
	font-size: 14px;
	letter-spacing: 0;
	line-height: 1.7;
}
.team-wrapper .team-item.featured .details {
	display:flex;
	flex-direction:column;
	width:52%;
    font-size: 18px;
}
.team-wrapper .team-item .email {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 1;
	text-transform:uppercase;
	margin-top:20px;
	margin-bottom:10px;
}
.team-wrapper .team-item .email a {
	text-decoration:none;
	display: flex;
    align-items: center;
}
.team-wrapper .team-item .email svg {
	width:28px;
	margin-right:10px;
}
.team-wrapper .team-item .description  {
	flex-grow:1;
}
.team-wrapper .buttonContainer {
	position:absolute;
	z-index:20;
	top:0;
}
.team-wrapper .buttonContainer .button {
	font-size:11px;
	line-height:1.3;
	margin-right:10px;
}
@media (max-width : 999px) {
	.team-wrapper .team-item {
		width:100%;
		margin-right:0 !important;
		flex-wrap:wrap;
	}
	.team-wrapper .team-item > div {
		width:100% !important;
	}
	.team-wrapper .team-item .email a {
		justify-content:center;
	}
	.team-wrapper .team-item .photo, .team-wrapper .team-item.featured .photo {
		margin-bottom:20px;
	}
}
