/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

figure {
  display: block;
}

figure img {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  width: auto;
  height: auto;
  z-index: 1;
}

button {
  padding: 0;
  border: 0;
  background: 0;
  cursor: pointer;
  font: inherit;
  color: var(--neutral-700);
}
button:focus {
  outline: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: currentColor;
}

strong {
  font-weight: 600;
}

div:focus-visible, article:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, textarea:focus-visible, [tabindex="0"]:focus-visible {
  outline: 1px solid var(--neutral-700);
  outline-offset: 2px;
  border-radius: inherit;
}

@supports selector(div:focus-visible) {
  .bg--dark div:focus-visible, .bg--dark article:focus-visible, .bg--dark button:focus-visible, .bg--dark a:focus-visible, .bg--dark input:not([type=text]):focus-visible, .bg--dark textarea:focus-visible, .bg--dark [tabindex="0"]:focus-visible {
    outline-color: var(--bg);
  }
  /* uniquement au focus clavier */
  div:focus-visible, article:focus-visible, button:focus-visible, a:focus-visible, input:not([type=text]):focus-visible, textarea:focus-visible, [tabindex="0"]:focus-visible {
    outline: 1px solid var(--neutral-700);
  }
}
body {
  --offset: 1;
}

body.resize-1-10 {
  --offset: 1.10;
}

body.resize-1-25 {
  --offset: 1.25;
}

body.resize-1-50 {
  --offset: 1.5;
}

:root {
  --bg: #FFFFFF;
  --bg-grey: var(--neutral-50);
  --bg-footer: #EEF0F1;
  --light: #FCFCFC;
  --neutral-50: #F9F9F9;
  --neutral-400: #595959;
  --neutral-600: #383838;
  --neutral-700: #232326;
  --gray-200: #DEE0E3;
  --yellow-400: #FFDB66;
  --yellow-500: #FFCF33;
  --grey-500: #ACB3B9;
  --font-samaritaine-serif: "SAMARITAINE Serif", serif;
  --font-samaritaine-sans: "SAMARITAINE Sans", sans-serif;
  --font-inter: "Inter", sans-serif;
  --bold: 700;
  --open: #32AC42;
  --closed: #D30023;
  --closing: #ffa953;
  --header-border-color: var(--border-color-light);
  --border-width: .8px;
  --border-color: var(--gray-200);
  --border-color-light: #CECECE;
  --border-color-lighter: #F5F5F5;
  --border-color-dark: var(--neutral-700);
  --border-hover: var(--neutral-700);
  --font-xs: 12px;
  --font-sm: 14px;
  --font-md: 16px;
  --font-md-lg: 18px;
  --font-lg: 20px;
  --font-lg-xl: 22px;
  --font-lg-2xl: 24px;
  --font-xl: 34px;
  --font-2xl: 32px;
  --font-3xl: 36px;
  --font-4xl: 52px;
}

@media (max-width: 720px) {
  :root {
    --font-xs: 12px;
    --font-sm: 13px;
    --font-md: 14px;
    --font-md-lg: 16px;
    --font-lg: 18px;
    --font-lg-xl: 20px;
    --font-lg-2xl: 22px;
    --font-xl: 22px;
    --font-2xl: 20px;
    --font-3xl: 32px;
    --font-4xl: 40px;
  }
}
/*------------------------------------*\
  #GRID
\*------------------------------------*/
.container {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100vw;
  box-sizing: border-box;
}
@media (max-width: 44.99em) {
  .container {
    padding: 0;
  }
}
.container:not(.container--full) {
  max-width: 87.0833333333vw;
}
@media (min-width: 119.9375em) {
  .container:not(.container--full) {
    max-width: 1672px;
  }
}
@media (max-width: 44.99em) {
  .container:not(.container--full) {
    max-width: calc(100vw - 40px);
  }
}

.container--grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 1.0416666667vw;
}
@media (min-width: 119.9375em) {
  .container--grid {
    grid-column-gap: 20px;
  }
}

.container--full {
  display: grid;
  grid-template-columns: [start] 3.125vw [container-start] repeat(12, 1fr) [container-end] 3.125vw [end];
  max-width: 100vw;
  grid-column-gap: 1.0416666667vw;
}
@media (min-width: 119.9375em) {
  .container--full {
    grid-template-columns: [start] 60px [container-start] repeat(12, 1fr) [container-end] 60px [end];
    max-width: 1920px;
    grid-column-gap: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 44.99em) {
  .container--full {
    grid-template-columns: [start] 0 [container-start] repeat(12, 1fr) [container-end] 0 [end];
    max-width: 100vw;
    width: 100vw;
    grid-gap: 20px;
  }
}

@font-face {
  font-family: "SAMARITAINE Serif";
  src: url(/wp-content/themes/samaritaine-theme/dist/fonts/SAMARITAINESerif-Italic.woff2?ver=ea5eaf98) format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SAMARITAINE Serif";
  src: url(/wp-content/themes/samaritaine-theme/dist/fonts/SAMARITAINESerif-Bold.woff2?ver=09a91c02) format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SAMARITAINE Serif";
  src: url(/wp-content/themes/samaritaine-theme/dist/fonts/SAMARITAINESerif-Regular.woff2?ver=d0e8880c) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "SAMARITAINE Serif";
  src: url(/wp-content/themes/samaritaine-theme/dist/fonts/SAMARITAINESerif-BoldItalic.woff2?ver=6eb4be24) format("woff2");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "SAMARITAINE Sans";
  src: url(/wp-content/themes/samaritaine-theme/dist/fonts/SAMARITAINESans-Bold.woff2?ver=21ac5b32) format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(/wp-content/themes/samaritaine-theme/dist/fonts/Inter-Regular.woff2?ver=b1376a34) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(/wp-content/themes/samaritaine-theme/dist/fonts/Inter-Medium.woff2?ver=f692b89f) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
h1, .h1 {
  font-family: var(--font-samaritaine-sans);
  font-size: calc(calc(var(--font-4xl) * 100vw / 1920px) * var(--offset));
  font-weight: var(--bold);
  line-height: 1.45;
  letter-spacing: 0;
}
@media (min-width: 119.9375em) {
  h1, .h1 {
    font-size: calc(var(--font-4xl) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  h1, .h1 {
    font-size: calc(var(--font-4xl) * var(--offset));
  }
}
h1.small, .h1.small, .brands-featured--slider h3.h1 {
  font-size: calc(2.5vw * var(--offset));
}
@media (min-width: 119.9375em) {
  h1.small, .h1.small, .brands-featured--slider h3.h1 {
    font-size: calc(48px * var(--offset));
  }
}
@media (max-width: 44.99em) {
  h1.small, .h1.small, .brands-featured--slider h3.h1 {
    font-size: calc(28px * var(--offset));
  }
}
h1.smaller, .h1.smaller {
  font-size: calc(1.875vw * var(--offset));
}
@media (min-width: 119.9375em) {
  h1.smaller, .h1.smaller {
    font-size: calc(36px * var(--offset));
  }
}
@media (max-width: 44.99em) {
  h1.smaller, .h1.smaller {
    font-size: calc(32px * var(--offset));
  }
}

h2, .h2, .skip-to-main-content-link {
  font-family: var(--font-samaritaine-sans);
  font-size: calc(calc(var(--font-2xl) * 100vw / 1920px) * var(--offset));
  font-weight: var(--bold);
  line-height: 1.3;
  letter-spacing: 0;
}
@media (min-width: 119.9375em) {
  h2, .h2, .skip-to-main-content-link {
    font-size: calc(var(--font-2xl) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  h2, .h2, .skip-to-main-content-link {
    font-size: calc(var(--font-2xl) * var(--offset));
  }
}
h2.small, .h2.small, .small.skip-to-main-content-link, .brands-featured--slider h3.h2, .brands-featured--slider h3.skip-to-main-content-link {
  font-size: calc(calc(var(--font-lg-xl) * 100vw / 1920px) * var(--offset));
}
@media (min-width: 119.9375em) {
  h2.small, .h2.small, .small.skip-to-main-content-link, .brands-featured--slider h3.h2, .brands-featured--slider h3.skip-to-main-content-link {
    font-size: calc(var(--font-lg-xl) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  h2.small, .h2.small, .small.skip-to-main-content-link, .brands-featured--slider h3.h2, .brands-featured--slider h3.skip-to-main-content-link {
    font-size: calc(var(--font-lg-xl) * var(--offset));
  }
}

h3, .h3 {
  font-family: var(--font-samaritaine-serif);
  font-size: calc(calc(var(--font-3xl) * 100vw / 1920px) * var(--offset));
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}
@media (min-width: 119.9375em) {
  h3, .h3 {
    font-size: calc(var(--font-3xl) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  h3, .h3 {
    font-size: calc(var(--font-3xl) * var(--offset));
  }
}
h3.small, .brands-featured--slider h3, .h3.small {
  font-size: calc(calc(var(--font-2xl) * 100vw / 1920px) * var(--offset));
}
@media (min-width: 119.9375em) {
  h3.small, .brands-featured--slider h3, .h3.small {
    font-size: calc(var(--font-2xl) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  h3.small, .brands-featured--slider h3, .h3.small {
    font-size: calc(var(--font-2xl) * var(--offset));
  }
}
h3.smaller, .h3.smaller {
  font-size: calc(1.1458333333vw * var(--offset));
}
@media (min-width: 119.9375em) {
  h3.smaller, .h3.smaller {
    font-size: calc(22px * var(--offset));
  }
}
@media (max-width: 44.99em) {
  h3.smaller, .h3.smaller {
    font-size: calc(16px * var(--offset));
  }
}

h4, .h4, .article-body h2, .article-body .h2 {
  font-family: var(--font-samaritaine-serif);
  font-size: calc(calc(var(--font-xl) * 100vw / 1920px) * var(--offset));
  font-weight: 400;
  line-height: 1.5;
}
@media (min-width: 119.9375em) {
  h4, .h4, .article-body h2, .article-body .h2 {
    font-size: calc(var(--font-xl) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  h4, .h4, .article-body h2, .article-body .h2 {
    font-size: calc(var(--font-xl) * var(--offset));
  }
}

.tag {
  font-family: var(--font-samaritaine-sans);
  font-size: calc(calc(var(--font-sm) * 100vw / 1920px) * var(--offset));
  font-style: normal;
  font-weight: var(--bold);
  line-height: 1.5;
  color: var(--neutral-400);
}
@media (min-width: 119.9375em) {
  .tag {
    font-size: calc(var(--font-sm) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  .tag {
    font-size: calc(var(--font-sm) * var(--offset));
  }
}
.tag.small, .brands-featured--slider h3.tag {
  font-size: calc(calc(var(--font-xs) * 100vw / 1920px) * var(--offset));
}
@media (min-width: 119.9375em) {
  .tag.small, .brands-featured--slider h3.tag {
    font-size: calc(var(--font-xs) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  .tag.small, .brands-featured--slider h3.tag {
    font-size: calc(var(--font-xs) * var(--offset));
  }
}

.tag--searchbar {
  display: flex;
  align-items: center;
  padding: 0.15625vw 0.15625vw 0.15625vw 0.5208333333vw;
  border-radius: 999px;
  cursor: pointer;
  background-color: var(--bg-grey);
  gap: 0.15625vw;
}
@media (min-width: 119.9375em) {
  .tag--searchbar {
    padding: 3px 3px 3px 10px;
    gap: 3px;
  }
}
.tag--searchbar button {
  font-size: 0;
  flex: 1;
  width: 1.25vw;
  height: 1.25vw;
  max-width: 24px;
  max-height: 24px;
  display: block;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="7" height="7" viewBox="0 0 7 7" fill="none"><path d="M7 0.705L6.295 0L3.5 2.795L0.705 0L0 0.705L2.795 3.5L0 6.295L0.705 7L3.5 4.205L6.295 7L7 6.295L4.205 3.5L7 0.705Z" fill="%23595959"/></svg>') no-repeat center center;
  background-size: 0.3645833333vw 0.3645833333vw;
  border-radius: 999px;
}
@media (min-width: 119.9375em) {
  .tag--searchbar button {
    background-size: 7px 7px;
  }
}
@media (any-hover: hover) {
  .tag--searchbar button:hover {
    background-color: var(--bg-footer);
  }
}

.alert {
  padding: 0.2083333333vw 0.625vw;
  background-color: var(--yellow-500);
}
@media (min-width: 119.9375em) {
  .alert {
    padding: 4px 12px;
  }
}
@media (max-width: 44.99em) {
  .alert {
    padding: 4px 12px;
  }
}

.text--title, .search--wrapper input, .button {
  font-family: var(--font-samaritaine-sans);
  font-weight: 400;
}

.text--body, .select--wrapper textarea, .input--wrapper textarea {
  font-family: var(--font-inter);
  font-weight: 400;
}

.text--tiny, .select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) label, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) label, .select--wrapper .error--message, .input--wrapper .error--message {
  font-size: calc(0.5208333333vw * var(--offset));
}
@media (min-width: 119.9375em) {
  .text--tiny, .select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) label, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) label, .select--wrapper .error--message, .input--wrapper .error--message {
    font-size: calc(10px * var(--offset));
  }
}
@media (max-width: 44.99em) {
  .text--tiny, .select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) label, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) label, .select--wrapper .error--message, .input--wrapper .error--message {
    font-size: calc(10px * var(--offset));
  }
}

.text--smaller, .article-body .block-custom-text-picto .wp-block-button__link, .link, .article-body .wp-block-button__link {
  font-size: calc(calc(var(--font-xs) * 100vw / 1920px) * var(--offset));
}
@media (min-width: 119.9375em) {
  .text--smaller, .article-body .block-custom-text-picto .wp-block-button__link, .link, .article-body .wp-block-button__link {
    font-size: calc(var(--font-xs) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  .text--smaller, .article-body .block-custom-text-picto .wp-block-button__link, .link, .article-body .wp-block-button__link {
    font-size: calc(var(--font-xs) * var(--offset));
  }
}

small, .text--small, .article-body .wp-element-caption, .article-body .wp-block-gallery.has-nested-images figure.wp-block-image figcaption, .search--wrapper input, .button--action span:not(.text--smaller), .button--bordered span:not(.text--smaller) {
  font-size: calc(calc(var(--font-sm) * 100vw / 1920px) * var(--offset));
}
@media (min-width: 119.9375em) {
  small, .text--small, .article-body .wp-element-caption, .article-body .wp-block-gallery.has-nested-images figure.wp-block-image figcaption, .search--wrapper input, .button--action span:not(.text--smaller), .button--bordered span:not(.text--smaller) {
    font-size: calc(var(--font-sm) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  small, .text--small, .article-body .wp-element-caption, .article-body .wp-block-gallery.has-nested-images figure.wp-block-image figcaption, .search--wrapper input, .button--action span:not(.text--smaller), .button--bordered span:not(.text--smaller) {
    font-size: calc(var(--font-sm) * var(--offset));
  }
}

.text--normal, .article-body .wp-block-button__link {
  font-size: calc(calc(var(--font-md) * 100vw / 1920px) * var(--offset));
}
@media (min-width: 119.9375em) {
  .text--normal, .article-body .wp-block-button__link {
    font-size: calc(var(--font-md) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  .text--normal, .article-body .wp-block-button__link {
    font-size: calc(var(--font-md) * var(--offset));
  }
}

.text--large, .skip-to-main-content-link {
  font-size: calc(calc(var(--font-md-lg) * 100vw / 1920px) * var(--offset));
}
@media (min-width: 119.9375em) {
  .text--large, .skip-to-main-content-link {
    font-size: calc(var(--font-md-lg) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  .text--large, .skip-to-main-content-link {
    font-size: calc(var(--font-md-lg) * var(--offset));
  }
}

.text--larger {
  font-size: calc(calc(var(--font-lg) * 100vw / 1920px) * var(--offset));
}
@media (min-width: 119.9375em) {
  .text--larger {
    font-size: calc(var(--font-lg) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  .text--larger {
    font-size: calc(var(--font-lg) * var(--offset));
  }
}

.text--big {
  font-size: calc(calc(var(--font-lg-xl) * 100vw / 1920px) * var(--offset));
}
@media (min-width: 119.9375em) {
  .text--big {
    font-size: calc(var(--font-lg-xl) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  .text--big {
    font-size: calc(var(--font-lg-xl) * var(--offset));
  }
}

.text--bigger {
  font-size: calc(calc(var(--font-2xl) * 100vw / 1920px) * var(--offset));
}
@media (min-width: 119.9375em) {
  .text--bigger {
    font-size: calc(var(--font-2xl) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  .text--bigger {
    font-size: calc(var(--font-2xl) * var(--offset));
  }
}

.text--huge {
  font-size: calc(2.1875vw * var(--offset));
}
@media (min-width: 119.9375em) {
  .text--huge {
    font-size: calc(42px * var(--offset));
  }
}
@media (max-width: 44.99em) {
  .text--huge {
    font-size: calc(32px * var(--offset));
  }
}

strong, b, .text--bold, .article-body > p a, .article-body > ul a, .article-body > ol a {
  font-weight: var(--bold);
}

em {
  font-style: italic;
}

a.underline, .article-body > p a, .article-body > ul a, .article-body > ol a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: from-font;
  text-underline-position: from-font;
}
@media (any-hover: hover) {
  a.underline:hover, .article-body > p a:hover, .article-body > ul a:hover, .article-body > ol a:hover, a.underline:focus-visible, .article-body > p a:focus-visible, .article-body > ul a:focus-visible, .article-body > ol a:focus-visible {
    color: var(--mainColor);
    text-decoration: none;
  }
}

@media (any-hover: hover) {
  .hover-underline, .article-body .block-custom-booking p.address a, .main-breadcrumbs ul > li a {
    text-decoration-thickness: from-font;
    text-underline-position: from-font;
    text-underline-offset: 2px;
  }
  .hover-underline:hover, .article-body .block-custom-booking p.address a:hover, .main-breadcrumbs ul > li a:hover, .hover-underline:focus-visible, .article-body .block-custom-booking p.address a:focus-visible, .main-breadcrumbs ul > li a:focus-visible {
    -webkit-text-decoration: underline var(--neutral-700);
            text-decoration: underline var(--neutral-700);
  }
}

.text--grey, .article-body p, .article-body .wp-element-caption, .article-body .wp-block-gallery.has-nested-images figure.wp-block-image figcaption, fieldset:has(.search--wrapper) button, form fieldset.fieldset--radio[data-legend]:before, .select--wrapper label, .input--wrapper label {
  color: var(--neutral-600);
}

.text--white, .contact--wrapper .main-breadcrumbs {
  color: var(--light);
}

.text--center {
  text-align: center;
}

.text--uppercase {
  text-transform: uppercase;
}

.text--capitalize {
  text-transform: capitalize;
}

.text--underline {
  text-decoration: underline;
}

.text--medium, form fieldset.fieldset--radio[data-legend]:before, .select--wrapper input, .select--wrapper label, .select--wrapper select, .select--wrapper textarea, .input--wrapper input, .input--wrapper label, .input--wrapper select, .input--wrapper textarea {
  font-weight: 500;
}

.text--bold, .article-body > p a, .article-body > ul a, .article-body > ol a {
  font-weight: 700;
}

.text--no-spacing {
  letter-spacing: 0;
}

/**
 * Swiper 12.0.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 18, 2025
 */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
  .swiper-slide,
  .swiper-cube-shadow {
    transform-style: preserve-3d;
  }
}

/* CSS Mode */
.swiper-css-mode {
  > .swiper-wrapper {
    overflow: auto;
    scrollbar-width: none; /* For Firefox */
    -ms-overflow-style: none; /* For Internet Explorer and Edge */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: "";
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      width: 100%;
      min-width: 1px;
      height: var(--swiper-centered-offset-after);
    }
  }
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d {
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-bottom {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress),
.swiper-watch-progress .swiper-slide-visible {
  .swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s infinite linear;
  }
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
@media (-webkit-device-pixel-ratio: 1.25) {
  :root {
    zoom: 0.8;
  }
}
@media (-webkit-device-pixel-ratio: 1.5) {
  :root {
    zoom: 0.9;
  }
}
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  font-family: var(--font-inter);
  font-weight: normal;
  color: var(--neutral-700);
  font-size: calc(calc(var(--font-md) * 100vw / 1920px) * var(--offset));
  line-height: 1.65;
  letter-spacing: -0.0104166667vw;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
@media (min-width: 119.9375em) {
  body {
    font-size: calc(var(--font-md) * var(--offset));
  }
}
@media (max-width: 44.99em) {
  body {
    font-size: calc(var(--font-md) * var(--offset));
  }
}
@media (min-width: 119.9375em) {
  body {
    letter-spacing: -0.2px;
  }
}

main {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media (max-width: 44.99em) {
  main {
    width: 100vw;
  }
}

section {
  position: relative;
}
section.section {
  padding: 6.4583333333vw 0;
}
@media (min-width: 119.9375em) {
  section.section {
    padding: 124px 0;
  }
}
@media (max-width: 44.99em) {
  section.section {
    padding: 44px 0;
  }
}

button {
  border: 0;
  outline: 0;
  background-color: transparent;
  cursor: pointer;
}

figure {
  margin: 0;
  max-width: 100%;
  overflow: hidden;
  flex: 1;
}
figure picture {
  width: 100%;
}
figure img {
  width: auto;
  height: auto;
  display: block;
  max-width: 100%;
}
@media (max-width: 44.99em) {
  figure img {
    width: 100%;
  }
}

svg {
  overflow: visible;
  height: auto;
}

.icon {
  display: flex;
  font-size: 0;
  line-height: 0;
}

@media (max-width: 44.99em) {
  .hide--mobile, .masthead--contact {
    display: none !important;
  }
}

@media (min-width: 45em) {
  .hide--desktop {
    display: none !important;
  }
}

[data-scrollto] {
  cursor: pointer;
}

.bg--grey {
  background-color: var(--bg-grey);
}

.bg--dark {
  background-color: var(--neutral-700);
}

.media-image:has(img[src=""]) {
  background: var(--yellow-400) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="54" height="55" viewBox="0 0 54 55" fill="none"> <g> <path d="M27.0189 54.4956C23.3918 54.4956 19.7646 54.4956 16.1397 54.5C15.9504 54.5 15.8117 54.4493 15.6753 54.3127C10.5449 49.1703 5.4123 44.0301 0.275315 38.8942C0.134455 38.7532 0.0728288 38.61 0.0728288 38.4073C0.0794316 35.7369 0.0882354 33.0666 0.0728288 30.3962C0.066226 28.6997 -0.00420399 27.0032 0.000197881 25.3088C0.00680069 22.3785 0.0464176 19.4503 0.0838335 16.52C0.0838335 16.3834 0.178474 16.2203 0.279717 16.119C2.68094 13.702 5.09097 11.2916 7.49879 8.88125C10.2125 6.16241 12.9263 3.44798 15.6357 0.724734C15.8007 0.559488 15.9658 0.5 16.1947 0.5C23.4028 0.50661 30.613 0.50661 37.8211 0.5C38.072 0.5 38.2459 0.572708 38.4198 0.74897C43.5281 5.87158 48.6409 10.992 53.7581 16.1058C53.9276 16.2754 53.998 16.4429 53.998 16.683C53.9892 19.3446 53.9936 22.0039 53.9936 24.6655C53.9936 29.2571 53.9936 33.8465 54.0002 38.4382C54.0002 38.6651 53.8858 38.7929 53.7471 38.9317C51.282 41.3971 48.8192 43.8648 46.3563 46.3303C43.713 48.9764 41.0675 51.6225 38.4286 54.2753C38.2745 54.4317 38.1204 54.4978 37.8981 54.4978C34.271 54.4912 30.6439 54.4934 27.0189 54.4934V54.4956ZM27.0211 2.47634C23.6757 2.47634 20.3303 2.47634 16.9848 2.47193C16.7735 2.47193 16.6217 2.53362 16.4742 2.68124C11.7312 7.43811 6.98377 12.1928 2.23635 16.943C2.08228 17.0973 2.01406 17.2537 2.01626 17.4762C2.03166 20.1113 2.04047 22.7464 2.04267 25.3794C2.04267 27.0979 2.02506 28.8165 2.02286 30.5328C2.01846 32.8771 2.02286 35.2214 2.01846 37.5657C2.01846 37.7662 2.07348 37.9116 2.21654 38.0548C6.97497 42.8116 11.729 47.5707 16.4786 52.3342C16.6261 52.484 16.7779 52.5479 16.987 52.5479C23.6691 52.5435 30.3511 52.5435 37.0332 52.5479C37.2533 52.5479 37.4139 52.4818 37.568 52.3276C42.3066 47.5773 47.0496 42.8293 51.7949 38.0834C51.9511 37.927 52.0172 37.7706 52.015 37.548C51.9996 34.9482 51.9863 32.3505 51.9841 29.7506C51.9841 28.0585 52.0062 26.3686 52.0106 24.6765C52.015 22.2529 52.015 19.8293 52.004 17.4057C52.004 17.2581 51.9247 17.0796 51.8213 16.9717C51.3877 16.509 50.9299 16.0683 50.4831 15.6211C46.1825 11.3159 41.884 7.01067 37.5878 2.70327C37.4271 2.54243 37.2665 2.46973 37.0354 2.47193C33.6988 2.47854 30.3621 2.47634 27.0255 2.47634H27.0211Z" fill="%2300000030"/> <path d="M49.3078 27.5274C49.3078 30.5239 49.3078 33.5181 49.3122 36.5146C49.3122 36.7019 49.2439 36.823 49.1185 36.9486C44.8861 41.1811 40.6559 45.4202 36.4191 49.6483C36.3222 49.7452 36.1484 49.8179 36.0097 49.8179C30.0143 49.8267 24.0212 49.8267 18.0258 49.8179C17.8806 49.8179 17.6979 49.7408 17.5945 49.6395C13.3709 45.4224 9.15606 41.1987 4.93686 36.9795C4.7806 36.823 4.71457 36.6666 4.71457 36.4463C4.72117 34.4193 4.72117 32.3923 4.71897 30.3652C4.71677 28.6731 4.69916 26.981 4.70136 25.2911C4.70136 23.0261 4.71017 20.7634 4.72777 18.4984C4.72777 18.3552 4.82241 18.1789 4.92806 18.0732C8.93376 14.05 12.9615 10.0467 16.9452 6.00145C17.5438 5.39335 18.1249 5.15319 18.9788 5.1598C24.6375 5.19946 30.2983 5.17963 35.9591 5.18844C36.1131 5.18844 36.309 5.26776 36.4169 5.37572C40.6603 9.61261 44.8971 13.8561 49.1295 18.104C49.2263 18.201 49.299 18.3728 49.3012 18.5116C49.3122 20.5122 49.3078 22.5128 49.3078 24.5133C49.3078 25.518 49.3078 26.5227 49.3078 27.5274ZM27.0123 47.8857C29.715 47.8857 32.4178 47.8857 35.1183 47.8901C35.3208 47.8901 35.4617 47.8284 35.6025 47.6852C39.4498 43.8272 43.3014 39.9693 47.1574 36.118C47.3137 35.9616 47.3731 35.8007 47.3709 35.5826C47.3577 33.5644 47.3511 31.5484 47.3489 29.5302C47.3489 27.8293 47.3621 26.1283 47.3643 24.4296C47.3665 22.764 47.3599 21.0983 47.3709 19.4326C47.3709 19.2101 47.3027 19.0536 47.1486 18.9016C43.3014 15.0569 39.4586 11.2078 35.6179 7.35646C35.4705 7.20884 35.3252 7.13834 35.1117 7.13834C29.7326 7.14495 24.3557 7.14495 18.9766 7.13834C18.7257 7.13834 18.5497 7.20884 18.3758 7.38511C14.5484 11.2276 10.7165 15.0657 6.88029 18.8994C6.73723 19.0426 6.68221 19.188 6.68441 19.3885C6.70201 21.4155 6.71742 23.4404 6.71742 25.4674C6.71742 27.1066 6.69321 28.7436 6.68881 30.3829C6.68441 32.1367 6.68881 33.8905 6.68441 35.6443C6.68441 35.8448 6.74603 35.9902 6.88909 36.1334C8.21846 37.4554 9.54342 38.7839 10.8684 40.1125C13.3753 42.6242 15.8821 45.1338 18.3846 47.6499C18.5585 47.824 18.7345 47.8967 18.9854 47.8967C21.6618 47.8879 24.3381 47.8901 27.0123 47.8901V47.8857Z" fill="%2300000030"/> <path d="M34.9617 20.7037C34.1539 21.1752 33.3726 21.6291 32.5935 22.083C32.3448 22.2284 32.0828 22.3584 31.8496 22.5258C31.6493 22.6713 31.57 22.5853 31.471 22.4157C31.0726 21.7216 30.5202 21.1708 29.8225 20.7831C28.7176 20.1683 27.5291 19.9965 26.2812 20.1331C25.4976 20.219 24.7647 20.4305 24.1022 20.858C23.1977 21.4418 22.8279 22.5435 23.2307 23.5085C23.4838 24.1144 24.012 24.4427 24.5799 24.7005C25.3348 25.0442 26.1337 25.2381 26.9459 25.3967C27.9451 25.5928 28.9311 25.8418 29.9281 26.0533C31.0286 26.289 32.0961 26.6261 33.0931 27.1505C34.1737 27.719 35.0365 28.5121 35.4833 29.6821C35.8398 30.6141 35.9147 31.5835 35.787 32.5662C35.4613 35.0647 33.9801 36.64 31.7439 37.605C29.9699 38.3718 28.1036 38.5436 26.1975 38.4643C24.4632 38.3916 22.8147 37.9972 21.274 37.182C20.1053 36.5629 19.1303 35.719 18.3314 34.6637C18.2191 34.5138 18.2544 34.4433 18.393 34.353C19.3768 33.7074 20.3585 33.0597 21.3357 32.4031C21.4721 32.3106 21.5514 32.3282 21.6394 32.4516C22.4846 33.6369 23.6951 34.2913 25.0531 34.6416C26.6443 35.0514 28.2576 35.0625 29.8225 34.4632C30.5774 34.1745 31.2311 33.7273 31.559 32.9429C31.9904 31.9074 31.6317 30.8983 30.5818 30.3651C29.9876 30.0632 29.3383 29.8319 28.689 29.6755C27.2936 29.3384 25.874 29.0938 24.4764 28.7633C23.1845 28.4571 21.9255 28.0494 20.8383 27.2408C19.839 26.4983 19.2338 25.5201 19.0423 24.2818C18.7276 22.2482 19.236 20.457 20.6468 18.9565C21.4941 18.0554 22.555 17.4781 23.7193 17.0727C24.9914 16.6321 26.3032 16.4955 27.6326 16.5418C29.5496 16.6079 31.3345 17.1212 32.9038 18.2669C33.7754 18.9037 34.4753 19.6924 34.9661 20.7059L34.9617 20.7037Z" fill="%2300000030"/> </g> </svg>') no-repeat center center;
  background-position: center center;
  background-size: 50%;
}

.absolute--link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  font-size: 0;
}

.section--title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.9791666667vw;
}
@media (min-width: 119.9375em) {
  .section--title {
    margin-bottom: 38px;
  }
}
@media (max-width: 44.99em) {
  .section--title {
    gap: 22px;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 32px;
  }
}

.pt-0 {
  padding-top: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.not-found--wrapper {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.not-found--wrapper h1 {
  margin-bottom: 15px;
  text-transform: none;
}
.not-found--wrapper .icon {
  margin-top: 20px;
  margin-bottom: 80px;
}

[data-toggle-element][data-popin], [data-pane-element][data-popin] {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 2;
}

[data-toggle-element]:not([data-toggle-mobile]) {
  display: none !important;
}
@media (max-width: 44.99em) {
  [data-toggle-element][data-toggle-mobile] {
    display: none !important;
  }
}
[data-toggle-element].toggled {
  display: block !important;
}
[data-toggle-element].toggled.flex {
  display: flex !important;
}
[data-toggle-element].toggled.grid {
  display: grid !important;
}

[data-swiper] {
  overflow: hidden;
}

.slider--navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  left: 4.1666666667vw;
  right: 4.1666666667vw;
  top: 50%;
  z-index: 2;
}

.swiper-button-prev, .swiper-button-next {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.2916666667vw;
  height: 2.2916666667vw;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.5215686275);
  opacity: 1;
  transition: background-color 0.3s, opacity 0.3s;
}
@media (any-hover: hover) {
  .swiper-button-prev:hover, .swiper-button-next:hover {
    background-color: var(--bg);
  }
}
.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  pointer-events: none;
  opacity: 0.4 !important;
}

.swiper-pagination-bullets {
  position: absolute;
  bottom: 0.7291666667vw;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .swiper-pagination-bullets {
    bottom: 14px;
    gap: 8px;
  }
}
@media (max-width: 44.99em) {
  .swiper-pagination-bullets {
    gap: 6px;
    bottom: 14px;
  }
}

.swiper-pagination-bullet {
  width: 0.6770833333vw;
  height: 0.6770833333vw;
  max-width: 13px;
  max-height: 13px;
  border: 0.8px solid var(--neutral-50);
  background-color: transparent;
  border-radius: 999px;
}
@media (max-width: 44.99em) {
  .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
  }
}
.swiper-pagination-bullet-active {
  width: 0.78125vw;
  height: 0.8333333333vw;
  max-width: 15px;
  max-height: 16px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="16" viewBox="0 0 15 16" fill="none"> <path d="M14.4932 10.6523L10.4951 14.6504H4.71484L0.716797 10.6523V4.59766L4.71484 0.599609H10.4951L14.4932 4.59766V10.6523Z" stroke="%23F9F9F9" stroke-width="0.8"/> <path d="M9.68164 2.73242L12.5166 5.54883V9.85645L9.68164 12.6738H5.56641L2.73242 9.85645V5.54883L5.56641 2.73242H9.68164Z" stroke="%23F9F9F9" stroke-width="0.8"/> </svg>') no-repeat center center;
  background-size: contain;
  border: none;
  border-radius: 0;
}
@media (max-width: 44.99em) {
  .swiper-pagination-bullet-active {
    width: 15px;
    height: 16px;
  }
}

[data-accordion] {
  display: flex;
  flex-direction: column;
  padding-bottom: 2.5vw;
  border-bottom: 1px solid var(--border-color-light);
}
@media (min-width: 119.9375em) {
  [data-accordion] {
    padding-bottom: 48px;
  }
}
@media (max-width: 44.99em) {
  [data-accordion] {
    padding-bottom: 32px;
  }
}
[data-accordion]:not(:last-child) {
  margin-bottom: 2.5vw;
}
@media (min-width: 119.9375em) {
  [data-accordion]:not(:last-child) {
    margin-bottom: 48px;
  }
}
@media (max-width: 44.99em) {
  [data-accordion]:not(:last-child) {
    margin-bottom: 32px;
  }
}
[data-accordion] .button--deploy {
  transition: rotate 0.3s;
}
[data-accordion].open .button--deploy {
  rotate: 180deg;
}
[data-accordion].open .button--deploy:after {
  rotate: 0deg;
}

[data-accordion-title] {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.0416666667vw;
  cursor: pointer;
}
@media (min-width: 89.9375em) {
  [data-accordion-title] {
    gap: 20px;
  }
}
@media (max-width: 44.99em) {
  [data-accordion-title] {
    gap: 20px;
  }
}
[data-accordion-title] button {
  flex: none;
}

[data-accordion-content] {
  position: absolute;
  opacity: 0;
  overflow: hidden;
}
[data-accordion-content] p {
  padding-right: 10.625vw;
}
@media (min-width: 119.9375em) {
  [data-accordion-content] p {
    padding-right: 204px;
  }
}
@media (max-width: 44.99em) {
  [data-accordion-content] p {
    padding-right: 24px;
    font-size: calc(12px * var(--offset));
  }
}
[data-accordion-content] p:first-child {
  padding-top: 1.25vw;
}
@media (min-width: 119.9375em) {
  [data-accordion-content] p:first-child {
    padding-top: 24px;
  }
}
@media (max-width: 44.99em) {
  [data-accordion-content] p:first-child {
    padding-top: 24px;
  }
}

.skip-to-main-content-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 1em;
  background-color: var(--yellow-500);
  color: var(--neutral-700);
  opacity: 0;
}

.skip-to-main-content-link:focus {
  left: 0;
  opacity: 1;
}

.section--not-found {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.section--not-found .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section--not-found h1 {
  margin-top: 1.1458333333vw;
  margin-bottom: 3.4375vw;
}
@media (min-width: 119.9375em) {
  .section--not-found h1 {
    margin-top: 22px;
    margin-bottom: 66px;
  }
}
@media (max-width: 44.99em) {
  .section--not-found h1 {
    margin-top: 22px;
    margin-bottom: 32px;
  }
}

.button--action, .button--bordered {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4166666667vw;
  padding: 0.7291666667vw 1.1458333333vw;
  background-color: var(--yellow-400);
  height: 3.125vw;
}
@media (min-width: 119.9375em) {
  .button--action, .button--bordered {
    padding: 14px 22px;
    gap: 8px;
    height: 60px;
  }
}
@media (max-width: 44.99em) {
  .button--action, .button--bordered {
    gap: 8px;
    padding: 14px 22px;
    height: 48px;
  }
}
.button--action span, .button--bordered span {
  font-family: var(--font-samaritaine-sans);
  text-transform: uppercase;
}
@media (any-hover: hover) {
  .button--action:hover, .button--bordered:hover, .button--action:focus-visible, .button--bordered:focus-visible {
    background-color: var(--yellow-500);
  }
}
.button--action.light, .light.button--bordered {
  background-color: var(--bg);
}
@media (any-hover: hover) {
  .button--action.light:hover, .light.button--bordered:hover, .button--action.light:focus-visible, .light.button--bordered:focus-visible {
    background-color: var(--neutral-50);
  }
}
.button--action.dark, .dark.button--bordered {
  background-color: var(--neutral-700);
}
.button--action.dark span, .dark.button--bordered span {
  color: var(--light);
}
@media (any-hover: hover) {
  .button--action.dark:hover, .dark.button--bordered:hover, .button--action.dark:focus-visible, .dark.button--bordered:focus-visible {
    background-color: var(--neutral-50);
  }
  .button--action.dark:hover span, .dark.button--bordered:hover span, .button--action.dark:focus-visible span, .dark.button--bordered:focus-visible span {
    color: var(--neutral-700);
  }
  .button--action.dark:hover svg path[fill], .dark.button--bordered:hover svg path[fill], .button--action.dark:focus-visible svg path[fill], .dark.button--bordered:focus-visible svg path[fill] {
    fill: var(--neutral-700);
  }
  .button--action.dark:hover svg path[stroke], .dark.button--bordered:hover svg path[stroke], .button--action.dark:focus-visible svg path[stroke], .dark.button--bordered:focus-visible svg path[stroke] {
    stroke: var(--neutral-700);
  }
}
.button--action.full, .full.button--bordered {
  width: 100%;
}

.button--link, .button--close, .button {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .button--link, .button--close, .button {
    gap: 8px;
  }
}
@media (max-width: 44.99em) {
  .button--link, .button--close, .button {
    gap: 8px;
  }
}

.button {
  padding: 0.4166666667vw 0.625vw;
}
@media (min-width: 119.9375em) {
  .button {
    padding: 8px 12px;
  }
}
@media (max-width: 44.99em) {
  .button {
    padding: 8px 12px;
  }
}
@media (any-hover: hover) {
  .button:hover, .button:focus-visible {
    background-color: var(--neutral-50);
  }
}
.button.full {
  width: 100%;
}

.button--bordered {
  background-color: transparent;
  border: var(--border-width) solid var(--border-color-light);
}
.button--bordered.dark, .button--bordered.active {
  border-color: var(--border-color-dark);
}
@media (any-hover: hover) {
  .button--bordered:hover, .button--bordered:focus-visible {
    border-color: var(--border-hover);
    background-color: transparent;
  }
}

.link, .article-body .wp-block-button__link {
  font-family: var(--font-samaritaine-sans);
  font-style: normal;
  font-weight: normal;
  line-height: 1.55;
  text-underline-offset: 3px;
  text-underline-position: from-font;
  text-decoration-thickness: from-font;
}
@media (any-hover: hover) {
  .link:hover, .article-body .wp-block-button__link:hover, .link:focus-visible, .article-body .wp-block-button__link:focus-visible {
    text-decoration: underline;
  }
}

.button--deploy {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25vw;
  height: 1.25vw;
  min-width: 24px;
  min-height: 24px;
}

.buttons--wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.4583333333vw;
  z-index: 1;
}
@media (min-width: 119.9375em) {
  .buttons--wrapper {
    gap: 28px;
  }
}
@media (max-width: 44.99em) {
  .buttons--wrapper {
    flex-wrap: wrap;
    gap: 24px;
  }
}
.buttons--wrapper.column {
  flex-direction: column;
}

.button--burger {
  position: relative;
  width: 27px;
  height: 27px;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  font-size: 0;
}
.button--burger > span, .button--burger:after, .button--burger:before {
  content: "";
  position: absolute;
  display: block;
  width: calc(100% - 6px);
  height: 2px;
  background-color: var(--neutral-700);
  box-sizing: border-box;
  transition: all 0.4s;
}
.button--burger:before {
  translate: 0 -6px;
}
.button--burger:after {
  width: calc(75% - 5px);
  align-self: flex-start;
  translate: 0 6px;
}
.button--burger.active:after {
  opacity: 0;
}
.button--burger.active:before {
  translate: 0 0;
  rotate: -45deg;
}
.button--burger.active span {
  rotate: 45deg;
}

.main--header {
  position: sticky;
  top: 0;
  z-index: 3;
  background-color: var(--bg);
}
@media (max-width: 44.99em) {
  .main--header {
    box-shadow: 5px 5px 10px 0 rgba(88, 88, 88, 0.04);
  }
}
.main--header > * {
  z-index: 0;
}

@media (min-width: 45em) {
  body:has(.navigation--children.toggled):before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: black;
    opacity: 0.5;
    z-index: 3;
  }
}
body:has(.newsletter--popin.toggled) {
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
body:has(.newsletter--popin.toggled):before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: black;
  opacity: 0.5;
  z-index: 3;
}
@media (max-width: 44.99em) {
  body:has(.main--navigation.toggled) {
    overflow: hidden;
  }
}

.header--wrapper {
  position: relative;
  max-width: 1920px;
  margin-right: auto;
  margin-left: auto;
  padding: 0.4166666667vw 2.0833333333vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}
@media (min-width: 119.9375em) {
  .header--wrapper {
    padding: 8px 40px;
  }
}
@media (max-width: 44.99em) {
  .header--wrapper {
    padding: 13px 18px;
  }
}

.header--infos, .header--logo, .header--tools {
  display: flex;
}

.header--infos {
  gap: 3.0208333333vw;
}
@media (min-width: 119.9375em) {
  .header--infos {
    gap: 58px;
  }
}

.header--logo {
  justify-content: center;
  gap: 3.125vw;
  z-index: 4;
}
@media (min-width: 119.9375em) {
  .header--logo {
    gap: 60px;
  }
}

.header--tools {
  justify-content: flex-end;
  gap: 1.1458333333vw;
}
@media (min-width: 119.9375em) {
  .header--tools {
    gap: 22px;
  }
}
@media (max-width: 44.99em) {
  .header--tools .button svg {
    width: 17px;
  }
}

.opening--hours {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
.opening--hours:before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: var(--open);
  border-radius: 999px;
}
.opening--hours.closed:before {
  background-color: var(--closed);
}
.opening--hours.closing:before {
  background-color: var(--closing);
}

.main--navigation {
  display: flex;
  justify-content: center;
  border-top: 0.8px solid var(--header-border-color);
  border-bottom: 0.8px solid var(--header-border-color);
}
@media (max-width: 44.99em) {
  .main--navigation {
    padding: 32px 20px;
    height: calc(100dvh - var(--header-height));
    flex-direction: column;
    justify-content: space-between;
    overflow: scroll;
  }
  .main--navigation.toggled {
    display: flex !important;
  }
}
.main--navigation button, .main--navigation a {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .main--navigation button, .main--navigation a {
    gap: 8px;
  }
}
@media (max-width: 44.99em) {
  .main--navigation button, .main--navigation a {
    gap: 8px;
  }
}
.main--navigation > ul {
  padding: 0.1041666667vw 0;
  display: flex;
  align-items: center;
  gap: 4.2708333333vw;
}
@media (min-width: 119.9375em) {
  .main--navigation > ul {
    padding: 2px 0;
    gap: 82px;
  }
}
@media (max-width: 44.99em) {
  .main--navigation > ul {
    flex-direction: column;
    gap: 42px;
    align-items: stretch;
  }
  .main--navigation > ul + .hide--desktop {
    margin-top: 48px;
    line-height: 2.5;
  }
  .main--navigation > ul + .hide--desktop ul {
    margin-top: 30px;
  }
}
.main--navigation > ul > .menu-item > a, .main--navigation > ul > .menu-item > button {
  padding: 0.625vw 0;
}
@media (min-width: 119.9375em) {
  .main--navigation > ul > .menu-item > a, .main--navigation > ul > .menu-item > button {
    padding: 12px 0;
  }
}
@media (max-width: 44.99em) {
  .main--navigation > ul > .menu-item > a, .main--navigation > ul > .menu-item > button {
    padding: 12px 0;
  }
}
@media (max-width: 44.99em) {
  .main--navigation > ul > .menu-item > button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.main--navigation > ul > .menu-item > button svg {
  transition: rotate 0.3s;
}
@media (max-width: 44.99em) {
  .main--navigation > ul > .menu-item > button svg:last-child {
    rotate: -90deg;
  }
}
.main--navigation > ul > .menu-item > button.active svg:last-child {
  rotate: 180deg;
}

.menu-item--wrapper {
  display: flex;
  align-items: center;
}
@media (max-width: 44.99em) {
  .menu-item--wrapper {
    justify-content: space-between;
  }
}

.navigation--children {
  padding: 2.2916666667vw 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--bg);
  z-index: -1;
  justify-content: center;
}
@media (min-width: 119.9375em) {
  .navigation--children {
    padding: 44px 0;
  }
}
@media (max-width: 44.99em) {
  .navigation--children {
    translate: 100% 0;
    transition: translate 0.6s;
    padding-top: 0;
    flex-direction: column;
    justify-content: flex-start;
    position: fixed;
    top: var(--header-height);
    bottom: 0;
    z-index: 1;
  }
  .navigation--children.toggled {
    translate: 0 0;
  }
  .navigation--children.flex {
    display: flex !important;
  }
  .navigation--children > button {
    flex: none;
    width: -moz-max-content;
    width: max-content;
  }
}
.navigation--children:has(.menu--featured-brand) {
  gap: 8.4375vw;
}
@media (min-width: 119.9375em) {
  .navigation--children:has(.menu--featured-brand) {
    gap: 162px;
  }
}
@media (max-width: 44.99em) {
  .navigation--children:has(.menu--featured-brand) {
    gap: 0;
  }
}
.navigation--children:has(.menu--featured-brand) > ul {
  -moz-column-gap: 8.4375vw;
       column-gap: 8.4375vw;
}
@media (min-width: 119.9375em) {
  .navigation--children:has(.menu--featured-brand) > ul {
    -moz-column-gap: 162px;
         column-gap: 162px;
  }
}
.navigation--children > ul {
  display: grid;
  grid-template-columns: repeat(3, auto);
  grid-template-rows: auto auto;
  -moz-column-gap: 3.2291666667vw;
       column-gap: 3.2291666667vw;
  row-gap: 2.1875vw;
}
@media (min-width: 119.9375em) {
  .navigation--children > ul {
    -moz-column-gap: 62px;
         column-gap: 62px;
    row-gap: 42px;
  }
}
@media (max-width: 44.99em) {
  .navigation--children > ul {
    overflow: scroll;
    grid-template-columns: 1fr;
    padding: 32px 0 42px 20px;
    gap: 32px;
  }
}
.navigation--children > ul li:not(.menu-item-type-post_type_archive) {
  grid-row: span 2;
}
.navigation--children > ul > .menu-item ul {
  margin-top: 0.9375vw;
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .navigation--children > ul > .menu-item ul {
    margin-top: 18px;
    gap: 8px;
  }
}
@media (max-width: 44.99em) {
  .navigation--children > ul > .menu-item ul {
    margin-top: 18px;
    font-family: inherit;
    gap: 8px;
  }
}
.navigation--children .button--back {
  padding: 22px 20px;
  width: 100%;
  border-bottom: 0.8px solid var(--header-border-color);
}

.language--switch {
  position: relative;
}

@media (min-width: 45em) {
  .language--navigation {
    position: absolute;
    background-color: var(--bg);
  }
}
.language--navigation li {
  width: -moz-max-content;
  width: max-content;
}
.language--navigation li a {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}

.my--account {
  padding: 0.78125vw 0.9375vw 0.9375vw;
  position: absolute;
  top: 100%;
  right: 0;
  border: 0.8px solid var(--header-border-color);
  background-color: var(--bg);
}
@media (min-width: 119.9375em) {
  .my--account {
    padding: 15px 18px 18px;
  }
}
.my--account > p {
  margin-bottom: 0.78125vw;
  text-align: center;
}
@media (min-width: 119.9375em) {
  .my--account > p {
    margin-bottom: 15px;
  }
}

.menu--featured-brand {
  display: flex;
  flex-direction: column;
  gap: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .menu--featured-brand {
    gap: 8px;
  }
}
.menu--featured-brand .media-image {
  width: 13.5416666667vw;
  max-width: 260px;
  flex: none;
}
.menu--featured-brand p a {
  display: inline-flex;
}

.header--banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25vw;
  padding: 0.2083333333vw 0;
  color: var(--light);
  cursor: pointer;
}
@media (min-width: 119.9375em) {
  .header--banner {
    padding: 4px 0;
    gap: 24px;
  }
}
.header--banner [data-swiper], .header--banner .swiper-button-prev, .header--banner .swiper-button-next {
  opacity: 0;
}
.header--banner .swiper-button-prev, .header--banner .swiper-button-next {
  background-color: transparent;
  width: 1.25vw;
  height: 1.25vw;
  max-width: 24px;
  max-height: 24px;
  border-radius: 0;
}
@media (any-hover: hover) {
  .header--banner .swiper-button-prev:hover, .header--banner .swiper-button-next:hover {
    background-color: var(--bg);
  }
  .header--banner .swiper-button-prev:hover svg, .header--banner .swiper-button-next:hover svg {
    filter: invert(1);
  }
}
.header--banner .swiper-slide {
  display: flex;
  justify-content: center;
}
.header--banner p {
  width: auto;
  white-space: nowrap;
}

.main--footer {
  padding-top: 2.0833333333vw;
  background-color: var(--bg-footer);
}
@media (min-width: 119.9375em) {
  .main--footer {
    padding-top: 40px;
  }
}
@media (max-width: 44.99em) {
  .main--footer {
    padding-top: 18px;
  }
  .main--footer .store--infos {
    margin-top: 0;
  }
}
.main--footer > .container {
  display: grid;
  grid-template-columns: auto 1fr;
  row-gap: 2.1875vw;
  -moz-column-gap: 4.5833333333vw;
       column-gap: 4.5833333333vw;
}
@media (min-width: 119.9375em) {
  .main--footer > .container {
    row-gap: 42px;
    -moz-column-gap: 88px;
         column-gap: 88px;
  }
}
@media (max-width: 44.99em) {
  .main--footer > .container {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}

.footer--logo {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media (min-width: 45em) {
  .footer--logo {
    grid-column: span 2;
  }
}
@media (max-width: 44.99em) {
  .footer--logo {
    align-items: flex-start;
  }
  .footer--logo > .link {
    margin-top: 8px;
  }
}
.footer--logo img {
  width: 2.8125vw;
  max-width: 54px;
}
@media (max-width: 44.99em) {
  .footer--logo img {
    width: 54px;
  }
}

.footer--infos {
  padding-right: 4.5833333333vw;
  padding-bottom: 6.9791666667vw;
  border-right: 1px solid var(--border-color);
}
@media (min-width: 119.9375em) {
  .footer--infos {
    margin-bottom: 88px;
    padding-bottom: 134px;
  }
}
@media (max-width: 44.99em) {
  .footer--infos {
    padding-right: 0;
    padding-bottom: 48px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    border-right: none;
  }
}
@media (max-width: 44.99em) {
  .footer--infos .buttons--wrapper {
    gap: 12px;
    flex-direction: column;
    align-items: stretch;
  }
}

.footer--navigation {
  display: flex;
  flex-direction: column;
  gap: 5.4166666667vw;
  margin-top: 1.6666666667vw;
}
@media (min-width: 119.9375em) {
  .footer--navigation {
    gap: 104px;
    margin-top: 32px;
  }
}
@media (max-width: 44.99em) {
  .footer--navigation {
    gap: 0;
    padding-bottom: 48px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
  }
}
.footer--navigation > .button--link {
  align-self: flex-end;
}
.footer--navigation > ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 44.99em) {
  .footer--navigation > ul {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.footer--navigation > ul > li > ul {
  display: flex;
  flex-direction: column;
}
.footer--navigation > ul > li > ul > li a {
  display: block;
  padding-top: 0.4166666667vw;
  padding-bottom: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .footer--navigation > ul > li > ul > li a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
@media (max-width: 44.99em) {
  .footer--navigation > ul > li > ul > li a {
    padding-top: 8px;
    padding-bottom: 8px;
  }
}
.footer--navigation > ul > li > ul, .footer--navigation > ul > li > p:not(:first-child) {
  margin-top: 0.9375vw;
  margin-bottom: 0.8333333333vw;
}
@media (min-width: 119.9375em) {
  .footer--navigation > ul > li > ul, .footer--navigation > ul > li > p:not(:first-child) {
    margin-top: 18px;
    margin-bottom: 16px;
  }
}
@media (max-width: 44.99em) {
  .footer--navigation > ul > li > ul, .footer--navigation > ul > li > p:not(:first-child) {
    margin-top: 12px;
    margin-bottom: 0;
  }
}

.social--navigation {
  padding-bottom: 1.25vw;
}
@media (min-width: 119.9375em) {
  .social--navigation {
    padding-bottom: 24px;
  }
}
@media (min-width: 45em) {
  .social--navigation {
    grid-column: span 2;
  }
}
.social--navigation ul {
  display: flex;
  gap: 1.25vw;
}
@media (min-width: 119.9375em) {
  .social--navigation ul {
    gap: 24px;
  }
}
@media (max-width: 44.99em) {
  .social--navigation ul {
    gap: 24px;
  }
}
.social--navigation a {
  width: 1.7708333333vw;
  height: 1.7708333333vw;
  max-width: 34px;
  max-height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 44.99em) {
  .social--navigation a {
    width: 34px;
    height: 34px;
  }
}

.footer--legal {
  padding: 0.4166666667vw 0;
  border-top: 1px solid var(--border-color);
}
@media (min-width: 119.9375em) {
  .footer--legal {
    padding: 8px 0;
  }
}
@media (max-width: 44.99em) {
  .footer--legal {
    padding: 32px 0;
    border: none;
  }
}
.footer--legal ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 44.99em) {
  .footer--legal ul {
    gap: 24px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
}

@media (max-width: 44.99em) {
  .cards--wrapper {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}
.cards--wrapper:not(:has(.card--horizontal)) {
  display: grid;
}
@media (min-width: 119.9375em) {
  .cards--wrapper:not(:has(.card--horizontal)) {
    gap: 20px;
    row-gap: 100px;
  }
}
@media (min-width: 45em) {
  .cards--wrapper:not(:has(.card--horizontal)) {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.0416666667vw;
    row-gap: 5.2083333333vw;
  }
}
.cards--wrapper.cards--wrapper-two {
  grid-template-columns: repeat(2, 1fr);
  gap: 6.4583333333vw;
}
@media (min-width: 119.9375em) {
  .cards--wrapper.cards--wrapper-two {
    gap: 124px;
  }
}
@media (max-width: 44.99em) {
  .cards--wrapper.cards--wrapper-two {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }
}
@media (min-width: 45em) {
  .cards--wrapper.cards--wrapper-two h2 {
    margin-bottom: 0.9375vw;
  }
}
@media (min-width: 89.9375em) {
  .cards--wrapper.cards--wrapper-two h2 {
    margin-bottom: 18px;
  }
}
@media (min-width: 45em) {
  .cards--wrapper.cards--wrapper-two .card {
    gap: 1.6666666667vw;
  }
}
@media (min-width: 89.9375em) {
  .cards--wrapper.cards--wrapper-two .card {
    gap: 32px;
  }
}
@media (min-width: 45em) {
  .cards--wrapper.cards--wrapper-two .card .card--content {
    padding-right: 2.8125vw;
  }
}
@media (min-width: 119.9375em) {
  .cards--wrapper.cards--wrapper-two .card .card--content {
    padding-right: 54px;
  }
}
@media (min-width: 45em) {
  .cards--wrapper.cards--wrapper-two .buttons--wrapper {
    margin-top: 0;
  }
}
@media (min-width: 45em) {
  .cards--wrapper.cards--wrapper-two .card--content {
    gap: 1.4583333333vw;
  }
}
@media (min-width: 119.9375em) {
  .cards--wrapper.cards--wrapper-two .card--content {
    gap: 28px;
  }
}
.cards--wrapper.cards--wrapper-four {
  grid-template-columns: repeat(4, 1fr);
  gap: 2.9166666667vw;
}
@media (min-width: 119.9375em) {
  .cards--wrapper.cards--wrapper-four {
    gap: 56px;
  }
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.3541666667vw;
}
@media (min-width: 119.9375em) {
  .card {
    gap: 26px;
  }
}
@media (max-width: 44.99em) {
  .card {
    gap: 16px;
  }
}
.card .buttons--wrapper {
  margin-top: auto;
}
.card .buttons--wrapper .button--link {
  padding: 14px 0;
}
.card:not(.card--horizontal) .media-image {
  flex: none;
}
.card img {
  scale: 1;
  transition: scale 0.3s;
}
.card img[src=""] {
  visibility: hidden;
}
@media (any-hover: hover) {
  .card:has(a:not(.button--action):hover) a:not(.button--action) {
    text-decoration: underline;
  }
  .card:has(a:not(.button--action):hover) h3, .card:has(a:not(.button--action):hover) h2 {
    text-decoration: underline;
  }
  .card:has(a:not(.button--action):hover, a:not(.button--action):focus-visible) img {
    scale: 1.01;
  }
}

.card--horizontal {
  display: flex;
  -moz-column-gap: 9.7916666667vw;
       column-gap: 9.7916666667vw;
}
@media (min-width: 45em) {
  .card--horizontal {
    align-items: center;
    flex-direction: row;
    -moz-column-gap: 188px;
         column-gap: 188px;
  }
  .card--horizontal:nth-child(odd) {
    flex-direction: row-reverse;
  }
}
.card--horizontal:not(:last-of-type) {
  margin-bottom: 6.4583333333vw;
}
@media (min-width: 119.9375em) {
  .card--horizontal:not(:last-of-type) {
    margin-bottom: 124px;
  }
}
@media (max-width: 44.99em) {
  .card--horizontal:not(:last-of-type) {
    margin-bottom: 52px;
  }
}
.card--horizontal > a, .card--horizontal .cards--content {
  flex: 1 1 0;
}
.card--horizontal .buttons--wrapper {
  margin-top: 0.2083333333vw;
}
@media (min-width: 119.9375em) {
  .card--horizontal .buttons--wrapper {
    margin-top: 4px;
  }
}
.card--horizontal .card--content {
  gap: 0.9375vw;
}
@media (min-width: 119.9375em) {
  .card--horizontal .card--content {
    gap: 18px;
  }
}
@media (max-width: 44.99em) {
  .card--horizontal .card--content {
    gap: 16px;
  }
}
.card--horizontal .card--content h2 {
  margin-bottom: 1.6666666667vw;
}
@media (min-width: 119.9375em) {
  .card--horizontal .card--content h2 {
    margin-bottom: 32px;
  }
}

.card--content {
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
  flex: 1;
}
@media (min-width: 119.9375em) {
  .card--content {
    gap: 24px;
  }
}
@media (max-width: 44.99em) {
  .card--content {
    gap: 16px;
  }
}
.card--content h2, .card--content h3 {
  margin-bottom: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .card--content h2, .card--content h3 {
    margin-bottom: 8px;
  }
}
@media (max-width: 44.99em) {
  .card--content h2, .card--content h3 {
    margin-bottom: 8px;
  }
}
.card--content p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-right: 1.6666666667vw;
}
@media (min-width: 119.9375em) {
  .card--content p {
    padding-right: 32px;
  }
}

.card--cut {
  padding: 2.1875vw 1.6666666667vw 1.9791666667vw 2.34375vw;
  background-color: var(--bg);
  clip-path: polygon(2.6041666667vw 0, 100% 0, 100% 100%, 0 100%, 0 2.6041666667vw);
}
@media (min-width: 119.9375em) {
  .card--cut {
    padding: 42px 32px 38px 45px;
    clip-path: polygon(50px 0, 100% 0, 100% 100%, 0 100%, 0 50px);
  }
}
@media (max-width: 44.99em) {
  .card--cut {
    padding: 24px 30px;
    clip-path: polygon(30px 0, 100% 0, 100% 100%, 0 100%, 0 30px);
  }
}

.section--masthead {
  padding-top: 2.6041666667vw;
  padding-bottom: 2.6041666667vw;
}
@media (min-width: 45em) {
  .section--masthead {
    height: 15.625vw;
  }
}
@media (min-width: 119.9375em) {
  .section--masthead {
    padding-top: 50px;
    padding-bottom: 50px;
    height: 300px;
  }
}
@media (max-width: 44.99em) {
  .section--masthead {
    padding-top: 12px;
  }
}
.section--masthead:has(.media-image) {
  background-color: black;
  padding-bottom: 0.8333333333vw;
}
@media (min-width: 119.9375em) {
  .section--masthead:has(.media-image) {
    padding-bottom: 16px;
  }
}
@media (max-width: 44.99em) {
  .section--masthead:has(.media-image) {
    padding-bottom: 16px;
    height: 300px;
  }
}
@media (max-width: 44.99em) {
  .section--masthead:not(:has(.media-image)) .main-breadcrumbs {
    margin-bottom: 44px;
  }
}
.section--masthead .media-image, .section--masthead .media-image:after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section--masthead .media-image {
  z-index: 1;
  background-color: black;
}
.section--masthead .media-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
.section--masthead .media-image:after {
  content: "";
  z-index: 2;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.3) 12.41%, rgba(0, 0, 0, 0) 57.93%), linear-gradient(0deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%), transparent 0px -464.5px/100% 435.045%;
}
.section--masthead .container, .section--masthead .masthead--content {
  z-index: 2;
  height: 100%;
}

.masthead--content {
  display: grid;
  grid-template-columns: 1fr 27.6041666667vw;
  grid-template-rows: auto 1fr;
  align-items: end;
}
@media (min-width: 119.9375em) {
  .masthead--content {
    grid-template-columns: 1fr 530px;
  }
}
@media (max-width: 44.99em) {
  .masthead--content {
    grid-template-columns: 1fr;
  }
}
.masthead--content.text--white .main-breadcrumbs ul > li:not(:first-child):before {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="3" height="6" viewBox="0 0 3 6" fill="none"> <path fill-rule="evenodd" clip-rule="evenodd" d="M2.56203 3.42736L0.437968 5.5L-1.86807e-08 5.07264L2.12406 3L-1.99876e-07 0.927364L0.437968 0.5L2.56203 2.57264L3 3L2.56203 3.42736Z" fill="white"/> </svg>') no-repeat center center;
}
.masthead--content .masthead--description {
  margin-top: 0.7291666667vw;
}
@media (min-width: 119.9375em) {
  .masthead--content .masthead--description {
    margin-top: 14px;
  }
}
@media (min-width: 45em) {
  .masthead--content .masthead--description {
    grid-column: span 2;
  }
}
@media (max-width: 44.99em) {
  .masthead--content .masthead--description {
    margin-top: 14px;
  }
}

@media (min-width: 45em) {
  .main-breadcrumbs {
    grid-column: span 2;
  }
}
.main-breadcrumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.main-breadcrumbs ul > li:not(:first-child):before {
  content: "";
  margin: 0 0.4166666667vw;
  display: inline-block;
  vertical-align: middle;
  width: 0.15625vw;
  height: 0.3125vw;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="3" height="6" viewBox="0 0 3 6" fill="none"> <path fill-rule="evenodd" clip-rule="evenodd" d="M2.56203 3.42736L0.437968 5.5L-1.86807e-08 5.07264L2.12406 3L-1.99876e-07 0.927364L0.437968 0.5L2.56203 2.57264L3 3L2.56203 3.42736Z" fill="%23232326"/> </svg>') no-repeat center center;
  background-size: contain;
  border: none;
}
@media (min-width: 119.9375em) {
  .main-breadcrumbs ul > li:not(:first-child):before {
    margin: 0 8px;
    width: 3px;
    height: 6px;
  }
}
@media (max-width: 44.99em) {
  .main-breadcrumbs ul > li:not(:first-child):before {
    margin: 0 8px;
    width: 3px;
    height: 6px;
  }
}
.masthead--filters {
  grid-column: span 2;
  padding: 2.1875vw 0;
}
@media (min-width: 89.9375em) {
  .masthead--filters {
    padding: 42px 0;
  }
}
@media (max-width: 44.99em) {
  .masthead--filters {
    padding: 18px 0;
  }
}
.masthead--filters ul {
  display: flex;
  align-items: center;
  gap: 0.9375vw;
}
@media (min-width: 89.9375em) {
  .masthead--filters ul {
    gap: 18px;
  }
}
@media (max-width: 44.99em) {
  .masthead--filters ul {
    gap: 18px;
  }
}

.pagination-block {
  margin-top: 6.4583333333vw;
}
@media (min-width: 119.9375em) {
  .pagination-block {
    margin-top: 124px;
  }
}
@media (max-width: 44.99em) {
  .pagination-block {
    margin-top: 74px;
  }
}
.pagination-block ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7291666667vw;
}
@media (min-width: 119.9375em) {
  .pagination-block ul {
    gap: 14px;
  }
}
@media (min-width: 119.9375em) {
  .pagination-block ul {
    gap: 12px;
  }
}
.pagination-block ul li.current, .pagination-block ul li:hover {
  border: 1px solid var(--border-color);
}
.pagination-block ul li.btn {
  width: 3.125vw;
  max-width: 60px;
}
@media (max-width: 44.99em) {
  .pagination-block ul li.btn {
    width: 58px;
  }
}
.pagination-block ul li, .pagination-block ul a {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.0833333333vw;
  height: 2.0833333333vw;
  max-width: 40px;
  max-height: 40px;
}
@media (max-width: 44.99em) {
  .pagination-block ul li, .pagination-block ul a {
    width: 40px;
    height: 40px;
  }
}

form input {
  -webkit-appearance: none;
  border: none;
  margin: 0;
  padding: 0;
  background-color: transparent;
  box-sizing: border-box;
}
form fieldset legend.hidden {
  position: absolute;
  left: -100%;
}
form fieldset.fieldset--grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9375vw;
}
@media (min-width: 119.9375em) {
  form fieldset.fieldset--grid {
    gap: 18px;
  }
}
@media (max-width: 44.99em) {
  form fieldset.fieldset--grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
@media (min-width: 45em) {
  form fieldset.fieldset--grid > .full {
    grid-column: span 2;
  }
}
form fieldset.fieldset--radio {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 1.1458333333vw;
       column-gap: 1.1458333333vw;
  row-gap: 0.7291666667vw;
}
@media (min-width: 119.9375em) {
  form fieldset.fieldset--radio {
    row-gap: 14px;
    -moz-column-gap: 22px;
         column-gap: 22px;
  }
}
@media (max-width: 44.99em) {
  form fieldset.fieldset--radio {
    row-gap: 12px;
    -moz-column-gap: 22px;
         column-gap: 22px;
  }
}
form fieldset.fieldset--radio[data-legend] {
  border: 0.8px solid var(--border-color-light);
  padding: 0.7291666667vw;
}
@media (min-width: 119.9375em) {
  form fieldset.fieldset--radio[data-legend] {
    padding: 14px;
  }
}
@media (max-width: 44.99em) {
  form fieldset.fieldset--radio[data-legend] {
    padding: 14px;
  }
}
form fieldset.fieldset--radio[data-legend]:before {
  line-height: 1.2;
  flex: 100%;
  content: attr(data-legend);
}
form:not(.form--search) button[type=submit] span:last-child {
  display: none;
}
form:not(.form--search) button[type=submit] span:last-child svg {
  width: 1.5625vw;
  max-width: 30px;
  height: auto;
}
form:not(.form--search) button[type=submit]:not(.dark) svg:last-child {
  filter: invert(1);
}
form:not(.form--search) fieldset:not(:last-child) {
  margin-bottom: 0.625vw;
}
@media (min-width: 119.9375em) {
  form:not(.form--search) fieldset:not(:last-child) {
    margin-bottom: 12px;
  }
}
@media (max-width: 44.99em) {
  form:not(.form--search) fieldset:not(:last-child) {
    margin-bottom: 12px;
  }
}
form:not(.form--search, .form--newsletter) fieldset:not(:last-child) {
  margin-bottom: 0.9375vw;
}
@media (min-width: 119.9375em) {
  form:not(.form--search, .form--newsletter) fieldset:not(:last-child) {
    margin-bottom: 18px;
  }
}
@media (max-width: 44.99em) {
  form:not(.form--search, .form--newsletter) fieldset:not(:last-child) {
    margin-bottom: 18px;
  }
}
form.form--sending button[type=submit] {
  pointer-events: none;
}
form.form--sending button[type=submit] span:first-child, form.form--sending button[type=submit] svg:not(:last-child) {
  display: none;
}
form.form--sending button[type=submit] span:last-child {
  display: block;
}

.select--wrapper, .input--wrapper {
  position: relative;
  border: 0.8px solid var(--border-color-light);
}
.select--wrapper label, .input--wrapper label {
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  line-height: 1;
  display: flex;
  align-items: center;
}
.select--wrapper:has(textarea) label, .input--wrapper:has(textarea) label {
  align-items: flex-start;
}
.select--wrapper input, .select--wrapper label, .select--wrapper select, .select--wrapper textarea, .input--wrapper input, .input--wrapper label, .input--wrapper select, .input--wrapper textarea {
  padding: 0.7291666667vw 0.625vw;
  transition: all 0.3s;
}
@media (min-width: 119.9375em) {
  .select--wrapper input, .select--wrapper label, .select--wrapper select, .select--wrapper textarea, .input--wrapper input, .input--wrapper label, .input--wrapper select, .input--wrapper textarea {
    padding: 14px 12px;
  }
}
@media (max-width: 44.99em) {
  .select--wrapper input, .select--wrapper label, .select--wrapper select, .select--wrapper textarea, .input--wrapper input, .input--wrapper label, .input--wrapper select, .input--wrapper textarea {
    padding: 14px 12px;
  }
}
.select--wrapper:has([required]) label:after, .input--wrapper:has([required]) label:after {
  content: "*";
}
.select--wrapper input, .select--wrapper select, .select--wrapper textarea, .input--wrapper input, .input--wrapper select, .input--wrapper textarea {
  width: 100%;
}
.select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) label, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) label {
  height: auto;
  padding-top: 0.3125vw;
  pointer-events: none;
}
@media (min-width: 119.9375em) {
  .select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) label, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) label {
    padding-top: 6px;
  }
}
@media (max-width: 44.99em) {
  .select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) label, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) label {
    padding-top: 6px;
  }
}
.select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) input, .select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) select, .select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) textarea, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) input, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) select, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) textarea {
  padding-top: 1.0416666667vw;
  padding-bottom: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) input, .select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) select, .select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) textarea, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) input, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) select, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) textarea {
    padding-top: 20px;
    padding-bottom: 8px;
  }
}
@media (max-width: 44.99em) {
  .select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) input, .select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) select, .select--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) textarea, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) input, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) select, .input--wrapper:has(input:focus, input:focus-visible, textarea:focus, textarea:focus-visible, select:focus, select:focus-visible, input.edited, select.edited, textarea.edited) textarea {
    padding-top: 20px;
    padding-bottom: 8px;
  }
}
.select--wrapper textarea, .input--wrapper textarea {
  -webkit-appearance: none;
  border: none;
  resize: none;
  height: 100%;
  box-sizing: border-box;
}
.select--wrapper:has(.input--error), .input--wrapper:has(.input--error) {
  border-color: tomato;
}
.select--wrapper:has(.input--error) *, .input--wrapper:has(.input--error) * {
  color: tomato;
}
.select--wrapper .error--message, .input--wrapper .error--message {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.radio--wrapper {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 0.3125vw;
}
@media (min-width: 119.9375em) {
  .radio--wrapper {
    gap: 6px;
  }
}
@media (max-width: 44.99em) {
  .radio--wrapper {
    gap: 6px;
  }
}
.radio--wrapper input {
  width: 0.625vw;
  height: 0.625vw;
  border: 0.8px solid var(--border-color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}
@media (min-width: 45em) {
  .radio--wrapper input {
    max-width: 12px;
    max-height: 12px;
  }
}
@media (max-width: 44.99em) {
  .radio--wrapper input {
    width: 12px;
    height: 12px;
  }
}
.radio--wrapper input:checked {
  border: 0.15625vw solid var(--neutral-700);
}
@media (max-width: 44.99em) {
  .radio--wrapper input:checked {
    border: 3px solid var(--neutral-700);
  }
}
.radio--wrapper > * {
  cursor: pointer;
}

.select--wrapper {
  position: relative;
  border: 0.8px solid var(--border-color-light);
  background-size: 0.5729166667vw 0.3645833333vw;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="11" height="7" viewBox="0 0 11 7" fill="none"> <path d="M9.26625 0L5.25 4.0075L1.23375 0L0 1.23375L5.25 6.48375L10.5 1.23375L9.26625 0Z" fill="%23232326"/> </svg>') no-repeat calc(100% - 0.625vw) center;
}
@media (min-width: 119.9375em) {
  .select--wrapper {
    background-size: 11px 7px;
    background-position: calc(100% - 12px) center;
  }
}
@media (max-width: 44.99em) {
  .select--wrapper {
    background-size: 11px 7px;
    background-position: calc(100% - 12px) center;
  }
}
.select--wrapper select {
  padding-right: 2.1875vw;
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
  background-color: transparent;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 119.9375em) {
  .select--wrapper select {
    padding-right: 42px;
  }
}
@media (max-width: 44.99em) {
  .select--wrapper select {
    padding-right: 42px;
  }
}
.select--wrapper label {
  pointer-events: none;
}

.contact--message {
  margin: 1.5625vw 0;
}
@media (min-width: 119.9375em) {
  .contact--message {
    margin: 30px 0;
  }
}
.contact--message:empty {
  display: none;
}

.newsletter--popin {
  position: fixed;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
  padding: 1.3020833333vw 2.34375vw 2.34375vw;
  background-color: var(--bg);
}
@media (min-width: 119.9375em) {
  .newsletter--popin {
    padding: 25px 45px 45px;
    gap: 12px;
  }
}
@media (max-width: 44.99em) {
  .newsletter--popin {
    padding: 20px;
    gap: 12px;
    width: 90vw;
  }
}
.newsletter--popin .button--close {
  align-self: flex-end;
}

.form--newsletter {
  margin-top: 1.6666666667vw;
}
@media (min-width: 119.9375em) {
  .form--newsletter {
    margin-top: 32px;
  }
}
@media (max-width: 44.99em) {
  .form--newsletter {
    margin-top: 22px;
  }
}

fieldset:has(.search--wrapper) {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 0.5208333333vw;
}
@media (min-width: 119.9375em) {
  fieldset:has(.search--wrapper) {
    gap: 10px;
  }
}
@media (max-width: 44.99em) {
  fieldset:has(.search--wrapper) {
    gap: 10px;
  }
}
fieldset:has(.search--wrapper) button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  fieldset:has(.search--wrapper) button {
    gap: 8px;
  }
}
@media (max-width: 44.99em) {
  fieldset:has(.search--wrapper) button {
    gap: 8px;
  }
}
@media (max-width: 44.99em) {
  fieldset:has(.search--wrapper) button {
    font-size: 10px;
  }
}
fieldset:has(.search--wrapper) button[type=reset] {
  order: -1;
}
fieldset:has(.search--wrapper):has(input[name=s]:-moz-placeholder-shown, input[name=brands_search]:-moz-placeholder-shown) [type=reset] {
  display: none !important;
}
fieldset:has(.search--wrapper):has(input[name=s]:placeholder-shown, input[name=brands_search]:placeholder-shown) [type=reset] {
  display: none !important;
}

.form--search {
  display: flex;
  align-items: center;
}
.form--search fieldset:first-of-type {
  flex: 1;
  background-color: var(--bg-grey);
  padding: 1.1458333333vw 1.0416666667vw;
}
@media (min-width: 119.9375em) {
  .form--search fieldset:first-of-type {
    padding: 22px 20px;
  }
}
@media (max-width: 44.99em) {
  .form--search fieldset:first-of-type {
    padding: 12px 8px;
  }
}
.form--search:not([data-search]) {
  align-items: stretch;
}
.form--search:not([data-search]) [type=submit] {
  height: 100%;
}
@media (max-width: 44.99em) {
  .form--search[data-search] {
    order: 9;
  }
}
.form--search[data-search] fieldset {
  padding: 0.625vw 1.0416666667vw;
}
@media (min-width: 119.9375em) {
  .form--search[data-search] fieldset {
    padding: 12px 20px;
  }
}
@media (max-width: 44.99em) {
  .form--search[data-search] fieldset {
    padding: 12px 20px;
  }
  .form--search[data-search] fieldset:first-of-type {
    margin-top: 12px;
  }
}
.form--search.form--searching .search--icons svg:not(:first-child) {
  visibility: visible;
}
.form--search.form--searching .search--icons svg:first-child {
  visibility: hidden;
}

.search--wrapper {
  align-self: stretch;
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0.5208333333vw;
}
@media (min-width: 119.9375em) {
  .search--wrapper {
    gap: 10px;
  }
}
@media (max-width: 44.99em) {
  .search--wrapper {
    gap: 10px;
  }
}
.search--wrapper label {
  font-size: 0;
  order: 2;
}
.search--wrapper input {
  height: 1.0416666667vw;
  width: 100%;
}
@media (min-width: 119.9375em) {
  .search--wrapper input {
    height: 20px;
  }
}
@media (max-width: 44.99em) {
  .search--wrapper input {
    height: 20px;
    font-size: calc(10px * var(--offset));
  }
}

.search--icons {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}
.search--icons svg {
  grid-column: 1/2;
  grid-row: 1/2;
}
.search--icons svg:not(:first-child) {
  visibility: hidden;
}

body:has(.header--search.toggled) {
  overflow: hidden;
}

.header--search {
  padding-top: 12.0833333333vw;
  padding-bottom: 0.625vw;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  border-top: 0.8px solid var(--header-border-color);
  border-bottom: 0.8px solid var(--header-border-color);
  z-index: 3;
  background-color: var(--bg);
}
@media (min-width: 119.9375em) {
  .header--search {
    padding-top: 232px;
    padding-bottom: 12px;
  }
}
@media (max-width: 44.99em) {
  .header--search {
    padding-top: 94px;
    padding-bottom: 12px;
  }
}
.header--search .button--close {
  position: absolute;
  top: 1.3020833333vw;
  right: 1.3020833333vw;
}
@media (min-width: 119.9375em) {
  .header--search .button--close {
    top: 25px;
    right: 25px;
  }
}
@media (max-width: 44.99em) {
  .header--search .button--close {
    top: 25px;
    right: 25px;
  }
}

.header-search--wrapper {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr min-content;
  row-gap: 3.125vw;
}
@media (min-width: 45em) {
  .header-search--wrapper {
    grid-template-rows: auto 1fr;
  }
}
@media (min-width: 119.9375em) {
  .header-search--wrapper {
    row-gap: 60px;
  }
}
@media (max-width: 44.99em) {
  .header-search--wrapper {
    grid-template-columns: 1fr;
    row-gap: 42px;
  }
}
@media (min-width: 45em) {
  .header-search--wrapper.container {
    margin: 0 auto;
    width: 100%;
    max-width: 62.5vw;
  }
}
@media (min-width: 119.9375em) {
  .header-search--wrapper.container {
    max-width: 1200px;
  }
}
@media (min-width: 45em) {
  .header-search--wrapper form, .header-search--wrapper .search--latest {
    grid-column: span 2;
  }
}
.header-search--wrapper:has(.search--result ul:not(:empty)) .search--popular, .header-search--wrapper:has(.search--result ul:not(:empty)) .search--latest {
  display: none;
}

.search--latest:has(ul:empty) {
  display: none;
}
.search--latest ul {
  padding-top: 1.1458333333vw;
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .search--latest ul {
    padding-top: 22px;
    gap: 8px;
  }
}
.search--result, .search--featured, .search--popular {
  flex: none;
  display: flex;
  flex-direction: column;
  gap: 1.25vw;
}
@media (min-width: 119.9375em) {
  .search--result, .search--featured, .search--popular {
    gap: 24px;
  }
}
@media (max-width: 44.99em) {
  .search--result, .search--featured, .search--popular {
    gap: 12px;
  }
}

.search--results ul {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
  font-family: var(--font-inter);
  font-weight: 400;
}
@media (min-width: 119.9375em) {
  .search--results ul {
    gap: 12px;
  }
}
@media (max-width: 44.99em) {
  .search--results ul {
    gap: 4px;
  }
}
.search--results ul a {
  line-height: 1.85;
}

.search--result ul li {
  color: var(--grey-500);
}
.search--result ul li .highlight {
  color: var(--neutral-700);
}
.search--result:has(ul:empty) {
  display: none;
}
.search--result .tag {
  margin-left: 0.8333333333vw;
  padding: 0.15625vw;
  background-color: var(--neutral-700);
  color: var(--bg);
}
@media (min-width: 119.9375em) {
  .search--result .tag {
    margin-left: 16px;
    padding: 3px;
  }
}

@media (max-width: 44.99em) {
  .search--featured [data-swiper] {
    width: calc(100vw - 40px);
    overflow: visible;
  }
}
.search--featured ul {
  display: flex;
  gap: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .search--featured ul {
    gap: 8px;
  }
}
@media (max-width: 44.99em) {
  .search--featured ul {
    gap: 0;
  }
}
.search--featured ul li {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
}
@media (min-width: 119.9375em) {
  .search--featured ul li {
    gap: 12px;
  }
}
@media (max-width: 44.99em) {
  .search--featured ul li {
    gap: 12px;
    margin-right: 8px;
  }
}
.search--featured ul li .media-image {
  width: 10.8333333333vw;
  height: 9.7916666667vw;
  max-width: 208px;
  max-height: 188px;
}
@media (max-width: 44.99em) {
  .search--featured ul li .media-image {
    width: 168px;
    height: 152px;
  }
}

.search--title {
  display: flex;
  align-items: center;
  gap: 1.4583333333vw;
}
@media (min-width: 119.9375em) {
  .search--title {
    gap: 28px;
  }
}
@media (max-width: 44.99em) {
  .search--title {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

.section--search.section {
  padding-top: 1.9791666667vw;
}
@media (min-width: 119.9375em) {
  .section--search.section {
    padding-top: 38px;
  }
}
@media (max-width: 44.99em) {
  .section--search.section {
    padding-top: 44px;
  }
}
@media (min-width: 45em) {
  .section--search .container {
    max-width: 60.4166666667vw;
  }
}
@media (min-width: 119.9375em) {
  .section--search .container {
    max-width: 1160px;
  }
}
@media (max-width: 44.99em) {
  .section--search .text--bigger {
    font-size: 14px;
  }
}

.section--search-feature .section--title {
  margin-bottom: 1.25vw;
}
@media (min-width: 119.9375em) {
  .section--search-feature .section--title {
    margin-bottom: 24px;
  }
}
@media (max-width: 44.99em) {
  .section--search-feature .section--title {
    margin-bottom: 24px;
  }
}
@media (min-width: 45em) {
  .section--search-feature .swiper-wrapper {
    display: contents;
  }
}
@media (max-width: 44.99em) {
  .section--search-feature {
    overflow: hidden;
  }
  .section--search-feature [data-swiper] {
    overflow: visible;
  }
  .section--search-feature .swiper-slide {
    width: 168px;
    gap: 12px;
  }
  .section--search-feature .swiper-slide:not(:last-child) {
    margin-right: 8px;
  }
}

.search--item {
  position: relative;
  display: grid;
  align-items: center;
  -moz-column-gap: 1.6666666667vw;
       column-gap: 1.6666666667vw;
  row-gap: 0.625vw;
  grid-template-columns: 3.3854166667vw 1fr auto;
  grid-template-rows: auto auto;
  padding-bottom: 1.9791666667vw;
}
.search--item:not(:first-child) {
  padding-top: 1.9791666667vw;
}
@media (min-width: 119.9375em) {
  .search--item:not(:first-child) {
    padding-top: 38px;
  }
}
@media (max-width: 44.99em) {
  .search--item:not(:first-child) {
    padding-top: 22px;
  }
}
@media (min-width: 119.9375em) {
  .search--item {
    padding-bottom: 38px;
    -moz-column-gap: 32px;
         column-gap: 32px;
    row-gap: 12px;
  }
}
@media (max-width: 44.99em) {
  .search--item {
    padding-bottom: 22px;
    -moz-column-gap: 32px;
         column-gap: 32px;
    row-gap: 12px;
    grid-template-columns: 1fr auto;
  }
}
.search--item .media-image {
  width: 3.3854166667vw;
  height: 3.3854166667vw;
  max-width: 65px;
  max-height: 65px;
  grid-row: 1/3;
  grid-column: 1/2;
}
.search--item .tag {
  grid-row: 1/2;
  grid-column: 2/3;
}
@media (max-width: 44.99em) {
  .search--item .tag {
    grid-column: 1/2;
  }
}
.search--item h2 {
  grid-row: 2/3;
  grid-column: 2/3;
}
@media (max-width: 44.99em) {
  .search--item h2 {
    grid-column: 1/2;
  }
}
.search--item svg {
  grid-row: 1/3;
  grid-column: 3/4;
}
@media (max-width: 44.99em) {
  .search--item svg {
    grid-column: 2/3;
    width: 16px;
  }
}
.search--item img {
  scale: 1;
  transition: scale 0.3s;
}
@media (any-hover: hover) {
  .search--item:hover h2 {
    text-decoration: underline;
  }
  .search--item:hover .media-image img {
    scale: 1.03;
  }
}

.navigation--quick-access {
  position: fixed;
  bottom: 0;
  top: 0;
  right: 0;
}

.page .section--masthead:not(:has(h1)) .main-breadcrumbs, .post-template-default .section--masthead:not(:has(h1)) .main-breadcrumbs {
  margin-bottom: 6.6666666667vw;
}
@media (min-width: 119.9375em) {
  .page .section--masthead:not(:has(h1)) .main-breadcrumbs, .post-template-default .section--masthead:not(:has(h1)) .main-breadcrumbs {
    margin-bottom: 128px;
  }
}

@media (min-width: 45em) {
  .page--wrapper {
    width: 53.125vw;
    max-width: 1020px;
    margin: 0 auto;
  }
}

.page--title {
  margin-bottom: 3.3333333333vw;
}
@media (min-width: 119.9375em) {
  .page--title {
    margin-bottom: 64px;
  }
}
@media (max-width: 44.99em) {
  .page--title {
    margin-bottom: 32px;
  }
}

@media (max-width: 44.99em) {
  .section--store-floors .container {
    max-width: 100vw;
  }
}
@media (max-width: 44.99em) {
  .section--store-floors figure {
    padding-bottom: 20px;
    height: 70dvh;
    width: auto;
    max-width: initial;
    overflow: scroll;
  }
  .section--store-floors figure img {
    height: 100%;
    max-width: initial;
    width: auto;
  }
}
@media (max-width: 44.99em) {
  .section.section--archive {
    padding-top: 18px;
  }
}

@media (max-width: 44.99em) {
  .cat--filter {
    overflow: scroll;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 18px;
  }
  .cat--filter li > a {
    flex: none;
    padding: 12px 16px;
  }
}

:root {
  --wp--style--gallery-gap-default: 20px;
}

.single--wrapper:not(.fullsize) {
  display: grid;
  grid-template-columns: 19.7916666667vw 1fr;
  grid-template-rows: auto auto;
  -moz-column-gap: 8.75vw;
       column-gap: 8.75vw;
  padding-right: 5.2083333333vw;
}
@media (min-width: 119.9375em) {
  .single--wrapper:not(.fullsize) {
    grid-template-columns: 380px 1fr;
    -moz-column-gap: 168px;
         column-gap: 168px;
    padding-right: 100px;
  }
}
@media (max-width: 44.99em) {
  .single--wrapper:not(.fullsize) {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-right: 0;
  }
}
.single--wrapper h1 {
  grid-column: 2/3;
}
@media (max-width: 44.99em) {
  .single--wrapper h1 {
    grid-column: span 1;
    order: -1;
    margin-bottom: 76px;
  }
}
.single--wrapper:has(h1) .article-body {
  margin-top: 1.1458333333vw;
}
@media (min-width: 119.9375em) {
  .single--wrapper:has(h1) .article-body {
    margin-top: 22px;
  }
}

@media (min-width: 45em) {
  .single--aside {
    grid-row: 1/3;
  }
}
.single--aside .store--infos {
  margin-top: 1.25vw;
  margin-bottom: 2.7083333333vw;
  gap: 1.1458333333vw;
}
@media (min-width: 119.9375em) {
  .single--aside .store--infos {
    margin-top: 24px;
    margin-bottom: 52px;
    gap: 22px;
  }
}
@media (max-width: 44.99em) {
  .single--aside .store--infos {
    margin-top: 0;
    margin-bottom: 24px;
    gap: 12px;
  }
}
@media (max-width: 44.99em) {
  .single--aside h2 + .store--infos {
    margin-top: 24px;
  }
}

.aside--wrapper {
  padding-top: 0.5208333333vw;
  position: sticky;
  top: var(--header-height);
  z-index: 2;
}
@media (min-width: 119.9375em) {
  .aside--wrapper {
    padding-top: 10px;
  }
}
@media (max-width: 44.99em) {
  .aside--wrapper {
    margin-bottom: 44px;
  }
}
@media (max-width: 44.99em) {
  .aside--wrapper .buttons--wrapper {
    align-items: stretch;
  }
  .aside--wrapper .buttons--wrapper > * {
    flex: 1;
  }
}

.article-body > *:not(:last-child) {
  margin-bottom: 2.2916666667vw;
}
@media (min-width: 119.9375em) {
  .article-body > *:not(:last-child) {
    margin-bottom: 44px;
  }
}
@media (max-width: 44.99em) {
  .article-body > *:not(:last-child) {
    margin-bottom: 32px;
  }
}
.article-body h2:not(:last-child), .article-body .h2:not(:last-child) {
  margin-bottom: 0.9375vw;
}
@media (min-width: 119.9375em) {
  .article-body h2:not(:last-child), .article-body .h2:not(:last-child) {
    margin-bottom: 18px;
  }
}
@media (max-width: 44.99em) {
  .article-body h2:not(:last-child), .article-body .h2:not(:last-child) {
    margin-bottom: 18px;
  }
}
.article-body h2:not(:first-child), .article-body .h2:not(:first-child) {
  margin-top: 0.9375vw;
}
@media (min-width: 119.9375em) {
  .article-body h2:not(:first-child), .article-body .h2:not(:first-child) {
    margin-top: 18px;
  }
}
@media (max-width: 44.99em) {
  .article-body h2:not(:first-child), .article-body .h2:not(:first-child) {
    margin-top: 18px;
  }
}
.article-body > ul {
  list-style: disc inside;
}
.article-body p strong {
  color: var(--neutral-700);
}
.article-body > p {
  padding-right: 3.2291666667vw;
}
@media (min-width: 119.9375em) {
  .article-body > p {
    padding-right: 62px;
  }
}
@media (max-width: 44.99em) {
  .article-body > p {
    padding-right: 0;
  }
}
.article-body img {
  pointer-events: none;
}
.article-body .wp-block-image {
  position: relative;
}
.article-body .wp-block-list {
  list-style: disc outside;
  padding-left: 0.78125vw;
  margin-top: 0.2083333333vw;
}
@media (min-width: 119.9375em) {
  .article-body .wp-block-list {
    padding-left: 15px;
    margin-top: 4px;
  }
}
@media (max-width: 44.99em) {
  .article-body .wp-block-list {
    padding-left: 15px;
    margin-top: 6px;
  }
}
.article-body > .wp-block-gallery.has-nested-images {
  position: relative;
}
@media (max-width: 44.99em) {
  .article-body > .wp-block-gallery.has-nested-images {
    --wp--style--gallery-gap-default: 8px;
  }
}
.article-body > .wp-block-gallery.has-nested-images:has(figcaption) {
  padding-bottom: 1.5625vw;
}
@media (min-width: 119.9375em) {
  .article-body > .wp-block-gallery.has-nested-images:has(figcaption) {
    padding-bottom: 30px;
  }
}
.article-body > .wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  flex: none;
}
.article-body > .wp-block-gallery.has-nested-images figcaption {
  position: absolute;
  text-align: left;
  bottom: 0;
  left: 0;
}
.article-body .wp-element-caption, .article-body .wp-block-gallery.has-nested-images figure.wp-block-image figcaption {
  position: relative;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  background: none;
  text-shadow: none;
}
.article-body .wp-block-button__link {
  padding: 0 1.0416666667vw 0 0;
  background-size: 0.5208333333vw 0.4166666667vw;
  background: var(--bg) url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="8" viewBox="0 0 10 8" fill="none"> <path d="M1.3125 4L8.96875 4" stroke="%23171717" stroke-width="0.875" stroke-linecap="round" stroke-linejoin="round"/> <path d="M6.125 7.0625L9.1875 4L6.125 0.9375" stroke="%23171717" stroke-width="0.875" stroke-linecap="round" stroke-linejoin="round"/> </svg>') no-repeat center right;
  color: var(--neutral-700);
}
@media (min-width: 119.9375em) {
  .article-body .wp-block-button__link {
    padding: 0 20px 0 0;
    background-size: 10px 8px;
  }
}
@media (max-width: 44.99em) {
  .article-body .wp-block-button__link {
    padding: 0 20px 0 0;
    background-size: 10px 8px;
  }
}
.article-body .block-custom-booking {
  padding: 1.5625vw;
  border: 0.8px solid var(--border-color-light);
  border-radius: 0.625vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-booking {
    padding: 30px;
    border-radius: 12px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-booking {
    padding: 24px;
    border-radius: 12px;
  }
}
.article-body .block-custom-booking h2:not(:first-child) {
  margin-top: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-booking h2:not(:first-child) {
    margin-top: 8px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-booking h2:not(:first-child) {
    margin-top: 8px;
  }
}
.article-body .block-custom-booking .tag {
  color: var(--neutral-700);
}
.article-body .block-custom-booking > .wp-block-columns {
  box-shadow: 0.2083333333vw 0.2083333333vw 0.3125vw 0 rgba(190, 190, 190, 0.05);
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-booking > .wp-block-columns {
    box-shadow: 4px 4px 6px 0 rgba(190, 190, 190, 0.05);
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-booking > .wp-block-columns {
    box-shadow: 4px 4px 6px 0 rgba(190, 190, 190, 0.05);
  }
}
.article-body .block-custom-booking > .wp-block-columns:not(:last-child) {
  padding-bottom: 1.25vw;
  margin-bottom: 1.25vw;
  border-bottom: 0.8px solid var(--border-color-light);
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-booking > .wp-block-columns:not(:last-child) {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-booking > .wp-block-columns:not(:last-child) {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }
}
.article-body .block-custom-booking > .wp-block-columns .wp-block-columns {
  margin: 0;
  align-items: center !important;
  gap: 1.0416666667vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-booking > .wp-block-columns .wp-block-columns {
    gap: 20px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-booking > .wp-block-columns .wp-block-columns {
    gap: 20px;
  }
}
.article-body .block-custom-booking > .wp-block-columns .wp-block-columns:not(:last-child) {
  margin-bottom: 1.25vw;
  padding-bottom: 1.25vw;
  border-bottom: 0.8px solid var(--border-color-light);
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-booking > .wp-block-columns .wp-block-columns:not(:last-child) {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-booking > .wp-block-columns .wp-block-columns:not(:last-child) {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }
}
.article-body .block-custom-booking > .wp-block-columns .wp-block-columns .wp-block-column:has(img) {
  flex: none;
  flex-basis: 6.4583333333vw !important;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-booking > .wp-block-columns .wp-block-columns .wp-block-column:has(img) {
    flex-basis: 124px !important;
  }
}
.article-body .block-custom-booking > .wp-block-columns .wp-block-columns .wp-block-column:not(:has(img)) {
  flex: 1 !important;
}
@media (max-width: 44.99em) {
  .article-body .block-custom-booking .wp-block-column:has(> .wp-block-image) {
    display: none;
  }
}
.article-body .block-custom-booking .wp-block-image img {
  width: 6.4583333333vw;
  aspect-ratio: 1/1;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-booking .wp-block-image img {
    width: 124px;
  }
}
.article-body .block-custom-booking p.address {
  background-size: 0.5208333333vw 0.625vw;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="10" height="12" viewBox="0 0 13 15" fill="none"> <path fill-rule="evenodd" clip-rule="evenodd" d="M9.24797 6.41195C9.24797 7.0799 8.98263 7.7205 8.51032 8.19281C8.038 8.66513 7.39741 8.93047 6.72946 8.93047C6.0615 8.93047 5.42091 8.66513 4.94859 8.19281C4.47628 7.7205 4.21094 7.0799 4.21094 6.41195C4.21094 5.744 4.47628 5.1034 4.94859 4.63109C5.42091 4.15878 6.0615 3.89343 6.72946 3.89343C7.39741 3.89343 8.038 4.15878 8.51032 4.63109C8.98263 5.1034 9.24797 5.744 9.24797 6.41195ZM7.98871 6.41195C7.98871 6.74593 7.85604 7.06622 7.61989 7.30238C7.38373 7.53854 7.06343 7.67121 6.72946 7.67121C6.39548 7.67121 6.07518 7.53854 5.83902 7.30238C5.60287 7.06622 5.4702 6.74593 5.4702 6.41195C5.4702 6.07797 5.60287 5.75768 5.83902 5.52152C6.07518 5.28536 6.39548 5.15269 6.72946 5.15269C7.06343 5.15269 7.38373 5.28536 7.61989 5.52152C7.85604 5.75768 7.98871 6.07797 7.98871 6.41195Z" fill="%23969696"/> <path fill-rule="evenodd" clip-rule="evenodd" d="M2.64981 10.3446C1.83812 9.5718 1.27382 8.57563 1.02829 7.48209C0.78275 6.38855 0.867001 5.24676 1.27038 4.20111C1.67377 3.15545 2.37816 2.2529 3.2945 1.60758C4.21084 0.962255 5.29796 0.603152 6.41838 0.575678C7.53881 0.548204 8.64222 0.853594 9.58909 1.45323C10.536 2.05286 11.2837 2.91981 11.7379 3.94444C12.192 4.96907 12.3321 6.10536 12.1405 7.20961C11.9489 8.31387 11.4341 9.3365 10.6612 10.1482L6.75374 14.2521L2.64981 10.3446ZM9.74951 9.27992L6.71029 12.4721L3.51807 9.43292C2.88678 8.83183 2.44791 8.05705 2.25695 7.20654C2.06599 6.35603 2.13152 5.46799 2.44525 4.65472C2.75899 3.84145 3.30683 3.13948 4.01951 2.63756C4.73219 2.13564 5.5777 1.85633 6.44912 1.83493C7.32054 1.81353 8.17874 2.05102 8.91519 2.51736C9.65164 2.98369 10.2333 3.65794 10.5865 4.45483C10.9398 5.25172 11.0488 6.13547 10.8999 6.99433C10.7509 7.85319 10.3505 8.64858 9.74951 9.27992Z" fill="%23969696"/> </svg>') no-repeat center left;
  padding-left: 1.0416666667vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-booking p.address {
    background-size: 13px 15px;
    padding-left: 20px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-booking p.address {
    background-size: 13px 15px;
    padding-left: 20px;
  }
}
.article-body .booking--infos {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .article-body .booking--infos {
    gap: 8px;
  }
}
@media (max-width: 44.99em) {
  .article-body .booking--infos {
    gap: 8px;
  }
}
.article-body .booking--infos > li {
  display: flex;
  align-items: center;
  gap: 0.2083333333vw;
}
@media (min-width: 119.9375em) {
  .article-body .booking--infos > li {
    gap: 4px;
  }
}
@media (max-width: 44.99em) {
  .article-body .booking--infos > li {
    gap: 4px;
  }
}
.article-body .booking--infos > li:not(:first-child):before {
  content: "";
  width: 0.15625vw;
  height: 0.15625vw;
  border-radius: 999px;
  background-color: var(--neutral-700);
  margin-right: 0.2083333333vw;
}
@media (min-width: 119.9375em) {
  .article-body .booking--infos > li:not(:first-child):before {
    width: 3px;
    height: 3px;
    margin-right: 4px;
  }
}
@media (max-width: 44.99em) {
  .article-body .booking--infos > li:not(:first-child):before {
    width: 3px;
    height: 3px;
    margin-right: 4px;
  }
}
.article-body .block-custom-triptyque {
  background-color: var(--bg-grey);
  padding: 2.8125vw 2.6041666667vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-triptyque {
    padding: 54px 50px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-triptyque {
    padding: 18px 24px;
  }
}
.article-body .block-custom-triptyque .wp-block-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.2916666667vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-triptyque .wp-block-columns {
    gap: 44px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-triptyque .wp-block-columns {
    grid-template-columns: 1fr;
    gap: 44px;
  }
}
.article-body .block-custom-triptyque .wp-block-columns figure {
  margin-bottom: 1.25vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-triptyque .wp-block-columns figure {
    margin-bottom: 24px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-triptyque .wp-block-columns figure {
    margin-bottom: 24px;
  }
}
.article-body .block-custom-triptyque .wp-block-columns p:not(:last-child) {
  margin-bottom: 0.625vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-triptyque .wp-block-columns p:not(:last-child) {
    margin-bottom: 12px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-triptyque .wp-block-columns p:not(:last-child) {
    margin-bottom: 12px;
  }
}
.article-body .block-custom-triptyque figure img, .article-body .block-custom-text-picto figure img {
  width: 1.40625vw;
  max-width: 27px;
}
@media (max-width: 44.99em) {
  .article-body .block-custom-triptyque figure img, .article-body .block-custom-text-picto figure img {
    width: 27px;
  }
}
.article-body .block-custom-steps {
  counter-reset: columns 0;
}
@media (max-width: 44.99em) {
  .article-body .block-custom-steps {
    overflow: scroll;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px;
  }
}
.article-body .block-custom-steps p:first-child {
  margin-bottom: 0.625vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-steps p:first-child {
    margin-bottom: 12px;
  }
}
.article-body .block-custom-steps p:not(:first-child) {
  color: var(--neutral-600);
}
@media (max-width: 44.99em) {
  .article-body .block-custom-steps .wp-block-columns {
    flex-wrap: nowrap !important;
    gap: 26px;
  }
}
.article-body .block-custom-steps .wp-block-column {
  position: relative;
  counter-increment: columns;
}
@media (max-width: 44.99em) {
  .article-body .block-custom-steps .wp-block-column {
    flex: 1 0 80% !important;
  }
}
.article-body .block-custom-steps .wp-block-column:before {
  content: counter(columns, decimal);
  margin-bottom: 1.25vw;
  width: 2.1875vw;
  height: 2.1875vw;
  max-width: 42px;
  max-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  background-color: var(--yellow-400);
  border-radius: 999px;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-steps .wp-block-column:before {
    margin-bottom: 24px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-steps .wp-block-column:before {
    width: 42px;
    height: 42px;
    margin-bottom: 24px;
  }
}
.article-body .block-custom-steps .wp-block-column:after {
  content: "";
  display: block;
  height: 3px;
  border-radius: 3px;
  background-color: #D9D9D9;
  position: absolute;
  top: 1.1458333333vw;
  left: calc(2.1875vw + 1.0416666667vw);
  right: 0;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-steps .wp-block-column:after {
    top: 22px;
    left: 62px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-steps .wp-block-column:after {
    top: 22px;
    left: 62px;
  }
}
.article-body .block-custom-steps:not(:first-child) {
  margin-top: 1.6666666667vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-steps:not(:first-child) {
    margin-top: 32px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-steps:not(:first-child) {
    margin-top: 16px;
  }
}
.article-body .block-custom-steps:not(:last-child) {
  margin-bottom: 1.6666666667vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-steps:not(:last-child) {
    margin-bottom: 32px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-steps:not(:last-child) {
    margin-bottom: 32px;
  }
}
.article-body .block-custom-text-picto .wp-block-columns {
  gap: 1.0416666667vw;
  margin-bottom: 1.0416666667vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-text-picto .wp-block-columns {
    margin-bottom: 20px;
    gap: 20px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-text-picto .wp-block-columns {
    margin-bottom: 20px;
    gap: 20px;
  }
}
.article-body .block-custom-text-picto .wp-block-column {
  display: flex;
  flex-direction: column;
  padding: 2.34375vw;
  border: 0.8px solid var(--border-color-light);
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-text-picto .wp-block-column {
    padding: 45px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-text-picto .wp-block-column {
    padding: 24px;
  }
  .article-body .block-custom-text-picto .wp-block-column p {
    font-size: calc(12px * var(--offset));
  }
}
.article-body .block-custom-text-picto figure {
  flex: none;
}
.article-body .block-custom-text-picto .wp-block-buttons {
  padding-top: 0.9375vw;
  margin-top: auto;
  justify-content: flex-end;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-text-picto .wp-block-buttons {
    padding-top: 18px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-text-picto .wp-block-buttons {
    padding-top: 18px;
  }
}
.article-body .block-custom-featured-text {
  padding: 2.34375vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-featured-text {
    padding: 45px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-featured-text {
    padding: 24px;
  }
}
.article-body .block-custom-featured-text > *:not(:last-child) {
  margin-bottom: 2.2916666667vw;
}
@media (min-width: 119.9375em) {
  .article-body .block-custom-featured-text > *:not(:last-child) {
    margin-bottom: 44px;
  }
}
@media (max-width: 44.99em) {
  .article-body .block-custom-featured-text > *:not(:last-child) {
    margin-bottom: 24px;
  }
}

.section--store-map .aside--wrapper {
  padding: 6.4583333333vw 0;
}
@media (min-width: 119.9375em) {
  .section--store-map .aside--wrapper {
    padding: 124px 0;
  }
}
@media (max-width: 44.99em) {
  .section--store-map .aside--wrapper {
    padding-top: 0;
    padding-bottom: 0;
    grid-column: span 2;
  }
}

.map--infos {
  margin-top: 1.1458333333vw;
  margin-bottom: 1.6666666667vw;
}
@media (min-width: 119.9375em) {
  .map--infos {
    margin-top: 22px;
    margin-bottom: 32px;
  }
}
@media (max-width: 44.99em) {
  .map--infos {
    margin-top: 22px;
    margin-bottom: 32px;
  }
}
.map--infos button {
  display: grid;
  grid-template-columns: 2.6041666667vw 1fr auto;
  padding: 0.5208333333vw;
  text-align: left;
  width: 100%;
}
@media (min-width: 119.9375em) {
  .map--infos button {
    grid-template-columns: 50px 1fr auto;
    padding: 10px;
  }
}
@media (max-width: 44.99em) {
  .map--infos button {
    grid-template-columns: 50px 1fr auto;
    padding: 10px;
  }
}
.map--infos button.active {
  background-color: var(--bg-grey);
}

.stand--number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.40625vw;
  height: 1.40625vw;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="27" height="27" viewBox="0 0 27 27" fill="none"> <path d="M18.8079 0.552979H8.10142L0.707031 7.94737V19.193L8.10142 26.5874H18.8079L26.2023 19.193V7.94737L18.8079 0.552979Z" stroke="%23171717" stroke-width="0.674672"/> <path d="M17.8549 3.17407H9.12152L3.08984 9.16834V18.2846L9.12152 24.2789H17.8549L23.8866 18.2846V9.16834L17.8549 3.17407Z" stroke="%23171717" stroke-width="0.674672"/> </svg>') no-repeat center center;
  background-size: 1.40625vw 1.40625vw;
}
@media (min-width: 119.9375em) {
  .stand--number {
    width: 27px;
    height: 27px;
    background-size: 27px 27px;
  }
}
@media (max-width: 44.99em) {
  .stand--number {
    width: 27px;
    height: 27px;
    background-size: 27px 27px;
  }
}

[data-map-image] {
  padding: 1.9791666667vw 8.3333333333vw 0;
  display: none;
}
@media (min-width: 119.9375em) {
  [data-map-image] {
    padding: 38px 160px 0;
  }
}
@media (max-width: 44.99em) {
  [data-map-image] {
    padding: 0;
  }
}
[data-map-image].toggled {
  display: flex;
}

.find-more--wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2.7083333333vw;
  gap: 2.2916666667vw;
}
@media (min-width: 119.9375em) {
  .find-more--wrapper {
    padding: 52px;
    gap: 44px;
  }
}
@media (max-width: 44.99em) {
  .find-more--wrapper {
    padding: 22px;
    gap: 24px;
  }
}
.find-more--wrapper .buttons--wrapper {
  gap: 1.6666666667vw;
}
@media (min-width: 119.9375em) {
  .find-more--wrapper .buttons--wrapper {
    gap: 32px;
  }
}
@media (max-width: 44.99em) {
  .find-more--wrapper .buttons--wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    width: 100%;
  }
}
.find-more--wrapper.align-start {
  align-items: start;
}
@media (max-width: 44.99em) {
  .find-more--wrapper .h3 {
    text-align: center;
    font-size: var(--font-lg);
  }
}

.share--widget {
  justify-self: flex-start;
  position: relative;
  margin-top: 2.7083333333vw;
  z-index: 4;
}
@media (min-width: 119.9375em) {
  .share--widget {
    margin-top: 52px;
  }
}

.widget--listing {
  position: absolute;
  top: 0;
  left: calc(100% + 1.4583333333vw);
  background-color: var(--bg);
  border: 1px solid var(--border-color-light);
  padding: 0.9375vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
  gap: 0.2083333333vw;
  width: 11.9791666667vw;
  max-width: 230px;
}
@media (min-width: 119.9375em) {
  .widget--listing {
    gap: 4px;
    padding: 18px;
    left: calc(100% + 28px);
  }
}
.widget--listing li > a, .widget--listing li > button, .widget--listing > .atcb-button-wrapper > a, .widget--listing > .atcb-button-wrapper > button {
  display: flex;
  align-items: center;
}

.widget--icon {
  width: 0.6770833333vw;
  height: 0.6770833333vw;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 119.9375em) {
  .widget--icon {
    width: 13px;
    height: 13px;
  }
}
.widget--icon svg {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.calendar--wrapper {
  position: absolute;
  top: calc(100% + 0.8333333333vw);
}
@media (min-width: 119.9375em) {
  .calendar--wrapper {
    top: calc(100% + 16px);
  }
}

.section--other-events .card .buttons--wrapper {
  margin-top: 0;
}

.home h1 {
  position: absolute;
  top: -100%;
}

.home-events--slider {
  opacity: 0;
  height: calc(100dvh - var(--header-height));
}
@media (max-width: 44.99em) {
  .home-events--slider {
    height: 700px;
    max-width: 100dvh;
  }
}
.home-events--slider figure {
  height: 100%;
}
.home-events--slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.home-events--infos {
  display: flex;
  flex-direction: column;
  width: 27.0833333333vw;
  max-width: 520px;
  position: absolute;
  bottom: 6.1458333333vw;
  z-index: 1;
}
@media (min-width: 119.9375em) {
  .home-events--infos {
    bottom: 118px;
  }
}
@media (max-width: 44.99em) {
  .home-events--infos {
    width: 275px;
    bottom: 100px;
  }
}
.home-events--infos > p {
  margin-top: 0.9375vw;
  margin-bottom: 0.8333333333vw;
  padding-right: 4.375vw;
}
@media (min-width: 119.9375em) {
  .home-events--infos > p {
    margin-top: 18px;
    margin-bottom: 16px;
    padding-right: 84px;
  }
}
@media (max-width: 44.99em) {
  .home-events--infos > p {
    margin-top: 4px;
    margin-bottom: 12px;
    padding-right: 0;
    font-size: var(--font-xs);
  }
}
.home-events--infos .button--action {
  align-self: end;
}
@media (max-width: 44.99em) {
  .home-events--infos .button--action {
    align-self: flex-start;
  }
  .home-events--infos .button--action span {
    font-size: var(--font-xs);
  }
}

@media (min-width: 45em) {
  .section--home-store .container {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
  }
}
.section--home-store .media-image {
  pointer-events: none;
}
@media (max-width: 44.99em) {
  .section--home-store .media-image img {
    width: 100%;
    height: 316px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.section--home-store img {
  max-height: 870px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--home-store h2 {
  margin-bottom: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .section--home-store h2 {
    margin-bottom: 8px;
  }
}
@media (max-width: 44.99em) {
  .section--home-store h2 {
    margin-bottom: 8px;
  }
}

.home-store {
  padding: 4.375vw 5.2083333333vw 2.8125vw 3.75vw;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 1;
}
@media (min-width: 45em) {
  .home-store {
    position: absolute;
    top: 5.5208333333vw;
    right: 0;
    width: 38.8020833333vw;
    max-width: 745px;
  }
}
@media (min-width: 119.9375em) {
  .home-store {
    padding: 84px 100px 54px 72px;
    top: 106px;
  }
}
@media (max-width: 44.99em) {
  .home-store {
    padding: 48px 0;
    background-color: var(--bg-grey);
  }
  .home-store > p {
    font-size: var(--font-xs);
  }
  .home-store .buttons--wrapper {
    flex-direction: column;
  }
}
.home-store .alert {
  margin-top: 0.9375vw;
}
@media (min-width: 119.9375em) {
  .home-store .alert {
    margin-top: 18px;
  }
}
@media (max-width: 44.99em) {
  .home-store .alert {
    margin-top: 8px;
  }
}
.home-store h3 {
  margin-bottom: 0.625vw;
}
@media (min-width: 119.9375em) {
  .home-store h3 {
    margin-bottom: 12px;
  }
}
@media (max-width: 44.99em) {
  .home-store h3 {
    margin-bottom: 8px;
  }
}

.store--infos {
  display: flex;
  flex-direction: column;
  gap: 0.625vw;
  margin-bottom: 1.1458333333vw;
}
@media (min-width: 119.9375em) {
  .store--infos {
    gap: 12px;
    margin-top: 48px;
    margin-bottom: 22px;
  }
}
@media (min-width: 45em) {
  .store--infos {
    margin-top: 2.5vw;
  }
}
@media (max-width: 44.99em) {
  .store--infos {
    gap: 16px;
    margin-bottom: 32px;
    margin-top: 32px;
  }
  .store--infos.text--large {
    font-size: var(--font-md);
  }
}
.store--infos li {
  display: flex;
  align-items: center;
  gap: 0.4166666667vw;
}
@media (min-width: 119.9375em) {
  .store--infos li {
    gap: 8px;
  }
}
@media (max-width: 44.99em) {
  .store--infos li {
    gap: 8px;
  }
}

.section--feature--brands {
  overflow: hidden;
}

.alphabetical--filter + .section--brands.section {
  padding-top: 3.9583333333vw;
}
@media (min-width: 119.9375em) {
  .alphabetical--filter + .section--brands.section {
    padding-top: 76px;
  }
}

.section--brands > .container {
  display: flex;
  flex-direction: column;
}

.brands-featured--slider {
  position: relative;
  overflow: visible;
  padding-bottom: 3px;
}
.brands-featured--slider .card--content {
  gap: 0;
}
.brands-featured--slider .card--content p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.brands-featured--slider .card--content .buttons--wrapper {
  margin-top: 1.25vw;
}
@media (min-width: 119.9375em) {
  .brands-featured--slider .card--content .buttons--wrapper {
    margin-top: 24px;
  }
}
.brands-featured--slider .swiper-slide {
  width: 28.3854166667vw;
  max-width: 545px;
  opacity: 0;
  transition: opacity 0.3s;
}
@media (max-width: 44.99em) {
  .brands-featured--slider .swiper-slide {
    width: 100%;
  }
}
.brands-featured--slider .swiper-slide:not(:last-child) {
  margin-right: 1.0416666667vw;
}
@media (min-width: 119.9375em) {
  .brands-featured--slider .swiper-slide:not(:last-child) {
    margin-right: 20px;
  }
}
@media (max-width: 44.99em) {
  .brands-featured--slider .swiper-slide:not(:last-child) {
    margin-right: 20px;
  }
}
.brands-featured--slider .swiper-slide.swiper-slide-visible, .brands-featured--slider .swiper-slide.swiper-slide-visible + .swiper-slide {
  opacity: 1;
}
.brands-featured--slider .slider--navigation {
  top: 13.0208333333vw;
  left: 1.0416666667vw;
  right: 1.0416666667vw;
}
@media (min-width: 119.9375em) {
  .brands-featured--slider .slider--navigation {
    top: 250px;
    left: 20px;
    right: 20px;
  }
}
.brands-featured--slider .swiper-pagination-bullet {
  border-color: var(--neutral-700);
}
.brands-featured--slider .swiper-pagination-bullet-active {
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="15" height="16" viewBox="0 0 15 16" fill="none"> <path d="M14.4932 10.6523L10.4951 14.6504H4.71484L0.716797 10.6523V4.59766L4.71484 0.599609H10.4951L14.4932 4.59766V10.6523Z" stroke="%23000000" stroke-width="0.8"/> <path d="M9.68164 2.73242L12.5166 5.54883V9.85645L9.68164 12.6738H5.56641L2.73242 9.85645V5.54883L5.56641 2.73242H9.68164Z" stroke="%23000000" stroke-width="0.8"/> </svg>') no-repeat center center;
}

.alphabetical--filter {
  background-color: var(--bg);
  position: sticky;
  top: var(--header-height);
  z-index: 2;
  border-top: 1px solid var(--border-color-lighter);
  border-bottom: 1px solid var(--border-color-lighter);
}
@media (max-width: 44.99em) {
  .alphabetical--filter {
    width: 100vw;
    margin: 0;
    padding: 0;
  }
  .alphabetical--filter .container {
    max-width: 100vw;
  }
}
.alphabetical--filter ul {
  display: flex;
  align-items: center;
}
.alphabetical--filter ul li {
  flex: 1;
}
.alphabetical--filter ul li button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
}
@media (max-width: 44.99em) {
  .alphabetical--filter ul li button {
    width: 48px;
  }
}
.alphabetical--filter ul li button.active {
  background-color: var(--yellow-500);
}
.alphabetical--filter ul li button.disabled {
  opacity: 0.3;
  pointer-events: none;
}
@media (any-hover: hover) {
  .alphabetical--filter ul li button:hover {
    background-color: var(--yellow-400);
  }
}

.brands--listing {
  scroll-margin: calc(var(--header-height) + var(--filters-height) - 1px);
  display: grid;
  grid-template-columns: 11.71875vw 1fr;
  -moz-column-gap: 6.6666666667vw;
       column-gap: 6.6666666667vw;
  padding-bottom: 2.5vw;
  padding-top: 2.5vw;
  border-bottom: 1px solid var(--border-color-light);
}
@media (min-width: 119.9375em) {
  .brands--listing {
    grid-template-columns: 225px 1fr;
    -moz-column-gap: 128px;
         column-gap: 128px;
    padding-bottom: 48px;
    padding-top: 48px;
  }
}
@media (max-width: 44.99em) {
  .brands--listing {
    grid-template-columns: 1fr;
    padding-top: 42px;
    padding-bottom: 42px;
  }
}
.brands--listing .h1 {
  line-height: 1;
}
@media (max-width: 44.99em) {
  .brands--listing .h1 {
    line-height: 1.5;
    margin-bottom: 22px;
  }
}
.brands--listing ul {
  display: grid;
  align-items: start;
  gap: 1.0416666667vw;
}
@media (min-width: 45em) {
  .brands--listing ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 119.9375em) {
  .brands--listing ul {
    gap: 20px;
  }
}
@media (max-width: 44.99em) {
  .brands--listing ul {
    gap: 20px;
  }
}
.brands--listing ul li.hidden {
  display: none;
}
.brands--listing:not(:has(ul)), .brands--listing:not(:has(li:not(.hidden))) {
  display: none;
}

.section--brands-services {
  padding-bottom: 3.75vw;
}
@media (min-width: 119.9375em) {
  .section--brands-services {
    padding-bottom: 72px;
  }
}
@media (max-width: 44.99em) {
  .section--brands-services {
    padding-bottom: 32px;
  }
}
.section--brands-services .buttons--wrapper {
  gap: 1.0416666667vw;
}
@media (min-width: 119.9375em) {
  .section--brands-services .buttons--wrapper {
    gap: 20px;
  }
}
@media (max-width: 44.99em) {
  .section--brands-services .buttons--wrapper {
    overflow: scroll;
    flex-wrap: nowrap;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px;
    gap: 20px;
  }
}
.section--brands-services .buttons--wrapper a {
  padding: 0;
  justify-content: center;
  flex: 1 1 0;
}
@media (max-width: 44.99em) {
  .section--brands-services .buttons--wrapper a {
    flex: none;
    width: 80vw;
  }
}
@media (max-width: 44.99em) {
  .section--brands-services .single--wrapper {
    gap: 24px;
  }
}

@media (min-width: 45em) {
  .section--single h1 {
    grid-column: 1/2;
    grid-row: 1/2;
  }
  .section--single .single--aside {
    grid-row: 2/3;
  }
  .section--single .article-body {
    grid-row: 1/4;
  }
}
@media (min-width: 45em) {
  .section--single.section--event h1, .section--single.section--service h1 {
    grid-column: 2/3;
    grid-row: 1/2;
  }
  .section--single.section--event .single--aside, .section--single.section--service .single--aside {
    grid-row: 1/4;
  }
  .section--single.section--event .article-body, .section--single.section--service .article-body {
    grid-row: 2/4;
  }
}
@media (max-width: 44.99em) {
  .section--single h1 {
    margin-bottom: 24px;
  }
}

.restaurant--menu {
  margin-top: 2.7083333333vw;
}
@media (min-width: 119.9375em) {
  .restaurant--menu {
    margin-top: 52px;
  }
}
@media (max-width: 44.99em) {
  .restaurant--menu {
    margin-top: 32px;
  }
}
.restaurant--menu h2 {
  margin-bottom: 1.25vw;
}
@media (min-width: 119.9375em) {
  .restaurant--menu h2 {
    margin-bottom: 24px;
  }
}
@media (max-width: 44.99em) {
  .restaurant--menu h2 {
    margin-bottom: 24px;
  }
}
.restaurant--menu .buttons--wrapper {
  gap: 0.9375vw;
  white-space: nowrap;
}
@media (min-width: 119.9375em) {
  .restaurant--menu .buttons--wrapper {
    gap: 18px;
  }
}
@media (max-width: 44.99em) {
  .restaurant--menu .buttons--wrapper {
    gap: 18px;
  }
}

.masthead--contact, .section--contact {
  height: 100%;
}

.masthead--contact {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 50vw;
}

.section--contact {
  z-index: 2;
}

.contact--wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 44.99em) {
  .contact--wrapper {
    grid-template-columns: 1fr;
  }
}
.contact--wrapper .main-breadcrumbs {
  grid-column: 1/2;
  padding-top: 2.6041666667vw;
}
@media (min-width: 45em) {
  .contact--wrapper .main-breadcrumbs {
    padding-top: 50px;
  }
  .contact--wrapper .main-breadcrumbs li:before {
    filter: invert(1);
  }
}
@media (max-width: 44.99em) {
  .contact--wrapper .main-breadcrumbs {
    grid-column: span 1;
    color: var(--neutral-700);
  }
}

.form--contact {
  padding: 4.2708333333vw 4.7916666667vw;
  grid-column: 2/3;
}
@media (min-width: 119.9375em) {
  .form--contact {
    padding: 82px 92px;
  }
}
@media (max-width: 44.99em) {
  .form--contact {
    grid-column: span 1;
    padding: 22px 0;
  }
}

.form--cgu {
  margin-top: 1.1458333333vw;
}
@media (min-width: 119.9375em) {
  .form--cgu {
    margin-top: 22px;
  }
}
@media (max-width: 44.99em) {
  .form--cgu {
    margin-top: 22px;
  }
}

/*# sourceMappingURL=style.css.map*/