.team-members-container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 30px;
}

.team-member {
	text-align: center;
	background-color: #fff;
	padding: 60px 80px;
	border-radius: 2px;
	box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.12);
}

.team-member h3{
	font-size: 18px;
	line-height: 24px;
	font-family: "Chronica Bold", Sans-serif;
	color: #2A2928;
	margin-top: 18px;
    margin-bottom: 10px !important;
}

.team-member .team-member-position{
	font-size: 18px;
    line-height: 28px;
    font-family: "Codec Regular";
    color: rgba(0, 0, 0, .5);
}

.team-member img{
	aspect-ratio: 1/1;
	object-fit: cover;
	max-width: 160px !important;
	margin: 0 auto;
}

.team-member-popup{
	position: fixed;
	top: 0;
	left: 0;
	background:#00000090;
	width: 100%;
	height: 100%;
	z-index: 100;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.team-member-popup .popup-content{
	background: #ffffff;
	max-width: 1200px;
	height: 90%;
	overflow: auto;
	padding: 40px;
}

.team-member-popup .popup-details{
	margin-top: 20px;
}

.close-popup{
	display: block;
	margin-left: auto;
	font-size: 40px;
	max-width: 30px;
	cursor: pointer;
}

.team-member-popup-btn{
	border: none;
	background-color: transparent;
	font-size: 18px;
	line-height: 24px;
	font-family: "Chronica Medium", Sans-serif;
	text-transform: uppercase;
	text-decoration: underline;
	color: #58748A;
	cursor: pointer;
} 

@media(max-width: 1199px){

	.team-members-container {
		grid-template-columns: 1fr 1fr;
		gap: 50px;
	}

}

@media(max-width: 767px){

	.team-members-container {
		grid-template-columns: 1fr;
		gap: 30px;
	}

	.team-member-popup .popup-content{
		padding: 20px;
	}
}