.about-us-hero-section {
	height: 200px;
	width: 100%;
	position: relative;
	background: url("../images/contact-hero.webp") no-repeat center center;
	/* padding: 60px 0; */
	z-index: 1;
}
.about-us-hero-section-overlay {
	background-color: rgba(4, 36, 92, 0.9);
	/* #04245c with opacity */
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.about-us-hero-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.about-us-hero-content-title {
	text-align: center;
	font-size: 45px;
	font-weight: bold;
}
.about-us-hero-content p {
	text-align: center;
	font-size: 20px;
	color: white;
}
.about-us-hero-content button {
	background-color: red;
	color: white;
	padding: 8px 30px;
	border-radius: 5px;
	font-weight: bold;
	text-decoration: none;
	transition: 0.3s;
	border: none;
}

/* Responsive  */
@media (max-width: 992px) {
	.about-us-hero-section {
		height: auto;
		background-size: cover;
	}

	.about-us-hero-content-title {
		font-size: 32px;
	}
	.about-us-hero-content {
		padding: 30px 21px;
	}

	.about-us-hero-content p {
		font-size: 18px;
		margin: 10px 0;
		text-align: center;
	}

	.about-us-hero-content button {
		font-size: 16px;
		padding: 10px 25px;
	}
}

@media (max-width: 576px) {
	.about-us-hero-content-title {
		font-size: 24px;
	}

	.about-us-hero-content p {
		font-size: 16px;
	}

	.about-us-hero-content button {
		width: 100%;
		max-width: 280px;
		padding: 10px;
	}
}

/* Responsive  */
/* -----------------------------------------------------------------  */

/* First Section  */
.about-us-first-section {
	height: 648px;
	width: 100%;
}
.about-us-first-section-content {
	display: flex;
	justify-content: space-between;
	gap: 120px;
	margin-top: 47px;
}

.about-us-first-section-content-left {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.about-us-first-section-content-left-title {
	font-size: 50px;
	font-weight: bold;
}

.about-us-first-section-content-left-top p {
	font-size: 18px;
}

.about-us-first-section-content-left-mid-title {
	font-size: 20px;
	font-weight: bold;
}

.about-us-first-section-content-left-top p {
	font-size: 18px;
	font-weight: bold;
}

.about-us-first-section-content-left-long-title {
	font-size: 15px;
}

/* cards  */
.about-us-cards-section-content-cards {
	display: flex;
	gap: 24px;
	justify-content: center;
	align-items: center;
}

.about-us-cards-section-content-card {
	position: relative;
	text-align: center;
	width: 152px;
	height: 71px;
	background: #04245c;
	border-radius: 4px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding-top: 22px;
}

.about-us-cards-section-content-card a {
	display: block;
	text-decoration: none;
	height: 100%;
}

.about-us-cards-section-content-card img {
	position: absolute;
	top: -16px;
	left: 50%;
	transform: translateX(-50%);
	width: 35px;
	height: 35px;
}

.about-us-cards-section-content-card p {
	color: white;
	font-size: 12px;
	margin-top: 10px;
	line-height: 1.2;
	/* font-weight: 600; */
}
/* First Section  */
@media (max-width: 991px) {
	.about-us-first-section-content {
		flex-direction: column-reverse;
		align-items: center;
		gap: 40px;
	}

	.about-us-first-section-content-right img {
		width: 100%;
		max-width: 400px;
	}

	.about-us-cards-section-content-cards {
		flex-wrap: wrap;
		justify-content: center;
		gap: 16px;
	}

	.about-us-cards-section-content-card {
		width: 130px;
		height: 70px;
	}

	.about-us-first-section-content-left-title {
		font-size: 36px;
	}

	.about-us-first-section-content-left-top p,
	.about-us-first-section-content-left-mid-title {
		font-size: 16px;
	}

	.about-us-first-section-content-left-long-title {
		font-size: 14px;
	}
}

@media (max-width: 575px) {
	.about-us-first-section {
		height: auto;
		padding: 30px 0;
	}

	.about-us-first-section-content {
		gap: 30px;
		padding: 0 15px;
	}

	.about-us-first-section-content-left-title {
		font-size: 28px;
	}

	.about-us-cards-section-content-card {
		width: 100%;
		height: auto;
		padding: 20px 0 15px;
	}

	.about-us-cards-section-content-card p {
		font-size: 13px;
	}

	.about-us-cards-section-content-card img {
		width: 30px;
		height: 30px;
	}
}

/* -----------------------------------------------  */

/* Why Choose Section  */
.why-choose-section {
	height: 564px;
	width: 100%;
	position: relative;
	background: url("../images/contact-hero.webp") no-repeat center center;
	/* padding: 60px 0; */
	z-index: 1;
}
.why-choose-section-overlay {
	background-color: rgba(230, 230, 230, 0.85);
	/* #04245c with opacity */
	width: 100%;
	height: 100%;
	position: relative;
	z-index: 2;
}
.why-choose-section-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.why-choose-section-content-title {
	text-align: center;
	font-size: 50px;
	font-weight: bold;
}

/* Why Choose Cards  */
.why-choose-cards-section-content-cards {
	display: flex;
	gap: 24px;
	justify-content: center;
	align-items: center;
}

.why-choose-cards-section-content-card {
	position: relative;
	text-align: center;
	width: 264px;
	height: 195px;
	/* background: #04245c; */
	border-radius: 14px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	padding-top: 22px;
}

.why-choose-cards-section-content-card a {
	display: block;
	text-decoration: none;
	height: 100%;
}

.why-choose-cards-section-content-card img {
	position: absolute;
	top: -41px;
	left: 50%;
	transform: translateX(-50%);
	width: 100px;
	height: 71px;
}

.why-choose-cards-section-content-card p {
	/* font-size: 12px; */
	margin-top: 10px;
	/* line-height: 1.2; */
	/* font-weight: 600; */
}
.why-choose-cards-section-content-card-title {
	font-size: 18px;
	font-weight: bold;
	margin-top: 30px !important;
}
.why-choose-cards-section-content-card-text {
	font-size: 12px;
}
/* Why Choose Cards  */

/* Responsive  */
@media (max-width: 991px) {
	.why-choose-section {
		height: auto;
		padding: 60px 0;
		background-size: cover;
	}

	.why-choose-section-content {
		padding: 0 20px;
	}

	.why-choose-cards-section-content-cards {
		flex-wrap: wrap;
		gap: 20px;
		justify-content: center;
	}

	.why-choose-cards-section-content-card {
		width: 100%;
		max-width: 300px;
		margin: 0 auto;
	}
}

@media (max-width: 576px) {
	.why-choose-section-content-title {
		font-size: 32px;
		text-align: center;
	}

	.why-choose-cards-section-content-card img {
		width: 80px;
		height: 60px;
		top: -30px;
	}

	.why-choose-cards-section-content-card-title {
		font-size: 16px;
		margin-top: 25px !important;
	}

	.why-choose-cards-section-content-card-text {
		font-size: 11px;
	}
}

/* Responsive  */
/* Why Choose Section  */
/* -----------------------------------------------  */
