.banner-slide {
	position: absolute !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	width: 100%;
	height: 100%;
}

.banner-slide picture {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	display: block;
}

.banner-slide picture img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.banner-slideshow-dots {
	position: absolute;
	bottom: 24px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 30;
	display: flex;
	gap: 12px;
}

@media (min-width: 768px) {
	.banner-slideshow-dots {
		bottom: 128px;
	}
}

@media (min-width: 1024px) {
	.banner-slideshow-dots {
		bottom: 144px;
	}
}

.banner-dot {
	width: 14px;
	height: 14px;
	border-radius: 9999px;
	border: none;
	outline: none;
	cursor: pointer;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	transition: all 0.3s ease;
	background-color: #ffffff;
	opacity: 0.5;
}

.banner-dot:hover {
	opacity: 0.85;
}

.banner-dot.active {
	background-color: #f04f23;
	opacity: 1;
}