/* ==========================================================================
   Hero section – Swiper pagination
   ========================================================================== */

.hero-section {
	position: relative;
}

.hero-section .swiper-pagination {
	position: absolute;
	z-index: 3;
	display: flex !important;
	align-items: center;
	padding: 0 0.25rem;
	height: 26px;
	background: rgba(0, 0, 0, 0.3);
	border-radius: 100px;
	width: auto !important;
	left: auto !important;
	right: 2rem;
	bottom: 2.5rem;
	transform: none !important;
}

@media (max-width: 680px) {
	.hero-section .swiper-pagination {
		right: auto;
		left: 50% !important;
		bottom: 1rem;
		transform: translateX(-50%) !important;
	}
}

.hero-section .swiper-pagination-bullet {
	opacity: 0.6;
	margin: 0 !important;
	padding: 0;
	position: relative;
	width: 24px;
	height: 26px;
	background: none !important;
}

.hero-section .swiper-pagination-bullet::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 8px;
	height: 8px;
	transform: translate(-50%, -50%);
	border-radius: 50%;
	background: #fff;
	transition: all 0.25s ease;
}

.hero-section .swiper-pagination-bullet-active {
	opacity: 1;
}

.hero-section .swiper-pagination-bullet-active::after {
	width: 14px;
	height: 14px;
}
