.office_team {
	margin-top: 50px;
	border-top: 4px solid #EDE8E8;
	padding-top: 50px;
	text-align: center;
}



/* Index showing small photos of team members */

.office_team__index {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 50px;
}

.office_team__index__item {
	display: block;
	height: 70px;
	width: 70px;
	background-size: cover;
	border-radius: 50px;
	margin: 0 20px 20px 0;
	transition: all 0.3s ease;
}

.office_team__index__item:hover {
	transform: scale(1.2);
}

.office_team__item {
	background-color: var(--light-grey);
	padding: 40px;
	border-top-left-radius: 30px;
	border-top-right-radius: 10px;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 30px;
	margin-bottom: 50px;
}

.office_team__item__name, .office_team__item__role {
	font-size: 30px;
	font-weight: 800;
	font-family: var(--feature-font);
	margin: 0 0 10px;
}

.office_team__item__role {
	color: var(--anza-blue);
}

.office_team__item__photo {
	height: 220px;
	width: 220px;
	border-radius: 200px;
	background-size: cover;
	margin: 0 auto 30px;
}


@media only screen and (min-width: 850px) {

	.office_team__item { 
		display: flex;
		text-align: left;
	}

	.office_team__item__photo {
		margin: 0 40px 0 0;
	}



}