.home-header-image-container {
	background-size: cover;
	background-image: url('../../assets/img/slider1.avif');
	background-position: center 40%;
	color: white;
	height: 400px;
	display: flex;
	align-items: center;
	position: relative;
	z-index: 1;
}

.home-header-image-container::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: -1;
}

.home-header-image-text-content {
	padding: 2rem 0;
	max-width: 600px;
}

.home-header-image-title {
	font-size: 2.8rem;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 0.5rem;
	text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.home-header-image-subtitle {
	font-size: 1.1rem;
	font-weight: 400;
	margin-bottom: 2rem;
}

.home-header-image-flag-text {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.home-header-image-flag-icon {
	color: white;
	font-size: 1.2rem;
	margin-right: 0.5rem;
}

@media (max-width: 991.98px) {
	.home-header-image-container {
		height: 350px;
		margin-bottom: 0;
		background-position: center center;
	}
	.home-header-image-text-content {
		padding: 1rem;
		text-align: center;
		max-width: 100%;
	}
	.home-header-image-title {
		font-size: 1.8rem;
	}
	.home-header-image-subtitle {
		font-size: 0.9rem;
	}
	.home-header-image-flag-text {
		justify-content: center;
	}
}


