.arc-wrap {
	width: 100%;
	text-align: center;
	padding: 60px 0 40px;
	overflow: hidden;
}

.arc-title {
	font-size: 32px;
	font-weight: 600;
	margin-bottom: 50px;
	color: #111;
}

.arc-slider {
	position: relative;
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	align-items: flex-start;
	justify-content: center;
}

.arc-track {
	position: relative;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
}

.arc-item {
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
	flex-shrink: 0;
	cursor: pointer;
	transform: rotate(var(--rot)) translateY(var(--ty));
	transition: transform 0.4s cubic-bezier(.4, 0, .2, 1), box-shadow 0.4s ease;
}

.arc-item video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
}

@media (hover: hover) {
	.arc-item:hover {
		transform: rotate(var(--rot)) translateY(var(--ty)) scale(1.15);
		z-index: 20;
		box-shadow: 0 25px 50px rgba(0, 0, 0, .35);
	}
}

.arc-item.tapped {
	transform: rotate(var(--rot)) translateY(var(--ty)) scale(1.15);
	z-index: 20;
	box-shadow: 0 25px 50px rgba(0, 0, 0, .35);
}

.arc-btn {
	display: inline-block;
	margin-top: 50px;
	padding: 12px 30px;
	background: #f5891f;
	color: #fff;
	font-weight: 600;
	border-radius: 30px;
	text-decoration: none;
	transition: background 0.3s ease;
}

.arc-btn:hover {
	background: #d9760f;
	color: #fff;
}
