.swiper-slide img {
	width: 100%;
}


.swiper-p {
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: absolute;
	bottom: var(--swiper-pagination-bottom,8px);
	top: var(--swiper-pagination-top,auto);
	transform: translateX(-50%);
	left: 50%;
	bottom: 8%;
	z-index: 10;
}

.srl {
	color: white;
	font-size: 18px;
	z-index: 15;
	opacity: 0;
	user-select: none;
}


.swiper-pagination {
	position: static;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: rgba(160, 160, 160, 0.6);
	width: 112px !important;
	height: 30px !important;
	box-sizing: border-box;
	padding: 0 16px;
	border-radius: 15px;
}

.swiper-pagination-bullet div {
	display: none;
}

.swiper-pagination-bullet .centerCircle {
	background: #FFFFFF;
}

.swiper-pagination-bullet {
	background: transparent;
	display: block;
	width: 20px;
	height: 20px;
	position: relative;
	z-index: 1;
	opacity: 1;
	cursor: pointer;
}
.swiper-pagination-bullet-active div {
	display: block;
}

.swiper-pagination-bullet-active .centerCircle {
	background: black;
}

.centerCircle {
	display: block !important;
	position: absolute;
	transform: translate(-50%, -50%);
	left: 50%;
	top: 50%;
	z-index: 10;
	border-radius: 50%;
	width: 8px;
	height: 8px;
}


.leftRectangle {
	position: absolute;
	background: transparent;
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.leftRectangle>div {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	overflow: hidden;
	transform-origin: right;
	transform:rotate(-180deg); 
	animation: run2 3s linear;
}

.leftRectangle>div>div {
	position: absolute;
	left: 0;
	width: 200%;
	height: 100%;
	mask: radial-gradient(transparent 61%, #000000 64%);
	-webkit-mask: radial-gradient(transparent 61%, #000000 64%);
	background-color: black;
	border-radius: 50%;
}

.rightRectangle {
	position: absolute;
	background: transparent;
	left: 50%;
	width: 50%;
	height: 100%;
	overflow: hidden;
}
.rightRectangle>div {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	overflow: hidden;
	transform-origin: left;
	transform:rotate(-180deg);
	animation: run1 3s linear;
}
.rightRectangle>div>div {
	position: absolute;
	left: -100%;
	width: 200%;
	height: 100%;
	mask: radial-gradient(transparent 61%, #000000 64%);
	-webkit-mask: radial-gradient(transparent 61%, #000000 64%);
	background-color: black;
	border-radius: 50%;
}

@keyframes run1{
	50%{
		transform:rotate(0deg);
	}
	100% {
		transform:rotate(0deg);
	}
}

@keyframes run2{
	50% {
		transform:rotate(-180deg);
	}
	
	100% {
		transform:rotate(0deg);
	}
}