/* Hero Section */
.about-us-hero-section {
	background-image: url("../images/about-us/about-us-hero-section-bg.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100%;
	width: 100%;
	height: 400px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	padding-inline: 100px;
}
.about-us-hero-section-left {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-grow: 1;
	flex-shrink: 0;
	flex-basis: 50%;
}
.about-us-hero-section-left h1 {
	width: 75%;
	font-family: "Inter", sans-serif;
	color: white;
	font-size: 55px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: start;
}
.about-us-hero-section-left h1 .text-color-yellow {
	color: yellow;
}
.about-us-hero-section-right {
	display: flex;
	justify-content: center;
	align-items: end;
	flex-grow: 1;
	flex-shrink: 0;
	flex-basis: 50%;
}

/* Details Section */
.about-us-details-section {
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	padding-block: 100px;
	gap: 45px;
}
.about-us-details-section .about-us-details-container {
	max-width: 1145px;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: start;
	gap: 25px;
}
.about-us-details-section .about-us-details-title {
	font-family: "Inter", sans-serif;
	font-weight: 700;
	font-size: 40px;
	text-transform: capitalize;
	/* line-height: 100%;
	letter-spacing: 0%; */
}
.about-us-details-section .about-us-details-descp {
	font-family: "Poppins", sans-serif;
	font-weight: 300;
	font-size: 22px;
	/* line-height: 100%;
	letter-spacing: 0%; */
}

.about-us-details-section .about-us-details-link {
	color: #1aa7ff;
	text-decoration: none;
}

.about-us-details-section .about-us-details-button {
	font-family: "Inter", sans-serif;
	background: linear-gradient(180deg, #45b8ff 0%, #1aa7ff 100%);
	font-weight: 500;
	font-size: 25px;
	/* line-height: 100%;
	letter-spacing: 0%; */
	text-align: center;
	color: white;
	padding: 8px 72px;
	border: none;
	border-radius: 6px;
}
