
.leadership-and-advisory-page-content > section:first-child {
	padding: 0;
	background-position: center bottom;
	background-size: cover;
	background-repeat: no-repeat;
}

.page-content_top-section {
	padding: 75px 0;
	backdrop-filter: blur(4px);
	background: rgba(255, 255, 255, .25);
}

.top-section-content {
	padding: 0 15% 0 20%;
	color: white;
}

.about-lava {
	font-size: 20px;
	line-height: 24px;
	font-weight: 500;
	letter-spacing: 0px;
	color: inherit;
}

.page-title {
	font-size: 60px;
	line-height: 1.1;
	font-weight: bold;
	color: inherit;
}

.page-subhead {
	font-size: 25px;
	line-height: 1.1;
	font-weight: 300;
	letter-spacing: 0px;
	color: inherit;
}

/* PRESIDENT SECTION */
.president-section {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.president-column {
	width: 39%;
}

.president-column:last-child {
	width: 59%;
}

.president-photo {
	width: 100%;
}

.president-photo-mobile {
	display: none;
	float: right;
	margin: 0 0 25px 25px;
	width: 45%;
	border-radius: 10px;
}

.president-data {
	padding: 7.5%;
	box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 37%);
	border: 1px solid rgba(255, 255, 255, .18);
	border-radius: 10px;
}

.president-title {
	font-size: 48px;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: 0px;
}

.president-subhead {
	font-size: 25px;
	line-height: 1.1;
	font-weight: 300;
	letter-spacing: 0px;
}

/* STAFF */
.lava-page-content > .staff-section {
	background-color: #3f86c4;
}

.staff-section-content {
	display: flex;
	justify-content: center;
}

.staff-tile {
	position: relative;
	width: 40%;
	max-width: 360px;
	display: flex;
	flex-direction: column;
	box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 37%);
	background: rgba(255, 255, 255, .4);
	border-radius: 0 0 10px 10px;
	backdrop-filter: blur(5px);
	color: #444;
}

.staff-tile:first-child {
	margin-right: 5%;
}

.staff-image {
	width: 100%;
	display: block;
}

.staff-data {
	padding: 50px 12% 35px;
}

.staff-name {
	font-size: 48px;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: 0px;
}

.staff-position {
	font-size: 25px;
	line-height: 1.1;
	font-weight: 300;
	letter-spacing: 0px;
}

/* ADVISORS */
.advisors-title {
	font-size: 41px;
	line-height: 43px;
	letter-spacing: 0px;
	font-weight: bold;
	color: #444;
	text-align: center;
}

.advisors-divider {
	margin: 0 auto 20px;
	width: 50px;
	height: 1px;
	background-color: #444;
}

.advisors-tiles-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.advisor-tile {
	margin-right: 3.5%;
	margin-bottom: 25px;
	width: 31%;
	max-width: none;
}

.advisor-tile:first-child {
	margin-right: 3.5%;
}

.advisor-tile:nth-child(3n) {
	margin-right: 0;
}

.advisor-img {
	display: block;
	padding-bottom: 100%;
	width: 100%;
	height: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.advisor-data {
	flex-grow: 1;
	padding: 30px 10% 25px;
	display: flex;
	flex-direction: column;
}

.advisor-name {
	font-size: 24px;
	line-height: 1.1;
	font-weight: 700;
	letter-spacing: 0px;
}

.advisor-position {
	font-size: 22px;
}

.advisor-position-description {
	margin-bottom: 25px;
}

.advisor-data > .advisor-btn {
	position: relative;
	margin-top: auto;
	padding: 8px 15px;
	width: 50%;
	min-width: 135px;
	max-width: 180px;
	display: inline-block;
	border-radius: 20px;
	background-color: #f7f7f7;
	color: #747474;
	text-align: center;
	transition: opacity .25s linear;
}

.advisor-btn:hover {
	color: #747474;
	text-decoration: none;
}

.advisor-data > .advisor-btn:active {
	-webkit-tap-highlight-color: transparent;
}

.advisor-btn::after {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background: rgba(0, 0, 0, .05);
	z-index: 1;
	transition: opacity .2s linear;
	border-radius: 20px;
	opacity: 0;
}

.advisor-btn:hover::after {
	opacity: 1;
}

/* ADVISOR POPUP */
.advisor-popup-wrap {
	display: none;
	position: fixed;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .6);
	z-index: 10000;
	overflow: hidden scroll;
}

.advisor-popup {
	margin: 5% auto 50px;
	padding: 10px 30px 25px;
	width: 50%;
	max-width: 600px;
	background: white;
}

.advisor-popup-wrap-active {
	display: block;
}

.advisor-popup-header .advisor-popup-close-btn {
	margin-left: auto;
	margin-bottom: 10px;
	padding: 6px 10px;
	display: flex;
	background-color: white;
	border-radius: 0;
	color: black;
	font-size: 30px;
	line-height: 1;
}

.advisor-popup-tile {
	width: 100% !important;
	box-shadow: none;
}

.advisor-popup-tile .advisor-data {
	padding: 30px 0 25px;
}

.advisor-popup .advisor-data {
	background-color: white;
}

@media screen and (max-width: 959px) {
	/* CONTENT HEADER */
	.page-content_top-section {
		padding: 50px 0;
	}
	
	.top-section-content {
		padding: 0 10%;
	}
	
	.page-title {
		font-size: 48px;
	}
	
	/* PRESIDENT */
	.president-section {
		flex-direction: column;
	}
	
	.president-column:last-child {
		width: 90%;
	}
	
	.president-photo {
		display: none;
	}
	
	.president-photo-mobile {
		display: block;
	}
	
	.president-title {
		font-size: 36px;
	}
	
	.president-subhead {
		font-size: 22px;
	}
	
	/* STAFF */
	.staff-data {
		padding: 40px 12% 30px;
	}
	
	.staff-name {
		font-size: 36px;
	}
	
	.staff-position {
		font-size: 21px;
	}
	
	/* ADVISORS */
	.advisors-tiles-container {
		flex-wrap: wrap;
	}
	
	.advisor-tile {
		margin-right: 4% !important;
		margin-bottom: 15px;
		width: 48%;
	}
	
	.advisor-tile:nth-child(2n) {
		margin-right: 0 !important;
	}
	
	.advisor-data > .advisor-btn {
		min-width: 90px;
		max-width: 140px;
	}
}

@media screen and (max-width: 768px) {
	/* CONTENT HEADER */
	.page-title {
		font-size: 36px;
	}
	
	.page-subhead {
		font-size: 22px;
	}
	
	/* STAFF */
	.staff-data {
		padding: 30px 9% 25px;
	}
	
	.staff-name {
		font-size: 28px;
	}
	
	.staff-position {
		font-size: 19px;
	}
}

@media screen and (max-width: 540px) {
	/* CONTENT HEADER */
	.page-content_top-section {
		padding: 35px 0;
	}
	
	.page-title {
		font-size: 36px;
	}
	
	.page-subhead {
		font-size: 22px;
	}
	
	/* PRESIDENT */
	.president-column:last-child {
		width: 100%;
	}
	
	.president-title {
		font-size: 30px;
	}
	
	.president-subhead {
		font-size: 20px;
	}
	
	.president-photo-mobile {
		margin: 0 auto 20px;
		float: none;
		min-width: 200px;
	}
	
	/* STAFF SECTION */
	.staff-section-content {
		flex-direction: column;
		align-items: center;
	}
	
	.staff-tile {
		margin-bottom: 10px;
		width: 90%;
	}
	
	.staff-tile:last-child {
		margin-bottom: 0;
	}
	
	.position-description {
		font-size: 13px;
	}
	
	/* ADVISORS SECTION */
	.advisors-tiles-container {
		justify-content: center;
	}
	
	.advisor-tile {
		margin-right: 0 !important;
		margin-bottom: 10px;
		width: 90%;
	}
	
	.advisor-data > .advisor-btn {
		margin: auto auto 0;
	}
	
	/* POPUP */
	.advisor-popup {
		width: 80%;
	}
}
