.offer-hero {
	position: relative;
	width: 100%;
	height: 70vh;
	min-height: 5%;
	overflow: hidden;
}

.offer-hero-bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.offer-hero-bg::after {
	content: '';
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.40);
}

.offer-hero-content {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
	text-align: center;
	padding: 0 80px;
	gap: 40px;
}

.offer-hero-title {
	font-size: 55px;
	font-weight: 300;
	line-height: 1.3;
	color: #FFFFFF;
	text-transform: uppercase;
	max-width: 1200px;
	margin: 0;
}

.offer-hero-scroll {
	position: relative;
	width: 80px;
	height: 80px;
	padding: 0;
	background: transparent;
	border: 2px solid #FFFFFF;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: background 0.3s ease;
}

.offer-hero-scroll:hover {
	background: rgba(255, 255, 255, 0.2);
}

.offer-hero-scroll img {
	width: 40px;
	height: 40px;
	object-fit: contain;
}

@media (max-width: 1024px) {
	.offer-hero-title {
		font-size: 42px;
	}

	.offer-hero-content {
		gap: 35px;
		padding: 0 40px;
	}
}

@media (max-width: 768px) {
	.offer-hero {
		height: 80vh;
		min-height: 520px;
	}

	.offer-hero-title {
		font-size: 30px;
	}

	.offer-hero-scroll {
		width: 64px;
		height: 64px;
	}

	.offer-hero-scroll img {
		width: 32px;
		height: 32px;
	}
}
