.index-hero-slider {
	position: relative;
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 0 0 24px;
	background: transparent;
	color: #222;
	box-sizing: border-box;
}

.index-hero-slider__viewport {
	position: relative;
	overflow: hidden;
	width: 100%;
}

.index-hero-slider__progress {
	position: absolute;
	bottom: 20px;
	top: auto;
	left: 50%;
	right: auto;
	z-index: 5;
	display: flex;
	gap: 8px;
	width: 100%;
	max-width: 680px;
	transform: translateX(-50%);
	pointer-events: auto;
}

.index-hero-slider__progress-item {
	position: relative;
	flex: 1 1 0;
	height: 3px;
	border-radius: 999px;
	background: rgba(0, 0, 0, 0.14);
	overflow: hidden;
	cursor: pointer;
}

.index-hero-slider__progress-fill {
	position: absolute;
	inset: 0 auto 0 0;
	width: 0;
	border-radius: inherit;
	background: #222;
	transform-origin: left center;
}

.index-hero-slider__progress-item.is-done .index-hero-slider__progress-fill {
	width: 100%;
	transition: none;
}

.index-hero-slider__progress-item.is-active .index-hero-slider__progress-fill {
	width: 100%;
	transition: width linear;
	transition-duration: var(--hero-progress-ms, 5000ms);
}

.index-hero-slider__progress-item.is-active.is-reset .index-hero-slider__progress-fill {
	width: 0;
	transition: none;
}

.index-hero-slider__swiper {
	overflow: hidden;
	width: 100%;
}

.index-hero-slider__slide {
	height: auto;
	width: 100%;
}

.index-hero-slider__card {
	position: relative;
	display: block;
	min-height: 420px;
	padding: 40px 0 56px;
	border-radius: 0;
	background: transparent;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	color: inherit;
}

.index-hero-slider__card-inner {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 24px;
	min-height: inherit;
}

.index-hero-slider__content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: min(620px, 46%);
	max-width: 46%;
	min-width: 0;
	margin-left: clamp(24px, 8vw, 140px);
	padding: 0;
	box-sizing: border-box;
}

.index-hero-slider__title {
	margin: 0 0 14px;
    font-size: 42px;
    font-weight: 600;
    line-height: 1.12;
    color: #28303f !important;
}

.index-hero-slider__subtitle {
	margin: 0 0 28px;
	font-size: 18px;
	line-height: 1.45;
	color: #6e788a;
}

.index-hero-slider__buttons {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 8px;
	width: auto;
}

.index-hero-slider__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: auto;
	min-width: 0;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 999px;
	background: #ffd400;
	color: #222 !important;
	font-size: 13px;
	font-weight: 500;
	line-height: 1;
	text-decoration: none;
	white-space: nowrap;
	transition: background-color 0.2s ease, transform 0.2s ease;
}



.index-hero-slider__btn:hover {
	background: #f4c800;
	color: #222 !important;
	transform: translateY(-1px);
}

.index-hero-slider__btn--secondary {
	background: transparent;
	border: 1px solid rgba(40, 48, 63, 0.18);
	color: #28303f !important;
}

.index-hero-slider__btn--secondary:hover {
	background: #f7f9fb;
	color: #28303f !important;
}

.index-hero-slider__media {
	position: absolute;
	right: 120px;
	/* right: clamp(0px, 2vw, 24px); */
	bottom: 0;
	top: 0;
	z-index: 1;
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	width: 48%;
	pointer-events: none;
}

.index-hero-slider__media img {
	display: block;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: bottom right;
}

@media (max-width: 991px) {
	.index-hero-slider__card {
		min-height: 360px;
		padding: 48px 0 28px;
	}

	.index-hero-slider__content {
		width: min(360px, 50%);
		max-width: 50%;
		margin-left: clamp(12px, 4vw, 48px);
	}

	.index-hero-slider__subtitle {
		font-size: 14px;
		margin-bottom: 20px;
	}
}

@media (max-width: 767px) {
	.index-hero-slider__progress {
		bottom: 0px;
		top: auto;
		max-width: calc(100% - 40px);
	}

	.index-hero-slider__card {
		min-height: 0;
		padding: 40px 0 0;
	}

	.index-hero-slider__card-inner {
		flex-direction: column;
	}

	.index-hero-slider__content {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
		padding-bottom: 16px;
	}

	.index-hero-slider__media {
		position: relative;
		width: 100%;
		height: 200px;
		justify-content: center;
	}

	.index-hero-slider__media img {
		object-position: center bottom;
		max-height: 200px;
	}

	.index-hero-slider__title {
		font-size: 26px;
	}
}
