.faqs-hero {
	background-color: #05324E;
	padding-top: 100px;
	padding-bottom: 80px;
}

.faqs-hero__inner {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	gap: 40px;
}

.faqs-hero__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 16px;
	width: 50%;
	padding-right: 88px;
}

.faqs-hero__heading {
	margin: 0 0 10px 0;
	font-size: 48px;
	font-weight: 500;
	line-height: 52px;
	color: #FFFFFF;
}

.faqs-hero__description {
	margin: 0;
	font-size: 18px;
	font-weight: 400;
	line-height: 28px;
	color: #FFFFFFB2;
}

.faqs-hero__subtext {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
	line-height: 20px;
	color: #FFFFFFB2;
}

.faqs-hero__image {
	position: relative;
	width: 50%;
	overflow: hidden;
	border-radius: 16px;
}

.faqs-hero__image-img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (max-width: 1024px) {
	.faqs-hero {
		padding-top: 60px;
		padding-bottom: 60px;
	}

	.faqs-hero__inner {
		flex-direction: column;
		gap: 40px;
	}

	.faqs-hero__content {
		width: 100%;
		padding-right: 0;
	}

	.faqs-hero__image {
		width: 100%;
		min-height: 400px;
	}
}

@media (max-width: 767px) {
	.faqs-hero {
		padding-top: 40px;
		padding-bottom: 40px;
	}

	.faqs-hero__inner {
		gap: 20px;
	}

	.faqs-hero__image {
		min-height: 300px;
	}
}
