@charset "UTF-8";
@font-face {
  font-family: "Rift Soft";
  font-display: swap;
  src: url("../assets/fonts/riftsoft/riftsoft-demi.eot");
  src: url("../assets/fonts/riftsoft/riftsoft-demi.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/riftsoft/riftsoft-demi.woff2") format("woff2"), url("../assets/fonts/riftsoft/riftsoft-demi.woff") format("woff"), url("../assets/fonts/riftsoft/riftsoft-demi.ttf") format("truetype"), url("../assets/fonts/riftsoft/riftsoft-demi.svg#Rift Soft") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Gotham";
  font-display: swap;
  src: url("../assets/fonts/gotham/gotham-book.eot");
  src: url("../assets/fonts/gotham/gotham-book.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/gotham/gotham-book.woff2") format("woff2"), url("../assets/fonts/gotham/gotham-book.woff") format("woff"), url("../assets/fonts/gotham/gotham-book.ttf") format("truetype"), url("../assets/fonts/gotham/gotham-book.svg#Gotham") format("svg");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Fazeta";
  font-display: swap;
  src: url("../assets/fonts/fazeta/fazeta-medium.eot");
  src: url("../assets/fonts/fazeta/fazeta-medium.eot?#iefix") format("embedded-opentype"), url("../assets/fonts/fazeta/fazeta-medium.woff2") format("woff2"), url("../assets/fonts/fazeta/fazeta-medium.woff") format("woff"), url("../assets/fonts/fazeta/fazeta-medium.ttf") format("truetype"), url("../assets/fonts/fazeta/fazeta-medium.svg#Fazeta") format("svg");
  font-weight: 500;
  font-style: medium;
}
/* Text sizes */
/* 
* Weight guide
*
* 100 thin
* 200 extra-light
* 300 light
* 400 regular
* 500 medium
* 600 semi-bold
* 700 bold
* 800 extra-bold
* 900 black
* 
* Font shorthand: https://www.w3schools.com/css/css_font_shorthand.asp
* style, weight, size/line-height, font, fallback
*/
.format_text {
  font-size: 1.4rem;
  font-family: Gotham;
  line-height: 1.7;
  font-weight: 400;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.format_text h2 {
  font-size: 3.4rem;
  font-family: Fazeta;
  line-height: 1.3;
  font-weight: 500;
}
.format_text h3 {
  font-size: 5.2rem;
  font-family: Fazeta;
  line-height: 1.1;
  font-weight: 500;
}
.format_text h4 {
  font-size: 1.7rem;
  font-family: Gotham;
  line-height: 1.5;
  font-weight: 400;
}
.format_text a {
  text-decoration: underline;
}
.format_text b,
.format_text strong {
  font-weight: 700;
}
.format_text i {
  font-style: italic;
}
.format_text ul,
.format_text ol {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  counter-reset: list;
}
.format_text ul li,
.format_text ol li {
  position: relative;
  padding-left: 1em;
}
.format_text ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  background: currentColor;
  width: 0.5em;
  clip-path: circle(15%);
}
.format_text ol li {
  position: relative;
  counter-increment: list;
  padding-left: 1em;
}
.format_text ol li::before {
  content: counter(list);
  position: absolute;
  left: 0;
  top: 0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  outline: none;
  font: inherit;
  text-decoration: none;
  word-break: normal;
  -webkit-user-drag: none;
  -webkit-app-region: no-drag;
}

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

*:focus {
  outline: var(--focus);
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  width: 100%;
  word-break: break-word;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
}

html,
body {
  overscroll-behavior: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
  overflow-x: hidden;
}

body {
  width: 100%;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  text-align: left;
}

ol,
ul {
  list-style: none;
}

/* Text */
q,
blockquote {
  quotes: none;
}

/* Media */
img,
video {
  display: flex;
  height: auto;
  width: 100%;
}

img {
  pointer-events: none; /* Prevent IE click on image opening image in tab */
}

svg {
  overflow: visible;
  width: 100%;
  height: auto;
}

a {
  display: inline-flex;
  color: inherit;
}

p + p {
  margin-top: 1em;
}

strong {
  font-weight: 700;
}

/* Forms */
button {
  cursor: pointer;
  background-color: inherit;
  appearance: none;
  color: inherit;
}

button:disabled {
  cursor: not-allowed;
}

input,
select {
  appearance: none;
  color: inherit;
}

textarea {
  resize: none;
}

input[type=number] {
  -moz-appearance: textfield;
}

input:-webkit-autofill {
  -webkit-background-clip: text;
}

select::-ms-expand {
  display: none;
}

::-webkit-outer-spin-button,
::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* Other */
pre {
  white-space: pre-wrap;
  font-size: 14px;
  font: 500 14px/18px Arial, sans-serif;
}

v-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

v-page {
  overflow-x: hidden;
}

v-block {
  margin-top: -1px;
}

v-block,
v-once,
v-module,
v-component {
  display: block;
}

v-component {
  outline: 3px solid red;
}

v-atom {
  display: inline-flex;
}

v-line {
  display: block;
  white-space: nowrap;
  will-change: transform;
}

v-word,
v-letter {
  display: inline-block;
}

/* Convert colors to rgb */
/* CSS variables */
:root {
  --black: 29, 29, 27;
  --body: 255, 255, 255;
  --text: 29, 29, 27;
  --white: 255, 255, 255;
  --success: 0, 255, 0;
  --error: 255, 71, 19;
  --orange: 255, 71, 19;
  --beige: 220, 211, 203;
  --grey: 220, 211, 203;
  --light_grey: 237, 233, 229;
  --dark_grey: 29, 29, 27;
  --gutter_small: 1rem;
  --spacing_medium: 10rem;
  --spacing_small: 6rem;
  --flux_large: 127rem;
  --flux: 111rem;
  --flux_small: 79rem;
  --flux_medium: 103rem;
  --timing: 0.5s;
  --timing_short: 0.2s;
  --timing_long: 2s;
  --ease: .6,0,.4,1;
  --ease_alt: .25,0,.25,1;
  --ease_in: .6,0,1,1;
  --ease_in_alt: .75,0,.75,1;
  --ease_out: .25,0,.0,1;
  --ease_out_alt: .25,0,.25,1;
  --radius_small: 1.3rem;
  --focus: 3px solid rgba(var(--orange));
  --laptop: 1440px;
  --tablet: 768px;
  --phone: 414px;
}

body {
  font-size: 3.4rem;
  font-family: Fazeta;
  line-height: 1.3;
  font-weight: 500;
  background: rgb(var(--black));
  color: rgb(var(--text));
}

v-page {
  background: rgb(var(--body));
  color: rgb(var(--text));
}

/* Deco */
.yell_1 {
  font-size: 16rem;
  line-height: 1.04;
  font-weight: 400;
  text-transform: uppercase;
}

/* Titles */
.title_1 {
  font-size: 13rem;
  font-family: Fazeta;
  line-height: 1.02;
  font-weight: 400;
  text-transform: uppercase;
}

.title_2 {
  font-size: 11rem;
  font-family: Fazeta;
  line-height: 0.94;
  font-weight: 400;
  text-transform: uppercase;
}

.title_3 {
  font-size: 7rem;
  font-family: Fazeta;
  line-height: 1.1;
  font-weight: 500;
}

.title_4 {
  font-size: 5.2rem;
  font-family: Fazeta;
  line-height: 1.1;
  font-weight: 500;
}

.title_5 {
  font-size: 4.6rem;
  font-family: Fazeta;
  line-height: 1.1;
  font-weight: 500;
}

/* Labels */
.label_1 {
  font-size: 2.5rem;
  font-family: Rift Soft;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.label_2 {
  font-size: 2rem;
  font-family: Rift Soft;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.16em;
}

.label_3 {
  font-size: 1.6rem;
  font-family: Rift Soft;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.14em;
}

.label_4 {
  font-size: 1.3rem;
  font-family: Rift Soft;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.1em;
}

.label_5 {
  font-size: 1.1rem;
  font-family: Rift Soft;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* Body */
.body_1 {
  font-size: 8rem;
  font-family: Fazeta;
  line-height: 1.15;
  font-weight: 500;
}

.body_2 {
  font-size: 3.4rem;
  font-family: Fazeta;
  line-height: 1.3;
  font-weight: 500;
}

.body_3 {
  font-size: 1.7rem;
  font-family: Gotham;
  line-height: 1.5;
  font-weight: 400;
}

.body_4 {
  font-size: 1.4rem;
  font-family: Gotham;
  line-height: 1.7;
  font-weight: 400;
}

.body_5 {
  font-size: 1.2rem;
  font-family: Gotham;
  line-height: 1.7;
  font-weight: 400;
}

/* Colors */
.color_black {
  color: rgb(var(--black));
}

.background_black {
  background: rgb(var(--black));
}

.color_body {
  color: rgb(var(--body));
}

.background_body {
  background: rgb(var(--body));
}

.color_text {
  color: rgb(var(--text));
}

.background_text {
  background: rgb(var(--text));
}

.color_white {
  color: rgb(var(--white));
}

.background_white {
  background: rgb(var(--white));
}

.color_success {
  color: rgb(var(--success));
}

.background_success {
  background: rgb(var(--success));
}

.color_error {
  color: rgb(var(--error));
}

.background_error {
  background: rgb(var(--error));
}

.color_orange {
  color: rgb(var(--orange));
}

.background_orange {
  background: rgb(var(--orange));
}

.color_beige {
  color: rgb(var(--beige));
}

.background_beige {
  background: rgb(var(--beige));
}

.color_grey {
  color: rgb(var(--grey));
}

.background_grey {
  background: rgb(var(--grey));
}

.color_light_grey {
  color: rgb(var(--light_grey));
}

.background_light_grey {
  background: rgb(var(--light_grey));
}

.color_dark_grey {
  color: rgb(var(--dark_grey));
}

.background_dark_grey {
  background: rgb(var(--dark_grey));
}

/* Fluxs */
.flux_large {
  width: calc(var(--flux_large) + 2 * var(--gutter));
  max-width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}

.flux {
  width: calc(var(--flux) + 2 * var(--gutter));
  max-width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}

.flux_small {
  width: calc(var(--flux_small) + 2 * var(--gutter));
  max-width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}

.flux_medium {
  width: calc(var(--flux_medium) + 2 * var(--gutter));
  max-width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  margin-left: auto;
  margin-right: auto;
}

/* Spacings */
.margin_huge {
  margin-top: var(--spacing_huge);
  margin-bottom: var(--spacing_huge);
}

.margin_top_huge {
  margin-top: var(--spacing_huge);
}

.margin_bottom_huge {
  margin-bottom: var(--spacing_huge);
}

.pad_huge {
  padding-top: var(--spacing_huge);
  padding-bottom: var(--spacing_huge);
}

.pad_top_huge {
  padding-top: var(--spacing_huge);
}

.pad_bottom_huge {
  padding-bottom: var(--spacing_huge);
}

.margin_large {
  margin-top: var(--spacing_large);
  margin-bottom: var(--spacing_large);
}

.margin_top_large {
  margin-top: var(--spacing_large);
}

.margin_bottom_large {
  margin-bottom: var(--spacing_large);
}

.pad_large {
  padding-top: var(--spacing_large);
  padding-bottom: var(--spacing_large);
}

.pad_top_large {
  padding-top: var(--spacing_large);
}

.pad_bottom_large {
  padding-bottom: var(--spacing_large);
}

.margin {
  margin-top: var(--spacing);
  margin-bottom: var(--spacing);
}

.margin_top {
  margin-top: var(--spacing);
}

.margin_bottom {
  margin-bottom: var(--spacing);
}

.pad {
  padding-top: var(--spacing);
  padding-bottom: var(--spacing);
}

.pad_top {
  padding-top: var(--spacing);
}

.pad_bottom {
  padding-bottom: var(--spacing);
}

.margin_medium {
  margin-top: var(--spacing_medium);
  margin-bottom: var(--spacing_medium);
}

.margin_top_medium {
  margin-top: var(--spacing_medium);
}

.margin_bottom_medium {
  margin-bottom: var(--spacing_medium);
}

.pad_medium {
  padding-top: var(--spacing_medium);
  padding-bottom: var(--spacing_medium);
}

.pad_top_medium {
  padding-top: var(--spacing_medium);
}

.pad_bottom_medium {
  padding-bottom: var(--spacing_medium);
}

.margin_small {
  margin-top: var(--spacing_small);
  margin-bottom: var(--spacing_small);
}

.margin_top_small {
  margin-top: var(--spacing_small);
}

.margin_bottom_small {
  margin-bottom: var(--spacing_small);
}

.pad_small {
  padding-top: var(--spacing_small);
  padding-bottom: var(--spacing_small);
}

.pad_top_small {
  padding-top: var(--spacing_small);
}

.pad_bottom_small {
  padding-bottom: var(--spacing_small);
}

.hidden {
  display: none !important;
}

.rel {
  position: relative;
}

.bullet {
  min-width: 14px;
  min-height: 14px;
  max-width: 14px;
  max-height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none var(--timing_short) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
}
.bullet::before {
  content: "";
  display: block;
  min-width: 8px;
  min-height: 8px;
  max-width: 8px;
  max-height: 8px;
  background: currentColor;
  border-radius: 100%;
}
.bullet-border, .bullet-progress {
  position: absolute;
  min-width: 14px;
  min-height: 14px;
  max-width: 14px;
  max-height: 14px;
  border: 1px solid currentColor;
  border-radius: 100%;
  transition: none var(--timing_short) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
}
.bullet[aria-current=false] .bullet-border, .bullet[aria-current=false] .bullet-progress {
  opacity: 0;
}
.bullet-border {
  opacity: 0.3;
}
.bullet-progress {
  -webkit-mask-image: conic-gradient(from -90deg, black 180deg, transparent 180deg);
}
.bullet[aria-current=false] {
  opacity: 0.3;
}

.button {
  display: inline-flex;
  align-items: center;
  height: fit-content;
  min-height: var(--button_height, 4.8rem);
  color: rgb(var(--button_color, var(--orange)));
}
.button:disabled {
  color: rgb(var(--button_disabled_color, var(--grey)));
  --icon_button_fill: var(--grey);
}
.button-text {
  display: inline-flex;
  align-items: center;
  transition: none var(--timing) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  height: 100%;
  width: auto;
  text-align: center;
  white-space: nowrap;
}
.button-icon_left {
  margin-right: 1rem;
}
.button-icon_right {
  margin-left: 1rem;
}
.button[icon-right="icon/arrow"]:hover .button-icon_right {
  transition: none var(--timing) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  transform: translateX(0.5rem);
}

[preset*="button:red"] {
  --button_color: var(--white);
  --button_background: var(--error);
}

[preset*="button:white"] {
  --button_color: var(--white);
  --icon_button_fill: var(--white);
  --icon_button_hover_fill: var(--white);
}

[preset*="button:large"] {
  --button_height: 6rem;
  --button_padding: 4rem;
}

[preset*="button:small"] {
  --button_height: 3.8rem;
  --button_padding: 2rem;
}

.checkbox {
  display: flex;
  align-items: center;
}
.checkbox-label {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
}
.checkbox-tick {
  position: relative;
  display: block;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  border: 1px solid;
  border-radius: 50%;
  color: rgb(var(--checkbox_color, var(--black)));
  border-color: rgb(var(--checkbox_border, var(--black)));
}
.checkbox-tick:before {
  position: absolute;
  inset: 3px;
  background: rgb(var(--checkbox_background, var(--orange)));
  content: "";
  opacity: 0;
  border-radius: 50%;
}
.checkbox input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.checkbox:has(input:checked) .checkbox-tick {
  color: rgb(var(--checkbox_checked_color, var(--white)));
  border-color: rgb(var(--checkbox_checked_border, var(--black)));
}
.checkbox:has(input:checked) .checkbox-tick:before {
  opacity: 1;
}
.checkbox:has(input:disabled) {
  opacity: 0.35;
  cursor: not-allowed;
}
.checkbox input:focus {
  outline: none;
}
.checkbox:has(input:focus) .checkbox-tick {
  outline: var(--focus);
}
.checkbox:has([aria-invalid=true]) .checkbox-tick {
  border-color: rgb(var(--error));
}
.checkbox:has([aria-invalid=true]) .checkbox-label {
  color: rgb(var(--error));
}

html[browser=firefox] .checkbox-tick {
  opacity: 0;
  pointer-events: none;
}
html[browser=firefox] .checkbox input {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 1;
  pointer-events: auto;
  appearance: auto;
}

.close_button {
  position: relative;
  position: relative;
  height: 3.8rem;
  width: fit-content;
  padding-left: 3.5rem;
  padding-right: 3.5rem;
  background: rgb(var(--orange));
  display: flex;
  align-items: center;
  clip-path: inset(0 0.5rem round 2.9rem);
  transition: none var(--timing) cubic-bezier(var(--ease_out));
  transition-property: clip-path, opacity;
  will-change: clip-path, opacity;
}
.close_button:hover {
  clip-path: inset(0 0 round 2.9rem);
}
.close_button-text {
  position: relative;
  transition: none var(--timing_short) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
}
.close_button[aria-hidden=true] .close_button-text {
  opacity: 0;
}
.close_button::before, .close_button::after {
  content: "";
  position: absolute;
  display: block;
  background: rgb(var(--white));
  min-width: 4px;
  min-height: 4px;
  max-width: 4px;
  max-height: 4px;
  border-radius: 100%;
}
.close_button::before {
  left: 1.7rem;
}
.close_button::after {
  right: 1.7rem;
}
.close_button[aria-hidden=true] {
  clip-path: inset(50% 50% round 2.9rem);
  pointer-events: none;
  opacity: 0;
}

.icon_button {
  border-radius: 100%;
  position: relative;
  display: inline-block;
  color: rgb(var(--icon_button_fill, var(--orange)));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  --icon_fill: var(--icon_button_fill, var(--orange));
  --icon_hover_fill: var(--icon_button_fill, var(--orange));
  --icon_button_border: 1px;
}
.icon_button:hover {
  --icon_button_fill: var(--icon_button_hover_fill);
}
.icon_button[hover-anim] {
  transition: none var(--timing_short) cubic-bezier(var(--ease_out));
  transition-property: color, transform;
  will-change: color, transform;
}
.icon_button[size=default] {
  min-width: 3.6rem;
  min-height: 3.6rem;
  max-width: 3.6rem;
  max-height: 3.6rem;
  --icon_size: 3.6rem;
}
.icon_button[size=medium] {
  --icon_button_border: 2px;
}
.icon_button[size=large]::before, .icon_button[size=large]::after, .icon_button[size=medium]::before, .icon_button[size=medium]::after {
  content: "";
  position: absolute;
  transition: background var(--timing_short) cubic-bezier(var(--ease_out));
  will-change: background;
  background: rgb(var(--icon_button_fill, var(--orange)));
  border-radius: 100%;
}
.icon_button::before {
  left: 10%;
}
.icon_button::after {
  right: 10%;
}
.icon_button-border {
  position: absolute;
  inset: 0;
  outline: var(--icon_button_border) solid currentColor;
  outline-offset: 0px;
  border-radius: 100%;
  transition: none var(--timing_short) cubic-bezier(var(--ease_out));
  transition-property: outline-color, transform;
  will-change: outline-color, transform;
}
.icon_button[hover-anim]:hover .icon_button-border {
  transform: scale(1.1);
}

html[browser=safari] .icon_button-border {
  outline: none;
}
html[browser=safari] .icon_button-border:before {
  position: absolute;
  content: "";
  width: calc(100% + var(--icon_button_border));
  height: calc(100% + var(--icon_button_border));
  left: calc(-1 * (var(--icon_button_border)) / 2);
  top: calc(-1 * (var(--icon_button_border)) / 2);
  border: var(--icon_button_border) solid currentColor;
  border-radius: 100%;
}

.icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--icon_size, 2.4rem);
  height: var(--icon_size, 2.4rem);
  vertical-align: middle;
}
.icon *[fill]:not([fill=none]) {
  fill: rgb(var(--icon_fill, currentColor));
}
.icon:hover *[fill]:not([fill=none]) {
  fill: rgb(var(--icon_hover_fill, var(--icon_fill, currentColor)));
}
.icon svg {
  inset: 0;
}

[preset="icon:black"] {
  --icon_fill: var(--black);
  --icon_stroke: var(--black);
}

[preset="icon:orange"] {
  --icon_fill: var(--orange);
  --icon_stroke: var(--orange);
}

[preset="icon:white"] {
  --icon_fill: var(--white);
  --icon_stroke: var(--white);
}

.image {
  display: block;
  position: relative;
  background: rgba(var(--black), 1);
  overflow: hidden;
  transition: background 0.5s linear 0.2s;
}
.image[is-lazy=true] .image-source {
  transition: opacity var(--timing) cubic-bezier(var(--ease));
  will-change: opacity;
}
.image:not([data-loaded=true]) .image-source {
  opacity: 0;
}
.image[data-loaded=true] {
  background: rgba(var(--black), 0);
}
.image[fit=crop] .image-source {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}
.image[fit=contain] .image-source {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: contain;
}

.input {
  display: inline-flex;
  flex-direction: column;
}
.input-field {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  height: var(--input_height, 4rem);
  border-bottom: 1px solid;
  font-size: 1.8rem;
  color: rgb(var(--input_color, var(--black)));
  border-color: rgb(var(--input_border, var(--grey)));
}
.input:has([aria-invalid=true]) .input-field {
  border-bottom: 1px solid rgb(var(--error));
}
.input:has([aria-invalid=true]) .input-label {
  color: rgb(var(--error));
}
.input-field:hover {
  color: rgb(var(--input_hover_color, var(--black)));
  border-color: rgb(var(--input_hover_border, var(--grey)));
}
.input-field:has(input:disabled), .input-field:has(input:read-only) {
  color: rgb(var(--input_disabled_color, var(--black)));
  border-color: rgb(var(--input_disabled_border, var(--grey)));
}
.input-field:has(input:disabled) input {
  cursor: not-allowed;
}
.input-label {
  transform: translateY(3rem);
  transform-origin: bottom left;
  transition: none var(--timing_short) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  pointer-events: none;
}
.input-input {
  height: 100%;
  flex-shrink: 1;
  width: 100%;
  background: transparent;
}
.input-input:focus {
  outline: none;
}
.input:has(input:focus) .input-label, .input[data-filled] .input-label {
  transform: translateY(0) scale(0.65);
}
.input:has(input:focus) .input-field {
  border-color: rgb(var(--text));
}

.line {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.line-text {
  margin-top: 3.5rem;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  max-width: 62rem;
  text-align: center;
}
.line-bar {
  height: 8rem;
  width: 1px;
  background: currentColor;
  pointer-events: none;
  display: flex;
  justify-content: center;
  position: relative;
}
.line-bar::before, .line-bar::after {
  position: absolute;
  content: "";
  width: 1.2rem;
  height: 1px;
  background: currentColor;
}
.line-bar::before {
  top: 0;
  display: none;
}
.line-bar::after {
  bottom: 0;
}
.line[position=top] {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.line[position=top] .line-text {
  margin-top: 1rem;
}
.line[position=bottom], .line[position=bottom-inverse] {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
}
.line[position=bottom-inverse] {
  display: flex;
  flex-direction: column-reverse;
}
.line[position=bottom-inverse] .line-text {
  margin-bottom: 3.5rem;
  margin-top: 0;
}
.line[position=bottom] .line-bar::before {
  display: inline;
}
.line[position=bottom] .line-bar::after {
  display: none;
}
.line[position=bottom-inverse] .line-bar::before {
  display: inline;
}
.line[position=bottom-inverse] .line-bar::after {
  display: none;
}

.link {
  text-decoration: underline;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.link-icon {
  margin-left: 0.8rem;
}

.number {
  min-width: 13.8rem;
  min-height: 13.8rem;
  max-width: 13.8rem;
  max-height: 13.8rem;
  border-radius: 50%;
  color: rgb(var(--orange));
  font-size: 8rem;
  font-family: Fazeta;
  line-height: 1.15;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border: 2px solid currentColor;
}
.number span {
  position: relative;
  bottom: 0.2em;
}
.number::before, .number::after {
  min-width: 8px;
  min-height: 8px;
  max-width: 8px;
  max-height: 8px;
  background: currentColor;
  border-radius: 50%;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.number:before {
  left: 1.6rem;
}
.number:after {
  right: 1.6rem;
}

.password {
  --icon_fill: var(--black);
  --icon_stroke: var(--black);
}
.password-toggle {
  display: flex;
  margin-right: var(--input_padding, 2rem);
}

.quantity-more, .quantity-less {
  height: 4.8rem;
  min-width: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--button_color, var(--white)));
  background: rgb(var(--button_background, var(--black)));
  border-color: rgb(var(--button_border, var(--black)));
}
.quantity-more:hover, .quantity-less:hover {
  color: rgb(var(--button_hover_color, var(--white)));
  background: rgb(var(--button_hover_background, var(--black)));
  border-color: rgb(var(--button_hover_border, var(--black)));
}
.quantity-more:disabled, .quantity-less:disabled {
  color: rgb(var(--button_disabled_color, var(--white)));
  background: rgb(var(--button_disabled_background, var(--black)));
  border-color: rgb(var(--button_disabled_border, var(--black)));
}
.quantity-field {
  width: 3rem;
  text-align: center;
  color: rgb(var(--input_color));
}

.radio {
  display: flex;
  align-items: center;
}
.radio-label {
  margin-left: 1rem;
}
.radio-tick {
  position: relative;
  display: block;
  min-width: 1.6rem;
  min-height: 1.6rem;
  max-width: 1.6rem;
  max-height: 1.6rem;
  border: 1px solid;
  border-radius: 100%;
  color: rgb(var(--radio_color, var(--black)));
  background: rgb(var(--radio_background, var(--white)));
  border-color: rgb(var(--radio_border, var(--black)));
}
.radio input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.radio:has(input:checked) .radio-tick {
  color: rgb(var(--radio_checked_color, var(--white)));
  background: rgb(var(--radio_checked_background, var(--black)));
  border-color: rgb(var(--radio_checked_border, var(--black)));
}
.radio:has(input:disabled) {
  opacity: 0.35;
  cursor: not-allowed;
}
.radio input:focus {
  outline: none;
}
.radio:has(input:focus) .radio-tick {
  outline: var(--focus);
}

[preset*="radio:example"] {
  --radio_color: var(--black);
  --radio_background: var(--white);
  --radio_border: var(--black);
  --radio_checked_color: var(--white);
  --radio_checked_background: var(--black);
  --radio_checked_border: var(--black);
}

.range {
  display: flex;
}
.range-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.scrollbar {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 12px;
  z-index: 100;
  overflow: hidden;
}
.scrollbar[aria-hidden=true] {
  opacity: 0;
  pointer-events: none;
}
.scrollbar-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgb(var(--black));
  opacity: 0.4;
  transition: opacity var(--timing-short) cubic-bezier(var(--ease-out));
  will-change: opacity;
}
.scrollbar-bar[data-held=true], .scrollbar-bar:hover {
  opacity: 1;
}

.stamp {
  position: relative;
  color: rgb(var(--stamp_color, var(--white)));
  background: rgba(var(--stamp_background, var(--orange)), var(--stamp_opacity, 1));
  border-radius: 50%;
  outline: var(--stamp_outline, 0) solid currentColor;
}
.stamp-text::before, .stamp-text::after {
  content: "";
  position: absolute;
  min-width: 4px;
  min-height: 4px;
  max-width: 4px;
  max-height: 4px;
  border-radius: 100%;
  background: currentColor;
}
.stamp-text::before {
  left: 10%;
}
.stamp-text::after {
  right: 10%;
}
.stamp-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
}
.stamp[auto-rotate=true] .stamp-text {
  animation: rotate 40s linear infinite;
}
.stamp-top, .stamp-bottom {
  position: absolute;
  inset: 0;
  line-height: 2.2em;
  letter-spacing: 0.04em;
}
.stamp-illu {
  position: absolute;
  inset: 0;
  margin: auto;
  width: calc(70% - 2rem);
}
.stamp-illu *[fill]:not([fill=none]) {
  fill: currentColor;
}

[preset*="stamp:fill_white"] {
  --stamp_background: var(--white);
  --stamp_color: var(--black);
}

[preset*="stamp:logo"] {
  --stamp_color: var(--black);
}

[preset*="stamp:orange"] {
  --stamp_opacity: 0;
  --stamp_color: var(--orange);
}

[preset*="stamp:white"] {
  --stamp_opacity: 0;
  --stamp_color: var(--white);
}

[preset*="stamp:outline"] {
  --stamp_opacity: 0;
  --stamp_color: var(--orange);
  --stamp_outline: 2px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html[browser=safari] .stamp {
  outline: none;
}
html[browser=safari] .stamp:before {
  position: absolute;
  content: "";
  width: calc(100% + var(--stamp_outline));
  height: calc(100% + var(--stamp_outline));
  left: calc(-1 * (var(--stamp_outline)) / 2);
  top: calc(-1 * (var(--stamp_outline)) / 2);
  border: var(--stamp_outline) solid currentColor;
  border-radius: 100%;
}

.step {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  align-items: center;
  color: rgb(var(--orange));
  --icon_size: 3.6rem;
}
.step-icon {
  border: 1px solid currentColor;
  border-radius: 50%;
  transform: rotate(90deg);
}

.textarea {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.textarea-field {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  min-height: var(--input_height, 4rem);
  border-bottom: 1px solid;
  font-size: 1.8rem;
  color: rgb(var(--input_color, var(--black)));
  border-color: rgb(var(--input_border, var(--grey)));
}
.textarea:has([aria-invalid=true]) .textarea-field {
  border-bottom: 1px solid rgb(var(--error));
}
.textarea:has([aria-invalid=true]) .textarea-label {
  color: rgb(var(--error));
}
.textarea-field:hover {
  color: rgb(var(--input_hover_color, var(--black)));
  border-color: rgb(var(--input_hover_border, var(--grey)));
}
.textarea-field:has(textarea:disabled), .textarea-field:has(textarea:read-only) {
  color: rgb(var(--input_disabled_color, var(--black)));
  border-color: rgb(var(--input_disabled_border, var(--grey)));
}
.textarea-field:has(input:disabled) textarea {
  cursor: not-allowed;
}
.textarea-input {
  height: 100%;
  padding-top: calc(var(--input_height, 4rem) / 2 - 0.7em);
  padding-bottom: calc(var(--input_height, 4rem) / 2 - 0.7em);
  flex-shrink: 1;
  width: 100%;
  background: transparent;
  overflow: hidden;
}
.textarea-input:focus {
  outline: none;
}
.textarea-label {
  transform: translateY(3rem);
  transform-origin: bottom left;
  transition: none var(--timing_short) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  pointer-events: none;
}
.textarea:has(textarea:focus) .textarea-label, .textarea[data-filled] .textarea-label {
  transform: translateY(0) scale(0.65);
}
.textarea:has(textarea:focus) .textarea-field {
  border-color: rgb(var(--text));
}

.title {
  display: block;
  text-align: left;
  /*

  &-svg_t-round {
  	transform-origin: center -16%;
  	animation: letter_t_anim 4s infinite;
  }

  */
}
.title [data-space] {
  width: 0.22em;
  flex-shrink: 0;
}
.title[align=alternate] v-line:nth-of-type(2n) {
  width: fit-content;
  margin-left: auto;
}
.title[align=alternate-reverse] v-line:nth-of-type(2n - 1) {
  width: fit-content;
  margin-left: auto;
}
.title[align=center] v-line {
  text-align: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}
.title-image {
  display: inline-flex;
  min-width: 0.75em;
  min-height: 0.75em;
  max-width: 0.75em;
  max-height: 0.75em;
  overflow: hidden;
  border-radius: 50%;
  margin-top: 0.12em;
  will-change: transform;
}
.title sup {
  white-space: normal;
  height: fit-content;
  margin-top: 1.2em;
}
.title-letter {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.title-svg {
  position: absolute;
  top: 0;
  bottom: -0.08em;
  margin: auto;
  width: auto;
  pointer-events: none;
  height: 0.69em;
}
.title [data-surround],
.title [data-underline] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.title [data-surround] *[fill]:not([fill=none]),
.title [data-underline] *[fill]:not([fill=none]) {
  fill: rgb(var(--title_decoration_color, var(--orange)));
}
.title [style*="color: rgb(255, 71, 19)"] {
  color: rgb(var(--title_decoration_color, var(--orange))) !important;
}
.title-surround {
  position: absolute;
  width: calc(100% + 3rem);
  height: 1.6em;
  margin: auto;
  pointer-events: none;
  margin-top: 0.15em;
}
.title-underline {
  position: absolute;
  top: 0.95em;
  height: 0.4em;
}
.title-logo {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.17em 0.1em 0 0;
}
.title-link {
  position: relative;
  margin: -0.2em 2rem;
}
.title:hover .title-link {
  transform: translateX(1rem);
}
/*

@keyframes letter_t_anim {
	 0% {
		 transform: rotate(0deg);
	 }

	100% {
		transform: rotate(360deg);
	}

}

*/
.video {
  display: block;
  position: relative;
  overflow: hidden;
}
.video[fit=crop] .video-source, .video[fit=contain] .video-source {
  inset: 0;
  position: absolute;
  object-fit: cover;
  height: 100%;
}
.video-source {
  margin-left: -1px;
  margin-right: -1px;
  min-width: calc(100% + 2px);
}

.benefit {
  position: relative;
}
.benefit-index {
  color: rgb(var(--orange));
  position: absolute;
  left: -3rem;
}
.benefit-line::before {
  position: absolute;
  content: "";
  width: 1px;
  height: 10px;
  background: rgba(var(--white), 0.2);
  right: 100%;
}
.benefit-line {
  position: relative;
  display: flex;
  align-items: center;
  height: 1px;
  background: rgba(var(--white), 0.2);
  width: calc(100% - 3rem);
  flex-grow: 1;
  margin-left: 3rem;
}
.benefit-columns {
  display: flex;
  align-items: center;
}
.benefit-title {
  text-transform: uppercase;
  flex-grow: 1;
}
.benefit-image {
  position: relative;
  clip-path: inset(0 round 50%);
}
.benefit-image::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 1 * 100%);
  pointer-events: none;
}

.card_expertises {
  background: rgb(var(--orange));
  padding: 5rem 3rem 5rem;
  color: rgb(var(--white));
}
.card_expertises-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.card_expertises-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.5rem;
  cursor: default;
}
.card_expertises-nav a:not(:first-child)::before {
  content: "•";
  padding-left: 0.2rem;
  padding-right: 0.2rem;
}
.card_expertises-title {
  text-transform: uppercase;
}
.card_expertises-stamp {
  margin-top: 3.5rem;
}
.card_expertises-line {
  margin: 3.5rem 0;
}

.card_home_visit {
  position: relative;
  background: rgb(var(--white));
}
.card_home_visit-content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.card_home_visit-stamp {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  transform: translateY(-50%);
}
.card_home_visit-paragraph {
  text-align: center;
}

.card_member {
  position: relative;
  background: rgb(var(--white));
}
.card_member-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.card_member-stamp {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  transform: translateY(-50%);
}

.card_offer-top {
  background: rgb(var(--black));
  padding: 3.2rem var(--gutter);
  text-align: center;
  height: 23.7rem;
  display: flex;
  flex-direction: column;
  color: rgb(var(--white));
}
.card_offer-title {
  margin-top: 2.6rem;
}
.card_offer-content {
  position: relative;
  background: rgb(var(--white));
  text-align: center;
}
.card_offer-stamp {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  transform: translateY(-50%);
}
.card_offer-link {
  margin-top: 3.1rem;
}

.card_visit {
  position: relative;
  background: rgb(var(--white));
}
.card_visit-top {
  position: relative;
  background: rgb(var(--black));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--white));
}
.card_visit-title {
  position: relative;
  z-index: 2;
  text-align: center;
  text-transform: uppercase;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.card_visit-image {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.card_visit-content {
  position: relative;
}
.card_visit-stamp {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  top: 0;
  transform: translateY(-50%);
}
.card_visit-paragraph {
  margin-bottom: 2rem;
}
.card_visit-infos {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4rem;
  margin-bottom: 2rem;
}
.card_visit-info {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
}
.card_visit-info + .card_visit-info::before {
  position: absolute;
  content: "";
  width: 1px;
  top: 0.2rem;
  bottom: 0.2rem;
  left: -2rem;
  background: rgb(var(--black));
  opacity: 0.1;
}
.card_visit-prices {
  width: 15rem;
}
.card_visit-price {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--gutter);
  min-width: 100%;
}
.card_visit-price > *:nth-child(2n+1) {
  min-width: calc(75% - var(--gutter) + var(--gutter) / 2);
  max-width: calc(75% - var(--gutter) + var(--gutter) / 2);
  flex-shrink: 0;
}
.card_visit-price > *:nth-child(2n+2) {
  min-width: calc(25% - var(--gutter) + var(--gutter) / 2);
  max-width: calc(25% - var(--gutter) + var(--gutter) / 2);
  flex-shrink: 0;
}
.card_visit-button {
  display: flex;
  justify-content: flex-end;
}

.card {
  background: rgb(var(--orange));
  padding: 5rem 3rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 47rem;
  color: rgb(var(--white));
  text-align: center;
}
.card-label {
  margin-bottom: 3rem;
}
.card-title {
  text-transform: uppercase;
}
.card-stamp {
  margin-top: 3.5rem;
}
.card-line {
  margin: 3.5rem 0;
}
.card-button {
  margin-top: 2.7rem;
}

.certifications-toggle {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  --icon_size: 3.6rem;
  color: rgb(var(--orange));
  align-items: center;
  cursor: pointer;
}
.certifications-icon {
  border: 1px solid rgb(var(--orange));
  border-radius: 50%;
}
.certifications-content {
  margin-top: 2.3rem;
}
.certifications-accordion .certifications-toggle::-webkit-details-marker, .certifications-accordion .certifications-toggle::marker {
  display: none;
}
.certifications-icon {
  rotate: 0deg;
  transition: rotate var(--timing) cubic-bezier(var(--ease));
  will-change: rotate;
}
[open] .certifications-icon {
  rotate: -90deg;
  transition: rotate var(--timing) cubic-bezier(var(--ease));
  will-change: rotate;
}
.certifications-accordion .certifications-toggle {
  list-style: none;
}

.contact_map {
  margin-top: 3rem;
  align-items: center;
}
.contact_map-circle {
  min-width: 28rem;
  min-height: 28rem;
  max-width: 28rem;
  max-height: 28rem;
  background: rgb(var(--white));
  clip-path: inset(0 round 50%);
  position: relative;
}
.contact_map-map {
  position: absolute;
  width: 100%;
  height: 100%;
}
.contact_map-addresses {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.expertises_anchors {
  position: relative;
  width: 100%;
  height: calc(var(--vh) * 100);
  margin-bottom: calc(var(--vh) * -100 - var(--spacing_large));
  margin-top: var(--spacing_large);
  display: flex;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}
.expertises_anchors-container {
  position: relative;
  width: 47rem;
  background: rgb(var(--orange));
  color: rgb(var(--white));
  height: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  top: -1px;
}
.expertises_anchors-container[data-stuck=true] {
  pointer-events: all;
}
.expertises_anchors-nav {
  display: flex;
  align-items: center;
  justify-content: center;
}
.expertises_anchors-nav a:not(:first-child)::before {
  content: "•";
  padding-left: 0.2rem;
  padding-right: 0.2rem;
  opacity: 0.4;
}
.expertises_anchors-nav a[aria-current=false] {
  opacity: 0.4;
}
.expertises_anchors-current {
  margin-top: 0.6rem;
}

.expertises_button {
  position: fixed;
  z-index: 20;
  animation: pulse 3s cubic-bezier(var(--ease_out)) infinite;
  background: rgb(var(--black));
  color: rgb(var(--white));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-6deg);
  transition: transform var(--timing) cubic-bezier(var(--ease_out)), opacity var(--timing_short) cubic-bezier(var(--ease_out));
}
.expertises_button:hover {
  transform: rotate(-3deg);
}
.expertises_button[aria-hidden=true] {
  transform: scale(0.5);
  opacity: 0;
}
.expertises_button::before, .expertises_button::after {
  content: "";
  position: absolute;
  min-width: 4px;
  min-height: 4px;
  max-width: 4px;
  max-height: 4px;
  background: rgb(var(--orange));
  border-radius: 100%;
}
.expertises_button::before {
  left: 1.5rem;
}
.expertises_button::after {
  right: 1.5rem;
}
.expertises_button-map {
  position: absolute;
  width: 80%;
  opacity: 0.2;
  transition: none var(--timing) cubic-bezier(var(--ease_out));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
}
.expertises_button:hover .expertises_button-map {
  transform: scale(1.2);
}

@keyframes pulse {
  0% {
    clip-path: inset(0 round 50%);
  }
  50% {
    clip-path: inset(0.5rem round 50%);
  }
  100% {
    clip-path: inset(0 round 50%);
  }
}
.form_fields {
  position: relative;
}
.form_fields-form {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.form_fields fieldset {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.form_fields-submit {
  align-self: flex-end;
}
.form_fields-title {
  margin-bottom: 4rem;
}
.form_fields-stamp {
  position: absolute;
  top: -2rem;
  right: 0;
}

.form {
  position: relative;
}
.form-form {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.form fieldset {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.form-submit {
  align-self: flex-end;
}
.form-title {
  margin-bottom: 4rem;
}
.form-stamp {
  position: absolute;
  top: -2rem;
  right: 0;
}
.form-form[aria-hidden=false] {
  display: block;
}
.form-form[aria-hidden=true] {
  display: none;
}
.form-end_message[aria-hidden=false] {
  display: block;
}
.form-end_message[aria-hidden=true] {
  display: none;
}
.form-error_message[aria-hidden=false] {
  display: block;
}
.form-error_message[aria-hidden=true] {
  display: none;
}

.images_reveal {
  position: relative;
}
.images_reveal-image {
  position: absolute;
  inset: 0;
}

.insert_black {
  background: rgb(var(--black));
  color: rgb(var(--white));
  padding: 3rem;
  max-width: 34rem;
  position: relative;
  min-height: 45rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  --icon_size: 9rem;
}
.insert_black::before {
  min-width: 8px;
  min-height: 8px;
  max-width: 8px;
  max-height: 8px;
  background: rgb(var(--white));
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
}
.insert_black-icon {
  position: absolute;
  right: 1rem;
  top: 1rem;
}

.insert_large {
  background: rgb(var(--orange));
  color: rgb(var(--white));
  position: relative;
  --title_decoration_color: var(--black);
  --icon_button_fill: var(--black);
  --icon_button_hover_fill: var(--black);
  position: relative;
  z-index: 1;
}
.insert_large[align=right] {
  margin-left: auto;
  text-align: left;
}
.insert_large[align=center] {
  margin-left: auto;
  margin-right: auto;
}
.insert_large::before {
  content: "";
  position: absolute;
  display: block;
  background: rgb(var(--white));
  border-radius: 100%;
}
.insert_large-caption {
  display: block;
  margin-bottom: 1.6rem;
}
.insert_large-line {
  margin-top: 3.5rem;
  position: relative;
}

.insert_medium {
  background: rgb(var(--orange));
  color: rgb(var(--white));
  padding: 16rem;
  max-width: 95rem;
  position: relative;
  --title_decoration_color: var(--black);
}
.insert_medium::before {
  min-width: 8px;
  min-height: 8px;
  max-width: 8px;
  max-height: 8px;
  background: rgb(var(--white));
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
}
.insert_medium[align=right] {
  margin-left: auto;
  text-align: left;
}
.insert_medium[align=left] {
  margin-right: auto;
}

.insert_small {
  background: rgb(var(--orange));
  text-align: center;
  color: rgb(var(--white));
  padding: 4.5rem 3rem;
  max-width: 39rem;
  position: relative;
  --title_decoration_color: var(--black);
}
.insert_small::before {
  min-width: 8px;
  min-height: 8px;
  max-width: 8px;
  max-height: 8px;
  background: rgb(var(--white));
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
}

.key {
  background: rgb(var(--orange));
  text-align: center;
  color: rgb(var(--white));
  padding: 4.5rem 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 33rem;
}
.key::before {
  min-width: 8px;
  min-height: 8px;
  max-width: 8px;
  max-height: 8px;
  background: rgb(var(--white));
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
}
.key-line {
  position: relative;
  margin-top: 3.5rem;
}

.langs-items {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
  flex-wrap: nowrap;
}
.langs-item {
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.objective {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: rgb(var(--white));
}
.objective-background {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.objective-background::after {
  position: absolute;
  inset: 0;
  bottom: 0;
  content: "";
  background: rgba(var(--black), 0.6);
}
.objective-illu {
  width: 3rem;
}
.objective-illu *[fill]:not([fill=none]) {
  fill: rgb(var(--white));
}
.objective-image {
  position: absolute;
  inset: 0 -20%;
}
.objective-content {
  position: absolute;
  top: 0;
  padding: 8rem 3rem;
}
.objective-label {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  align-items: center;
  margin-bottom: 1rem;
}

.social_links {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  --icon_size: 2.6rem;
}

.creation_prestation {
  background: rgb(var(--white));
  clip-path: inset(0);
}
.creation_prestation-container {
  position: relative;
  z-index: 2;
  height: 200rem;
  min-height: calc(var(--vh) * 150);
}
.creation_prestation-sticky {
  height: calc(var(--vh) * 100);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.creation_prestation-title {
  margin-top: 1.6rem;
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 4rem;
}
.creation_prestation-stamp {
  position: absolute;
}
.creation_prestation-inserts, .creation_prestation-images {
  position: absolute;
  inset: calc(var(--vh) * 85) 0 0 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.creation_prestation-inserts {
  z-index: 2;
}
.creation_prestation-insert {
  position: absolute;
  margin: auto;
}
.creation_prestation-insert:nth-child(1) {
  bottom: 80%;
  left: 10%;
}
.creation_prestation-insert:nth-child(2) {
  left: 20%;
  top: 70%;
}
.creation_prestation-insert:nth-child(3) {
  bottom: 60%;
  right: 0;
}
.creation_prestation-image {
  position: absolute;
  height: fit-content;
}
.creation_prestation-image::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.creation_prestation-image:nth-child(1) {
  bottom: 80%;
  left: 55%;
  width: 21.5%;
}
.creation_prestation-image:nth-child(2) {
  width: 10.4%;
  left: 0;
}
.creation_prestation-image:nth-child(3) {
  top: 75%;
  right: 12.5%;
  width: 16%;
}
.block_carousel-top {
  display: flex;
  justify-content: space-between;
}
.block_carousel-caption {
  display: inline-block;
  color: rgb(var(--orange));
  margin-bottom: 0.8rem;
}
.block_carousel-cards {
  position: relative;
  z-index: 2;
  margin-top: 4rem;
}
.block_carousel-bottom::after {
  content: "";
  display: block;
  position: absolute;
  background: rgb(var(--black));
}
.block_carousel-bottom {
  position: relative;
  z-index: 2;
}
.block_carousel-nav {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  margin-top: auto;
}
.block_carousel-prev, .block_carousel-next {
  border: 1px solid rgb(var(--orange));
  border-radius: 50%;
  min-width: 3.6rem;
  min-height: 3.6rem;
  max-width: 3.6rem;
  max-height: 3.6rem;
  --icon_size: 3.6rem;
  --icon_fill: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.block_carousel-prev {
  transform: rotate(180deg);
}
.block_carousel [aria-hidden=true] {
  display: none;
}

.brand_cover-top {
  position: relative;
  height: calc(var(--vh) * 100 + 8rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(var(--white));
  background: rgb(var(--black));
  padding-bottom: 18rem;
}
.brand_cover-title {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.brand_cover-image {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.brand_cover-insert {
  margin-top: -18rem;
}
.brand_cover-button {
  margin-top: 3rem;
}

.content h2 {
  margin-top: 5rem;
}

.cover_default {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 18rem;
  padding-bottom: 12rem;
  align-items: center;
  text-align: center;
  color: rgba(var(--cover_title_color, "currentColor"));
}
.cover_default-introduction {
  margin: 2rem auto 0;
}
.cover_default-content {
  position: relative;
}
.cover_default-logotype_1, .cover_default-logotype_2 {
  position: absolute;
  transform: translate(-50%, -50%);
}

.cover_section {
  background: rgb(var(--black));
  position: relative;
  clip-path: inset(0);
  padding-top: var(--spacing_huge);
  padding-bottom: var(--spacing_huge);
}
.cover_section-card {
  position: relative;
  z-index: 5;
  margin: 0 auto;
}
.cover_section-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: rgb(var(--white));
}
.cover_section-card + .cover_section-content {
  margin-top: var(--spacing_huge);
}
.cover_section-background {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.cover_section-title {
  position: relative;
  z-index: 3;
}
.cover_section-image {
  position: relative;
  z-index: 2;
  align-self: center;
}
.cover_section-image::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.cover_section-line {
  position: relative;
  color: rgb(var(--white));
  margin-top: 3.5rem;
}

.cover_title {
  background: rgba(var(--cover_title_background, "0, 0, 0, 0"));
  color: rgba(var(--cover_title_color, "currentColor"));
}
.cover_title-title sup {
  display: inline-block;
  margin-top: 0.1em;
  font-size: 7rem;
  font-family: Fazeta;
  line-height: 1.1;
  font-weight: 500;
}
.cover_title-subtext {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cover_title-download {
  margin-top: 2rem;
  display: flex;
  align-items: center;
}
.cover_title-icon {
  min-width: 3.6rem;
  min-height: 3.6rem;
  max-width: 3.6rem;
  max-height: 3.6rem;
  border: 1px solid white;
  border-radius: 100%;
  margin-right: 1rem;
}

[preset*="cover_title:black"] {
  --cover_title_background: var(--black);
  --cover_title_color: var(--white);
}

[preset*="cover_title:orange"] {
  --cover_title_background: var(--orange);
  --cover_title_color: var(--white);
  --title_decoration_color: var(--black);
}

.cover {
  position: relative;
  min-height: calc(var(--vh) * 100);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 18rem;
  padding-bottom: 15rem;
  z-index: 2;
  clip-path: inset(0);
  color: rgb(var(--white));
}
.cover[background=false] {
  background: rgb(var(--cover_background, var(--beige)));
  --icon_fill: var(--orange);
}
.cover[background=true] {
  background: linear-gradient(0deg, rgb(29, 29, 27), rgb(29, 29, 27));
  --icon_fill: var(--white);
}
.cover-background {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.cover-content {
  position: relative;
}
.cover-mention {
  text-align: right;
  display: inline-block;
  vertical-align: top;
}
.cover-title {
  padding-bottom: 0.3em;
}
.cover-title sup {
  font-size: 2.5rem;
  font-family: Rift Soft;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.03em;
  display: inline-block;
  max-width: 20rem;
}
.cover-logotypes {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: var(--cover_logotype_opacity, 1);
}
.cover-logotypes *[fill]:not([fill=none]) {
  fill: rgb(var(--white));
}
.cover-logotype_1, .cover-logotype_2 {
  position: absolute;
  opacity: 1;
}
.cover-illu {
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  bottom: 10rem;
  width: 6rem;
  height: 6rem;
}

[preset*="cover:black"] {
  --cover_background: var(--black);
  --cover_logotype_opacity: 0.3;
}

.creation_assets-sticky {
  height: calc(var(--vh) * 100);
}
.creation_assets-items {
  z-index: 2;
  background: rgb(var(--white));
}
.creation_assets-background {
  position: absolute;
  inset: -10rem 0;
  clip-path: inset(0% 0 0% 0);
  background: rgb(var(--black));
  transition: clip-path var(--timing) cubic-bezier(var(--ease_out));
  will-change: clip-path;
}
.creation_assets-background[data-after=true] {
  clip-path: inset(0% 0 100% 0);
}
.creation_assets-item {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.creation_assets-image {
  clip-path: inset(0% 0 0% 0);
  transition: background 0.5s linear 0.2s, clip-path var(--timing) cubic-bezier(var(--ease_out));
}
.creation_assets-image::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.creation_assets-item[data-after=true] .creation_assets-image {
  clip-path: inset(0% 0 100% 0);
}
.creation_assets-index {
  position: absolute;
  top: 3rem;
}
.creation_assets-item[aria-hidden=true] .creation_assets-index {
  display: none;
}
.creation_assets-text, .creation_assets-title {
  position: absolute;
  text-align: center;
}
.creation_assets-item[aria-hidden=true] .creation_assets-title {
  display: none;
}
.creation_assets-item[aria-hidden=true] .creation_assets-text {
  display: none;
}
.creation_assets-bullets {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  height: fit-content;
  right: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgb(var(--orange));
}

.creation_benefits {
  background: rgb(var(--black));
  color: rgb(var(--white));
  z-index: 2;
  position: relative;
}
.creation_benefits-insert {
  position: relative;
  z-index: 2;
  bottom: -17rem;
}

.end_push {
  position: relative;
  background: rgb(var(--orange));
  color: rgb(var(--white));
  text-align: center;
  overflow: hidden;
}
.end_push-text {
  display: block;
  margin-top: 1.8rem;
  max-width: 47rem;
  margin-left: auto;
  margin-right: auto;
}
.end_push-link {
  display: flex;
  flex-direction: column;
  padding-top: 20rem;
  padding-bottom: 15rem;
}
.end_push-arrow {
  position: absolute;
  background: white;
  top: 0;
  left: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.experiences_brands {
  background: rgb(var(--black));
  color: rgb(var(--white));
}
.experiences_brands-title {
  text-align: center;
}
.experiences_brands-card {
  margin: auto;
  position: relative;
  width: 31rem;
}
.experiences_brands-card_image {
  width: 100%;
  opacity: 0.5;
}
.experiences_brands-card_image::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.experiences_brands-card_title {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -10%;
  right: 0;
  margin: auto;
  height: fit-content;
  width: 120%;
  text-align: center;
}
.experiences_brands-card_icon_arrow, .experiences_brands-card_icon_tocome {
  position: absolute;
  transition: none var(--timing) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
}
.experiences_brands-card:hover .experiences_brands-card_icon_arrow {
  transition: none var(--timing) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  transform: translateX(2rem);
}
.experiences_brands-card_link {
  position: absolute;
  inset: 0;
}

.expertises_aging {
  position: relative;
}
.expertises_aging-card {
  background: rgb(var(--orange));
  color: rgb(var(--white));
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
}
.expertises_aging-card::before {
  content: "";
  position: absolute;
  display: block;
  background: rgb(var(--white));
  border-radius: 100%;
}
.expertises_aging-paragraph {
  grid-column: 11/span 5;
}
.expertises_aging-panel {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--gutter);
  min-width: 100%;
}
.expertises_aging-panel > *:nth-child(3n+1) {
  min-width: calc(12.5% - var(--gutter) + var(--gutter) / 3);
  max-width: calc(12.5% - var(--gutter) + var(--gutter) / 3);
  flex-shrink: 0;
}
.expertises_aging-panel > *:nth-child(3n+2) {
  min-width: calc(75% - var(--gutter) + var(--gutter) / 3);
  max-width: calc(75% - var(--gutter) + var(--gutter) / 3);
  flex-shrink: 0;
}
.expertises_aging-panel > *:nth-child(3n+3) {
  min-width: calc(12.5% - var(--gutter) + var(--gutter) / 3);
  max-width: calc(12.5% - var(--gutter) + var(--gutter) / 3);
  flex-shrink: 0;
}
.expertises_aging-title_wrapper {
  display: flex;
  flex-direction: column;
  text-align: center;
}
.expertises_aging-title > span {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.expertises_aging-yell_1 {
  font-size: 16rem;
  line-height: 1.04;
  font-weight: 400;
  text-transform: uppercase;
  color: rgb(var(--orange));
}
.expertises_aging-title_2 {
  font-size: 13rem;
  font-family: Fazeta;
  line-height: 1.02;
  font-weight: 400;
  text-transform: uppercase;
}
.expertises_aging-line {
  position: relative;
  margin-top: 3.5rem;
}
.expertises_aging-left_image, .expertises_aging-right_image {
  flex-shrink: 0;
}
.expertises_aging-left_image::after, .expertises_aging-right_image::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.expertises_distillation-col {
  position: relative;
}
.expertises_distillation-image_grid::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.expertises_distillation-image {
  height: fit-content;
}
.expertises_distillation-image::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.expertises_distillation-line {
  position: relative;
  margin-top: 3.5rem;
}

.footer {
  position: relative;
  background: rgb(var(--black));
  color: rgb(var(--white));
  padding-top: var(--spacing_medium);
  padding-bottom: 2.7rem;
  --icon_fill: var(--white);
  z-index: 2;
}
.footer-right {
  flex-grow: 1;
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--gutter);
}
.footer-primary {
  flex-grow: 1;
}
.footer-link {
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: color var(--timing_short) cubic-bezier(var(--ease));
  will-change: color;
}
.footer-link:hover {
  color: rgb(var(--orange));
}
.footer-info {
  padding-top: 1rem;
  padding-bottom: 1rem;
  display: flex;
  flex-direction: column;
}
.footer-secondary {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
}
.footer-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: 1rem;
}
.footer-social {
  margin-bottom: 0.8rem;
}

.group_history {
  position: relative;
  padding: var(--spacing_large) 0;
  clip-path: inset(0 0 calc(var(--vh) * -50) 0);
}
.group_history-background {
  position: absolute;
  inset: 0 0 calc(var(--vh) * -50) 0;
  opacity: 0.6;
}
.group_history-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: rgb(var(--white));
}
.group_history-title {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: flex-end;
}
.group_history-images_reveal {
  position: relative;
}
.group_history-images_reveal::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.group_history-image {
  z-index: 2;
  position: absolute;
  inset: 0;
}
.group_history-line {
  position: relative;
  color: rgb(var(--white));
  margin-top: 3.5rem;
}

.group_intro {
  position: relative;
  background: rgb(var(--black));
}
.group_intro-image {
  position: absolute;
  inset: 0;
  opacity: 0.8;
}
.group_intro-insert {
  position: relative;
  z-index: 2;
  background: rgb(var(--orange));
  color: rgb(var(--white));
  padding: 3rem;
  min-height: 43rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 30rem;
}

.group_keys {
  background: rgb(var(--white));
  clip-path: inset(0);
}
.group_keys-container {
  position: relative;
  z-index: 2;
  height: 300rem;
  min-height: calc(var(--vh) * 200);
}
.group_keys-sticky {
  height: calc(var(--vh) * 100);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.group_keys-title {
  margin-top: 1.6rem;
  max-width: 85rem;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 4rem;
}
.group_keys-stamp {
  position: absolute;
  bottom: -2rem;
  left: 94%;
}
.group_keys-keys, .group_keys-images {
  position: absolute;
  inset: calc(var(--vh) * 85) 0 0 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.group_keys-keys {
  z-index: 2;
}
.group_keys-key {
  position: absolute;
  pointer-events: all;
}
.group_keys-key:nth-child(1) {
  bottom: 90%;
  left: 5%;
}
.group_keys-key:nth-child(2) {
  bottom: 70%;
  right: 0;
}
.group_keys-key:nth-child(3) {
  top: 60%;
  left: 0;
}
.group_keys-key:nth-child(4) {
  top: 70%;
  right: 0;
}
.group_keys-image {
  position: absolute;
}
.group_keys-image::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.group_keys-image:nth-child(1) {
  bottom: 85%;
  left: 40%;
  width: 14%;
}
.group_keys-image:nth-child(2) {
  width: 19%;
  left: 5%;
  bottom: 55%;
}
.group_keys-image:nth-child(3) {
  width: 19%;
  right: 20%;
}
.group_keys-image:nth-child(4) {
  width: 14%;
  bottom: 5%;
  left: 30%;
}

.group_members {
  color: rgb(var(--white));
  background: rgb(var(--black));
}
.group_members-container {
  position: relative;
}
.group_members-images_container {
  padding-left: 10rem;
}
.group_members-images {
  position: relative;
}
.group_members-images::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 1.35 * 100%);
  pointer-events: none;
}
.group_members-image {
  position: absolute;
  inset: 0;
  clip-path: inset(0% 0 0% 0);
  transition: clip-path var(--timing) cubic-bezier(var(--ease_out));
  will-change: clip-path;
}
.group_members-image[data-after=true] {
  clip-path: inset(0% 0 100% 0);
}
.group_members-image_mobile {
  margin-top: 4rem;
}
.group_members-image_mobile::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 1.77 * 100%);
  pointer-events: none;
}
.group_members-group {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.group_members-group:last-child {
  margin-bottom: var(--spacing);
}
.group_members-members {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 5rem;
}
.group_members-paragraph {
  margin-top: 2rem;
}
.group_members-member {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  line-height: 1;
}

.group_timeline {
  color: rgb(var(--white));
  position: relative;
  z-index: 2;
}
.group_timeline-content {
  display: flex;
  flex-direction: column;
  gap: 10rem;
}
.group_timeline-titles {
  width: 100%;
  position: relative;
  height: 0.75em;
  clip-path: inset(0);
}
.group_timeline-title {
  display: flex;
  align-items: flex-start;
  position: absolute;
  transition: none var(--timing) cubic-bezier(var(--ease_out));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
}
.group_timeline-title[data-before=true] {
  transform: translateY(-1em);
}
.group_timeline-title[data-after=true] {
  transform: translateY(1em);
}
.group_timeline-date {
  position: relative;
  bottom: 0.14em;
}
.group_timeline-title_mobile {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
}
.group_timeline-paragraph {
  margin-bottom: 10rem;
}
.group_timeline-dates {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.group_timeline-date {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home_brands {
  background: rgb(var(--black));
  color: rgb(var(--white));
  position: relative;
}
.home_brands-sticky {
  position: relative;
  height: calc(var(--vh) * 100);
}
.home_brands-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_brands-item:first-child .home_brands-background {
  inset: calc(var(--vh) * -100) 0 0 0;
}
.home_brands-background {
  position: absolute;
  inset: 0% 0;
  opacity: 0;
  pointer-events: none;
}
.home_brands-image_left {
  position: absolute;
  width: 50%;
  left: 0;
  z-index: 2;
}
.home_brands-image_right {
  position: absolute;
  z-index: 2;
  margin-left: 50%;
}
.home_brands-image_right::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.home_brands-title {
  position: relative;
  z-index: 1;
}

.home_history-grid {
  display: grid;
  gap: var(--gutter);
}
.home_history-image_1::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.home_history-images_reveal::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.home_history-col {
  position: relative;
}
.home_history-caption {
  position: absolute;
  top: 50%;
  left: calc(var(--gutter) * -1 - 3.5rem);
  color: rgb(var(--orange));
  transform: translate(-50%, -50%) rotate(-90deg);
}
.home_history-stamp {
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.home_history-button {
  margin-top: 2rem;
}

.home_mastery {
  background: rgb(var(--black));
}
.home_mastery-content {
  position: relative;
  text-align: center;
  color: rgb(var(--white));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  padding: var(--spacing_large) 0 calc(var(--spacing_large) + 10rem) 0;
}
.home_mastery-content span {
  position: relative;
  z-index: 3;
}
.home_mastery-title {
  position: relative;
  z-index: 2;
  pointer-events: none;
  transition: none var(--timing) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
}
.home_mastery-title sup {
  font-size: 7rem;
  font-family: Fazeta;
  line-height: 1.1;
  font-weight: 500;
}
.home_mastery[data-expanded=true] .home_mastery-title {
  opacity: 0;
}
.home_mastery-player {
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home_mastery-play {
  position: absolute;
}
.home_mastery[data-expanded=true] .home_mastery-play {
  pointer-events: none;
  opacity: 0;
}
.home_mastery-close {
  position: absolute;
  top: -2rem;
}
.home_mastery-video {
  position: absolute;
  inset: 0;
  transform: scale(1);
  transition: none var(--timing) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
}
.home_mastery[data-expanded=false] .home_mastery-video {
  opacity: 0.4;
}
.home_mastery[data-expanded=false] .home_mastery-video video.video-source {
  height: 142%;
  top: -21%;
}

.intro_images-grid {
  display: grid;
  gap: var(--gutter);
}
.intro_images-image_1::after, .intro_images-image_2::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.intro_images-col {
  position: relative;
}
.intro_images-caption {
  position: absolute;
  top: 50%;
  left: calc(var(--gutter) * -1 - 3.5rem);
  color: rgb(var(--orange));
  transform: translate(-50%, -50%) rotate(-90deg);
}
.intro_images-stamp {
  position: absolute;
  top: 0;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.intro_images-button {
  margin-top: 2rem;
}

.intro {
  position: relative;
}
.intro-label {
  color: rgb(var(--orange));
}
.intro-text {
  margin-top: 1.6rem;
}
.intro-icon_button {
  display: inline-flex;
}

.jobs_commitments-container {
  background: rgb(var(--black));
  color: rgb(var(--white));
}
.jobs_commitments-stamp {
  margin-right: auto;
  margin-left: auto;
  margin-top: 7.5rem;
  display: inherit;
}
.jobs_list-caption {
  display: inline-block;
  color: rgb(var(--orange));
  margin-bottom: 0.8rem;
}
.jobs_list-title {
  margin-bottom: 4rem;
}
.jobs_list-cards {
  position: relative;
  z-index: 2;
}
.jobs_list-bottom::after {
  content: "";
  display: block;
  position: absolute;
  background: rgb(var(--black));
}
.jobs_list-bottom {
  position: relative;
  z-index: 2;
}
.jobs_list-nav {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  justify-content: flex-end;
  position: absolute;
  top: -10rem;
  right: 0;
}
.jobs_list-prev, .jobs_list-next {
  border: 1px solid rgb(var(--orange));
  border-radius: 50%;
  min-width: 3.6rem;
  min-height: 3.6rem;
  max-width: 3.6rem;
  max-height: 3.6rem;
  --icon_size: 3.6rem;
  --icon_fill: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
}
.jobs_list-prev {
  transform: rotate(180deg);
}
.jobs_list[data-use=false] .jobs_list-cards {
  justify-content: flex-end;
}
.jobs_list[data-use=false] .jobs_list-prev {
  display: none;
}
.jobs_list[data-use=false] .jobs_list-next {
  display: none;
}

.jobs_values {
  position: relative;
  padding-top: var(--spacing);
  color: rgb(var(--white));
  background: rgb(var(--dark_grey));
  overflow: hidden;
}
.jobs_values-backgrounds {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.jobs_values-background {
  position: absolute;
  inset: 0;
}
.jobs_values-images {
  position: relative;
  z-index: 1;
}
.jobs_values-images::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.jobs_values-title {
  position: relative;
  text-align: center;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.jobs_values-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.jobs_values-loops_1, .jobs_values-loops_2 {
  position: absolute;
  left: 0;
  right: 0;
  height: 1em;
  clip-path: inset(0.2em 0 -0.2em 0);
}
.jobs_values-loops_2 {
  z-index: 2;
  opacity: 0.3;
}
.jobs_values-loop {
  position: absolute;
  inset: 0;
}
.jobs_values-loop span {
  will-change: transform;
}
.jobs_values-loop:not(:first-child) span {
  transform: translateY(-1em);
}
.jobs_values-image {
  position: absolute;
  inset: 0;
}
.jobs_values-line {
  margin-top: 3.5rem;
  margin-bottom: 3.5rem;
}
.jobs_values-bottom {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 41rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  text-align: center;
}
.jobs_values-bullets {
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.5rem;
}
.lateral_composition {
  background: rgb(var(--white));
  position: relative;
}
.lateral_composition-title {
  margin-top: 2rem;
}
.lateral_composition-images {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.lateral_composition-image {
  position: absolute;
}
.lateral_composition-image::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}

.lateral_cover {
  display: flex;
  position: relative;
  flex-direction: column;
  color: rgb(var(--white));
}
.lateral_cover-background {
  position: absolute;
  background: rgb(var(--black));
}
.lateral_cover-background img {
  opacity: 0.6;
}
.lateral_cover-image {
  position: absolute;
  inset: 0;
}
.lateral_cover-background_mobile {
  position: absolute;
  inset: 0;
}
.lateral_cover-content {
  position: relative;
  z-index: 1;
}

.pushes_brand {
  clip-path: inset(0 0 0 0);
}
.pushes_brand-title {
  display: flex;
  flex-direction: column;
}
.pushes_brand-left {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--white));
  background: rgb(var(--black));
}
.pushes_brand-thumbnails {
  position: absolute;
  inset: -10rem 0;
}
.pushes_brand-thumbnail {
  position: absolute;
  inset: 0;
  clip-path: inset(0% 0 0% 0);
  background: rgb(var(--black));
  transition: clip-path var(--timing) cubic-bezier(var(--ease_out));
  will-change: clip-path;
}
.pushes_brand-thumbnail img {
  opacity: 0.6;
}
.pushes_brand-thumbnail_image {
  position: absolute;
  inset: 0;
}
.pushes_brand-thumbnail[data-after=true] {
  clip-path: inset(0% 0 100% 0);
}
.pushes_brand-titles {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pushes_brand-title {
  position: absolute;
  text-transform: uppercase;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.pushes_brand-title[aria-hidden=true] {
  display: none;
}
.pushes_brand-right {
  position: relative;
  flex-grow: 1;
  height: calc(var(--vh) * 100);
}
.pushes_brand-item {
  position: absolute;
  inset: 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.pushes_brand-item[aria-hidden=true] {
  pointer-events: none;
}
.pushes_brand-caption {
  margin-bottom: 4.3rem;
  height: 4.8rem;
  transition: none var(--timing) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.pushes_brand-item[aria-hidden=true] .pushes_brand-caption {
  opacity: 0;
}
.pushes_brand-images {
  position: relative;
}
.pushes_brand-image {
  width: 23rem;
  z-index: 1;
  clip-path: inset(0% 0 0% 0);
  transition: background 0.5s linear 0.2s, clip-path var(--timing) cubic-bezier(var(--ease_out));
}
.pushes_brand-image::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.pushes_brand-item[data-after=true] .pushes_brand-image {
  clip-path: inset(0% 0 100% 0);
}
.pushes_brand-button {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translate(60%, 60%);
  z-index: 2;
}
.pushes_brand-button:hover {
  transition: none var(--timing) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  transform: translate(70%, 60%);
}
.pushes_brand-item[aria-hidden=true] .pushes_brand-button {
  opacity: 0;
}
.pushes_brand-bullets {
  position: absolute;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  height: fit-content;
  right: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: rgb(var(--orange));
}

.quote {
  position: relative;
  color: rgb(var(--white));
  background: rgb(var(--black));
  padding: 20rem 0 40rem;
}
.quote-background {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.quote-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(var(--black), 1) 0%, rgba(255, 255, 255, 0) 100%);
}
.quote-content {
  position: relative;
  z-index: 2;
}
.quote-icon {
  position: absolute;
}
.quote-text {
  position: relative;
}
.sites_cover-map {
  width: 100%;
  max-width: 53rem;
}

.sites_tabs-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.sites_tabs-tabs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 6.6rem;
  margin-top: 2.4rem;
}
.sites_tabs-tab {
  position: relative;
  display: flex;
  align-items: center;
  transition: color var(--timing) cubic-bezier(var(--ease));
  will-change: color;
}
.sites_tabs-tab:not(:last-child)::after {
  content: "";
  width: 1px;
  height: 0.5em;
  position: absolute;
  background: rgb(var(--text));
  opacity: 0.2;
  left: calc(100% + 3.3rem);
}
.sites_tabs-tab[aria-current=false] {
  color: rgba(var(--text), 0.2);
}
.sites_tabs-tab_svg {
  position: absolute;
  top: 0.8em;
  height: 0.4em;
  left: 0;
  right: 0;
  transition: clip-path var(--timing) cubic-bezier(var(--ease));
  will-change: clip-path;
  clip-path: inset(0);
}
.sites_tabs-tab[aria-current=false] .sites_tabs-tab_svg {
  clip-path: inset(0 100% 0 0);
}
.sites_tabs-item[aria-hidden=true] {
  display: none;
}

.table {
  margin: 4rem 0;
}
.table-row:first-child {
  font-size: 1.6rem;
  font-family: Rift Soft;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.14em;
  font-weight: 600;
}
.table-row:not(:first-child) {
  font-size: 1.2rem;
  font-family: Gotham;
  line-height: 1.7;
  font-weight: 400;
}
.table-cell {
  padding: 3rem;
  border: 1px solid #1d1d1b;
}

.text_images {
  text-align: left;
}
.text_images-cols {
  position: relative;
  display: grid;
  gap: var(--gutter);
}
.text_images-col {
  display: flex;
  flex-direction: column;
}
.text_images-image_1::after, .text_images-image_2::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.text_images[align=right] .text_images-col:nth-child(2) {
  display: none;
}
.text_images-col:nth-child(3) {
  justify-content: center;
}
.text_images-link, .text_images-download {
  margin-top: 3rem;
}

.text_images + .text_images {
  margin-top: 6rem;
}

.intro_images + .text_images {
  margin-top: 6rem;
}

.vision_catchline {
  position: relative;
  color: rgb(var(--vision_color, var(--text)));
}
.vision_catchline::before {
  content: "";
  position: absolute;
  inset: -10rem 0;
  background: rgb(var(--vision_background, var(--white)));
  pointer-events: none;
}
.vision_catchline-lateral {
  position: relative;
  width: fit-content;
  height: calc(var(--vh) * 100);
  display: flex;
  align-items: center;
  z-index: 2;
}
.vision_catchline-text {
  white-space: nowrap;
  margin-top: -0.1em;
}
.vision_catchline-end {
  position: relative;
  z-index: 2;
  text-align: right;
  margin-top: 15rem;
}
.vision_catchline-end_2 {
  opacity: 0.2;
}
.vision_catchline-images {
  position: absolute;
  inset: 0 32rem 0 32rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.vision_catchline-image {
  position: relative;
  height: fit-content;
}
.vision_catchline-image::after {
  content: "";
  display: block;
  padding-bottom: calc(1 / 0.72 * 100%);
  pointer-events: none;
}
.vision_catchline-image:nth-child(5n-4) {
  width: 23rem;
}
.vision_catchline-image:nth-child(5n-3) {
  width: 23rem;
}
.vision_catchline-image:nth-child(5n-2) {
  width: 15rem;
}
.vision_catchline-image:nth-child(5n-1) {
  width: 15rem;
}
.vision_catchline-image:nth-child(5n-5) {
  width: 15rem;
}
.vision_catchline-image:nth-child(6n-5) {
  bottom: 17.5rem;
}
.vision_catchline-image:nth-child(6n-4) {
  top: 6.8rem;
}
.vision_catchline-image:nth-child(6n-3) {
  bottom: 32.7rem;
}
.vision_catchline-image:nth-child(6n-2) {
  top: 26rem;
}
.vision_catchline-image:nth-child(6n-1) {
  bottom: 8.6rem;
}
.vision_catchline-image:nth-child(6n-6) {
  top: 21.5rem;
}

.vision_objectives {
  background-color: rgb(var(--black));
}
.vision_objectives-item {
  height: 100%;
  flex-shrink: 0;
}

.vision_preservation {
  background: rgba(var(--black));
  position: relative;
  color: rgb(var(--white));
}
.vision_preservation-background {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.vision_preservation-intro {
  z-index: 3;
  position: relative;
}
.vision_preservation[data-padding=true] {
  padding-bottom: calc(var(--spacing_large) + 37.5rem);
}

.vision_reason {
  position: relative;
}
.vision_reason-columns {
  color: rgb(var(--white));
}
.vision_reason-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
}
.vision_reason-image::after {
  position: absolute;
  inset: 0;
  bottom: 0;
  content: "";
  background: rgba(var(--black), 0.4);
}
.vision_reason-text {
  max-width: 39rem;
  z-index: 1;
}
.vision_reason-right, .vision_reason-left {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vision_reason-label {
  background-color: rgb(var(--orange));
  max-width: 33rem;
  height: 45rem;
  padding: 3rem;
  display: flex;
  align-items: center;
}

.admin_widget {
  position: fixed;
  right: 2rem;
  top: 50%;
  z-index: 9999;
  width: 5rem;
  background: white;
  transform: translateY(-50%);
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.3rem 0.5rem 0 rgba(var(--black), 0.2);
}
.admin_widget svg {
  min-width: 2.5rem;
  min-height: 2.5rem;
  max-width: 2.5rem;
  max-height: 2.5rem;
}
.admin_widget svg *[fill]:not([fill=none]) {
  fill: #444;
}

.age_gate {
  position: fixed;
  inset: 0;
  z-index: 240;
  background: rgb(var(--black));
  color: rgb(var(--white));
  --icon_button_fill: var(--white);
  --icon_button_hover_fill: var(--orange);
}
.age_gate[aria-hidden=true] {
  display: none;
}
.age_gate-container {
  min-height: calc(var(--vh) * 100);
  display: flex;
  align-items: center;
  text-align: center;
  padding-top: 10rem;
  padding-bottom: 5rem;
}
.age_gate-title {
  margin-top: 5.2rem;
}
.age_gate-actions {
  margin-top: 5.2rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 6rem;
  justify-content: center;
}
.age_gate-logotypes {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.2;
}
.age_gate-logotypes *[fill]:not([fill=none]) {
  fill: rgb(var(--white));
}
.age_gate-logotype_1, .age_gate-logotype_2 {
  position: absolute;
  opacity: 1;
}
.age_gate-mention {
  opacity: 0;
  color: rgb(var(--orange));
  margin-top: 5rem;
}
.age_gate[data-refuse=true] .age_gate-mention {
  opacity: 1;
}
.age_gate[data-refuse=true] .age_gate-refuse {
  --icon_button_fill: var(--orange);
}
.age_gate[data-accept=true] .age_gate-accept {
  --icon_button_fill: var(--orange);
}

.cookie_banner {
  position: absolute;
  z-index: 200;
  background: rgb(var(--text));
  color: rgb(var(--body));
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  align-items: center;
  transition: none var(--timing) cubic-bezier(var(--ease-out));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  padding: 4rem 3rem;
  right: 1rem;
  bottom: 10rem;
  width: 39rem;
  max-width: calc(100% - 2rem);
  border-radius: 0.4rem;
  overflow: hidden;
}
.cookie_banner[aria-hidden=true] {
  transform: translateX(-100%) translateX(-5rem);
  visibility: hidden;
}
.cookie_banner[data-pending=true] {
  display: none;
}
.cookie_banner-background {
  position: absolute;
  opacity: 0.2;
  width: 100%;
  right: -10rem;
  bottom: -30rem;
  pointer-events: none;
}
.cookie_banner-content {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
}
.cookie_banner-text {
  margin-top: 1.5rem;
}
.cookie_banner-buttons {
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
  margin-top: 2rem;
}
.cookie_banner-close {
  min-width: 3.6rem;
  min-height: 3.6rem;
  max-width: 3.6rem;
  max-height: 3.6rem;
  border: 1px solid rgb(var(--orange));
  border-radius: 100%;
  position: absolute;
  right: 2rem;
  top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  --icon_size: 3.4rem;
}
.cookie_banner-accept:hover, .cookie_banner-params:hover {
  color: rgb(var(--orange));
}

.cookie_options {
  position: absolute;
  z-index: 201;
  background: rgb(var(--text));
  color: rgb(var(--body));
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.8rem 1.8rem 2.4rem 1.8rem;
  transition: none var(--timing) cubic-bezier(var(--ease-out));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  --checkbox_border: var(--white);
  --checkbox_checked_border: var(--white);
  padding: 4rem 3rem;
  right: 1rem;
  bottom: 10rem;
  width: 39rem;
  max-width: calc(100% - 2rem);
  border-radius: 0.4rem;
  overflow: hidden;
}
.cookie_options[data-completed=true] {
  transform: translateX(-100%) translateX(-5rem);
  visibility: hidden;
}
.cookie_options[aria-hidden=true] {
  display: none;
}
.cookie_options-background {
  position: absolute;
  opacity: 0.2;
  width: 100%;
  right: -10rem;
  bottom: -30rem;
  pointer-events: none;
}
.cookie_options-buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 2rem;
}
.cookie_options-choices {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}
.cookie_options-choice p {
  margin-top: 0.5rem;
  padding-left: 2.8rem;
}
.cookie_options-close {
  min-width: 3.6rem;
  min-height: 3.6rem;
  max-width: 3.6rem;
  max-height: 3.6rem;
  border: 1px solid rgb(var(--orange));
  border-radius: 100%;
  position: absolute;
  right: 2rem;
  top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  --icon_size: 3.4rem;
}
.cookie_options-accept:hover, .cookie_options-refuse:hover {
  color: rgb(var(--orange));
}

.header {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 220;
}
.header-logo {
  pointer-events: auto;
  position: absolute;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 230;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--orange));
}
.loader[aria-hidden=true] {
  pointer-events: none;
}
.loader-logotype {
  position: absolute;
  width: 50%;
  margin-top: 20rem;
  right: 0;
}
.loader-logotype *[fill]:not([fill=none]) {
  fill: rgb(var(--black));
}
.loader[aria-hidden=false] .loader-logotype {
  transition: none var(--timing_long) cubic-bezier(var(--ease_out));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  transition-delay: 0.2s;
}
.loader[aria-hidden=true] .loader-logotype {
  transition: none var(0s) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  transition-delay: 0.5s;
  opacity: 0;
  transform: translateX(-10rem);
}
.loader-stamp {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
}
.loader[aria-hidden=false] .loader-stamp {
  transition: none var(--timing) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  transition-delay: 0.5s;
}
.loader[aria-hidden=true] .loader-stamp {
  transition: none var(0s) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  transition-delay: 0.5s;
  opacity: 0;
}

.menu {
  position: fixed;
  margin: 0 auto;
  background: rgb(var(--black));
  padding: 0 4.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--white));
  transition: none var(--timing) cubic-bezier(var(--ease));
  transition-property: clip-path, transform;
  will-change: clip-path, transform;
  --icon_fill: var(--white);
}
.menu::before, .menu::after {
  min-width: 4px;
  min-height: 4px;
  max-width: 4px;
  max-height: 4px;
  background: rgb(var(--orange));
  border-radius: 50%;
  content: "";
  position: absolute;
  margin: auto 0;
  z-index: 1;
}
.menu:before {
  left: 2rem;
}
.menu:after {
  right: 2rem;
}
.menu[aria-hidden=true] {
  transform: translateY(10rem);
  pointer-events: none;
}
.menu[data-open=true] {
  clip-path: inset(0 round var(--radius_small));
  pointer-events: auto;
}
.menu-open {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 5rem;
  background: rgb(var(--black));
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 1px;
}
.menu-open span {
  line-height: 5rem;
}
.menu[data-open=true] .menu-open {
  display: none;
}
.menu-close {
  position: absolute;
  bottom: 2rem;
}
.menu-content[aria-hidden=true] {
  pointer-events: none;
}
.menu-item {
  transition: color var(--timing_short) cubic-bezier(var(--ease));
  will-change: color;
}
.menu-item:hover {
  color: rgb(var(--orange));
}
.menu-item[aria-current=true] {
  color: rgb(var(--orange));
}
.menu-item[aria-current=true]::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: -1px;
  height: 1px;
  width: 100%;
  background-color: rgb(var(--orange));
}
.menu-logotype {
  width: 48rem;
  position: absolute;
  top: 10rem;
  left: 4rem;
  opacity: 0.3;
  pointer-events: none;
  transition: none var(--timing) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
}
.menu[data-open=false] .menu-logotype {
  opacity: 0;
}
.menu-social {
  margin-top: 2rem;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(var(--black), 0.5);
  transition: none var(--timing) cubic-bezier(var(--ease));
  transition-property: transform, opacity, visibility;
  will-change: transform, opacity, visibility;
  backdrop-filter: blur(10px);
}
.overlay[aria-hidden=true] {
  opacity: 0;
  pointer-events: none;
}

.popin_page {
  position: fixed;
  background: rgb(var(--black));
  color: rgb(var(--white));
  --body: var(--black);
  --text: var(--white);
  z-index: 210;
}
.popin_page[aria-hidden=true] {
  pointer-events: none;
  opacity: 0;
}
.popin_page-close {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  z-index: 20;
  transform: translateY(-50%);
}

.brand-intro {
  margin-bottom: -18rem;
}

.contact {
  background: rgb(var(--black));
  color: rgb(var(--white));
}
.contact-background {
  position: absolute;
  inset: 0;
  opacity: 0.4;
}
.contact-top {
  padding: 17rem 0 10rem;
  display: flex;
  flex-direction: column;
  gap: 4.4rem;
  position: relative;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.contact-infos {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.contact-container {
  position: relative;
}
.contact-map {
  color: rgb(var(--white));
}
.contact-form {
  background: rgb(var(--white));
  padding: 5.2rem 3.4rem;
  color: rgb(var(--black));
  position: relative;
}
.contact-form::before {
  min-width: 8px;
  min-height: 8px;
  max-width: 8px;
  max-height: 8px;
  background: rgb(var(--orange));
  border-radius: 50%;
  content: "";
  position: absolute;
  left: 8px;
  top: 8px;
}

.creation-quote {
  z-index: 1;
  position: relative;
}

.expertises-intro {
  background-color: rgb(var(--black));
  color: rgb(var(--white));
}
.expertises-step {
  position: absolute;
  bottom: 1.4rem;
  left: 2rem;
}
.expertises-gestion {
  z-index: 3;
}
.expertises-gestion_insert {
  position: relative;
  bottom: -8rem;
  margin-top: var(--spacing_medium);
}
.expertises-distillation {
  z-index: 2;
  background: rgb(var(--beige));
  clip-path: inset(0);
}
.expertises-distillation_logotype_1, .expertises-distillation_logotype_2 {
  position: absolute;
  width: 69rem;
}
.expertises-distillation_logotype_1 {
  bottom: 16%;
  left: 0;
}
.expertises-distillation_logotype_2 {
  bottom: -10%;
  right: -5%;
}
.expertises-distillation_insert {
  position: relative;
  top: -19rem;
}
.expertises-aging_intro .intro-text {
  margin-right: 0;
}
.expertises-aging_intro .intro-image {
  display: none;
}
.expertises-assembly_cover {
  padding-bottom: calc(12rem + var(--spacing_huge));
}
.expertises-assembly_insert {
  position: relative;
  top: -11.5rem;
}

.group-collaborators {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.group-collaborators_line {
  position: relative;
  margin-top: 3.5rem;
}
.group-timeline {
  background: rgb(var(--black));
}
.group-timeline_background {
  position: absolute;
  opacity: 0.4;
  top: 0;
  width: 100%;
  height: auto;
}
.group-timeline_background::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(var(--black), 1) 7.66%, rgba(var(--black), 0) 67.23%);
}

.home-brands {
  background-color: rgb(var(--black));
  color: rgb(var(--white));
}
.home-brands_cover {
  z-index: 2;
}
.home-brands_intro {
  position: relative;
  z-index: 3;
  color: rgb(var(--white));
}
.home-experiences {
  position: relative;
  z-index: 2;
}
.home-creation {
  position: relative;
  z-index: 1;
}
.home-creation_insert {
  position: relative;
}

.jobs-company {
  position: relative;
  background: rgb(var(--beige));
}
.jobs-logotype_1, .jobs-logotype_2 {
  position: absolute;
  width: 69rem;
  transform: translate(-50%, -50%);
}
.jobs-logotype_1 {
  top: 76%;
  left: 70%;
}
.jobs-logotype_2 {
  top: 105%;
  left: 25%;
}

.page {
  background: rgb(var(--beige));
}

.vision-preservation_insert {
  position: relative;
  margin-top: -37.5rem;
}
.vision-objective_insert {
  z-index: 2;
  margin-bottom: -11rem;
}
.vision-certifications_insert {
  position: relative;
  top: -20rem;
  z-index: 2;
}
.vision-certifications_items {
  margin-top: 3rem;
}
.vision-certifications_cover {
  padding-top: calc(11rem + var(--spacing_huge));
  padding-bottom: calc(20rem + var(--spacing_huge));
}

.error {
  color: rgb(var(--white));
  background: rgb(var(--black));
}
.error-background {
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.error-container {
  height: calc(100 * var(--vh));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.error-button {
  margin-top: 3rem;
}

*:focus {
  outline: var(--focus);
}

@media (min-width: 415px){
  .icon_button[size=medium] {
    min-width: 10rem;
    min-height: 10rem;
    max-width: 10rem;
    max-height: 10rem;
    --icon_size: 8rem;
  }
  .icon_button[size=large] {
    min-width: 16rem;
    min-height: 16rem;
    max-width: 16rem;
    max-height: 16rem;
    --icon_size: 16rem;
    --icon_button_border: 3px;
  }
  .icon_button[size=large]::before, .icon_button[size=large]::after, .icon_button[size=medium]::before, .icon_button[size=medium]::after {
    min-width: 4px;
    min-height: 4px;
    max-width: 4px;
    max-height: 4px;
  }
  .stamp[size=small] {
    min-width: 9.2rem;
    min-height: 9.2rem;
    max-width: 9.2rem;
    max-height: 9.2rem;
    font-size: 1.1rem;
  }
  .stamp[size=default] {
    min-width: 13rem;
    min-height: 13rem;
    max-width: 13rem;
    max-height: 13rem;
    font-size: 1.4rem;
  }
  .stamp[size=medium] {
    min-width: 15rem;
    min-height: 15rem;
    max-width: 15rem;
    max-height: 15rem;
  }
  .title-logo {
    width: 25rem;
  }
  .title-link {
    top: 0.25em;
  }
  .benefit-columns {
    justify-content: space-between;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .benefit-text {
    width: 39.5rem;
    margin-right: 6.4rem;
    margin-left: 2rem;
  }
  .benefit-image {
    width: 18rem;
  }
  .card_expertises {
    width: 47rem;
  }
  .card_expertises-title {
    max-width: 90%;
  }
  .card_home_visit {
    margin-left: auto;
    margin-right: 9rem;
    width: 55rem;
    margin-bottom: -38rem;
  }
  .card_home_visit-image {
    height: 38rem;
  }
  .card_home_visit-content {
    padding: 0 4rem;
    height: 38rem;
  }
  .card_member-image {
    height: 38rem;
  }
  .card_member-content {
    padding: 7.2rem 4rem 3.7rem;
  }
  .card_offer-top {
    height: 24rem;
  }
  .card_offer-content {
    padding: 8.8rem 4rem 3.1rem;
  }
  .card_visit-top {
    height: 38rem;
  }
  .card_visit-content {
    padding: 7.2rem 4rem 2rem;
  }
  .card {
    width: 47rem;
  }
  .card-title {
    max-width: 90%;
  }
  .card-caption {
    max-width: 90%;
  }
  .expertises_button {
    min-width: 14rem;
    min-height: 14rem;
    max-width: 14rem;
    max-height: 14rem;
    right: 3rem;
    bottom: 3rem;
  }
  .insert_large::before {
    min-width: 15px;
    min-height: 15px;
    max-width: 15px;
    max-height: 15px;
    top: 3rem;
    left: 3rem;
  }
  .insert_large-stamp {
    position: absolute;
    right: 4rem;
    bottom: 4rem;
  }
  .insert_small[size=default] {
    max-width: 31rem;
  }
  .insert_small[size=large] {
    max-width: 39rem;
  }
  .creation_prestation-stamp {
    bottom: -3rem;
    right: 3rem;
  }
  .block_carousel-bottom::after {
    inset: 38rem -50vw 0;
  }
  .block_carousel-nav {
    margin-bottom: 3rem;
  }
  .cover_default-introduction {
    max-width: 70%;
  }
  .cover_default-logotype_1, .cover_default-logotype_2 {
    width: 69rem;
  }
  .cover_default-logotype_1 {
    left: 25%;
    top: 15%;
  }
  .cover_default-logotype_2 {
    left: 85%;
    top: 95%;
  }
  .cover_section-image {
    width: 31rem;
    margin-top: 4rem;
  }
  .cover_title-text {
    padding: 26rem 0;
  }
  .cover_title-subtext {
    bottom: 15rem;
    max-width: 63rem;
  }
  .cover-logotype_1, .cover-logotype_2 {
    width: 69rem;
  }
  .cover-logotype_1 {
    left: 0;
    top: -40rem;
  }
  .cover-logotype_2 {
    right: -5%;
    bottom: -75rem;
  }
  .creation_benefits-items {
    padding-top: var(--spacing_large);
    padding-bottom: var(--spacing);
  }
  .experiences_brands-items {
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--gutter);
    min-width: 100%;
  }
  .experiences_brands-items > *:nth-child(2n+1) {
    min-width: calc(50% - var(--gutter) + var(--gutter) / 2);
    max-width: calc(50% - var(--gutter) + var(--gutter) / 2);
    flex-shrink: 0;
  }
  .experiences_brands-items > *:nth-child(2n+2) {
    min-width: calc(50% - var(--gutter) + var(--gutter) / 2);
    max-width: calc(50% - var(--gutter) + var(--gutter) / 2);
    flex-shrink: 0;
  }
  .experiences_brands-item {
    padding: 12rem 0 21rem;
  }
  .expertises_aging-card::before {
    min-width: 15px;
    min-height: 15px;
    max-width: 15px;
    max-height: 15px;
    top: 3rem;
    left: 3rem;
  }
  .expertises_aging-paragraph {
    margin-bottom: 10rem;
    display: flex;
    align-items: flex-end;
  }
  .expertises_aging-left_image, .expertises_aging-right_image {
    width: 47rem;
  }
  .expertises_distillation-col:nth-child(2) {
    padding-right: 8rem;
  }
  .expertises_distillation-images {
    display: flex;
    flex-wrap: wrap;
    column-gap: 9rem;
    min-width: 100%;
    align-items: center;
  }
  .expertises_distillation-images > *:nth-child(3n+1) {
    min-width: calc(29.4117647059% - 9rem + 9rem / 3);
    max-width: calc(29.4117647059% - 9rem + 9rem / 3);
    flex-shrink: 0;
  }
  .expertises_distillation-images > *:nth-child(3n+2) {
    min-width: calc(41.1764705882% - 9rem + 9rem / 3);
    max-width: calc(41.1764705882% - 9rem + 9rem / 3);
    flex-shrink: 0;
  }
  .expertises_distillation-images > *:nth-child(3n+3) {
    min-width: calc(29.4117647059% - 9rem + 9rem / 3);
    max-width: calc(29.4117647059% - 9rem + 9rem / 3);
    flex-shrink: 0;
  }
  .footer-stamp {
    position: absolute;
    right: 3.5rem;
    top: -0.5rem;
    transform: translateY(-50%);
  }
  .footer-logo {
    width: 39rem;
  }
  .footer-primary {
    columns: 3;
  }
  .group_history-images_reveal {
    width: 31rem;
    margin-top: 6rem;
  }
  .group_intro {
    padding-top: 23rem;
    padding-bottom: 23rem;
  }
  .group_intro-insert {
    margin-left: auto;
  }
  .group_timeline-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--gutter);
    min-width: 100%;
  }
  .group_timeline-container > *:nth-child(2n+1) {
    min-width: calc(62.5% - var(--gutter) + var(--gutter) / 2);
    max-width: calc(62.5% - var(--gutter) + var(--gutter) / 2);
    flex-shrink: 0;
  }
  .group_timeline-container > *:nth-child(2n+2) {
    min-width: calc(37.5% - var(--gutter) + var(--gutter) / 2);
    max-width: calc(37.5% - var(--gutter) + var(--gutter) / 2);
    flex-shrink: 0;
  }
  .group_timeline-title_mobile {
    display: none;
  }
  .home_brands-image_left {
    top: -10rem;
    height: calc(100% + 20rem);
  }
  .home_brands-image_right {
    width: 31rem;
  }
  .home_history-grid {
    grid-template-columns: repeat(14, 1fr);
  }
  .home_history-col:nth-child(1) {
    grid-column: 12/span 4;
  }
  .home_history-col:nth-child(2) {
    grid-column: 2/span 6;
    margin-top: -15rem;
  }
  .home_history-stamp {
    left: 100%;
  }
  .home_mastery-title_2 {
    margin-top: 22rem;
  }
  .home_mastery-player {
    margin-top: 9.5rem;
  }
  .home_mastery-player::after {
    content: "";
    display: block;
    padding-bottom: calc(1 / 1.778 * 100%);
    pointer-events: none;
  }
  .home_mastery[data-expanded=false] .home_mastery-video {
    transform: scale(0.507);
  }
  .intro_images-grid {
    grid-template-columns: repeat(14, 1fr);
  }
  .intro_images-col:nth-child(1) {
    grid-column: 12/span 4;
  }
  .intro_images-col:nth-child(2) {
    grid-column: 2/span 6;
    margin-top: -15.2rem;
  }
  .intro_images-stamp {
    left: 100%;
  }
  .intro-text {
    max-width: 110rem;
  }
  .intro-image {
    position: absolute;
    width: 23rem;
    top: -4rem;
    right: -5.5rem;
  }
  .intro-image::after {
    content: "";
    display: block;
    padding-bottom: calc(1 / 0.72 * 100%);
    pointer-events: none;
  }
  .intro[size=small] .intro-text {
    max-width: 95rem;
  }
  .jobs_commitments-container {
    padding-top: var(--spacing_large);
    padding-bottom: 45rem;
  }
  .jobs_commitments-insert {
    margin-top: -25rem;
  }
  .jobs_list-bottom::after {
    inset: 24rem -50vw 0;
  }
  .jobs_values {
    padding-bottom: 4.8rem;
  }
  .jobs_values-images {
    width: 36rem;
  }
  .jobs_values-title {
    margin-bottom: 8rem;
  }
  .jobs_values-bullets {
    margin-top: 6.4rem;
  }
  .quote-icon {
    top: -10rem;
    left: -8rem;
  }
  .sites_cover-columns {
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--gutter);
    min-width: 100%;
    align-items: center;
  }
  .sites_cover-columns > *:nth-child(2n+1) {
    min-width: calc(64.2857142857% - var(--gutter) + var(--gutter) / 2);
    max-width: calc(64.2857142857% - var(--gutter) + var(--gutter) / 2);
    flex-shrink: 0;
  }
  .sites_cover-columns > *:nth-child(2n+2) {
    min-width: calc(35.7142857143% - var(--gutter) + var(--gutter) / 2);
    max-width: calc(35.7142857143% - var(--gutter) + var(--gutter) / 2);
    flex-shrink: 0;
  }
  .text_images-cols {
    grid-template-columns: repeat(16, 1fr);
  }
  .text_images[align=left] .text_images-col:nth-child(1) {
    grid-column: 11/span 4;
  }
  .text_images[align=right] .text_images-col:nth-child(1) {
    grid-column: 3/span 6;
  }
  .text_images[align=left] .text_images-col:nth-child(2) {
    position: absolute;
    width: 23rem;
    right: 100%;
    bottom: -7.6rem;
  }
  .text_images[align=left] .text_images-col:nth-child(3) {
    grid-column: 3/span 5;
    order: -1;
  }
  .text_images[align=right] .text_images-col:nth-child(3) {
    grid-column: 10/span 5;
  }
  .vision_catchline-text {
    padding-left: 32rem;
    padding-right: 32rem;
  }
  .vision_reason-columns {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0rem;
    min-width: 100%;
    height: 91rem;
    align-items: center;
  }
  .vision_reason-columns > *:nth-child(2n+1) {
    min-width: calc(50% - 0rem + 0rem / 2);
    max-width: calc(50% - 0rem + 0rem / 2);
    flex-shrink: 0;
  }
  .vision_reason-columns > *:nth-child(2n+2) {
    min-width: calc(50% - 0rem + 0rem / 2);
    max-width: calc(50% - 0rem + 0rem / 2);
    flex-shrink: 0;
  }
  .vision_reason-image {
    width: 50%;
  }
  .age_gate-logo {
    width: 42rem;
  }
  .age_gate-logotype_1, .age_gate-logotype_2 {
    width: 69rem;
  }
  .age_gate-logotype_1 {
    left: 0;
    top: -40rem;
  }
  .age_gate-logotype_2 {
    right: -5%;
    bottom: -75rem;
  }
  .header-logo {
    top: -3.4rem;
  }
  .menu-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .popin_page {
    inset: 4rem 4rem 0;
  }
  .expertises-distillation_cover {
    padding-top: calc(8rem + var(--spacing_huge));
    padding-bottom: calc(19rem + var(--spacing_huge));
  }
  .home-creation_cover {
    padding-top: calc(38rem + var(--spacing_huge));
    padding-bottom: calc(20rem + var(--spacing_huge));
  }
  .home-creation_insert {
    top: -20rem;
  }
}

@media (min-width: 415px) and (max-width: 414px){
  .group_timeline-century {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 415px) and (max-width: 768px){
  .format_text {
    font-size: 1.3rem;
  }
  .format_text h2 {
    font-size: 2.8rem;
  }
  .format_text h3 {
    font-size: 4rem;
  }
  .format_text h4 {
    font-size: 1.7rem;
  }
  :root {
    --gutter: 3.2rem;
  }
  :root {
    --spacing_huge: 20rem;
  }
  :root {
    --spacing_large: 16rem;
  }
  :root {
    --spacing: 15rem;
  }
  html {
    font-size: 1.3020833333vw;
  }
  body {
    font-size: 2.8rem;
  }
  .yell_1 {
    font-size: 11rem;
  }
  .title_1 {
    font-size: 9rem;
  }
  .title_2 {
    font-size: 8rem;
  }
  .title_3 {
    font-size: 5rem;
  }
  .title_4 {
    font-size: 4rem;
  }
  .title_5 {
    font-size: 3.6rem;
  }
  .label_1 {
    font-size: 1.9rem;
  }
  .label_2 {
    font-size: 1.8rem;
  }
  .label_3 {
    font-size: 1.4rem;
  }
  .label_4 {
    font-size: 1.1rem;
  }
  .label_5 {
    font-size: 1.1rem;
  }
  .body_1 {
    font-size: 6rem;
  }
  .body_2 {
    font-size: 2.8rem;
  }
  .body_3 {
    font-size: 1.7rem;
  }
  .body_4 {
    font-size: 1.3rem;
  }
  .body_5 {
    font-size: 1rem;
  }
  .number {
    font-size: 6rem;
  }
  .stamp[size=large] {
    min-width: 15rem;
    min-height: 15rem;
    max-width: 15rem;
    max-height: 15rem;
  }
  .creation_prestation-stamp {
    bottom: -3rem;
    right: 0rem;
  }
  .block_carousel-cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4.2rem;
    min-width: 100%;
    flex-wrap: nowrap;
  }
  .block_carousel-cards > *:nth-child(2n+1) {
    min-width: calc(62.5% - 4.2rem + 4.2rem / 2);
    max-width: calc(62.5% - 4.2rem + 4.2rem / 2);
    flex-shrink: 0;
  }
  .block_carousel-cards > *:nth-child(2n+2) {
    min-width: calc(62.5% - 4.2rem + 4.2rem / 2);
    max-width: calc(62.5% - 4.2rem + 4.2rem / 2);
    flex-shrink: 0;
  }
  .cover_section-title > .title {
    font-size: 9rem;
    font-family: Fazeta;
    line-height: 1.02;
    font-weight: 400;
    text-transform: uppercase;
  }
  .cover_title-title sup {
    font-size: 5rem;
  }
  .cover-title sup {
    font-size: 1.9rem;
  }
  .expertises_aging-title_wrapper {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }
  .expertises_aging-yell_1 {
    font-size: 11rem;
  }
  .expertises_aging-title_2 {
    font-size: 9rem;
  }
  .footer-cols {
    display: flex;
    gap: 8rem;
  }
  .footer-logo {
    width: 20rem;
  }
  .group_keys-stamp {
    bottom: -10rem;
    right: -9rem;
  }
  .group_timeline-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--gutter);
    min-width: 100%;
  }
  .group_timeline-container > *:nth-child(2n+1) {
    min-width: calc(50% - var(--gutter) + var(--gutter) / 2);
    max-width: calc(50% - var(--gutter) + var(--gutter) / 2);
    flex-shrink: 0;
  }
  .group_timeline-container > *:nth-child(2n+2) {
    min-width: calc(50% - var(--gutter) + var(--gutter) / 2);
    max-width: calc(50% - var(--gutter) + var(--gutter) / 2);
    flex-shrink: 0;
  }
  .home_history-col:nth-child(3) {
    grid-column: 8/span 9;
    margin-top: 8rem;
  }
  .home_mastery-title sup {
    font-size: 5rem;
  }
  .intro_images-col:nth-child(3) {
    grid-column: 8/span 9;
    margin-top: 8rem;
  }
  .intro-image {
    display: none;
  }
  .jobs_list-cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4.2rem;
    min-width: 100%;
    flex-wrap: nowrap;
  }
  .jobs_list-cards > *:nth-child(2n+1) {
    min-width: calc(76.9230769231% - 4.2rem + 4.2rem / 2);
    max-width: calc(76.9230769231% - 4.2rem + 4.2rem / 2);
    flex-shrink: 0;
  }
  .jobs_list-cards > *:nth-child(2n+2) {
    min-width: calc(76.9230769231% - 4.2rem + 4.2rem / 2);
    max-width: calc(76.9230769231% - 4.2rem + 4.2rem / 2);
    flex-shrink: 0;
  }
  .jobs_list-nav {
    top: -9rem;
  }
  .table-row:first-child {
    font-size: 1.4rem;
  }
  .table-row:not(:first-child) {
    font-size: 1rem;
  }
  .vision_reason-text {
    padding: 2rem;
  }
}

@media (min-width: 769px){
  .stamp[size=large] {
    min-width: 18rem;
    min-height: 18rem;
    max-width: 18rem;
    max-height: 18rem;
  }
  .contact_map {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4rem;
  }
  .insert_large {
    padding: 28rem 16rem;
    max-width: 119.5rem;
  }
  .block_carousel[columns="2"] .block_carousel-cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 9rem;
    min-width: 100%;
    flex-wrap: nowrap;
  }
  .block_carousel[columns="2"] .block_carousel-cards > *:nth-child(2n+1) {
    min-width: calc(43.4782608696% - 9rem + 9rem / 2);
    max-width: calc(43.4782608696% - 9rem + 9rem / 2);
    flex-shrink: 0;
  }
  .block_carousel[columns="2"] .block_carousel-cards > *:nth-child(2n+2) {
    min-width: calc(43.4782608696% - 9rem + 9rem / 2);
    max-width: calc(43.4782608696% - 9rem + 9rem / 2);
    flex-shrink: 0;
  }
  .block_carousel[columns="3"] .block_carousel-cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 9rem;
    min-width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .block_carousel[columns="3"] .block_carousel-cards > *:nth-child(2n+1) {
    min-width: calc(35.7142857143% - 9rem + 9rem / 2);
    max-width: calc(35.7142857143% - 9rem + 9rem / 2);
    flex-shrink: 0;
  }
  .block_carousel[columns="3"] .block_carousel-cards > *:nth-child(2n+2) {
    min-width: calc(35.7142857143% - 9rem + 9rem / 2);
    max-width: calc(35.7142857143% - 9rem + 9rem / 2);
    flex-shrink: 0;
  }
  .creation_assets-sticky {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0rem;
    min-width: 100%;
  }
  .creation_assets-sticky > *:nth-child(2n+1) {
    min-width: calc(50% - 0rem + 0rem / 2);
    max-width: calc(50% - 0rem + 0rem / 2);
    flex-shrink: 0;
  }
  .creation_assets-sticky > *:nth-child(2n+2) {
    min-width: calc(50% - 0rem + 0rem / 2);
    max-width: calc(50% - 0rem + 0rem / 2);
    flex-shrink: 0;
  }
  .creation_assets-backgrounds, .creation_assets-items {
    position: relative;
  }
  .creation_assets-image {
    width: 23rem;
  }
  .creation_assets-text, .creation_assets-title {
    max-width: 39rem;
  }
  .creation_assets-title {
    margin-bottom: 70%;
  }
  .creation_assets-text {
    margin-top: 70%;
  }
  .experiences_brands-card_icon_arrow, .experiences_brands-card_icon_tocome {
    bottom: -6.5rem;
    right: -5rem;
  }
  .expertises_aging-cols {
    display: grid;
    grid-template-columns: repeat(16, 1fr);
    grid-gap: var(--gutter);
  }
  .expertises_aging-card {
    margin-top: 5rem;
    row-gap: 18rem;
    grid-column: 3/span 6;
  }
  .expertises_aging-title_wrapper {
    padding-top: 1rem;
    padding-bottom: 6rem;
  }
  .expertises_aging-yell_1 {
    margin-top: -3rem;
  }
  .expertises_distillation-cols {
    display: flex;
    flex-wrap: wrap;
    column-gap: 9rem;
    min-width: 100%;
    align-items: flex-end;
  }
  .expertises_distillation-cols > *:nth-child(2n+1) {
    min-width: calc(41.6666666667% - 9rem + 9rem / 2);
    max-width: calc(41.6666666667% - 9rem + 9rem / 2);
    flex-shrink: 0;
  }
  .expertises_distillation-cols > *:nth-child(2n+2) {
    min-width: calc(58.3333333333% - 9rem + 9rem / 2);
    max-width: calc(58.3333333333% - 9rem + 9rem / 2);
    flex-shrink: 0;
  }
  .footer-cols {
    display: flex;
    gap: 12rem;
  }
  .group_history-content {
    min-height: calc(140rem - var(--spacing_large) * 2);
  }
  .group_members-container {
    display: flex;
    flex-wrap: wrap;
    column-gap: 0rem;
    min-width: 100%;
  }
  .group_members-container > *:nth-child(2n+1) {
    min-width: calc(50% - 0rem + 0rem / 2);
    max-width: calc(50% - 0rem + 0rem / 2);
    flex-shrink: 0;
  }
  .group_members-container > *:nth-child(2n+2) {
    min-width: calc(50% - 0rem + 0rem / 2);
    max-width: calc(50% - 0rem + 0rem / 2);
    flex-shrink: 0;
  }
  .group_members-image_mobile {
    display: none;
  }
  .group_members-groups {
    display: flex;
    flex-direction: column;
    gap: 17rem;
  }
  .group_members-group:first-child {
    margin-top: var(--spacing);
  }
  .home_history-col:nth-child(3) {
    grid-column: 9/span 5;
    margin-top: 16rem;
  }
  .intro_images-col:nth-child(3) {
    grid-column: 9/span 5;
    margin-top: 14rem;
    margin-bottom: 6rem;
  }
  .jobs_list-cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 8.5rem;
    min-width: 100%;
    flex-wrap: nowrap;
  }
  .jobs_list-cards > *:nth-child(2n+1) {
    min-width: calc(35.7142857143% - 8.5rem + 8.5rem / 2);
    max-width: calc(35.7142857143% - 8.5rem + 8.5rem / 2);
    flex-shrink: 0;
  }
  .jobs_list-cards > *:nth-child(2n+2) {
    min-width: calc(35.7142857143% - 8.5rem + 8.5rem / 2);
    max-width: calc(35.7142857143% - 8.5rem + 8.5rem / 2);
    flex-shrink: 0;
  }
  .lateral_composition {
    height: calc(var(--vh) * 100);
    padding: 0 24rem 0 46rem;
    width: fit-content;
    display: flex;
    align-items: center;
  }
  .lateral_composition-content {
    position: relative;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    width: 158rem;
  }
  .lateral_composition-title {
    padding-right: 42rem;
  }
  .lateral_composition-paragraph {
    position: absolute;
    top: calc(100% - 5rem);
    width: 39rem;
  }
  .lateral_composition-image:nth-child(1) {
    left: 31rem;
    width: 23rem;
    margin-top: 40rem;
  }
  .lateral_composition-image:nth-child(2) {
    width: 15rem;
    left: 30%;
    margin-bottom: 70rem;
  }
  .lateral_composition-image:nth-child(3) {
    width: 23rem;
    left: 50%;
    margin-top: 67rem;
  }
  .lateral_composition-image:nth-child(4) {
    width: 23rem;
    left: 55%;
    margin-bottom: 65rem;
  }
  .lateral_composition-image:nth-child(5) {
    right: 32rem;
    width: 15rem;
    margin-bottom: 20rem;
  }
  .lateral_cover {
    height: calc(var(--vh) * 100);
    width: fit-content;
    padding: 0 56rem 0 36rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
  }
  .lateral_cover-background {
    inset: -10rem 0;
  }
  .lateral_cover-background_mobile {
    display: none;
  }
  .lateral_cover-title {
    display: flex;
    flex-direction: column;
    font-size: 16rem;
    line-height: 1.04;
    font-weight: 400;
    text-transform: uppercase;
  }
  .lateral_cover-line {
    margin-top: 0.01em;
    margin-bottom: -0.01em;
  }
  .lateral_cover-line:first-child {
    padding-right: 88.5rem;
  }
  .lateral_cover-line:last-child {
    align-self: flex-end;
    padding-right: 20rem;
  }
  .lateral_cover-paragraph {
    width: 63rem;
    height: 50%;
    position: absolute;
    top: 0;
    right: 20rem;
    display: flex;
    align-items: center;
  }
  .lateral_cover-insert {
    position: absolute;
    bottom: -5rem;
    right: 0;
  }
  .pushes_brand-sticky {
    display: flex;
    flex-wrap: nowrap;
  }
  .pushes_brand-left {
    width: 61.5%;
  }
  .pushes_brand-caption {
    max-width: 31rem;
  }
  .quote {
    padding-top: 20rem;
    padding-bottom: 40rem;
  }
  .vision_catchline-sticky {
    position: absolute !important;
    width: 100%;
    height: calc(var(--vh) * 100);
    text-align: right;
    padding: 3rem 4rem;
    z-index: 10;
    pointer-events: none;
  }
  .vision_objectives-items {
    height: calc(var(--vh) * 100);
    display: flex;
    flex-wrap: wrap;
    column-gap: 0rem;
    min-width: 100%;
  }
  .vision_objectives-items > *:nth-child(3n+1) {
    min-width: calc(33.3333333333% - 0rem + 0rem / 3);
    max-width: calc(33.3333333333% - 0rem + 0rem / 3);
    flex-shrink: 0;
  }
  .vision_objectives-items > *:nth-child(3n+2) {
    min-width: calc(33.3333333333% - 0rem + 0rem / 3);
    max-width: calc(33.3333333333% - 0rem + 0rem / 3);
    flex-shrink: 0;
  }
  .vision_objectives-items > *:nth-child(3n+3) {
    min-width: calc(33.3333333333% - 0rem + 0rem / 3);
    max-width: calc(33.3333333333% - 0rem + 0rem / 3);
    flex-shrink: 0;
  }
  .vision_objectives-item {
    width: 48vw;
  }
  .menu {
    bottom: 2.5rem;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
    pointer-events: auto;
    height: 5rem;
    border-radius: 2.5rem;
  }
  .menu::before, .menu::after {
    top: 0;
    bottom: 0;
  }
  .menu-open {
    display: none;
  }
  .menu-close {
    display: none;
  }
  .menu-content {
    display: flex;
  }
  .menu-items {
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    column-gap: 3rem;
    align-items: center;
  }
  .menu-item {
    position: relative;
    bottom: 0.7em;
    font-size: 1.3rem;
    font-family: Rift Soft;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.1em;
  }
  .menu-logotype {
    display: none;
  }
  .menu-langs {
    font-size: 1.3rem;
    font-family: Rift Soft;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
  }
  .menu-langs::before {
    min-width: 4px;
    min-height: 4px;
    max-width: 4px;
    max-height: 4px;
    background: rgb(var(--white));
    border-radius: 50%;
    content: "";
    margin: 0 3rem;
  }
  .menu-social {
    display: none;
  }
  .contact-cols {
    display: flex;
    flex-wrap: wrap;
    column-gap: 18rem;
    min-width: 100%;
  }
  .contact-cols > *:nth-child(2n+1) {
    min-width: calc(50% - 18rem + 18rem / 2);
    max-width: calc(50% - 18rem + 18rem / 2);
    flex-shrink: 0;
  }
  .contact-cols > *:nth-child(2n+2) {
    min-width: calc(50% - 18rem + 18rem / 2);
    max-width: calc(50% - 18rem + 18rem / 2);
    flex-shrink: 0;
  }
}

@media (min-width: 769px) and (max-width: 1600px){
  :root {
    --gutter: 1rem;
  }
  :root {
    --spacing_huge: 32rem;
  }
  :root {
    --spacing_large: 20rem;
  }
  :root {
    --spacing: 16rem;
  }
  html {
    font-size: 0.6944444444vw;
  }
}

@media (min-width: 769px) and (max-width: 414px){
  .menu-langs {
    font-size: 1.1rem;
  }
}

@media (min-width: 769px) and (min-width: 415px) and (max-width: 768px){
  .menu-langs {
    font-size: 1.1rem;
  }
}

@media (min-width: 1601px){
  :root {
    --gutter: 1rem;
  }
  :root {
    --spacing_huge: 32rem;
  }
  :root {
    --spacing_large: 20rem;
  }
  :root {
    --spacing: 16rem;
  }
  html {
    font-size: 11.1111111111px;
  }
}

@media (max-width: 768px) and (min-width: 415px) and (max-width: 768px){
  .menu-langs {
    font-size: 1.8rem;
  }
}

@media (max-width: 768px){
  .number {
    min-width: 6rem;
    min-height: 6rem;
    max-width: 6rem;
    max-height: 6rem;
  }
  .number::before, .number::after {
    min-width: 2px;
    min-height: 2px;
    max-width: 2px;
    max-height: 2px;
  }
  .number:before {
    left: 0.6rem;
  }
  .number:after {
    right: 0.6rem;
  }
  .title-image {
    display: none;
  }
  .card_home_visit {
    margin-top: 3rem;
  }
  .contact_map {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .insert_large {
    padding: 16rem 3rem 13rem;
    max-width: 60rem;
  }
  .insert_medium {
    padding: 8rem 3.8rem;
    max-width: 55rem;
  }
  .key {
    padding: 2rem 1rem;
    max-width: 22rem;
  }
  .creation_prestation-insert:nth-child(1) {
    bottom: 70%;
    left: 5%;
  }
  .creation_prestation-insert:nth-child(2) {
    top: 60%;
  }
  .creation_prestation-insert:nth-child(3) {
    bottom: 50%;
    right: 5%;
  }
  .creation_prestation-image:nth-child(1) {
    bottom: 60%;
    width: 36%;
    left: 70%;
  }
  .creation_prestation-image:nth-child(2) {
    width: 22.5%;
    left: -5%;
  }
  .creation_prestation-image:nth-child(3) {
    width: 32%;
    top: 75%;
  }
  .creation_assets-sticky {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .creation_assets-items {
    position: relative;
    width: 31.4rem;
    height: 52rem;
  }
  .creation_assets-image {
    width: 14rem;
  }
  .creation_assets-text, .creation_assets-title {
    width: 25rem;
  }
  .creation_assets-title {
    margin-bottom: 100%;
  }
  .creation_assets-text {
    margin-top: 110%;
  }
  .creation_benefits-insert {
    bottom: -10rem;
  }
  .experiences_brands-card_icon_arrow, .experiences_brands-card_icon_tocome {
    bottom: -3rem;
    right: 2rem;
  }
  .expertises_aging-card, .expertises_aging-paragraph {
    margin-left: 3.9rem;
    margin-right: 3.9rem;
  }
  .expertises_aging-card {
    row-gap: 8rem;
    margin-bottom: 6rem;
    transform: none !important;
  }
  .expertises_distillation-cols {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 0 3rem;
  }
  .group_history-content {
    min-height: calc(88rem - var(--spacing_large) * 2);
  }
  .group_keys-image:nth-child(1) {
    width: 26.5%;
  }
  .group_keys-image:nth-child(2) {
    width: 26.5%;
  }
  .group_keys-image:nth-child(3) {
    width: 30%;
  }
  .group_keys-image:nth-child(4) {
    width: 22%;
  }
  .group_members-images {
    display: none;
  }
  .group_members-groups {
    display: flex;
    flex-direction: column;
    gap: 11rem;
    max-width: 30.6rem;
    margin-left: auto;
    margin-right: auto;
  }
  .intro + .intro_images {
    padding-top: var(--spacing);
  }
  .lateral_composition {
    padding: 39rem var(--gutter) var(--spacing);
  }
  .lateral_composition-paragraph {
    margin-top: 54rem;
  }
  .lateral_composition-images {
    overflow: hidden;
  }
  .lateral_composition-image:nth-child(1) {
    width: 11rem;
    top: 19.5rem;
  }
  .lateral_composition-image:nth-child(2) {
    top: 6rem;
    width: 15rem;
    right: 5.6rem;
  }
  .lateral_composition-image:nth-child(3) {
    top: 73rem;
    width: 15rem;
    left: -3.4rem;
  }
  .lateral_composition-image:nth-child(4) {
    top: 86rem;
    width: 15rem;
    right: 5.6rem;
  }
  .lateral_composition-image:nth-child(5) {
    top: 66rem;
    width: 11rem;
    right: -3.4rem;
  }
  .lateral_cover {
    padding: 13rem var(--gutter) 67rem;
  }
  .lateral_cover-background {
    inset: 0;
  }
  .lateral_cover-paragraph {
    margin-top: 2rem;
  }
  .lateral_cover-insert {
    min-width: 100%;
    margin-top: 4rem;
  }
  .pushes_brand-left {
    position: absolute;
    inset: 0;
  }
  .pushes_brand-caption {
    max-width: 25rem;
    color: rgb(var(--white));
  }
  .quote {
    padding-top: 20rem;
    padding-bottom: 20rem;
  }
  .text_images {
    margin-top: 6rem;
  }
  .vision_catchline-sticky {
    display: none;
  }
  .vision_objectives-items {
    display: flex;
    flex-direction: column;
    height: calc(var(--vh) * 100);
    height: auto;
  }
  .vision_objectives-item {
    height: 26rem;
  }
  .menu {
    bottom: var(--gutter);
    left: var(--gutter);
    right: var(--gutter);
    height: calc(100vh - var(--gutter) * 2);
    clip-path: inset(calc(100% - 5rem) 0 0 0 round 2.5rem);
    pointer-events: none;
  }
  .menu::before, .menu::after {
    bottom: calc(2.5rem - 2px);
  }
  .menu[data-open=false] {
    pointer-events: none;
  }
  .menu-container {
    position: absolute;
    inset: 0 0 8rem 0;
    overflow-y: auto;
  }
  .menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
  .menu-items {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .menu-item {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .menu-items li:not(:last-child) .menu-item::after {
    content: "";
    min-width: 4px;
    min-height: 4px;
    max-width: 4px;
    max-height: 4px;
    background: rgb(var(--orange));
    margin-top: 1.6rem;
    border-radius: 100%;
  }
  .menu-langs {
    margin-top: 2rem;
    font-size: 2rem;
    font-family: Rift Soft;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.16em;
  }
  .contact-cols {
    display: flex;
    flex-direction: column;
    gap: 2.6rem;
    flex-direction: column-reverse;
  }
  .contact-map_title {
    text-align: center;
    margin-top: 4rem;
  }
  .expertises-distillation_insert {
    top: -11rem;
  }
  .group-timeline_background::before {
    position: absolute;
    inset: 0;
    content: "";
    z-index: 1;
    background: linear-gradient(180deg, rgba(var(--black), 1) 7.66%, rgba(var(--black), 0) 67.23%);
  }
}

@media (max-width: 768px) and (max-width: 414px){
  .menu-langs {
    font-size: 1.6rem;
  }
}

@media (max-width: 415px){
  .card_expertises {
    width: 33rem;
  }
  .card {
    width: 33rem;
  }
}

@media (max-width: 414px){
  .format_text {
    font-size: 1.2rem;
  }
  .format_text h2 {
    font-size: 2.4rem;
  }
  .format_text h3 {
    font-size: 3.2rem;
  }
  .format_text h4 {
    font-size: 1.6rem;
  }
  :root {
    --gutter: 1.6rem;
  }
  :root {
    --spacing_huge: 16rem;
  }
  :root {
    --spacing_large: 10rem;
  }
  :root {
    --spacing: 8rem;
  }
  html {
    font-size: 2.4154589372vw;
  }
  body {
    font-size: 2.4rem;
  }
  .yell_1 {
    font-size: 6rem;
  }
  .title_1 {
    font-size: 4.6rem;
  }
  .title_2 {
    font-size: 5.4rem;
  }
  .title_3 {
    font-size: 3.6rem;
  }
  .title_4 {
    font-size: 3.2rem;
  }
  .title_5 {
    font-size: 2.8rem;
  }
  .label_1 {
    font-size: 1.4rem;
  }
  .label_2 {
    font-size: 1.6rem;
  }
  .label_3 {
    font-size: 1.3rem;
  }
  .label_4 {
    font-size: 1.1rem;
  }
  .label_5 {
    font-size: 1.1rem;
  }
  .body_1 {
    font-size: 3.8rem;
  }
  .body_2 {
    font-size: 2.4rem;
  }
  .body_3 {
    font-size: 1.6rem;
  }
  .body_4 {
    font-size: 1.2rem;
  }
  .body_5 {
    font-size: 1rem;
  }
  .icon_button[size=medium] {
    min-width: 5.2rem;
    min-height: 5.2rem;
    max-width: 5.2rem;
    max-height: 5.2rem;
    --icon_size: 4rem;
  }
  .icon_button[size=large] {
    --icon_size: 6rem;
    --icon_button_border: 1px;
  }
  .icon_button[size=large]::before, .icon_button[size=large]::after, .icon_button[size=medium]::before, .icon_button[size=medium]::after {
    min-width: 2px;
    min-height: 2px;
    max-width: 2px;
    max-height: 2px;
  }
  .line-text {
    max-width: 31rem;
    margin-top: 2.5rem;
  }
  .number {
    font-size: 3.8rem;
  }
  .stamp[size=small] {
    min-width: 7.3rem;
    min-height: 7.3rem;
    max-width: 7.3rem;
    max-height: 7.3rem;
    font-size: 0.7rem;
  }
  .stamp[size=default] {
    min-width: 8rem;
    min-height: 8rem;
    max-width: 8rem;
    max-height: 8rem;
    font-size: 0.8rem;
  }
  .stamp[size=medium] {
    min-width: 11rem;
    min-height: 11rem;
    max-width: 11rem;
    max-height: 11rem;
  }
  .stamp[size=large] {
    min-width: 13rem;
    min-height: 13rem;
    max-width: 13rem;
    max-height: 13rem;
  }
  .title-logo {
    width: 7rem;
  }
  .title-link {
    top: 0.25em;
  }
  .benefit-columns {
    flex-direction: column;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .benefit-title {
    font-size: 5.4rem;
    font-family: Fazeta;
    line-height: 0.94;
    font-weight: 400;
    text-transform: uppercase;
  }
  .benefit-text {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 3.5rem;
  }
  .benefit-image {
    width: 15rem;
  }
  .card_home_visit {
    width: 33rem;
    margin-bottom: -22rem;
    margin-right: auto;
    margin-left: auto;
  }
  .card_home_visit-image {
    height: 22rem;
  }
  .card_home_visit-content {
    padding: 0 2rem;
    height: 22rem;
  }
  .card_member-image {
    height: 24rem;
  }
  .card_member-content {
    padding: 3.9rem 3rem 2.5rem;
  }
  .card_offer-top {
    height: 20rem;
  }
  .card_offer-content {
    padding: 5.6rem 3rem 2rem;
  }
  .card_visit {
    min-width: 100% !important;
  }
  .card_visit-top {
    height: 24rem;
  }
  .card_visit-content {
    padding: 5.6rem 3rem 2rem;
  }
  .expertises_button {
    min-width: 10rem;
    min-height: 10rem;
    max-width: 10rem;
    max-height: 10rem;
    right: 1rem;
    bottom: 8rem;
  }
  .insert_black {
    padding: 3.8rem 2rem;
    max-width: 30rem;
  }
  .insert_large {
    max-width: 39.8rem;
  }
  .insert_large::before {
    min-width: 10px;
    min-height: 10px;
    max-width: 10px;
    max-height: 10px;
    top: 2rem;
    left: 2rem;
  }
  .insert_large-stamp {
    margin-top: 2rem;
    margin-bottom: -4rem;
  }
  .insert_large-text .icon_button {
    margin: 1rem 0 0 0;
  }
  .insert_medium {
    max-width: 32rem;
  }
  .insert_small {
    padding: 3.8rem 2rem;
  }
  .insert_small[size=default] {
    max-width: 22.7rem;
  }
  .insert_small[size=large] {
    max-width: 32rem;
  }
  .key {
    max-width: 19rem;
  }
  .key::before {
    min-width: 4px;
    min-height: 4px;
    max-width: 4px;
    max-height: 4px;
  }
  .key-line {
    margin-top: 1.5rem;
  }
  .objective-image {
    transform: none !important;
  }
  .objective-content {
    padding: 8rem var(--gutter);
  }
  .creation_prestation-stamp {
    bottom: 1rem;
    right: 0;
  }
  .block_carousel-cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4.4rem;
    min-width: 100%;
    flex-wrap: nowrap;
  }
  .block_carousel-cards > *:nth-child(2n+1) {
    min-width: calc(76.9230769231% - 4.4rem + 4.4rem / 2);
    max-width: calc(76.9230769231% - 4.4rem + 4.4rem / 2);
    flex-shrink: 0;
  }
  .block_carousel-cards > *:nth-child(2n+2) {
    min-width: calc(76.9230769231% - 4.4rem + 4.4rem / 2);
    max-width: calc(76.9230769231% - 4.4rem + 4.4rem / 2);
    flex-shrink: 0;
  }
  .block_carousel-bottom::after {
    inset: 24rem -50vw 0;
  }
  .block_carousel-nav {
    margin-bottom: 0.5rem;
  }
  .cover_default-logotype_1, .cover_default-logotype_2 {
    width: 48rem;
  }
  .cover_default-logotype_1 {
    left: 65%;
    top: 45%;
  }
  .cover_default-logotype_2 {
    display: none;
  }
  .cover_section-title > .title {
    font-size: 4.6rem;
    font-family: Fazeta;
    line-height: 1.02;
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: 3rem;
  }
  .cover_section-image {
    width: 19rem;
    margin-top: -2rem;
  }
  .cover_title-text {
    padding: 20rem 0;
  }
  .cover_title-title sup {
    font-size: 3.6rem;
  }
  .cover_title-title sup {
    font-size: 3.3rem;
  }
  .cover_title-subtext {
    bottom: 6rem;
    max-width: 33rem;
  }
  .cover-title sup {
    font-size: 1.4rem;
  }
  .cover-logotype_1, .cover-logotype_2 {
    width: 48rem;
  }
  .cover-logotype_1 {
    top: -10rem;
    right: -25%;
  }
  .cover-logotype_2 {
    display: none;
  }
  .creation_benefits-items {
    padding-top: 18rem;
    padding-bottom: var(--spacing_small);
  }
  .experiences_brands {
    padding-bottom: 12rem;
  }
  .experiences_brands-items {
    display: flex;
    flex-direction: column;
    gap: 6rem;
  }
  .experiences_brands-item {
    padding: 6rem 0;
  }
  .experiences_brands-card {
    width: 18.8rem;
  }
  .experiences_brands-card_icon_arrow, .experiences_brands-card_icon_tocome {
    bottom: -4rem;
    right: -2.5rem;
  }
  .expertises_aging-card::before {
    min-width: 10px;
    min-height: 10px;
    max-width: 10px;
    max-height: 10px;
    top: 2rem;
    left: 2rem;
  }
  .expertises_aging-title_wrapper {
    padding-top: 3rem;
    padding-bottom: 4rem;
  }
  .expertises_aging-yell_1 {
    font-size: 6rem;
  }
  .expertises_aging-title_2 {
    font-size: 4.6rem;
  }
  .expertises_aging-left_image, .expertises_aging-right_image {
    width: 27rem;
  }
  .expertises_distillation-images {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4.5rem;
    min-width: 100%;
    width: calc(100% + var(--gutter) * 4);
    left: calc(var(--gutter) * -2);
    position: relative;
    align-items: center;
  }
  .expertises_distillation-images > *:nth-child(3n+1) {
    min-width: calc(29.4117647059% - 4.5rem + 4.5rem / 3);
    max-width: calc(29.4117647059% - 4.5rem + 4.5rem / 3);
    flex-shrink: 0;
  }
  .expertises_distillation-images > *:nth-child(3n+2) {
    min-width: calc(41.1764705882% - 4.5rem + 4.5rem / 3);
    max-width: calc(41.1764705882% - 4.5rem + 4.5rem / 3);
    flex-shrink: 0;
  }
  .expertises_distillation-images > *:nth-child(3n+3) {
    min-width: calc(29.4117647059% - 4.5rem + 4.5rem / 3);
    max-width: calc(29.4117647059% - 4.5rem + 4.5rem / 3);
    flex-shrink: 0;
  }
  .footer {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .footer-stamp {
    display: none;
  }
  .footer-primary {
    width: 100%;
    columns: 2;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .group_history-images_reveal {
    width: 19rem;
    margin-top: 3rem;
  }
  .group_intro {
    padding-top: 24rem;
    padding-bottom: 10rem;
    margin-bottom: 15rem;
  }
  .group_intro-insert {
    margin-left: auto;
    margin-right: auto;
    min-height: 23rem;
    transform: translateY(25rem);
  }
  .group_keys-stamp {
    bottom: -3rem;
    right: -5rem;
  }
  .group_timeline-content {
    max-width: 30.6rem;
    margin-left: auto;
    margin-right: auto;
  }
  .group_timeline-titles {
    display: none;
  }
  .home_brands-image_left::after {
    content: "";
    display: block;
    padding-bottom: calc(1 / 0.72 * 100%);
    pointer-events: none;
  }
  .home_brands-image_right {
    width: 11rem;
  }
  .home_history-grid {
    grid-template-columns: repeat(10, 1fr);
  }
  .home_history-col:nth-child(1) {
    grid-column: 1/span 5;
    margin-top: 6.4rem;
  }
  .home_history-col:nth-child(2) {
    grid-column: 7/span 4;
  }
  .home_history-col:nth-child(3) {
    grid-column: 2/span 8;
    margin-top: 4rem;
  }
  .home_history-caption {
    display: none;
  }
  .intro + .intro_images {
    padding-top: var(--spacing);
  }
  .home_mastery-title sup {
    font-size: 3.6rem;
  }
  .home_mastery-title_2 {
    margin-top: 33.3rem;
  }
  .home_mastery-player {
    margin-top: 5rem;
  }
  .home_mastery-player::after {
    content: "";
    display: block;
    padding-bottom: calc(1 / 0.5625 * 100%);
    pointer-events: none;
  }
  .home_mastery[data-expanded=false] .home_mastery-video {
    transform: scale(0.6);
  }
  .intro_images-grid {
    grid-template-columns: repeat(10, 1fr);
  }
  .intro_images-col:nth-child(1) {
    grid-column: 1/span 5;
    margin-top: 6.4rem;
  }
  .intro_images-col:nth-child(2) {
    grid-column: 7/span 4;
  }
  .intro_images-col:nth-child(3) {
    grid-column: 2/span 8;
    margin-top: 4rem;
  }
  .intro_images-caption {
    display: none;
  }
  .intro-image {
    display: none;
  }
  .jobs_commitments-container {
    padding-top: 16rem;
    padding-bottom: 36rem;
  }
  .jobs_commitments-insert {
    margin-top: -19.6rem;
  }
  .jobs_list-cards {
    display: flex;
    flex-wrap: wrap;
    column-gap: var(--gutter);
    min-width: 100%;
    flex-wrap: nowrap;
  }
  .jobs_list-cards > *:nth-child(2n+1) {
    min-width: calc(90.9090909091% - var(--gutter) + var(--gutter) / 2);
    max-width: calc(90.9090909091% - var(--gutter) + var(--gutter) / 2);
    flex-shrink: 0;
  }
  .jobs_list-cards > *:nth-child(2n+2) {
    min-width: calc(90.9090909091% - var(--gutter) + var(--gutter) / 2);
    max-width: calc(90.9090909091% - var(--gutter) + var(--gutter) / 2);
    flex-shrink: 0;
  }
  .jobs_list-bottom::after {
    inset: 16rem -50vw 0;
  }
  .jobs_list-nav {
    top: -8rem;
  }
  .jobs_list[data-use=false] .jobs_list-cards {
    justify-content: flex-start;
  }
  .jobs_values {
    padding-bottom: 10.4rem;
  }
  .jobs_values-images {
    width: 18.8rem;
  }
  .jobs_values-title {
    margin-bottom: 6rem;
  }
  .jobs_values-bullets {
    margin-top: 3.5rem;
  }
  .lateral_cover-image {
    display: none;
  }
  .lateral_cover-insert {
    transform: none !important;
  }
  .quote-icon {
    top: -3.4rem;
    left: -1rem;
  }
  .quote-text v-line:first-child v-word:first-child::first-letter {
    padding-left: 3rem;
  }
  .sites_cover-columns {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 30.4rem;
    margin-left: auto;
    margin-right: auto;
  }
  .table-row:first-child {
    font-size: 1.3rem;
  }
  .table-row:not(:first-child) {
    font-size: 1rem;
  }
  .text_images-cols {
    grid-template-columns: repeat(10, 1fr);
  }
  .text_images[align=left] .text_images-col:nth-child(1) {
    grid-column: 1/span 4;
    justify-content: flex-end;
  }
  .text_images[align=right] .text_images-col:nth-child(1) {
    grid-column: 2/span 8;
  }
  .text_images[align=left] .text_images-col:nth-child(2) {
    grid-column: 6/span 5;
    margin-bottom: 7.8rem;
  }
  .text_images-col:nth-child(3) {
    grid-column: 2/span 8;
    margin-top: 6rem;
  }
  .vision_catchline-text {
    padding-left: 15rem;
    padding-right: 15rem;
  }
  .vision_reason-columns {
    display: flex;
    flex-direction: column;
  }
  .vision_reason-image {
    width: 100%;
    height: 100%;
  }
  .vision_reason-text {
    font-size: 3.8rem;
    font-family: Fazeta;
    line-height: 1.15;
    font-weight: 500;
  }
  .vision_reason-left {
    height: 81rem;
    position: relative;
  }
  .vision_reason-right {
    padding: 18rem 0;
  }
  .vision_reason-label {
    max-width: 30rem;
    height: 43rem;
  }
  .age_gate-logo {
    width: 24rem;
  }
  .age_gate-logotype_1, .age_gate-logotype_2 {
    width: 48rem;
  }
  .age_gate-logotype_1 {
    top: -10rem;
    right: -25%;
  }
  .age_gate-logotype_2 {
    display: none;
  }
  .age_gate-refuse.icon_button[size=medium], .age_gate-accept.icon_button[size=medium] {
    min-width: 8rem;
    min-height: 8rem;
    max-width: 8rem;
    max-height: 8rem;
  }
  .header-logo {
    top: -2.6rem;
  }
  .menu {
    height: calc(95vh - var(--gutter) * 2);
  }
  .menu-container {
    position: absolute;
    inset: 0;
    overflow-y: auto;
  }
  .menu-content {
    justify-content: flex-end;
    padding-bottom: 2rem;
  }
  .popin_page {
    inset: var(--gutter) var(--gutter) 0;
  }
  .brand-intro_images {
    margin-top: 12rem;
  }
  .expertises-step {
    display: none;
  }
  .expertises-distillation_cover {
    padding-top: calc(8rem + var(--spacing_huge));
    padding-bottom: calc(11rem + var(--spacing_huge));
  }
  .expertises-distillation_logotype_1, .expertises-distillation_logotype_2 {
    display: none;
  }
  .home-creation_cover {
    padding-top: calc(22rem + var(--spacing_huge));
    padding-bottom: calc(10rem + var(--spacing_huge));
  }
  .home-creation_insert {
    top: -10rem;
  }
  .home-innovations .title {
    font-size: 3.2rem;
    font-family: Fazeta;
    line-height: 1.1;
    font-weight: 500;
  }
  .vision-certification_intro {
    margin-top: -17rem;
  }
}

@media (max-width: 414px) and (max-height: 630px){
  .menu-content {
    padding-top: 1rem;
  }
}