.section-header {
	height: 100vh;
	margin-top: -8.4rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: linear-gradient(
		180deg,
		rgba(0, 0, 0, 0.2) 79.56%,
		rgba(0, 0, 0, 0) 87.55%,
		#000000 97.53%
	),
	url(../../assets/images/who_we_are_bg.jpg);
	background-size: cover;
}

.section-hero__headings {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	justify-content: center;
	height: 100%;
	max-width: 62rem;
}

.section-hero__headings--primary {
	font-family: Times New Roman;
	font-weight: 700;
	font-size: clamp(1.5rem, calc(0.7vw + 1rem), 2.1rem);
	text-transform: uppercase;
	color: #ffffff;
}

.section-hero__headings--secoundary {
	font-weight: 700;
	font-size: clamp(2.8rem, calc(1.8vw + 1rem), 4.1rem);
	text-transform: uppercase;
	color: #ffffff;
}

.section-hero__headings--tertiary {
	font-family: DM Sans;
	font-weight: 500;
	font-size: clamp(1.5rem, calc(0.7vw + 1rem), 2.1rem);
	color: #ffffff99;
}

.primary-heading {
	font-family: Times New Roman;
	font-weight: 700;
	font-size: 2rem;
	text-transform: uppercase;
	color: #215f9a;
}

.secoundary-heading {
	font-weight: 500;
	font-size: clamp(2.8rem, calc(1.8vw + 1rem), 4.1rem);
}

.heading-black {
	color: black;
}

.heading-white {
	color: white;
}

.description {
	font-weight: 400;
	font-size: clamp(1.2rem, calc(0.7vw + 1rem), 2.1rem);
}

/* -----------------section-firm------------------------- */
.section-firm__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.section-firm__grid--1 {
	overflow: hidden;

	border-radius: 2rem;
}

.section-firm__grid--1 img {
	width: 100%;
	height: 100%;
	height: auto;
	object-fit: cover;
	filter: hue-rotate(0deg) saturate(100%);
	transition: all 0.4s ease;
	cursor: pointer;
}

.section-firm__grid--1 img:hover {
	filter: hue-rotate(30deg) saturate(120%);
	transform: scale(1.1);
}

.section-firm__grid--2 .firm-gradient {
	background: linear-gradient(239.21deg, #57058d 5.82%, #0aadff 88.96%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.section-firm__grid--2 {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.firm-desc {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: 60rem;
	color: #00000099;
}

/* -----------------section-culture------------------------- */
.section-culture {
	background-color: black;
}
.culture__grid__1--cont-b {
	color: #ffffff99;
}

.section-culture__grid {
	display: grid;
	gap: 4rem;
}

.section-culture__grid--1 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: clamp(2.8rem, calc(2.8vw + 1rem), 5.1rem);
}

.culture__grid__1--cont-a {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: flex-start;
}

.section-culture__grid--2 {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr;
	gap: clamp(0.5rem, calc(1.8vw + 1rem), 3.8rem);
}

.culture-card--cont {
	background: linear-gradient(
		200.66deg,
		rgba(255, 255, 255, 0.1) 3.82%,
		rgba(255, 255, 255, 0.1) 99.05%
	);
	border: 1px solid;
	border-radius: 2rem;
	transition: all 0.4s ease;
	cursor: pointer;
}

.culture-card--cont:hover {
	background: white;
}

.culture-card {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	align-items: center;
	padding: 2rem;
}

.culture-card img {
	max-width: 6rem;
	aspect-ratio: 1;
	height: auto;
}

.culture-card :nth-child(2) {
	font-weight: 500;
	font-size: 3.4rem;
	color: white;
	transition: all 0.4 s ease;
}

.culture-card :nth-child(3) {
	font-weight: 400;
	font-size: 1.6rem;
	color: #ffffffde;
	padding-bottom: 1rem;
	transition: all 0.4 s ease;
	text-align: center;
}

.section-culture__grid--3 {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6rem;
	margin-top: 2rem;
}

.culture__grid__3--cont-a {
	display: grid;
	gap: 4rem;
}

.culture-attribute {
	display: flex;
	gap: 2.4rem;
	cursor: pointer;
}

.culture-attribute--img {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 7.6rem;
	max-height: 7.6rem;
	background-color: #ffffff;
	border: 0.5px solid;
	border-radius: 8px;
	transition: background-color 0.4s ease;
}

.culture-attribute:hover .culture-attribute--img {
	background-color: black;
}

.culture-attribute--about {
	display: flex;
	flex-direction: column;
	gap: 0.8rem;
	max-width: 40rem;
}

.culture-attribute--about span:nth-child(1) {
	font-weight: 500;
	font-size: 2.2rem;
	color: #ffffff;
}

.culture-attribute--about span:nth-child(2) {
	font-weight: 500;
	font-size: 1.6rem;
	color: #ffffffde;
}

.culture-card--cont:hover .culture-card span:nth-child(2) {
	color: #000000;
}

.culture-card--cont:hover .culture-card span:nth-child(3) {
	color: #000000;
}

.culture__grid__3--cont-b {
	overflow: hidden;
	border-radius: 2rem;
}

.culture__grid__3--cont-b img {
	width: 100%;
	height: 100%;
	object-fit: cover;

	filter: hue-rotate(0deg) saturate(100%);
	transition: all 0.4s ease;
	cursor: pointer;
}

.culture__grid__3--cont-b img:hover {
	filter: hue-rotate(30deg) saturate(120%);
	transform: scale(1.1);
}

.section-culture__grid--3-heading {
	font-weight: 700;
	font-size: clamp(2.8rem, calc(1.8vw + 1rem), 4.1rem);
	text-transform: uppercase;
	color: #ffffff;
	margin-bottom: clamp(2.8rem, calc(1.8vw + 1rem), 4.1rem);
}

/* -----------------section-people------------------------- */

.section-people {
	background-color: #000000;
}

.section-people__flex {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: center;
}

.people-heading {
	text-align: center;
}

.people-figures__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 2rem;
	margin-top: 4rem;
}

.people-figure__images {
	max-width: 28rem;
	cursor: pointer;
}

.people_img {
	width: 100%;
	aspect-ratio: 0.8;
	position: relative;
	border-radius: 2rem;
	overflow: hidden;
}

.people_img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.4s ease;
}

.people_img::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0) 62.89%,
		#215f9a 114.18%
	);
	left: 0;
	bottom: 0;
	transition: all 0.4s ease;
}

.people-figure__images:hover .people_img::after {
	opacity: 0;
}

.people-figure__images:hover .people_img img {
	transform: scale(1.05);
}

.people-description {
	max-width: 67rem;
	text-align: center;
	color: white;
}

.people-profile {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.2rem 0;
	text-align: center;
	min-height: 11rem;
}

.people-name {
	font-weight: 500;
	font-size: 2.8rem;
	color: white;
}

.people-designation {
	font-weight: 700;
	font-size: 1.5rem;
	text-transform: uppercase;
	color: #215f9a;
}

/* ----------------Swiper---------------- */

.swiper {
	width: 100%;
	height: 100%;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
	top: 92%;
	padding: 2.5rem;
	background-color: #292524;
	border-radius: 5px;
	color: white;
	cursor: pointer;
	transition: all 0.1s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
	color: #215f9a;
}

.swiper-button-next {
	left: 5%;
}

.swiper-wrapper {
	padding-bottom: 8rem;
	padding-top: 4rem;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 6%;
	text-align: right;
	left: auto;
	right: 0;
	max-width: 400px;
}

.swiper-pagination-bullet {
	background-color: white;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 4rem;
}

@media (max-width: 1024px) {
	.section-firm__grid {
		grid-template-columns: 1fr;
	}

	.firm-desc {
		gap: 1.2rem;
		max-width: unset;
	}

	.section-firm__grid--1 {
		aspect-ratio: 2.4;
	}

	.section-firm__grid--2 {
		justify-content: unset;
		gap: 1rem;
	}

	.section-culture__grid--3 {
		grid-template-columns: 1fr;
		gap: 6rem;
	}

	.culture__grid__3--cont-a {
		grid-template-columns: 1fr 1fr;
		gap: 2rem;
	}

	.culture__grid__3--cont-b {
		border-radius: 2rem;
		aspect-ratio: 2.4;
	}

	.people-designation {
		font-size: 1.5rem;
		text-transform: uppercase;
		color: #215f9a;
	}
	.people-figures__grid {
		gap: 2rem;
		margin-top: 2rem;
	}

	.people-profile {
		gap: 1rem;
		padding: 1rem 0;
		min-height: 8.5rem;
	}

	.people-figures__grid {
		grid-template-columns: repeat(4, 1fr);
		margin-top: 3rem;
	}

	.swiper-button-next {
		left: 7%;
	}
}

@media (max-width: 768px) {
	.section-culture__grid--1 {
		grid-template-columns: 1fr;
	}
	.section-culture__grid--2 {
		grid-template-columns: 1fr 1fr;
	}

	.culture__grid__3--cont-a {
		grid-template-columns: 1fr;
		justify-items: baseline;
	}

	.culture-attribute--about {
		max-width: 100%;
	}

	.people-figures__grid {
		grid-template-columns: repeat(3, 1fr);
		margin-top: 3rem;
	}

	.people-profile {
		gap: 1rem;
		padding: 1rem 0;
		min-height: 8.5rem;
	}

	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 3rem;
	}
}

@media (max-width: 576px) {
	.people-figures__grid {
		grid-template-columns: 1fr;
	}
	.culture-attribute--about span:nth-child(1) {
		font-size: 1.8rem;
	}
	.culture-attribute--about span:nth-child(2) {
		font-size: 1.2rem;
	}

	.people-figures__grid {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 2rem;
		gap: 1rem;
	}

	.people-designation {
		font-size: 1rem;
	}

	.people-profile {
		gap: 0.5rem;
		min-height: 5rem;
	}
	.people-figures__grid {
		row-gap: 1.5rem;
	}

	.swiper-button-next:after,
	.swiper-button-prev:after {
		font-size: 3rem;
	}

	.swiper-button-next {
		left: 20%;
	}
}
