@media (min-width: 700px)
{
	.container
	{
		max-width: 1180px;
		margin: 0 auto;
		/* padding-bottom: 60px; */
	}
}

.team
{
	margin: 0px;
	background-color: white;
}

.person
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
	column-gap: 50px;
	row-gap: 20px;
	margin-bottom: 40px;
}

.personPhoto
{
	background-color: lightgray;
	width: 250px;
	height: 250px;
}

@media only screen and (max-width: 800px)
{
	.person
	{
		flex-flow: column;
		align-items: start;
		padding: 0 21%;
	}
}

@media only screen and (max-width: 800px)
{
	.personPhoto
	{
		background-color: lightgray;
		width: 250px;
		height: 250px;
		align-self: center;
	}
}

.footerLogos
{
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: center;
	column-gap: 0px;
	width: 100%;
	margin: 80px auto 80px;
	padding: 0px;
	align-items: center;
}

@media only screen and (max-width: 900px)
{
	.footerLogos
	{
		display: flex;
		flex-flow: column;
		row-gap: 30px;
		margin: 10px auto;
		align-items: center;
	}
}

.logoCenter
{
	align-self: center;
	background-color: lightgray;
	width: 240px;
	height: 90px;
}