html,
body {
	overflow-x: unset;
}

@media only screen and (max-width: 1200px) {
	html {
		font-size: 100vw !important;
	}
}

@media only screen and (min-width: 768px) {
	br.is-mobile {
		display: none !important;
	}
}

.leader-groups {
	padding-top: 0;
	padding-bottom: 200px;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.leader-groups {
		padding-bottom: 60px;
	}
}

.leader-groups__group-names {
	position: sticky;
	position: -webkit-sticky;
	top: 160px;
	margin-top: -14px;
	padding-left: 15px;
	padding-right: 15px;
}

@media only screen and (max-width: 767px) {
	.leader-groups__group-names {
		position: relative;
		top: 0;
		margin-top: 50px;
	}
}

.leader-groups__group-name {
	display: block;
	/* font-family: "GraphikMedium"; */
	font-family: "NotoSans", sans-serif;
	font-weight: 700;
	font-size: 36px;
	line-height: 1.2;
	color: #303843;
}

@media only screen and (max-width: 767px) {
	.leader-groups__group-name {
		font-size: 28px;
	}
}

.leader-groups__group-details {
	margin-top: -79px;
	padding-left: calc(200vw / 12 + 100vw / 24);
	padding-right: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.leader-groups__group-details {
		padding-left: calc(400vw / 12);
	}
}

@media only screen and (max-width: 767px) {
	.leader-groups__group-details {
		padding-left: 15px;
		margin-top: 40px;
	}
}

.leader-group {
	margin-top: 92px;
}

@media only screen and (max-width: 767px) {
	.leader-group {
		margin-top: 0;
	}
}

.leader-group__title {
	/* font-family: "GraphikMedium"; */
	font-family: "NotoSans", sans-serif;
	font-weight: 700;
	font-size: 30px;
	line-height: 1;
	color: #303843;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
	#board-of-directors .leader-group__title {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.leader-group__title {
		display: none;
	}
}

.leader-group__list {
	margin-top: 24px;
	display: flex;
	overflow: auto;
}

.leader-group__list::-webkit-scrollbar {
	display: none;
}

/* leader group list */
.leader-group__list {
	flex-flow: row wrap;
}

@media only screen and (max-width: 767px) {
	.leader-group__list {
		flex-flow: column;
		margin-top: 0;
	}
}

@media only screen and (max-width: 767px) {
	.leader-group__list> :not(:nth-child(3n + 1)) {
		margin-left: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.leader-group__list> :nth-child(even) {
		margin-left: 15px;
	}

	.leader-group__list> :nth-child(n + 3) {
		margin-top: 72px;
	}
}

@media only screen and (min-width: 1024px) {
	.leader-group__list> :not(:nth-child(3n + 1)) {
		margin-left: 30px;
	}

	.leader-group__list> :nth-child(n + 4) {
		margin-top: 30px;
	}
}

.leader-group__leader {
	position: relative;
	flex-basis: calc(100% / 3 - 30px * 2 / 3);
	overflow: hidden;
	flex-shrink: 0;
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.leader-group__leader {
		flex-basis: calc(100% / 2 - 15px * 1 / 2);
	}
}

@media only screen and (min-width: 1024px) {
	.leader-group__leader-text {
		opacity: 0;
		transition: opacity 0ms ease 0ms;
		will-change: opacity;
		background-image: linear-gradient(to right, #0c50a0, #427abc);
	}

	.leader-group__leader-text>* {
		opacity: 0;
		transform: translateY(28px);
		transition: opacity 0ms ease 0ms, transform 0ms ease 0ms;
		will-change: transform, opacity;
	}

	.leader-group__leader:hover .leader-group__leader-image {
		opacity: 0;
	}

	.leader-group__leader:hover .leader-group__leader-text {
		opacity: 1;
		transition: opacity 100ms cubic-bezier(0.39, 0.575, 0.565, 1) 0ms;
	}

	.leader-group__leader:hover .leader-group__leader-text>* {
		opacity: 1;
		transform: translateY(0);
		transition: opacity 150ms ease, transform 400ms cubic-bezier(0.39, 0.575, 0.565, 1);
	}

	.leader-group__leader:hover .leader-group__leader-text> :first-child {
		transition-delay: 50ms;
	}

	.leader-group__leader:hover .leader-group__leader-text> :nth-child(2) {
		transition-delay: 75ms;
	}

	.leader-group__leader:hover .leader-group__leader-text> :nth-child(3) {
		transition-delay: 100ms;
	}

	.leader-group__leader:hover .leader-group__leader-text> :nth-child(4) {
		transition-delay: 125ms;
	}

	.leader-group__leader:hover .leader-group__leader-text> :nth-child(5) {
		transition-delay: 150ms;
	}
}

.leader-group__leader-image-wrapper {
	width: 100%;
	padding-top: 120%;
	position: relative;
}

@media only screen and (max-width: 767px) {
	.leader-group__leader-image-wrapper {
		padding-top: 110%;
	}
}

.leader-group__leader-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top center;
}

/* leader text */
.leader-group__leader-text {
	padding: 40px 30px;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: white;
}

@media only screen and (max-width: 767px) {
	.leader-group__leader-text {
		padding: 0;
		padding-bottom: 40px;
		margin-bottom: 60px;
		text-align: center;
	}

	.leader-group__leader-text::after {
		content: "";
		position: absolute;
		bottom: 0;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 100px;
		height: 1px;
		background-color: rgba(0, 0, 0, 0.2);
	}
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.leader-group__leader-text {
		padding: 0;
	}
}

@media only screen and (max-width: 1023px) {
	.leader-group__leader-text {
		margin-top: 16px;
		position: relative;
		color: #303843;
	}
}

/* leader name */
.leader-group__leader-name {
	/* font-family: "GraphikMedium"; */
	font-family: "NotoSans", sans-serif;
	font-weight: 700;
	font-size: 16px;
	line-height: 20px;
}

@media only screen and (max-width: 767px) {
	.leader-group__leader-name {
		font-size: 18px;
		line-height: 1.3;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.leader-group__leader-name {
		font-size: 20px;
		line-height: 1.3;
	}
}

/* leader designation */
.leader-group__leader-designation {
	margin-top: 3px;
	padding-right: 10px;
	font-size: 14px;
	line-height: 20px;
	/* font-family: "GraphikRegular"; */
	font-family: "NotoSans", sans-serif;
	font-weight: 400;

}

@media only screen and (max-width: 767px) {
	.leader-group__leader-designation {
		font-size: 15px;
		line-height: 21px;
		padding-right: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.leader-group__leader-designation {
		font-size: 16px;
		line-height: 1.3;
	}
}

/* leader company */
.leader-group__leader-company {
	margin-top: 24px;
	padding-right: 10px;
	font-size: 14px;
	line-height: 20px;
	/* font-family: "GraphikRegular"; */
	font-family: "NotoSans", sans-serif;
	font-weight: 400;
}

@media only screen and (max-width: 767px) {
	.leader-group__leader-company {
		font-size: 15px;
		line-height: 21px;
		padding-right: 0;
	}
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
	.leader-group__leader-company {
		font-size: 16px;
		line-height: 1.3;
	}
}

/*  */
#media-header .media-header-items {
	padding-left: 365px;
}

#media-header .media-header-items a p.team {
	font-size: 12px;
	color: #1652a3;
	/* font-family: "GraphikMedium"; */
	font-family: "NotoSans", sans-serif;
	font-weight: 700;
}

/*Nav*/
.media {
	/* font-family: "GraphikRegular"; */
	font-family: "NotoSans", sans-serif;
	font-weight: 400;
	color: #303843 !important;
}

.people {
	/* font-family: "GraphikMedium"; */
	font-family: "NotoSans", sans-serif;
	font-weight: 700;
	color: #1652a3 !important;
}

.video-wrapper {
	position: relative;
	cursor: pointer;
}

.video-wrapper__overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	opacity: 0;
}

.video-wrapper:hover .video-wrapper__overlay {
	opacity: 1;
}

.video-wrapper.mb-30 {
	margin-bottom: 30px;
}

img.play-icon {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	pointer-events: none;
	transition: 200ms;
	opacity: 0.5;
	transition: opacity 0.3s;
}

.video-wrapper:hover img.play-icon {
	opacity: 1;
}

.video-wrapper .video-designation {
	position: absolute;
	bottom: 44px;
	left: 44px;
	transition: opacity 0.3s;
	opacity: 0;
}

@media only screen and (max-width: 767px) {
	img.play-icon {
		width: 40px;
		height: 40px;
	}

	.video-wrapper__overlay {
		opacity: 1;
	}

	img.play-icon {
		opacity: 1;
	}

	.video-wrapper .video-designation {
		opacity: 1;
	}
}

li .video-wrapper .video-designation {
	left: 20px;
	bottom: 20px;
}

.video-wrapper:hover .video-designation {
	opacity: 1;
}

.video-designation p {
	font-size: 16px;
	color: #ffffff;
	/* font-family: "GraphikMedium"; */
	font-family: "NotoSans", sans-serif;
	font-weight: 700;
	padding-bottom: 10px;
}

.video-designation span {
	font-size: 12px;
	color: #fff;
	/* font-family: "GraphikRegular"; */
	font-family: "NotoSans", sans-serif;
	font-weight: 400;
}

/*Popup*/

.team-popup-leadership,
.team-popup-video {
	/* position: fixed;
	top:0;
	left:0;
	height: 100vh; */
	height: 100vh;
	width: 100%;
	background-color: white;
	display: none;
	align-items: center;
	justify-content: center;
}

@media only screen and (max-width: 767px) {
	.team-popup-leadership {
		align-items: flex-start;
		height: 100%;
	}
}

.team-popup-leadership.show,
.team-popup-video.show {
	display: flex;
	opacity: 0;
	animation-name: fadePopupIn;
	animation-duration: 400ms;
	animation-timing-function: ease;
	animation-fill-mode: forwards;
}

@keyframes fadePopupIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.team-popup-leadership img.popup-close,
.team-popup-video img.popup-video-close {
	position: absolute;
	top: 40px;
	right: 40px;
	cursor: pointer;
	z-index: 999;
}

@media only screen and (max-width: 767px) {

	.team-popup-leadership img.popup-close,
	.team-popup-video img.popup-video-close {
		top: 24px;
		right: 18px;
	}
}

.popup-description {
	width: 750px;
}

@media only screen and (max-width: 767px) {
	.team-popup-leadership .popup-description {
		width: 100%;
		display: flex;
		flex-direction: column;
		padding-top: 76px;
		padding-bottom: 90px;
		padding-left: 25px;
		padding-right: 25px;
	}
}

.popup-description>div {
	float: left;
}

.popup-description .popup-img img {
	width: 200px;
	height: 240px;
	object-fit: cover;
	object-position: top;
}

@media only screen and (max-width: 767px) {
	.popup-description .popup-img img {
		width: 160px;
		height: 192px;
	}
}

.popup-description .popup-text {
	width: calc(100% - 200px);
	padding-left: 50px;
}

@media only screen and (max-width: 767px) {
	.team-popup-leadership .popup-description .popup-text {
		width: 100%;
		padding-left: 0;
		margin-top: 18px;
	}
}

.popup-description .popup-text h5 {
	color: #303843;
	font-size: 24px;
	line-height: 1;
	/* font-family: "GraphikMedium"; */
	font-family: "NotoSans", sans-serif;
	font-weight: 700;
}

@media only screen and (max-width: 767px) {
	.popup-description .popup-text h5 {
		font-size: 20px;
		line-height: 1;
	}
}

.popup-description .popup-text p.designation {
	font-size: 16px;
	color: #535a64;
	line-height: 24px;
}

.team-popup-leadership__leader-designation span {
	margin-top: 0 !important;
}

.team-popup-leadership__leader-designation {
	display: block;
	margin-top: 4px;
}

.team-popup-leadership__leader-company {
	display: block;
	margin-top: 8px;
	padding-bottom: 28px;
}

.team-popup-leadership__leader-company br {
	display: none;
}

@media only screen and (max-width: 767px) {
	.popup-description .popup-text p.designation {
		font-size: 14px;
		line-height: 20px;
	}

	.team-popup-leadership__leader-designation {
		margin-top: 12px;
	}

	.team-popup-leadership__leader-company {
		margin-top: 12px;
		padding-bottom: 28px;
	}
}

.popup-description .popup-text p.popup-desc {
	font-size: 14px;
	line-height: 24px;
	color: #3d3e46;
}

@media only screen and (max-width: 767px) {
	.popup-description .popup-text p.popup-desc {
		padding-right: 25px;
	}
}

.popup-video {
	width: 780px;
	margin: auto;
}

.people-video {
	object-fit: cover;
	object-position: center;
}

/*Mobile*/
@media only screen and (max-width: 767px) {
	#people-page-intro {
		padding: 50px 0 60px;
	}

	h1 {
		font-size: 30px;
		line-height: 40px;
	}

	.people-video {
		height: 48vw;
		object-fit: cover;
		object-position: center;
	}

	.video-wrapper .video-designation {
		left: 20px;
		bottom: 20px;
	}

	.popup-video {
		width: 100%;
		height: 100%;
		display: flex;
		align-items: center;
		padding-top: 0;
		padding-left: 25px;
		padding-right: 25px;
	}

	.popup-video video {
		width: 100%;
		height: 48vw;
	}
}

/* 15/09/25 content  */

.director-card {
	display: flex;
	align-items: center;
	gap: 30px;
	max-width: 950px;
	margin: 50px auto;
	padding: 35px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.director-image img {
	/* width: 260px;
  height: 300px; */
	width: 222px;
	height: 290px;
	border-radius: 15px;
	object-fit: cover;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	border: 5px solid #f9f9f9;
}
/* iso-content */
.director-content {
	flex: 1;
}

.director-content h2 {
	margin: 0 0 5px;
	font-size: 26px;
	font-weight: 700;
	color: #222;
	position: relative;
	display: inline-block;
}

.director-content h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: #0077b6;
	/* accent color */
	margin-top: 6px;
	border-radius: 3px;
}

.director-content .designation {
	margin: 8px 0;
	font-size: 17px;
	font-weight: 500;
	color: #555;
}

.director-content .company {
	margin: 0 0 40px;
	font-size: 16px;
	font-weight: 600;
	color: #0077b6;
}

.director-content .description {
	font-size: 15px;
	line-height: 1.8;
	color: #444;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
	.director-card {
		flex-direction: column;
		text-align: center;
		padding: 25px;
	}

	.director-image img {
		width:  180px; /* 160px; */
		height:  230px;  /* 160px; */
		margin-bottom: 15px;
	}

	.director-content h2::after {
		margin: 8px auto 0;
	}
}


/* 22-09-2025 */
.iso-card {
	display: flex;
	align-items: center;
	gap: 30px;
	max-width: 950px;
	margin: 50px auto;
	padding: 35px;
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.iso-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.iso-image img {
	/* width: 260px;
  height: 300px; */
	width: 250px;
	height: 330px;
	border-radius: 15px;
	object-fit: cover;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	border: 5px solid #f9f9f9;
}
/* iso-content */
.iso-content {
	flex: 1;
}

.iso-content h2 {
	margin: 0 0 5px;
	font-size: 26px;
	font-weight: 700;
	color: #222;
	position: relative;
	display: inline-block;
}

.iso-content h2::after {
	content: "";
	display: block;
	width: 60px;
	height: 3px;
	background: #0077b6;
	/* accent color */
	margin-top: 6px;
	border-radius: 3px;
}

.iso-content .designation {
	margin: 8px 0;
	font-size: 17px;
	font-weight: 500;
	color: #555;
}

.iso-content .company {
	margin: 0 0 40px;
	font-size: 16px;
	font-weight: 600;
	color: #0077b6;
}

.iso-content .description {
	font-size: 15px;
	line-height: 1.8;
	color: #444;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
	.iso-card {
		flex-direction: column;
		text-align: center;
		padding: 25px;
	}

	.iso-image img {
		width: 213px;
		height: 280px;
		margin-bottom: 15px;
	}

	.iso-content h2::after {
		margin: 8px auto 0;
	}
}