@font-face {
	font-family: "PP Mori";
	src: url("../fonts/PPMori-Regular.woff2") format("woff2");
	font-display: swap;
	font-style: normal;
	font-weight: 400;
}

@font-face {
	font-family: "PP Mori";
	src: url("../fonts/PPMori-SemiBold.woff2") format("woff2");
	font-display: swap;
	font-style: normal;
	font-weight: 600;
}

@font-face {
	font-family: "Editorial New";
	src: url("../fonts/EditorialNew-Italic.woff2") format("woff2");
	font-display: swap;
	font-style: italic;
	font-weight: 400;
}

.product-on-scroll {
	--pos-bg: #fff;
	--pos-card: #f5f5f5;
	--pos-icon-bg: #fff;
	--pos-text: #3b3b3b;
	--pos-arrow: var(--pos-text);
	--pos-u: calc(100vw / 120);
	position: relative;
	width: 100%;
	height: calc(var(--pos-u) * 90.4);
	margin: calc(var(--pos-u) * 9) 0 calc(var(--pos-u) * 8);
	background: var(--pos-bg);
	color: var(--pos-text);
	font-family: "PP Mori", sans-serif;
	font-size: var(--pos-u);
	line-height: calc(var(--pos-u) * 1.2);
	overflow: visible;
}

.product-on-scroll * {
	box-sizing: border-box;
}

.product-on-scroll img {
	display: block;
	max-width: 100%;
	user-select: none;
}

.product-on-scroll .pos-container {
	position: relative;
	width: 92%;
	height: 100%;
	margin-right: auto;
	margin-left: auto;
	padding: 0 calc(var(--pos-u) * .75);
}

.product-on-scroll .pos-text {
	position: relative;
	z-index: 4;
	height: calc(var(--pos-u) * 13.875);
}

.product-on-scroll .pos-title {
	position: relative;
	width: 100%;
	margin: 0;
	color: var(--pos-text);
	font-size: calc(var(--pos-u) * 4.5);
	font-weight: 600;
	letter-spacing: 0;
	line-height: calc(var(--pos-u) * 4.95);
	text-transform: uppercase;
}

.product-on-scroll .pos-title--mobile {
	display: none;
}

.product-on-scroll .pos-masking-text {
	display: block;
	overflow: hidden;
}

.product-on-scroll .pos-word {
	display: inline-block;
	transform: translateY(102%);
	transition: transform 900ms cubic-bezier(.22, 1, .36, 1);
}

.product-on-scroll.is-inview .pos-word {
	transform: translateY(0);
}

.product-on-scroll .pos-title-serif {
	position: absolute;
	top: calc(var(--pos-u) * 10);
	left: calc(var(--pos-u) * 28.5);
	width: calc(var(--pos-u) * 22.34);
	font-family: "Editorial New", serif;
	font-size: calc(var(--pos-u) * 6.3);
	font-style: italic;
	font-weight: 400;
	line-height: calc(var(--pos-u) * 7.2);
	text-transform: none;
}

.product-on-scroll .pos-title-serif::after {
	position: absolute;
	right: 0;
	bottom: calc(var(--pos-u) * 1.22);
	left: 0;
	height: 2px;
	background: currentColor;
	content: "";
	transform: scaleX(.98);
	transform-origin: left center;
}

.product-on-scroll .pos-description {
	width: calc(var(--pos-u) * 23);
	margin: calc(var(--pos-u) * 1.6) 0 0;
	color: var(--pos-text);
	font-size: var(--pos-u);
	font-weight: 400;
	line-height: calc(var(--pos-u) * 1.2);
}

.product-on-scroll .pos-arrow {
	position: absolute;
	top: 0;
	left: 46.95%;
	width: calc(var(--pos-u) * 41.53);
	height: calc(var(--pos-u) * 34.78);
	overflow: visible;
	pointer-events: none;
}

.product-on-scroll .pos-arrow path {
	fill: none;
	stroke: var(--pos-arrow);
	stroke-linecap: round;
	stroke-linejoin: round;
	stroke-width: 1.15;
	vector-effect: non-scaling-stroke;
}

.product-on-scroll .pos-arrow--mobile {
	display: none;
}

.product-on-scroll .pos-wrapper {
	position: relative;
	z-index: 2;
	height: calc(var(--pos-u) * 68.5);
	margin-top: calc(var(--pos-u) * 8.0625);
}

.product-on-scroll .pos-main-image-wrap {
	position: absolute;
	z-index: 0;
	top: 50%;
	left: 50%;
	width: 70%;
	height: 100%;
	overflow: visible;
	border-radius: 0;
	pointer-events: none;
	transform: translate(-50%, -50%);
}

.product-on-scroll .pos-main-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: fill;
	object-position: center center;
}

.product-on-scroll .pos-floating-image {
	position: absolute;
	z-index: 3;
	width: calc(var(--pos-u) * 17);
	pointer-events: none;
	will-change: transform;
}

.product-on-scroll .pos-image-1 {
	top: 20%;
	right: 5%;
}

.product-on-scroll .pos-image-2 {
	bottom: 7%;
	left: 25%;
}

.product-on-scroll .pos-firstrow,
.product-on-scroll .pos-secondrow {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: flex-start;
	width: 100%;
	height: calc(var(--pos-u) * 39.7);
}

.product-on-scroll .pos-secondrow {
	justify-content: flex-end;
	margin-top: calc(var(--pos-u) * -10.89);
}

.product-on-scroll .pos-item {
	width: calc(var(--pos-u) * 20);
	margin: 12% calc(var(--pos-u) * 1.8) 0 0;
	padding: calc(var(--pos-u) * 4) calc(var(--pos-u) * 2.5) calc(var(--pos-u) * 3);
	border-radius: 14px;
	background: var(--pos-card);
	color: var(--pos-text);
	text-align: center;
	will-change: transform;
}

.product-on-scroll .pos-firstrow .pos-item:nth-child(2),
.product-on-scroll .pos-secondrow .pos-item:nth-child(2) {
	margin-top: 0;
	margin-right: 0;
}

.product-on-scroll .pos-item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(var(--pos-u) * 7);
	height: calc(var(--pos-u) * 7);
	margin: 0 auto;
	padding: var(--pos-u);
	border-radius: 100%;
	background: var(--pos-icon-bg);
}

.product-on-scroll .pos-item-icon img {
	width: calc(var(--pos-u) * 5);
	height: auto;
}

.product-on-scroll .pos-item-title {
	width: calc(var(--pos-u) * 9);
	margin: calc(var(--pos-u) * 2) auto;
	color: var(--pos-text);
	font-size: calc(var(--pos-u) * 1.2);
	font-weight: 600;
	letter-spacing: 0;
	line-height: calc(var(--pos-u) * 1.32);
}

.product-on-scroll .pos-item-description {
	width: calc(var(--pos-u) * 15);
	margin: 0;
	color: var(--pos-text);
	font-size: var(--pos-u);
	font-weight: 400;
	line-height: calc(var(--pos-u) * 1.2);
}

.product-on-scroll.pos-motion-off .pos-js-parallax {
	transform: none !important;
}

@media (max-width: 767px) {
	.product-on-scroll {
		height: auto;
		min-height: 1280px;
		margin: 72px 0 54px;
		font-size: 14.5749px;
		line-height: 17.4899px;
	}

	.product-on-scroll .pos-container {
		width: 100%;
		margin: 0;
		padding: 0;
	}

	.product-on-scroll .pos-text {
		height: 377px;
		padding: 0 22.8px;
	}

	.product-on-scroll .pos-title {
		width: 344px;
		font-size: 36.4373px;
		line-height: 40.081px;
	}

	.product-on-scroll .pos-title--desktop {
		display: none;
	}

	.product-on-scroll .pos-title--mobile {
		display: block;
	}

	.product-on-scroll .pos-title-serif {
		position: relative;
		top: auto;
		left: auto;
		display: inline-block;
		width: auto;
		font-size: 44px;
		line-height: 43.7125px;
	}

	.product-on-scroll .pos-title-serif::after {
		bottom: 4px;
		height: 1.5px;
	}

	.product-on-scroll .pos-description {
		position: absolute;
		top: 207px;
		right: 22.8px;
		width: 250px;
		margin: 0;
		font-size: 14.5749px;
		line-height: 17.4899px;
	}

	.product-on-scroll .pos-arrow--desktop {
		display: none;
	}

	.product-on-scroll .pos-arrow--mobile {
		display: block;
		top: 182px;
		left: 22.8px;
		width: 103px;
		height: 165px;
	}

	.product-on-scroll .pos-wrapper {
		height: 903px;
		margin-top: 0;
		overflow: hidden;
		background: var(--pos-card);
	}

	.product-on-scroll .pos-wrapper::before {
		position: absolute;
		z-index: 0;
		top: 0;
		right: 0;
		width: 172%;
		height: 50%;
		background: var(--pos-bg);
		content: "";
		transform: translate(10%, -100%) rotate(-28deg);
		transform-origin: right top;
	}

	.product-on-scroll .pos-main-image-wrap {
		position: relative;
		top: auto;
		left: auto;
		width: 100%;
		height: 422px;
		margin: 0 0 29.1498px;
		transform: none;
	}

	.product-on-scroll .pos-main-image-wrap img {
		width: 100%;
		height: 422px;
		object-fit: fill;
		object-position: center center;
	}

	.product-on-scroll .pos-floating-image {
		display: none;
	}

	.product-on-scroll .pos-firstrow,
	.product-on-scroll .pos-secondrow {
		height: 196.925px;
		padding: 29.1498px 0;
	}

	.product-on-scroll .pos-secondrow {
		margin-top: 0;
	}

	.product-on-scroll .pos-item,
	.product-on-scroll .pos-firstrow .pos-item:nth-child(2),
	.product-on-scroll .pos-secondrow .pos-item:nth-child(2) {
		width: 50%;
		margin: 0;
		padding: 0;
		border-radius: 0;
		background: transparent;
	}

	.product-on-scroll .pos-item-icon {
		width: 58.2875px;
		height: 58.2875px;
		padding: 0;
	}

	.product-on-scroll .pos-item-icon img {
		width: 58.2875px;
	}

	.product-on-scroll .pos-item-title {
		width: 117.125px;
		margin: 14.5749px auto 0;
		font-size: 16.6571px;
		line-height: 18.3228px;
	}

	.product-on-scroll .pos-item-description {
		display: none;
	}
}

@media (prefers-reduced-motion: reduce) {
	.product-on-scroll .pos-word {
		transform: none;
		transition: none;
	}

	.product-on-scroll .pos-item,
	.product-on-scroll .pos-floating-image {
		transform: none !important;
	}
}
