.LEADERSHIP::before,
.LEADERSHIP::after {
	content: "";
	display: block;
	overflow: hidden;
}

.LEADERSHIP .leader {
	height: 100%;
	border-radius: 0 0 20rem 20rem;
	background: var(--light-blue);
	position: relative;
}

.LEADERSHIP .leader .info {
	padding: 30rem 25rem;
}

.LEADERSHIP .leader .open-bio {
	cursor: pointer;
}

.LEADERSHIP .leader .bio-container {
	display: none;
}

.LEADERSHIP .open-bio {
	transition: color 0.2s;
}

.LEADERSHIP .open-bio:hover .b-button {
	background: var(--dark-green);
}

.LEADERSHIP .b-img,
.LEADERSHIP .b-img-fallback {
	border-radius: 20rem 20rem 0 0;
}

.LEADERSHIP .role {
	margin-bottom: 80rem;
}

.LEADERSHIP .b-button {
	position: absolute;
	bottom: 30rem;
	left: 25rem;
}

/* animation */

@media screen and (min-width: 961px) {
	.LEADERSHIP .b-column:nth-child(3n + 2) {transition-delay: 0.4s;}
	.LEADERSHIP .b-column:nth-child(3n + 3) {transition-delay: 0.6s;}
}



/* PROFILE-MODAL */

.PROFILE-MODAL {
	height: 100%;
}

.PROFILE-MODAL .info .name {
	color: var(--dark-blue);
}

.PROFILE-MODAL .info .role {
	margin-top: 10rem;
}

.PROFILE-MODAL .b-button {
	margin-top: 20rem;
}

.b-modal .PROFILE-MODAL {
	position: relative;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

.b-modal .PROFILE-MODAL .close {
	position: absolute;
	top: 30rem;
	right: 30rem;
	width: 20rem;
	height: 20rem;
    background: url(/wp-content/themes/wp-parchment/assets/images/ui-close.svg) no-repeat center;
    /*background-size: 20rem;*/
	cursor: pointer;
	z-index: 4;
}

.b-modal .PROFILE-MODAL .container {
	box-sizing: border-box;
	background: #fff;
	max-height: calc(100vh - 80rem);
	padding: 100rem;
	border-radius: var(--border-radius);
	overflow: auto;
	-webkit-overflow-scrolling: touch;
}

.b-modal .PROFILE-MODAL .open-bio {
	pointer-events: none;
	cursor: default;
	display: flex;
}

.b-modal .PROFILE-MODAL .open-bio a {
	pointer-events: auto;
}

.b-modal .PROFILE-MODAL .b-img {
   border-radius: var(--border-radius);
}

.b-modal .PROFILE-MODAL .info-container {
	width: 33.33%;
	margin-right: 100rem;
}

.b-modal .PROFILE-MODAL .info {
	margin-top: 30rem;
}

.b-modal .PROFILE-MODAL .bio-container {
	width: 66.66%;
}

.b-modal .PROFILE-MODAL .fact {
	font-weight: 700;
}

.b-modal .PROFILE-MODAL .b-button {
	display: none;
}

@media screen and (max-width: 960px) {
	.PROFILE-MODAL .info {margin-top: 20rem;}
	.b-modal .PROFILE-MODAL .container {padding: 40rem 30rem;}
	.b-modal .PROFILE-MODAL .close {top: 10rem; right: 10rem;}
	.b-modal .PROFILE-MODAL .open-bio {display: block;}
	.b-modal .PROFILE-MODAL .profile .info-container {width:100%; margin-right: 0;}
	.b-modal .PROFILE-MODAL .profile .bio-container {width:100%; margin-top: 30rem;}
}



