.staff_members_grid_section {
	background-repeat: no-repeat;
	padding: 166px 0;
	position: relative;
	background-position: left bottom;
}
.staff_members_grid_section::before {
	content: "";
	width: 100%;
	height: 100%;
	background-color: var(--color-brand-blue);
	position: absolute;
	inset: 0;
	pointer-events: none;
	opacity: 1;
	mix-blend-mode: multiply;
	z-index: 0;
}
.staff_members_grid_section::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	background-image: url('../../../assets/images/staff-sec-shape.png');
	background-repeat: no-repeat;
	background-position: top right;
	pointer-events: none;
}
.staff_member_name:hover {
	color: var(--color-gold);
}
.staff_contact_text {
	transition: 0.5s;
}
.staff_contact_link:hover .staff_contact_text {
	color: var(--color-gold);
}

.staff_members_sec_title {
	color: var(--color-white);
	margin: 0 0 60px 0;
}
.staff_members_list {
	margin: -23px -21px;
}
.staff_member_wrap {
	max-width: 25%;
	width: 100%;
	padding: 23px 21px;
}
.staff_member_image_wrap {
	width: 100%;
	padding-top: 108.1%;
}
.staff_member_box {
	position: relative;
	overflow: hidden;
}
.staff_member_box:hover img {
	transform: scale(1.1);
}
.staff_member_details::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #000 0%, rgba(0, 0, 0, 0.00) 100%);
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: 0;
	right: 0;
	pointer-events: none;
}
.staff_member_details {
	position: absolute;
	display: flex;
	justify-content: flex-end;
	padding: 21px 24px;
	flex-wrap: wrap;
	flex-direction: column;
	height: fit-content;
	bottom: 0;
	z-index: 1;
	width: 100%;
}
.staff_member_name,.staff_contact_list {
	position: relative;
	z-index: 1;
}
.staff_contact_item {
	padding: 0;
	margin: 0;
}
.staff_contact_item::before {
	all: unset;
}
.staff_member_name {
	margin: 0 0 5px 0;
	font-family: var(--font-family-heading);
	text-transform: uppercase;
	font-weight: var(--fw-700);
	line-height: 1.1;
}
.staff_contact_link {
	gap: 15px;
}
.staff_contact_list {
	flex-direction: column;
	gap: 5px 0;
}

@media only screen and (max-width: 1600px) {
    .staff_members_grid_section {
	padding: 130px 0;
}
}
@media only screen and (max-width: 1440px) {
.staff_members_grid_section {
	padding: 110px 0;
}
.staff_members_sec_title {
	margin: 0 0 45px 0;
}
.staff_members_list {
	margin: -20px -18px;
}
.staff_member_wrap {
	padding: 20px 18px;
}
}
@media only screen and (max-width: 1360px) {
    .staff_members_grid_section {
	padding: 100px 0;
}
.staff_member_image_wrap {
	padding-top: 120%;
}
.staff_members_list {
	margin: -15px -15px;
}
.staff_member_wrap {
	padding: 15px 15px;
}
.staff_member_details {
	padding: 20px;
}
}
@media only screen and (max-width: 1200px) {
.staff_members_grid_section {
	padding: 90px 0;
}
.staff_members_list {
	margin: -10px;
}
.staff_member_wrap {
	padding: 10px;
}
}
@media only screen and (max-width: 1024px) {
    .staff_members_grid_section {
	padding: 70px 0;
}
.staff_member_wrap {
	max-width: 33.33%;
}
.staff_members_sec_title {
	margin: 0 0 35px 0;
}
}
@media only screen and (max-width: 768px) {
.staff_member_wrap {
	max-width: 50%;
}
}
@media only screen and (max-width: 575px) {
.staff_member_wrap {
	max-width: 360px;
	margin: 0 auto;
}
.staff_members_sec_title {
	text-align: center;
}
}