/* Mobile */
@media only screen and (max-width: 975px) {
	.leadership { width: 100%; padding: 25px 50px; }
	.team { width: 100%; padding: 25px 50px; }
	.leadership_overlay { width: 80%; }
	.details_overlay { opacity: 1; }
}

/* In Between */
@media only screen and (min-width: 975px) and (max-width: 1250px) {
	.leadership { width: 33%; padding: 50px; }
	.team { width: 33%; padding: 25px; }
	.leadership_overlay { width: 50%; }
	.details_overlay { opacity: 1; }
}

/* Desktop */
@media only screen and (min-width: 1250px) {
	.leadership { width: 33%; padding: 50px; }
	.team { width: 33%; padding: 25px; }
	.leadership_overlay { width: 50%; }
	.details_overlay { opacity: 0; }
}

.leadership {
	box-sizing: border-box;
	float: left;
	text-align: center;
}

.leadership img {
	width: 100%;
	clip-path: circle(50% at center);
}

.leadership .name {
	font-size: 20px;
	font-weight: bold;
	color: #496D1F;
}

.team {
	box-sizing: border-box;
	float: left;
}

.team .name {
	font-size: 20px;
	font-weight: bold;
	color: #496D1F;
}

.team p { margin: 10px; }

.overlay { position: fixed; display: none; width: 100%; height: 100%; overflow-y: scroll; top: 0; left: 0; right: 0; bottom: 0; background-color: rgba(0,0,0,0.5); backdrop-filter: blur(8px); z-index: 2; }

.overlay_img {
	width: 50%;
	clip-path: circle(50% at center);
}

#close_overlay {
	overflow: hidden;
	z-index: 999;
	position: absolute;
	top: 20px;
	left: 20px;
	color: #496D1F;
	font-size: 50px;
	cursor: pointer;
}

.team_section_header {
	padding: 15px;
	background-color: #496D1F;
	width: 100%;
	text-align: center;
	float: left;
	color: white;
	font-size: 35px;
	font-weight: bolder;
	box-sizing: border-box;
}

.leadership_overlay {
	border: 1px solid #496D1F;
	background-color: white;
	margin: 50px auto;
	padding: 20px;
	position: relative;
}

.leadership_overlay .name {
	font-size: 20px;
	font-weight: bold;
	color: #496D1F;
}

.table_row {
	box-sizing: border-box;
	width: 100%;
	float: left;
}

/*Styles for "Click for details" box over images*/
.container { position: relative; }

.details_overlay {
	transition: .5s ease;
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}

.container:hover .details_overlay { opacity: 1; }

.text {
	background-color: #496D1F;
	color: white;
	padding: 8px 32px;
}
