 .svc-slider-wrapper {
 	width: 100%;
 	max-width: 1400px;
 	margin: 0 auto;
 	padding: 60px 0 50px;
 	position: relative;
 }

 .svc-slider-wrapper *,
 .svc-slider-wrapper *::before,
 .svc-slider-wrapper *::after {
 	box-sizing: border-box;
 	margin: 0;
 	padding: 0;
 }

 /* Стрелки */
 .svc-arrow {
 	position: absolute;
 	top: 50%;
 	transform: translateY(-60%);
 	width: 54px;
 	height: 54px;
	border-radius: 50px;
	background: linear-gradient(180deg, #19D3C5 -155.41%, rgba(25, 211, 197, 0.00) 123.65%);
	box-shadow: 0 -1px 10px 0 rgba(255, 255, 255, 0.30) inset;
 	border: none;
 	cursor: pointer;
 	display: flex;
 	align-items: center;
 	justify-content: center;
 	z-index: 10;
 	transition: background 0.3s;
 	backdrop-filter: blur(4px);
 	flex-shrink: 0;
 }

 .svc-arrow:hover {
 	background: rgba(255, 255, 255, 0.28);
 }

 .svc-arrow svg {
 	width: 22px;
 	height: 22px;
 	fill: none;
 	stroke: #fff;
 	stroke-width: 2.5;
 	stroke-linecap: round;
 	stroke-linejoin: round;
 	display: block;
 }

 .svc-arrow--prev {
 	left: -80px;
 }

 .svc-arrow--next {
 	right: -20px;
 }

 /* Viewport */
 .svc-slider-viewport {
 	overflow: hidden;
 	margin: 0;
 }

 /* Track */
 .svc-slider-track {
 	display: flex;
 	transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 	will-change: transform;
 }

 /* Слайд */
 .svc-slide {
 	min-width: 100%;
 	display: grid;
 	grid-template-columns: 1fr 1fr;
 	gap: 10px 60px;
 	padding: 0 20px;
 }

 /* Карточка */
 .svc-item {
 	padding: 18px 0 22px;
 }

 .svc-item__title-row {
 	display: flex;
 	align-items: center;
 	gap: 14px;
 	margin-bottom: 10px;
 }

 .svc-item__icon {
 	width: 36px;
 	height: 36px;
 	flex-shrink: 0;
 	display: block;
 }

 .svc-item__title {
	color: #FBE122;
	font-size: 30px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
 }

 .svc-item__desc {
	color: #FFF;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
 	padding-left: 50px;
 }

 /* Прогресс-бар */
 .svc-progress-wrap {
 	margin: 40px 20px;
 	position: relative;
 	overflow: hidden;
	border-radius: 33px;
	background: #402D63;
	height: 20px;
	padding: 0 15px;
 }

 .svc-progress-bar {
	height: 6px;
	border-radius: 33px;
	background: #FBE122;
	margin-top: 7px;
		transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 }

 /* Адаптив */
 @media (max-width: 900px) {
 	.svc-slide {
 		grid-template-columns: 1fr;
 		gap: 0;
 	}

 	.svc-slider-viewport {
 		margin: 0;
 	}

 	.svc-progress-wrap {
 		margin: 30px 20px;
 	}

 	.svc-item__title {
 		font-size: 18px;
 	}
 }

@media (max-width: 560px) {
 	.svc-slider-viewport {
 		margin: 0;
 	}

 	.svc-progress-wrap {
 		margin: 24px 20px;
 	}

 	.svc-item__title {
 		font-size: 16px;
 	}

 	.svc-item__desc {
 		font-size: 13px;
 	}
 }

@media (max-width: 1490px) {
	.svc-arrow {
		top: auto;
		bottom: 40px;
	}

	.svc-progress-wrap {
		margin: 40px 80px;
	}

	.svc-arrow--next {
		right: 10px;
	}
	
	.svc-arrow--prev {
		left: 20px;
	}

	.svc-arrow {
		background: none;
		box-shadow: none;
	}
	.svc-arrow:hover {
		background: rgba(255, 255, 255, 0);
	}
	.svc-arrow svg {
		/* width: 22px;
		height: 22px; */
		fill: none;
		stroke: #fff;
		stroke-width: 2.5;
		stroke-linecap: round;
		stroke-linejoin: round;
		display: block;
	}

	.svc-slide {
		padding: 0 0px;
	}
}

@media (max-width: 768px) {
	.svc-slider-wrapper {
		padding-bottom: 0;
	}

	.svc-slide .svc-item {
		padding-bottom: 0;
	}

	.svc-slide .svc-item:first-child {
		padding-top: 0;
	}

	.svc-slide .svc-item:not(:first-child) {
		padding-top: 25px;
	}

	.svc-mobile-controls {
		display: flex;
		align-items: center;
		gap: 14px;
		margin: 52px 0 0;
	}

	.svc-mobile-controls .svc-arrow {
		position: static !important;
		transform: none !important;
		bottom: auto !important;
		left: auto !important;
		right: auto !important;
		width: 32px;
		height: 44px;
		padding: 0 !important;
		background: transparent !important;
		box-shadow: none !important;
		backdrop-filter: none !important;
	}

	.svc-mobile-controls .svc-arrow--prev {
		justify-content: flex-start;
	}

	.svc-mobile-controls .svc-arrow--next {
		justify-content: flex-end;
	}

	.svc-mobile-controls .svc-arrow svg {
		height: 24px;
		width: auto;
	}

	.svc-mobile-controls .svc-progress-wrap {
		flex: 1 1 auto;
		width: auto;
		margin: 0 !important;
	}
}

/* Full width progress within container-custom content area */
.container-custom .svc-progress-wrap {
	margin-left: 0 !important;
	margin-right: 0 !important;
	width: 100%;
}
