/**
 * Hero Slider 10509 Styles
 */

.hero-slider-10509-container {
	position: relative;
	width: 100%;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-slider-10509-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.hero-slider-10509-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.hero-slider-10509-slide.active {
	opacity: 1;
	z-index: 2;
}

.hero-slider-10509-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}

.hero-slider-10509-content {
	position: relative;
	z-index: 4;
	padding: 20px 40px;
	max-width: 800px;
	width: 100%;
}

.hero-slider-10509-heading {
	margin-top: 0;
	margin-bottom: 15px;
}

.hero-slider-10509-description {
	margin-bottom: 25px;
}

.hero-slider-10509-btn {
	display: inline-block;
	text-decoration: none;
	transition: all 0.3s ease;
	cursor: pointer;
	padding: 12px 24px;
}

.hero-slider-10509-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	border: none;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.3s ease;
	padding: 0;
}

.hero-slider-10509-arrow i {
	font-size: 20px;
}

.hero-slider-10509-arrow svg {
	width: 20px;
	height: 20px;
}

.hero-slider-10509-prev {
	left: 20px;
}

.hero-slider-10509-next {
	right: 20px;
}

.hero-slider-10509-arrow:hover {
	opacity: 0.8;
}

.hero-slider-10509-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
	display: flex;
	gap: 10px;
}

.hero-slider-10509-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: none;
	padding: 0;
	cursor: pointer;
	transition: background-color 0.3s ease;
}