.gm-hero {
	--gm-hero-accent: #20c941;
	position: relative;
	min-height: 620px;
	overflow: hidden;
	background: #080a09;
	color: #fff;
	isolation: isolate;
}

.gm-hero *,
.gm-hero *::before,
.gm-hero *::after {
	box-sizing: border-box;
}

.gm-hero__slides,
.gm-hero__slide {
	position: absolute;
	inset: 0;
}

.gm-hero__slide {
	display: grid;
	background-color: #080a09;
	background-repeat: no-repeat;
	background-size: cover;
	opacity: 0;
	visibility: hidden;
	transform: scale(1.025);
	transition: opacity .7s ease, transform 1.1s ease, visibility .7s;
}

.gm-hero__slide::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: rgba(0, 0, 0, .48);
	pointer-events: none;
}

.gm-hero__slide.is-active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
	z-index: 1;
}

.gm-hero__inner {
	position: relative;
	z-index: 1;
	display: flex;
	align-items: center;
	width: 100%;
	min-height: inherit;
	padding: 80px 70px 80px 160px;
}

.gm-hero__content {
	max-width: 620px;
}

.gm-hero__title {
	margin: 0;
}

.gm-hero__description {
	max-width: 450px;
	margin-top: 24px;
	color: #d7d7d7;
	font-size: 15px;
	line-height: 1.45;
}

.gm-hero__description p {
	margin: 0;
}

.gm-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	margin-top: 38px;
}

.gm-hero__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 18px;
	min-height: 48px;
	padding: 14px 24px;
	border: 1px solid var(--gm-hero-accent);
	border-radius: 3px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	text-decoration: none !important;
	transition: color .25s ease, background-color .25s ease, transform .25s ease;
}

.gm-hero__button--primary {
	background: var(--gm-hero-accent);
	color: #fff !important;
}

.gm-hero__button--secondary {
	background: transparent;
	color: #fff !important;
}

.gm-hero__button:hover,
.gm-hero__button:focus-visible {
	transform: translateY(-2px);
}

.gm-hero__button--primary:hover,
.gm-hero__button--primary:focus-visible {
	background: transparent;
}

.gm-hero__button--secondary:hover,
.gm-hero__button--secondary:focus-visible {
	background: var(--gm-hero-accent);
}

.gm-hero__counter {
	position: absolute;
	top: 50%;
	left: 62px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	color: #fff;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	transform: translateY(-50%);
}

.gm-hero__rail {
	position: relative;
	width: 1px;
	height: 76px;
	background: rgba(255, 255, 255, .35);
}

.gm-hero__rail span {
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 0;
	background: var(--gm-hero-accent);
	transition: height .5s ease;
}

.gm-hero__dots {
	position: absolute;
	right: 30px;
	bottom: 26px;
	z-index: 3;
	display: flex;
	gap: 8px;
}

.gm-hero__dot {
	appearance: none;
	width: 26px !important;
	height: 3px !important;
	min-height: 3px !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: rgba(255, 255, 255, .4) !important;
	line-height: 0 !important;
	cursor: pointer !important;
	transition: width .25s ease, background-color .25s ease !important;
}

.gm-hero__dot.is-active {
	width: 42px !important;
	background: var(--gm-hero-accent) !important;
}

@media (max-width: 1024px) {
	.gm-hero__inner {
		padding: 70px 50px 70px 110px;
	}

	.gm-hero__counter {
		left: 38px;
	}
}

@media (max-width: 767px) {
	.gm-hero {
		min-height: 620px;
	}

	.gm-hero__slide {
		background-position: 65% center;
	}

	.gm-hero__slide::after {
		background: linear-gradient(90deg, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, .62) 70%, rgba(0, 0, 0, .42) 100%);
	}

	.gm-hero__inner {
		align-items: center;
		padding: 48px 20px 64px !important;
	}

	.gm-hero__content {
		width: 100%;
		max-width: 100% !important;
	}


	.gm-hero__description {
		max-width: 320px;
		margin-top: 16px;
		font-size: 14px;
		line-height: 1.4;
	}

	.gm-hero__actions {
		flex-wrap: nowrap;
		gap: 8px;
		margin-top: 22px;
	}

	.gm-hero__button {
		min-height: 42px;
		padding: 11px 14px;
		font-size: 10px;
		white-space: nowrap;
	}

	.gm-hero__counter {
		top: 28px;
		left: 24px;
		flex-direction: row;
		transform: none;
	}

	.gm-hero__rail {
		width: 64px;
		height: 1px;
	}

	.gm-hero__rail span {
		width: 0;
		height: 1px;
		transition: width .5s ease;
	}

	.gm-hero__dots {
		right: 24px;
		bottom: 18px;
	}

	.gm-hero__dot,
	.gm-hero__dot.is-active {
		height: 3px !important;
		min-height: 3px !important;
		padding: 0 !important;
	}
}

@media (max-width: 359px) {
	.gm-hero__inner {
		padding-inline: 16px !important;
	}

	.gm-hero__button {
		padding-inline: 11px;
		font-size: 9px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.gm-hero__slide,
	.gm-hero__rail span,
	.gm-hero__dot,
	.gm-hero__button {
		transition: none;
	}
}
