.qba-home-slider {
	position: relative;
	width: min(1200px, 100%);
	margin: clamp(1rem, 4vw, 2.5rem) auto;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: #272727;
	box-shadow: 0 15px 40px rgba(5, 16, 55, 0.25);
}

.qba-home-slider__track {
	position: relative;
	height: 100%;
	width: 100%;
}

.qba-home-slider__slide {
	position: absolute;
	inset: 0;
	margin: 0;
	opacity: 0;
	transition: opacity 500ms ease, transform 500ms ease;
	background-color:#272727 ;
}

.qba-home-slider__slide.is-active {
	opacity: 1;
	transform: scale(1);
	z-index: 1;
}

.qba-home-slider__slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.qba-home-slider__caption {
	position: absolute;
	top: 50%;
	left: 10%;
	right: 10%;
	transform: translateY(-50%);
	background: rgba(64, 64, 64, 0.5);
	padding: 1rem 2.5rem;
	text-align: center;
	/*display: flex;*/
	/*flex-direction: column;*/
	/*align-items: center;*/
	/*justify-content: center;*/
	/*gap: 0rem;*/
	z-index: 2;
	border-radius: 1px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
	min-height: 150px;
	line-height: 1;
	margin: 0;
}

.qba-home-slider__caption-title,
.qba-home-slider__caption-subtitle {
	margin: 0;
	padding: 0;
	line-height: 1.2;
}

.qba-home-slider__caption-title {
	font-weight: 600;
}

.qba-home-slider__caption-subtitle {
	font-weight: 400;
	opacity: 0.95;
}

.qba-home-slider__nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 18px;
	background: rgba(6, 18, 48, 0.55);
	color: #fff;
	cursor: pointer;
	transition: background 200ms ease;
	z-index: 2;
}

.qba-home-slider__nav:hover,
.qba-home-slider__nav:focus-visible {
	background: rgba(6, 18, 48, 0.85);
	outline: none;
}

.qba-home-slider__nav--prev {
	left: 1rem;
}

.qba-home-slider__nav--next {
	right: 1rem;
}

.qba-home-slider__dots {
	position: absolute;
	left: 50%;
	bottom: 1.25rem;
	transform: translateX(-50%);
	display: flex;
	gap: 0.5rem;
	z-index: 2;
}

.qba-home-slider__dot {
	width: 12px;
	height: 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.45);
	border: none;
	cursor: pointer;
	transition: transform 150ms ease, background 150ms ease;
}

.qba-home-slider__dot.is-active {
	transform: scale(1.4);
	background: #fff;
}

.qba-home-slider__nav {
    
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
}



@media (max-width: 768px) {
	.qba-home-slider {
		border-radius: 1px;
	}

	.qba-home-slider__nav {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.qba-home-slider__slide {
		transition: opacity 0.01s;
	}
}