section.team-members{
	padding: 20px 5% 80px;
	margin: 0;
	background: #fafafa;
	z-index: 10;
	position: relative;
}
section.team-members .title{
	text-align:center;
	margin:20px 0;
	
}
section.team-members .title h2{
	/*color:#fff;*/
	font-weight:500;
	text-transform:uppercase;
}
section.team-members .title p{
	max-width: 640px;
	margin: 0 auto;
	font-weight: 500;
	/*color:var(--light-blue-text-color);*/
}
section.team-members .members{
	display:flex;
	flex-wrap:wrap;
	margin:30px -1%;
	justify-content:center;
}
section.team-members .card{
	width: 49%;
	margin: 0.5%;
	background: var(--dark-blue-color);
	background:#ffffff;
	padding: 50px;
	position: relative;
	border:1px solid #fff;
	border-radius: 5px;
	box-shadow: 0 0 30px rgba(153, 153, 153, 0.1);
}
section.team-members .card:after{
	content:'';
	display:none;
	position:absolute;
	width:100%;
	height:2px;
	bottom:0;
	left:0;
	background:var(--orange-gradient);
	
}
section.team-members .card .image{
	border-radius:50%;
	overflow:hidden;
	width:50%;
	max-width:140px;
	margin:0 auto;
	position:relative;
}
section.team-members .card .image.outlined:before{
	border-radius:50%;
	border:1.5px solid transparent;
}
section.team-members .card img{
	display:block;
	width:100%;
	height:auto;
	/*mix-blend-mode: lighten;*/
}
section.team-members .card .info{
	text-align:center;
}

.bio {
	margin-top: 10px;
}

section.team-members .card p{

	font-size: 0.875em;

}
section.team-members .card h3{
	margin: 20px 0 0 0;
}
section.team-members .card p.role{
	margin: 0;
	font-size: 0.875em;
	margin: 0 auto;
}
section.team-members .card a:hover{
	color:var(--cyan-color);
}
section.team-members .card p.phone{
	font-size:1em;
	text-transform:uppercase;
}
@media screen and (max-width:1360px){
	section.team-members .card{
		width:48%;
	}
}
@media screen and (max-width:760px){
	.row.contact-methods{
		flex-direction:column;
	}
	.row.contact-methods .card{
		width:100%;
		border:none;
	}
	section.team-members .card{
		width:98%;
		margin: 7.5px 0.5%;

	}
}

/* MODAL */

.biomodal .close-button {
	position: absolute;
	  top: 20px;
	  right: 20px;
	  cursor: pointer;
	  display: flex;
	  height: 40px;
	  width: 40px;
}

.biomodal .close-button:before {
	content:'\f00d';
	font-family: 'Font Awesome 5 Pro';
	font-size: 1.5em;
	color: #fafafa;
	background:#0b8eb4;
	border-radius: 50%;
	height: 40px;
	width: 40px;
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s;
}

.biomodal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color:rgba(4, 41, 60, 0.87);
	visibility: hidden;
	opacity: 0;
	transition: visibility 0s linear 0.25s, opacity 0.25s 0s;
	pointer-events: none;
	z-index:1000;
}


.biomodal.opened {
	visibility: visible;
	opacity: 1;
	transition-delay: 0s;
	
	pointer-events: auto;
}



.biomodal .modal-content {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	padding: 40px;
	width: 50%;
	min-width: 360px;
	box-shadow:0px 0px 20px rgba(0,0,0,0.2);
	text-align: left;
	max-width: 800px;
	border-radius:12px;
	max-height:80vh;
	overflow-y: auto;
	overflow-x: hidden;
}
.biomodal .modal-content .row{
	align-items:center;
	display: flex;
	margin: 0 0 20px 0;
}
.biomodal .modal-content .image{
	max-width:90px!important;
	margin:0!important;
}
.biomodal .modal-content .info{
	margin:0 0 0 20px!important;
	text-align:left!important;
}
section.team-members .biomodal h3{
}
section.team-members .biomodal .modal-content p{
}
section.team-members .biomodal img{
	mix-blend-mode: normal;
}