@charset "utf-8";

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

/* home strength slider
========================================== */
.strengthSliderMenu {
	position: relative;
}

.strengthSliderMenu .custom-pagination {
	display: flex;
	flex-direction: column;
	gap: 10px;
	list-style: none;
	padding: 0;
}

.strengthSliderMenu .custom-pagination li {
	margin-bottom: 10px;
	cursor: pointer;
	border-bottom: 1px solid var(--color-accent);
	color: var(--text-primary);
	font-weight: 500;
}

.strengthSliderMenu .custom-pagination li.active {
	color: var(--color-primary);
	font-weight: 600;
}

.sliderButton {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 35px;
	margin-top: 30px;
}

.sliderInfo {
	font-size: 1.2rem;
	font-weight: 500;
}

.strengthSliderMenu .swiper-button-prev,
.strengthSliderMenu .swiper-button-next {
	position: static !important;
	left: auto !important;
	right: auto !important;
	top: auto !important;
	bottom: auto !important;
	transform: none !important;
	width: 28px !important;
	height: 28px !important;
	padding: 0 !important;
	z-index: 1;
}

.strengthSliderMenu .swiper-button-prev::after,
.strengthSliderMenu .swiper-button-next::after {
	content: "" !important;
	display: block;
	width: 28px;
	height: 28px;
	background: url(../images/arrow_black.svg) no-repeat center / contain;
	position: absolute;
	bottom: 30px;
}

.strengthSliderMenu .swiper-button-prev::after {
	transform: translate(-50%, -50%) rotate(270deg);
}

.strengthSliderMenu .swiper-button-next::after {
	transform: translate(-50%, -50%) rotate(90deg);
}


.strengthSliderMenu .swiper-button-prev:hover,
.strengthSliderMenu .swiper-button-next:hover {
	opacity: 0.6;
}

@media screen and (max-width:840px) {

	.strengthSliderMenu .swiper-button-prev::after,
	.strengthSliderMenu .swiper-button-next::after {
		bottom: 50px;
	}
}

@media screen and (max-width:599px) and (min-width:520px) {

	.strengthSliderMenu .swiper-button-prev::after,
	.strengthSliderMenu .swiper-button-next::after {
		bottom: 30px;
	}
}

/* home case slider
========================================== */
#exampleSlider .swiper-pagination {
	bottom: 0;
}

#exampleSlider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	border-radius: 0;
	background-color: #fff;
	border: 1px solid var(--color-primary);
	opacity: 1;
	margin: 0 5px;
}

#exampleSlider .swiper-pagination-bullet-active {
	background-color: var(--color-primary);
}