/* La51 Slider Styles */

.la51-slider {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.la51-slider-slides {
	display: flex;
	width: 100%;
	transition: transform 0.5s ease-in-out;
}

.la51-slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	height: 400px;
	overflow: hidden;
}

.la51-slide-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.la51-slide-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.la51-slide-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
}

.la51-slide-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
	display: flex;
	flex-direction: column;
	padding: 40px;
	box-sizing: border-box;
}

.la51-slide-content--left {
	align-items: flex-start;
	text-align: left;
}

.la51-slide-content--center {
	align-items: center;
	text-align: center;
}

.la51-slide-content--right {
	align-items: flex-end;
	text-align: right;
}

.la51-slide-content--v-top {
	justify-content: flex-start;
}

.la51-slide-content--v-center {
	justify-content: center;
}

.la51-slide-content--v-bottom {
	justify-content: flex-end;
}

.la51-slide-heading {
	margin: 0 0 16px;
	color: #ffffff;
	font-size: 2.5rem;
	line-height: 1.2;
}

.la51-slide-description {
	margin: 0 0 24px;
	color: #ffffff;
	font-size: 1.125rem;
	line-height: 1.5;
	max-width: 600px;
}

.la51-slide-button {
	display: inline-block;
	padding: 12px 24px;
	background-color: #2271b1;
	color: #ffffff;
	text-decoration: none;
	font-size: 1rem;
	border-radius: 4px;
	transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
	cursor: pointer;
	border: none;
}

.la51-slide-button:hover {
	background-color: #135e96;
	color: #ffffff;
}

/* Navigation Arrows */
.la51-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
	width: 44px;
	height: 44px;
	background-color: rgba(0, 0, 0, 0.5);
	color: #ffffff;
	border: none;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background-color 0.3s ease;
	padding: 0;
}

.la51-slider-arrow:hover {
	background-color: rgba(0, 0, 0, 0.8);
}

.la51-slider-arrow--prev {
	left: 16px;
}

.la51-slider-arrow--next {
	right: 16px;
}

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

/* Pagination Dots */
.la51-slider-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
	display: flex;
	gap: 10px;
}

.la51-slider-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: rgba(255, 255, 255, 0.5);
	border: none;
	cursor: pointer;
	transition: background-color 0.3s ease;
	padding: 0;
}

.la51-slider-dot.active {
	background-color: #ffffff;
}

.la51-slider-dot:hover {
	background-color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 768px) {
	.la51-slide {
		height: 300px;
	}

	.la51-slide-content {
		padding: 20px;
	}

	.la51-slide-heading {
		font-size: 1.75rem;
	}

	.la51-slide-description {
		font-size: 1rem;
	}

	.la51-slider-arrow {
		width: 36px;
		height: 36px;
	}

	.la51-slider-arrow--prev {
		left: 8px;
	}

	.la51-slider-arrow--next {
		right: 8px;
	}
}
