section.team-members{
	padding: 45px 5%;
	margin: 0;
	background: #f2f2f2;
}
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: 24%;
	margin: 0.5%;
	background: var(--dark-blue-color);
	background:#fafafa;
	padding: 15px;
	position: relative;
	border:1px solid #fff;
}
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;
}
section.team-members .card p{
	color: var(--mid-blue-text-color);
	font-size: 0.875em;
	font-weight: 500;
}
section.team-members .card h3{
	text-transform:uppercase;
	/*color:#fff;*/
	font-weight:500;
}
section.team-members .card p.role{
	text-transform: uppercase;
	margin: 0;
	font-size: 0.875em;
	background: var(--cyan-color);
	width: fit-content;
	margin: 0 auto;
	padding: 5px 10px;
	color: #fff;
}
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%;
	}
}

/* MODAL */

.biomodal {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	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: 1.5em;
	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;
}
.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{
	color:var(--dark-blue-color);
}
section.team-members .biomodal .modal-content p{
	color:var(--dark-blue-color) !important;
}
section.team-members .biomodal img{
	mix-blend-mode: normal;
}