.hero {
	position: relative;
	background-image: url('../images/hero-image.webp');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
	width: 100%;
	height: 730px;
	display: flex;
	align-items: end;
	justify-content: center;
}

.hero-items {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 24px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 32px;
	backdrop-filter: blur(10px);
	padding: 24px;
	width: fit-content;
	margin: 0 auto 60px;
}

.hero-title {
	font-size: 26px;
	text-align: center;
}

.hero-title h1 {
	font-weight: 900;
}

.hero-title span {
	color: var(--p-color);
}

@media (max-width: 1400px) {
	.hero-items {
		margin: 0px auto 100px;
		box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	}
}


@media (max-width: 1200px) {
	.hero {
		height: 460px;
	}

	.hero-title h1 {
		font-size: 40px;
	}

	.hero-items {
		margin: 0px auto -80px;
	}
}

@media (max-width: 992px) {
	.hero {
		height: 380px;
	}

	.hero-title h1 {
		font-size: 34px;
	}
}

@media (max-width: 768px) {
	.hero {
		height: 300px;
	}

	.hero-title h1 {
		font-size: 26px;
	}
}

@media (max-width: 576px) {
	.hero {
		height: 250px;
	}

	.hero-title h1 {
		font-size: 20px;
	}
}

@media (max-width: 480px) {
	.hero {
		background-size: cover;
		height: 240px;
	}

	.hero-items {
		border-radius: 20px;
		margin: 0 auto -100px;
		padding: 16px;
		gap: 12px;
	}

	.hero-title h1 {
		font-size: 22px;
		font-weight: 800;
		line-height: 42px;
	}


}

@media (max-width: 400px) {
	.hero-title h1 {
		font-size: 22px;
		font-weight: 800;
		line-height: 36px;
	}
}











