section.team-members {
	padding: 45px 5%;
	margin: 0;
	width: 100%;
	background: var(--light-blue-color);
}

section.team-members .members{
	display:flex;
	flex-wrap:wrap;
	gap:0;
	margin:30px 0;
	
}

section.team-members .staff-item{
	width:25%;
	padding:0.5%;
	display: flex;
	flex-direction: column;
}

section.team-members .staff-item .staff-image{
}

section.team-members .staff-item img{
	width:100%;
	height:auto;
	display:block;
}

section.team-members .staff-item .staff-information{
	background:var(--yellow-color);
	padding:15px;
	text-align:center;
	clip-path:var(--clip-10px-bottom-right);
	display: flex;
	flex-grow: 1;
	  flex-direction: column;
}

section.team-members .staff-item .staff-information h4{
	font-size: 1.25em;
	margin: 0;
}

section.team-members .staff-item .staff-information p{
	margin:0;
}

@media screen and (max-width:960px){
	section.team-members .staff-item{
		width:33.333%;
		padding:1%;
	}
}

@media screen and (max-width:680px){
	section.team-members .staff-item{
		width:50%;
	}
}