.team-section {
	width: 100vw;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 50px 0 50px 0;
}

.team-section h2 {
	margin-bottom: 50px;
}

.team-container {
	width: 1024px;
	max-width: 90vw;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.team-wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	width: 100%;
}

.team-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(47, 141, 171,0.8) !important;
  box-sizing: border-box;
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  z-index: 99;
  transform: translateY(250px);
  opacity: 0;
  transition: all 500ms ease;
}

.team-overlay p {
  color: white;
}

.team-overlay p:last-child {
  font-weight: bold;
  margin-bottom: 0;
  text-transform: uppercase;
}

.team-card:hover .team-overlay {
  transform: translateY(0);
  opacity: 1;
}

.team-img {
  background-position: center;
  background-size: cover;
  width: 200px;
	height: 200px;
	position: relative;
}

.team-triangle {
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
  height: 0;
  border-top: 75px solid #ffae00;
  border-left: 75px solid transparent;
}

.team-ribbon {
	position: absolute;
	bottom: 0;
	left: -12.5px;
	width: 0;
  height: 0;
  border-bottom: 12.5px solid #DA9301;
  border-left: 12.5px solid transparent;
}

.team-card {
	width: 225px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	margin: 15px;
	overflow: hidden;
}

.team-card img {
	width: 100%;
	margin-bottom: 10px;
}

.teams-grid-wrapper {
	display: flex;
	flex-direction: row;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	padding-bottom: 50px;
}

.team-card h3 {
	text-transform: uppercase;
	font-weight: bold;
	width: 100%;
	text-align: center;
	padding: 10px;
	box-sizing: border-box;
	background-color: #ffae00;
	color: white;
	word-wrap: normal;
	font-size: 18px;
	position: relative;
	z-index: 999;
	margin-bottom: 0;
}

.doctors-page {
	display: flex;
	flex-direction: column;
}

.doctor-card {
	margin-bottom: 25px;
	border-bottom: 2px solid #2f8dab;
}

.doctor-card img {
	width: 250px;
	margin: 0 25px 15px 0;
	float: left;
}

.doctor-card h3 {
	color: #2f8dab;
	font-size: 24px;
}
