@font-face {
	font-family: 'WorkSans';
	src: url('/fonts/WorkSans.woff2') format('woff2');
	font-weight: 100 900;
	font-style: normal;
}

@font-face {
	font-family: 'Arkema-Regular';
	src: url('/fonts/Arkema-Regular.woff2') format('woff2');
	font-style: normal;
}

:root {
	--base-font-size: 10px;
}

html {
	font-family: 'WorkSans', sans-serif;
	/* 1rem = 10px */
	font-size: var(--base-font-size);
}

body {
	font-size: 1.6rem;
}

sup {
	line-height: 1;
	vertical-align: top;
	font-size: 0.6em;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

* {
	-webkit-tap-highlight-color: transparent;
}

ul,
ol {
	margin: 0;
	padding: 0;
	list-style: none;
}

body,
h1,
h2,
h3,
h4,
p,
li,
figure,
input,
figcaption,
blockquote,
dl,
dd {
	margin: 0;
}

html {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-ms-overflow-style: none;
	scroll-behavior: initial;
}

body {
	margin: 0;
	text-rendering: optimizeSpeed;
	text-size-adjust: 100%;
	scroll-behavior: smooth;
	overscroll-behavior: none;
	user-select: none;
}

a {
	color: inherit;
	text-decoration: none;
}

a:not([class]) {
	text-decoration-skip-ink: auto;
}

video,
img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: contain;
}

img,
svg {
	display: block;
	user-select: none;
	pointer-events: none;
}

svg {
	overflow: visible;
}

button {
	background: none;
	border: 0;
	outline: 0;
	padding: 0;
	margin: 0;
	color: inherit;
	appearance: none;
	cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: inherit;
	line-height: inherit;
	text-align: inherit;
}

sup {
	line-height: 1;
	vertical-align: top;
	font-size: 0.6em;
}

/* Shared Component */

.produit {
	text-transform: uppercase;
	font-family: 'Arkema-Regular';
}
/* .produit:after {
	content: '®';
	vertical-align: super;
	font-size: 0.5em;
	line-height: 0;
} */

.filiale {
	text-transform: uppercase;
	font-weight: 600;
}

.page-wrapper-portrait {
	position: relative;
	max-height: 100vh;
	max-width: 100vw;
	padding: 7rem;
	height: auto;
	width: auto;
	overflow: hidden;
	aspect-ratio: 9 / 16;
	/* margin: auto auto; */
	position: relative;
	top: 50vh;
	left: 50vw;
	transform: translate(-50%, -50%);
}

.page-wrapper-landscape {
	position: relative;
	width: 100vw;
	max-height: 100vh;
	padding: 7rem;
	overflow: hidden;
	aspect-ratio: 16 / 9;
	margin: 0 auto;
}

.webgl-wrapper {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	pointer-events: none;
}

@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 12/16) {
	.page-wrapper-portrait.online {
		width: 100vw;
		height: 100vh;
		aspect-ratio: unset;
	}

	.page-wrapper-portrait.online .webgl-wrapper {
		position: fixed;
		width: 100vw;
		height: 100vh;
	}
}
@media (min-aspect-ratio: 16/12) and (max-aspect-ratio: 16/9) {
	.page-wrapper-landscape.online {
		width: 100vw;
		height: 100vh;
		aspect-ratio: unset;
	}

	.page-wrapper-landscape.online .webgl-wrapper {
		position: fixed;
		width: 100vw;
		height: 100vh;
	}
}

@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0;
	}
	10% {
		opacity: 1;
		transform: scale(1.05);
	}
	50% {
		transform: scale(1.3);
		opacity: 0.5;
	}
	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}
