.home-slider {
	position: relative;
	width: 100%;
	height: 70vh;
	min-height: 350px;
	max-height: 700px;
	overflow: hidden;
	background: #E9E9E9;
}

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

.home-slider-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0;
	transition: opacity 900ms ease-in-out;
	z-index: 1;
}

.home-slider-slide.is-active {
	opacity: 1;
	z-index: 2;
}

.home-slider-caption {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 900px;
	text-align: center;
	color: #fff;
	text-shadow: rgba(0, 0, 0, 0.25) 0 0 7px;
}

.home-slider-caption h2 {
	font-family: Montserrat, sans-serif;
	font-weight: 700;
	font-size: 42px;
	line-height: 1.15;
	color: #fff;
	margin: 0 0 20px;
}

.home-slider-caption p {
	font-family: Lato, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: #fff;
	margin: 0 0 28px;
}

.home-slider-arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
	border: 0;
	cursor: pointer;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 1;
	padding: 0;
	transition: background 200ms ease;
}

.home-slider-arrow:hover {
	background: rgba(0, 0, 0, 1);
}

.home-slider-arrow.prev { left: 20px; }
.home-slider-arrow.next { right: 20px; }

.home-slider-dots {
	position: absolute;
	bottom: 16px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 5;
}

.home-slider-dot {
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	border: 0;
	cursor: pointer;
	padding: 0;
}

.home-slider-dot.is-active {
	background: #fff;
}

.home-slider-timer {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 5px;
	background: rgba(0, 0, 0, 0.6);
	width: 0%;
	z-index: 5;
}

@media (max-width: 767px) {
	.home-slider-caption h2 { font-size: 26px; }
	.home-slider-caption p { display: none; }
	.home-slider-arrow { width: 32px; height: 32px; font-size: 14px; }
}
