.vc__meta-slide-container {
	position: relative;
	width: 100%;
	height: 0;
	padding-bottom: 66.6667%;
	border-radius: 5px;
	overflow: hidden;
}

.vc__meta-slider .swiper-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 80px;
}

.vc__meta-slide-background,
.vc__meta-slide-foreground {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: left center;
}

.vc__meta-slide-foreground {
	width: 50%;
}

.vc__meta-slider-input {
	position: absolute;
	appearance: none;
	width: 100%;
	height: 100%;
	background: transparent;
	outline: none;
	margin: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.vc__meta-slider-input::-webkit-slider-thumb {
	opacity: 0;
}

.vc__meta-slide-button {
	pointer-events: none;
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	background-color: white;
	left: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.vc__meta-slide-button:before {
	content: '';
	width: 6px;
	height: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.447' height='12' viewBox='0 0 6.447 12'%3E%3Cpath data-name='Polygon 2' d='m6 0 6 6.447H0z' transform='rotate(-90 6 6)' style='fill:%23fff'/%3E%3C/svg%3E%0A");
	position: absolute;
	left: -20px;
}

.vc__meta-slide-button:after {
	content: '';
	width: 6px;
	height: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='6.447' height='12' viewBox='0 0 6.447 12'%3E%3Cpath data-name='Polygon 3' d='m6 0 6 6.447H0z' transform='rotate(90 3.224 3.224)' style='fill:%23fff'/%3E%3C/svg%3E%0A");
	position: absolute;
	right: -20px;
}

.vc__meta-slide-content {
	margin-top: 30px;
}

@media (max-width: 1024px) {
	.vc__meta-slider .swiper-wrapper {
		gap: 35px;
	}
}

@media (max-width: 640px) {
	.vc__meta-slider .swiper-wrapper {
		grid-template-columns: repeat(1, 1fr);
		gap: 35px;
	}
}