/* Mobile Banner Styles */
.hero-mobile {
	position: relative;
	/* background: linear-gradient(135deg, #1f9e7c 0%, #1a7d69 100%); */
	/* background: url('../img/banner/banner-1.jpg'); */
	/* background-attachment: fixed; */
	background : #630213 !important;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 60px 20px;
	overflow: hidden;
}

.hero-mobile::before {
	content: none;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 150px;
	/* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M0,50 Q300,0 600,50 T1200,50 L1200,120 L0,120 Z" fill="%23ffffff" opacity="0.1"/></svg>'); */
	background-size: cover;
	background-repeat: repeat-x;
	animation: wave 3s linear infinite;
	z-index: 1;
}
.hero-mobile-content img{
	margin-bottom: 30px;
}
@keyframes wave {
	0% {
		background-position: 0 0;
	}

	100% {
		background-position: 1200px 0;
	}
}

.hero-mobile-content {
	position: relative;
	z-index: 2;
	text-align: center;
	max-width: 500px;
	margin: 0 auto;
}

.mobile-badge {
	width: 120px;
	height: 120px;
	border: 3px solid #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 30px;
	background: #630213;
	font-size: 14px;
	font-weight: 700;
	color: #f4d03f;
	text-transform: uppercase;
	letter-spacing: 1px;
	overflow: hidden;
}

.hero-mobile-title {
	font-size: 52px;
	font-weight: 700;
	color: #FFFFFF;
	margin-bottom: 20px;
	line-height: 1.1;
	text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero-mobile-title span {
	display: block;
}

.hero-mobile-title .highlight {
	color: #fff;
	font-size: 64px;
}

.hero-mobile-subtitle {
	font-size: 26px;
	color: rgba(255, 255, 255, 0.9);
	margin-bottom: 40px;
	line-height: 36px;
	font-weight: 400;
}

.mobile-btn {
	background: #630213 !important;
	color: #ffffff !important;
	border: 1px solid #fff;
}

.mobile-btn:hover {
	color: #000 !important;
}

.mobile-btn::after {
	filter: brightness(10) !important;
}

.mobile-btn:hover:after {
	filter: none !important;
}

@media(min-width:768px) {
	.hero-mobile {
		display: none;
	}
}