.hd-page {
	overflow: visible;
	overflow-x: clip;
	background-color: #fff;
}

.hd-section {
	position: relative;
	isolation: isolate;
	overflow: hidden;
}

.hd-container {
	max-width: 1200px;
	margin: 0 auto;
	width: 100%;
	position: relative;
}

.hd-accent {
	color: #ed0000;
}

.hd-motion-mask {
	display: block;
	width: 100%;
	overflow: hidden;
	overflow: clip;
}

.hd-animate {
	will-change: transform;
}

.hd-animate[data-anim="up"] {
	transform: translateY(145%);
}

.hd-animate[data-anim="down"] {
	transform: translateY(-145%);
}

.hd-animate[data-anim="left"] {
	transform: translateX(-145%);
}

.hd-animate[data-anim="right"] {
	transform: translateX(145%);
}

.hd-animate.is-visible {
	transform: translate3d(0, 0, 0);
	transition: transform 1.26s cubic-bezier(0.16, 1, 0.3, 1);
	transition-delay: var(--hd-delay, 0ms);
}

.hd-hero {
	height: 100vh;
	height: 100svh;
	min-height: 620px;
	isolation: isolate;
	background: #fff;
	contain: paint;
}

.hd-hero.is-scroll-scene {
	display: block;
	height: auto;
	min-height: var(--hd-hero-scroll-height, 700vh);
	padding: 0;
	overflow: visible;
	contain: none;
}

.hd-hero__stage {
	position: relative;
	display: grid;
	align-items: center;
	width: 100%;
	height: 100vh;
	height: 100svh;
	min-height: 620px;
	overflow: hidden;
	isolation: isolate;
}

.hd-hero.is-scroll-scene .hd-hero__stage {
	position: sticky;
	top: var(--hd-header-height, 0);
	height: calc(100vh - var(--hd-header-height, 0px));
	height: calc(100svh - var(--hd-header-height, 0px));
	min-height: 620px;
}

.hd-hero.is-scroll-scene .hd-hero__content {
	transform: translateY(calc(var(--hero-content-progress, var(--hero-progress, 0)) * -115vh));
	transition: none;
}

.hd-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
	pointer-events: none;
}

.hd-hero__media video,
.hd-hero__poster,
.hd-bg {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hd-hero__poster {
	position: absolute;
	inset: 0;
}

.hd-hero__media video {
	position: absolute;
	inset: 0;
	opacity: 0;
	object-fit: contain;
	object-position: center center;
	background: #fff;
	transform: translateZ(0) scale(1.002);
	backface-visibility: hidden;
	transition: opacity 0.55s ease;
	will-change: contents;
}

.hd-hero__sequence {
	position: absolute;
	inset: 0;
	z-index: 2;
	display: block;
	width: 100%;
	height: 100%;
	opacity: 0;
	background: #fff;
	transition: opacity 0.35s ease;
}

.hd-hero.is-video-ready .hd-hero__media video {
	opacity: 1;
}

.hd-hero.is-sequence-ready .hd-hero__sequence {
	opacity: 1;
}

.hd-hero.is-sequence-ready .hd-hero__media video,
.hd-hero.is-sequence-ready .hd-hero__poster {
	opacity: 0;
	visibility: hidden;
}

.hd-hero__loader {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: #fff;
	transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hd-hero__loader span {
	width: 38px;
	height: 38px;
	border: 2px solid rgba(255, 255, 255, 0.24);
	border-top-color: #fff;
	border-radius: 50%;
	animation: hd-loader-spin 0.8s linear infinite;
}

.hd-hero.is-video-ready .hd-hero__loader {
	opacity: 0;
	visibility: hidden;
}

.hd-hero.is-sequence-ready .hd-hero__loader {
	opacity: 0;
	visibility: hidden;
}

@keyframes hd-loader-spin {
	to {
		transform: rotate(360deg);
	}
}

.hd-bg {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.hd-hero__content {
	position: relative;
	z-index: 2;
	max-width: 560px;
}

.hd-hero__stage > .hd-container {
	z-index: 2;
}

.hd-hero__content.is-scroll-floating {
	will-change: transform;
}

.hd-logo-marquee {
	overflow: hidden;
	contain: layout paint;
}

.hd-logo-marquee__track:not(.slick-initialized) {
	display: flex;
	align-items: center;
	gap: var(--marquee-gap, 20px);
	width: max-content;
}

.hd-logo-marquee .slick-list {
	overflow: visible;
	margin: 0;
}

.hd-logo-marquee .slick-track {
	display: flex;
	align-items: center;
	transition-timing-function: linear !important;
	will-change: transform;
}

.hd-logo-marquee .slick-slide {
	height: auto;
}

.hd-logo-marquee__item {
	flex: 0 0 auto;
	transform: translateZ(0);
}

.hd-faq__panel {
	display: none;
}

.hd-faq__item.is-open .hd-faq__panel {
	display: block;
}

.hd-faq__button {
	width: 100%;
	cursor: pointer;
}

.hd-review__text {
	display: -webkit-box;
	-webkit-line-clamp: var(--review-lines, 5);
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.hd-avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	overflow: hidden;
}

.hd-avatar img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.slick-slide {
	height: auto;
}

@media (prefers-reduced-motion: reduce) {
	.hd-animate,
	.hd-hero__content.is-scroll-floating {
		transform: none !important;
		clip-path: none !important;
		transition: none !important;
	}

	.hd-logo-marquee__track {
		transform: none !important;
	}

	.hd-hero__loader span {
		animation: none;
	}
}

@media (max-height: 700px) {
	.hd-hero {
		min-height: 100svh;
	}
}
