@charset "UTF-8";
/**
 * Strip units
 */
/**
 * Em
 *
 * convert value from px to em
 */
/**
 * Declare font face
 *
 * used in base/_fonts.scss
 */
/**
 * Editor style only
 *
 *      Style inside the mixin while be writed only for editor.scss
 *
 *      @include editor-only {
 *          ... css only for the gutenberg editor
 *      }
 *
 *      the variable $entry-file-name is defined in style.scss and editor.scss
 */
/**
 * Style only
 *
 *      Style inside the mixin while be writed only for style.scss
 *
 *      @include style-only {
 *          ... css only for the front office
 *      }
 *
 *      the variable $entry-file-name is defined in style.scss and editor.scss
 */
/*
	Improved screen reader only CSS class
    @see https://gist.github.com/ffoodd/000b59f431e3e64e4ce1a24d5bb36034
	@author Gaël Poupard
		@note Based on Yahoo!'s technique
		@author Thierry Koblentz
		@see https://developer.yahoo.com/blogs/ydn/clip-hidden-content-better-accessibility-53456.html
	* 1.
		@note `clip` is deprecated but works everywhere
		@see https://developer.mozilla.org/en-US/docs/Web/CSS/clip
	* 2.
		@note `clip-path` is the future-proof version, but not very well supported yet
		@see https://developer.mozilla.org/en-US/docs/Web/CSS/clip-path
		@see http://caniuse.com/#search=clip-path
		@author Yvain Liechti
		@see https://twitter.com/ryuran78/status/778943389819604992
	* 3.
		@note preventing text to be condensed
		author J. Renée Beach
		@see https://medium.com/@jessebeach/beware-smushed-off-screen-accessible-text-5952a4c2cbfe
		@note Drupal 8 goes with word-wrap: normal instead
		@see https://www.drupal.org/node/2045151
		@see http://cgit.drupalcode.org/drupal/commit/?id=5b847ea
	* 4.
		@note !important is important
		@note Obviously you wanna hide something
		@author Harry Roberts
		@see https://csswizardry.com/2016/05/the-importance-of-important/
*/
/**
 * Increased contrast
 *
 * exemples :
 *
 *      @include more-contrast { ... }
 *          return @media screen and( prefers-contrast : more) { ... }
 *
 *      add high contrsated declarations :
 *
 *      @include more-contrast (false) { ... }
 *          return @media screen and (prefers-contrast : no-preference) { ... }
 *			you can add low contrastest declarations :
 */
/**
 * Reduced-motion
 *
 * exemples :
 *
 *      @include reduced-motion { ... }
 *          return @media screen and (prefers-reduced-motion : reduce) { ... }
 *
 *      you can add heavy animation using :
 *
 *      @include reduced-motion (false) { ... }
 *          return @media screen and (prefers-reduced-motion : no-preference) { ... }
 */
/**
 * Scrollbar invisible
 *
 *      /!\ ALERT : Don't use this mixin neither on the html element, nor on the body element to avoid deteriorating accessibility
 */
/**
 * Scrollbar color
 */
/**
 * Radio custom, must be used with checkbox custom
 */
/**
 * Checkbox custom
 */
/**
 * Select custom
 */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  -moz-appearance: textfield;
       appearance: textfield;
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

.lazyload,
.lazyloading {
  background: var(--color-primary);
  opacity: 0;
}

.lazyloaded {
  opacity: 1;
  transition: opacity 0.5s;
}

[data-bgset] {
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  opacity: 1;
}
[data-bgset]::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  content: "";
  background: var(--color-primary);
  transition: opacity 0.5s, z-index 0.5s ease 0.5s;
}
[data-bgset]::after {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
  z-index: 3;
  width: 50px;
  height: 50px;
  content: "";
  border: 5px solid var(--color-light);
  border-top-color: transparent;
  border-radius: 50px;
  opacity: 1;
  transition: opacity 0.5s, z-index 0.5s ease 0.5s;
  transform: translateX(-50%) translateY(-50%);
  animation: loading 0.5s linear infinite;
}
[data-bgset].lazyload {
  opacity: 1;
  transition: opacity 0.5s;
}
[data-bgset].lazyloaded::after, [data-bgset].lazyloaded::before {
  z-index: -1;
  opacity: 0;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
html a:focus,
html button:focus,
html input:focus,
html select:focus,
html textarea:focus,
html [tabindex]:focus {
  outline: none;
}
html a:focus-visible,
html button:focus-visible,
html input:focus-visible,
html select:focus-visible,
html textarea:focus-visible,
html [tabindex]:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 0.25rem;
}
html [data-seo-container]:focus-within {
  outline: 2px solid currentColor;
  outline-offset: 0.25rem;
}
html [data-seo-container] *:focus {
  outline: none;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.visibility-hidden {
  visibility: hidden !important;
}

.visibility-visible {
  visibility: visible !important;
}

@media screen and (max-width: 48.8125em) {
  .desktop-only {
    display: none !important;
  }
}
@media screen and (min-width: 48.875em) {
  .mobile-only {
    display: none !important;
  }
}
.overflow-hidden {
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important; /* 1 */
  clip-path: inset(50%) !important; /* 2 */
  white-space: nowrap !important; /* 3 */
  border: 0 !important;
}

.sr-only-focusable {
  position: absolute;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important; /* 1 */
  clip-path: inset(50%) !important; /* 2 */
  white-space: nowrap !important; /* 3 */
  border: 0 !important;
}
.sr-only-focusable:focus, .sr-only-focusable:active {
  width: auto !important;
  height: auto !important;
  margin: auto !important;
  overflow: visible !important;
  clip: auto !important;
  clip-path: none !important;
  white-space: normal !important;
}

[data-link-container] {
  position: relative;
  z-index: 1;
  cursor: pointer;
}
[data-link-container] [data-link-target]::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  content: "";
}

pre {
  overflow-x: auto;
  white-space: pre;
}

.post-edit-link {
  position: fixed;
  right: 1em;
  bottom: 1em;
  z-index: 1000;
  font-size: 1em;
  padding: 0.25em 0.75em;
  color: var(--color-background);
  background: var(--color-text);
  border-radius: 0.25em;
  border: 1px solid var(--color-text);
  text-decoration: none;
}
.post-edit-link:hover {
  color: var(--color-text);
  background: var(--color-background);
}

:root {
  /*
  * Colors
  */
  --color-white: var(--wp--preset--color--white, #fff);
  --color-black: var(--wp--preset--color--black, #000);
  --color-light: var(--wp--preset--color--light, #f3f6f7);
  --color-gray: #888;
  --color-text: var(--color-black);
  --color-background: var(--color-white);
  --color-primary: var(--wp--preset--color--rose, #D69B93);
  --color-secondary: var(--wp--preset--color--yellow, #F3DF6A);
  --color-error: #a80e3a;
  --color-success: #208966;
  /*
   * Typography
   */
  --font-family-primary: Roboto, sans-serif;
  --font-family-secondary: Asgard, serif;
  --font-size-heading-small: 18px;
  --font-size-heading-medium: 24px;
  --font-size-heading-large: 36px;
  --font-size-small: 12px;
  --font-size-medium: 15px;
  --font-size-medium-large: 18px;
  --font-size-subtitle: 20px;
  --font-size-button: 18px;
  --line-height-base: 1.27;
  --line-height-heading: 1.16;
  --line-height-1: 1;
  --line-height-2: 1.27;
  --line-height-3: 1.5;
  /*
  * Sizes
  */
  --container-wide: 1310px;
  --container-narrow: 1100px;
  --container-width: 1100px;
  --header-height: clamp(60px, 13vw, 80px);
  --menu-width: 450px;
  --header-logo-width: 164px;
  --header-logo-height: 23px;
  /*
   * Spacing
   */
  --site-padding: clamp(10px, 2.5vw, 20px);
  --gap: clamp(10px, 2.5vw, 20px);
  --spacing-10: clamp(5px, 1.25vw, 10px);
  --spacing-15: clamp(7.5px, 1.875vw, 15px);
  --spacing-20: clamp(10px, 2.5vw, 20px);
  --spacing-30: clamp(15px, 3.75vw, 30px);
  --spacing-40: clamp(20px, 5vw, 40px);
  --spacing-50: clamp(25px, 6.25vw, 50px);
  --spacing-60: clamp(30px, 7.5vw, 60px);
  --spacing-70: clamp(35px, 8.75vw, 70px);
  --spacing-80: clamp(40px, 10vw, 80px);
  --blocks-spacing-default: var(--spacing-50);
  /*
   * Animation speeds
   */
  --speed-1: .35s;
  --speed-2: .5s;
  --speed-3: 1s;
  --speed-4: 3s;
  /*
  * Shadows
  */
  --shadow-menu: -6px 0 4px 0 rgba(0,0,0,0.05);
  /*
  * Aspect ratios
  */
  --aspect-ratio-wide: 16 / 9;
  /*
   * A11y
   */
}
@media screen and (prefers-contrast: more) {
  :root {
    --color-white: #fff;
    --color-black: #000;
    --color-light: #fff;
    --color-dark: #000;
    --color-text: #000;
    --color-background: #fff;
  }
}
@media screen and (prefers-reduced-motion: reduce) {
  :root {
    --speed-1: 0s;
    --speed-2: 0s;
    --speed-3: 0s;
    --speed-4: 0s;
  }
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url(../fonts/Roboto/roboto-regular.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+0-10FFFF; /* cutting of the font file for better loading */
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 400;
  font-stretch: normal;
  src: url(../fonts/Roboto/roboto-italic.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+0-10FFFF; /* cutting of the font file for better loading */
}
@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  src: url(../fonts/Roboto/roboto-700.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+0-10FFFF; /* cutting of the font file for better loading */
}
@font-face {
  font-family: "Roboto";
  font-style: italic;
  font-weight: 700;
  font-stretch: normal;
  src: url(../fonts/Roboto/roboto-700italic.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+0-10FFFF; /* cutting of the font file for better loading */
}
@font-face {
  font-family: "Asgard";
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url(../fonts/Asgard/Asgard-Regular.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+0-10FFFF; /* cutting of the font file for better loading */
}
@font-face {
  font-family: "Asgard";
  font-style: italic;
  font-weight: 400;
  font-stretch: normal;
  src: url(../fonts/Asgard/Asgard-Regular-Italic.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+0-10FFFF; /* cutting of the font file for better loading */
}
@font-face {
  font-family: "Asgard";
  font-style: normal;
  font-weight: 500;
  font-stretch: normal;
  src: url(../fonts/Asgard/Asgard-Medium.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+0-10FFFF; /* cutting of the font file for better loading */
}
@font-face {
  font-family: "Asgard";
  font-style: italic;
  font-weight: 500;
  font-stretch: normal;
  src: url(../fonts/Asgard/Asgard-Medium-Italic.woff2) format("woff2");
  font-display: swap;
  unicode-range: U+0-10FFFF; /* cutting of the font file for better loading */
}
.container {
  width: 100%;
  max-width: var(--container-width);
  padding: 0 var(--site-padding);
  margin-right: auto;
  margin-left: auto;
}
.container--less {
  max-width: var(--container-narrow);
}

.icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  fill: currentColor;
}

/**
 * Reset specific elements to make them easier to style in other contexts.
 */
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
form,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/**
  * Apply generic border-box to all elements.
  * See:
  * https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
  */
html {
  /* Apply border-box across the entire page. */
  box-sizing: border-box;
  font-family: var(--font-family-primary);
  line-height: var(--line-height-base);
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: auto;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-medium);
  line-height: var(--line-height-base);
  font-weight: normal;
  color: var(--color-text);
  text-align: left;
  background-color: var(--color-background);
}

/**
  * Relax the definition a bit, to allow components to override it manually.
  */
*, *::before, *::after {
  box-sizing: inherit;
}

button {
  cursor: pointer;
}
button[disabled] {
  cursor: not-allowed;
}

b,
strong {
  font-weight: 700;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-family-secondary);
  font-weight: 400;
}

.website-section-studio {
  --color-section-background: var(--wp--preset--color--rose);
  --color-section-color: var(--wp--preset--color--rose);
}

.website-section-formation {
  --color-section-background: var(--wp--preset--color--yellow);
  --color-section-color: var(--wp--preset--color--yellow);
}

.website-section-background {
  background-color: var(--color-section-background);
}

.website-section-text {
  color: var(--color-section-color);
}

.blocks-container > *:not(.alignfull) {
  padding: 0 var(--site-padding);
}
.blocks-container > *:not(.alignfull):not(.alignwide) {
  max-width: var(--container-width);
  margin-right: auto;
  margin-left: auto;
}
.blocks-container > .alignwide {
  max-width: var(--container-wide);
  margin-right: auto;
  margin-left: auto;
}
.blocks-container > * {
  margin-block-start: var(--blocks-spacing-default);
  margin-block-end: var(--blocks-spacing-default);
}
.blocks-container .wp-block-column > *,
.blocks-container .wp-block-group > * {
  margin-block-start: var(--spacing-30);
  margin-block-end: var(--spacing-30);
}
.blocks-container .wp-block-column > *:first-child,
.blocks-container .wp-block-group > *:first-child {
  margin-block-start: 0;
}

:root :where(.is-layout-flex),
:where(body .is-layout-flex) {
  gap: var(--gap);
}

.page-header.hidden + .blocks-container > *:first-child:has(.has-background) {
  margin-block-start: 0;
}

.is-style-100 {
  width: 100%;
}

:where(.wp-block-group.has-background) {
  padding: var(--spacing-50) var(--site-padding);
}

.wp-block-post-title,
.wp-block-heading {
  margin-top: var(--spacing-50);
  margin-bottom: var(--spacing-50);
  font-family: var(--font-family-secondary);
  font-size: var(--font-size-heading-medium);
  font-weight: 400;
}
.wp-block-post-title.is-style-large,
.wp-block-heading.is-style-large {
  font-size: var(--font-size-heading-large);
}
.wp-block-post-title.is-style-small,
.wp-block-heading.is-style-small {
  font-size: var(--font-size-heading-small);
}
.wp-block-post-title.is-style-subtitle,
.wp-block-heading.is-style-subtitle {
  font-size: var(--font-size-subtitle);
  font-weight: 700;
  line-height: var(--line-height-2);
}

.blocks-container p:has(+ p), .blocks-container p:has(+ .wp-block-list) {
  margin-block-end: 1em !important;
}
.blocks-container p + p {
  margin-block-start: 1em !important;
}
.blocks-container p.is-style-subtitle {
  font-size: var(--font-size-subtitle);
  font-weight: 700;
  line-height: var(--line-height-2);
}

@media screen and (min-width: 48.875em) {
  .wp-block-group.is-style-2-columns {
    -moz-column-count: 2;
         column-count: 2;
    -moz-column-gap: var(--gap);
         column-gap: var(--gap);
  }
}
.wp-block-group.has-stroke-top {
  border-top: 1px solid var(--color-text);
}
.wp-block-group.has-stroke-bottom {
  border-bottom: 1px solid var(--color-text);
}
.wp-block-group.has-stroke-left {
  border-left: 1px solid var(--color-text);
}
.wp-block-group.has-stroke-right {
  border-right: 1px solid var(--color-text);
}
.wp-block-group.has-style-stroke {
  border: 1px solid var(--color-text);
}

.wp-block-columns.is-style-no-gap {
  gap: 0 !important;
}

.wp-block-column.is-style-center-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-block-column.column-flex {
  display: flex;
}
.wp-block-column.column-flex.column-flex-direction-row {
  flex-direction: row;
}
.wp-block-column.column-flex.column-flex-direction-column {
  flex-direction: column;
}
.wp-block-column.column-flex.column-align-stretch {
  align-items: stretch;
}
.wp-block-column.column-flex.column-align-flex-start {
  align-items: flex-start;
}
.wp-block-column.column-flex.column-align-center {
  align-items: center;
}
.wp-block-column.column-flex.column-align-flex-end {
  align-items: flex-end;
}
.wp-block-column.column-flex.column-justify-flex-start {
  justify-content: flex-start;
}
.wp-block-column.column-flex.column-justify-center {
  justify-content: center;
}
.wp-block-column.column-flex.column-justify-flex-end {
  justify-content: flex-end;
}
.wp-block-column.column-flex.column-justify-space-between {
  justify-content: space-between;
}
.wp-block-column.column-flex.column-justify-space-around {
  justify-content: space-around;
}
.wp-block-column.column-flex.column-justify-space-evenly {
  justify-content: space-evenly;
}

.wp-block-table.is-style-stroke-row th,
.wp-block-table.is-style-stroke-row td {
  border: 0;
  border-bottom: 1px solid var(--color-text);
  padding: 0.6em 0;
  vertical-align: top;
}
.wp-block-table.is-style-stroke-row tr:last-child td {
  border-bottom: 0;
}
.wp-block-table.has-layout-66-33 th:last-child,
.wp-block-table.has-layout-66-33 td:last-child {
  width: 29%;
}

.wp-block-list {
  padding-inline-start: 1em;
}
.wp-block-list:has(+ p), .wp-block-list:has(+ .wp-block-list) {
  margin-block-end: 1em !important;
}
.wp-block-list + p,
.wp-block-list + .wp-block-list {
  margin-block-start: 1em !important;
}

.header {
  height: var(--header-height);
}
.header__inner {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-black);
  z-index: 10000;
}
.header__container {
  height: var(--header-height);
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__container > * {
  flex-basis: 33%;
}
.header__logo-link {
  width: var(--header-logo-width);
  height: var(--header-logo-height);
  width: 100%;
  text-align: center;
}
.header__logo-link svg {
  width: var(--header-logo-width);
  height: var(--header-logo-height);
  fill: var(--color-text);
}
.header__menu-toggle-wrapper {
  text-align: right;
  z-index: 150;
}
.header__button-icon {
  background: transparent;
  border: none;
  padding: 5px;
  margin-right: -5px;
  width: 35px;
  height: 35px;
  z-index: 150;
}
.header__button-icon .icon,
.header__button-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--color-text);
}
.header__button-icon .icon-menu-close {
  display: none;
}
.header__button-icon.is-active .icon-menu-open {
  display: none;
}
.header__button-icon.is-active .icon-menu-close {
  display: block;
}

@media screen and (max-height: 37.4375em) {
  .header-autohide {
    position: fixed;
    top: calc(var(--header-height) * -1);
    color: var(--color-text) !important;
    transition: all var(--speed-2) ease-in-out;
  }
  .header-autohide.header-autohide--visible {
    top: 0;
  }
  .header-autohide.header-autohide--visible .sub-menu-container {
    transform: translateY(0);
  }
}
@media screen and (max-height: 37.4375em) and (min-width: 64em) {
  .header-autohide {
    top: calc(var(--header-height) * -1 - 20px);
  }
}
.general-banner {
  display: flex;
  gap: var(--spacing-80);
  padding: 0.9em var(--site-padding);
  border-bottom: 1px solid var(--color-text);
  font-size: var(--font-size-heading-medium);
  white-space: nowrap;
  color: var(--color-text);
  text-decoration: none;
  overflow: hidden;
}
.general-banner p {
  color: var(--color-text);
  text-decoration: none;
  animation: slideLeft 10s linear infinite;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--spacing-80)));
  }
}
.menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-primary {
  position: fixed;
  padding-top: var(--header-height);
  padding-right: calc(var(--site-padding) * 2);
  padding-left: calc(var(--site-padding) * 2);
  padding-bottom: var(--site-padding);
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: var(--menu-width);
  display: none;
  background-color: var(--color-white);
  z-index: 100;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--speed-1) ease-in-out;
  box-shadow: var(--shadow-menu);
}
.menu-primary.menu-panel-is-accesible {
  display: block;
}
.menu-primary.menu-panel-is-visible {
  transform: translateY(0);
}
.menu-primary ul {
  width: 100%;
  max-width: var(--container-width);
  padding: 0 var(--site-padding);
  margin-right: auto;
  margin-left: auto;
  list-style: none;
  text-align: center;
}
.menu-primary ul a {
  display: block;
  color: var(--color-text);
  padding: 0.2em 0;
  font-size: 24px;
  font-family: var(--font-family-secondary);
  text-decoration: none;
  font-weight: 500;
}
[data-whatintent=mouse] .menu-primary ul a:hover {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
}
.menu-primary ul .sub-menu a {
  font-weight: 400;
}
.menu-primary ul .current-menu-item > a {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
}

.menu-social__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 48.8125em) {
  .menu-social__list {
    gap: 0;
  }
}
.menu-social__list .menu-item {
  width: 35px;
  height: 35px;
  padding: 6px;
}
.menu-social__list .menu-item--newsletter {
  padding: 5px;
}
@media screen and (max-width: 48.8125em) {
  .menu-social__list .menu-item {
    width: 25px;
    height: 25px;
  }
}
.menu-social__list .icon {
  display: block;
  width: 100%;
  height: 100%;
}
.menu-social__list svg {
  width: 100%;
  height: 100%;
  fill: var(--color-text);
}

.footer {
  padding: var(--spacing-50) 0;
  border-top: 1px solid var(--color-text);
}
.footer a {
  color: var(--color-text);
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
}
[data-whatintent=mouse] .footer a:hover {
  text-decoration: none;
}
.footer .copyright .container {
  display: flex;
  flex-wrap: wrap;
}

.button-block,
.wp-block-button__link {
  --button-color-text: var(--color-text);
  --button-color-text-hover: var(--color-text);
  --button-color-background: var(--color-section-background, var(--color-primary));
  --button-color-background-hover: var(--color-section-background, var(--color-primary));
  --button-color-border: transparent;
  --button-border-radius: 0;
  --button-hover-brightness: 1.3;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.8em 2.5em;
  overflow: hidden;
  font-size: var(--font-size-button);
  font-weight: 400;
  line-height: 1;
  color: var(--button-color-text) !important;
  text-align: center;
  background-color: var(--button-color-background);
  border: 1px solid !important;
  border-color: var(--button-color-border) !important;
  border-radius: var(--button-border-radius);
  transition: all var(--speed-1) ease-in-out;
  text-decoration: none;
}
.button-block:hover,
.wp-block-button__link:hover {
  color: var(--button-color-text-hover) !important;
  text-decoration: none;
  background-color: var(--button-color-background-hover);
  filter: brightness(var(--button-hover-brightness));
}

.button-outline,
.is-style-outline .wp-block-button__link {
  --button-color-text: var(--color-text);
  --button-color-text-hover: var(--color-text);
  --button-color-background: var(--color-section-background, var(--color-primary));
  --button-color-background-hover: var(--color-section-background, var(--color-primary));
  --button-color-border: transparent;
  --button-border-radius: 0;
  --button-hover-brightness: 1.3;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.8em 2.5em;
  overflow: hidden;
  font-size: var(--font-size-button);
  font-weight: 400;
  line-height: 1;
  color: var(--button-color-text) !important;
  text-align: center;
  background-color: var(--button-color-background);
  border: 1px solid !important;
  border-color: var(--button-color-border) !important;
  border-radius: var(--button-border-radius);
  transition: all var(--speed-1) ease-in-out;
  text-decoration: none;
}
.button-outline:hover,
.is-style-outline .wp-block-button__link:hover {
  color: var(--button-color-text-hover) !important;
  text-decoration: none;
  background-color: var(--button-color-background-hover);
  filter: brightness(var(--button-hover-brightness));
}
.button-outline,
.is-style-outline .wp-block-button__link {
  --button-color-background: transparent;
  --button-color-background-hover: var(--color-section-background, var(--color-primary));
  --button-color-border: var(--color-section-color, var(--color-primary));
  --button-hover-brightness: 1;
}

.button-rounded,
.is-style-rounded .wp-block-button__link {
  --button-color-text: var(--color-text);
  --button-color-text-hover: var(--color-text);
  --button-color-background: var(--color-section-background, var(--color-primary));
  --button-color-background-hover: var(--color-section-background, var(--color-primary));
  --button-color-border: transparent;
  --button-border-radius: 0;
  --button-hover-brightness: 1.3;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.8em 2.5em;
  overflow: hidden;
  font-size: var(--font-size-button);
  font-weight: 400;
  line-height: 1;
  color: var(--button-color-text) !important;
  text-align: center;
  background-color: var(--button-color-background);
  border: 1px solid !important;
  border-color: var(--button-color-border) !important;
  border-radius: var(--button-border-radius);
  transition: all var(--speed-1) ease-in-out;
  text-decoration: none;
}
.button-rounded:hover,
.is-style-rounded .wp-block-button__link:hover {
  color: var(--button-color-text-hover) !important;
  text-decoration: none;
  background-color: var(--button-color-background-hover);
  filter: brightness(var(--button-hover-brightness));
}
.button-rounded,
.is-style-rounded .wp-block-button__link {
  --button-border-radius: 2em;
}

.button-rounded-outline,
.is-style-rounded-outline .wp-block-button__link {
  --button-color-text: var(--color-text);
  --button-color-text-hover: var(--color-text);
  --button-color-background: var(--color-section-background, var(--color-primary));
  --button-color-background-hover: var(--color-section-background, var(--color-primary));
  --button-color-border: transparent;
  --button-border-radius: 0;
  --button-hover-brightness: 1.3;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.8em 2.5em;
  overflow: hidden;
  font-size: var(--font-size-button);
  font-weight: 400;
  line-height: 1;
  color: var(--button-color-text) !important;
  text-align: center;
  background-color: var(--button-color-background);
  border: 1px solid !important;
  border-color: var(--button-color-border) !important;
  border-radius: var(--button-border-radius);
  transition: all var(--speed-1) ease-in-out;
  text-decoration: none;
}
.button-rounded-outline:hover,
.is-style-rounded-outline .wp-block-button__link:hover {
  color: var(--button-color-text-hover) !important;
  text-decoration: none;
  background-color: var(--button-color-background-hover);
  filter: brightness(var(--button-hover-brightness));
}
.button-rounded-outline,
.is-style-rounded-outline .wp-block-button__link {
  --button-color-background: transparent;
  --button-color-background-hover: var(--color-section-background, var(--color-primary));
  --button-color-border: var(--color-section-color, var(--color-primary));
  --button-hover-brightness: 1;
  --button-border-radius: 2em;
}

/*! Flickity v2.3.0 https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: none;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

/* draggable */
.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

/* ---- flickity-button ---- */
.flickity-button {
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  border: none;
  color: var(--color-text);
}

.flickity-button:hover {
  background: white;
  cursor: pointer;
}

.flickity-button:focus {
  outline: none;
  box-shadow: 0 0 0 5px var(--color-primary);
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  /* prevent disabled button from capturing pointer up event. #716 */
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

/* ---- previous/next buttons ---- */
.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  /* vertically center */
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

/* right to left */
.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

/* ---- page dots ---- */
.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: var(--color-text);
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* ---- Film Gallery Custom Styles ---- */
.single-film__gallery {
  margin: var(--spacing-7) 0;
}

.film-carousel {
  margin-bottom: var(--spacing-4);
  background-color: var(--color-background);
  border-radius: 8px;
  overflow: hidden;
}
.film-carousel .carousel-cell {
  width: 100%;
}
.film-carousel .carousel-cell img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 60vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.film-carousel-nav .carousel-cell-nav {
  width: 80px;
  margin-right: var(--spacing-2);
}
.film-carousel-nav .carousel-cell-nav img {
  width: 100%;
  height: 60px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.film-carousel-nav .carousel-cell-nav img:hover {
  border-color: var(--color-primary);
  opacity: 0.8;
}
.film-carousel-nav .carousel-cell-nav.is-nav-selected img {
  border-color: var(--color-primary);
  opacity: 1;
}
.film-carousel-nav .flickity-prev-next-button {
  width: 32px;
  height: 32px;
  background: var(--color-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.film-carousel-nav .flickity-prev-next-button.previous {
  left: 5px;
}
.film-carousel-nav .flickity-prev-next-button.next {
  right: 5px;
}

@media screen and (min-width: 48.875em) {
  .single-film__gallery {
    display: grid;
    grid-template-columns: 1fr 120px;
    gap: var(--spacing-4);
  }
  .film-carousel {
    margin-bottom: 0;
  }
  .film-carousel-nav {
    order: 2;
  }
  .film-carousel-nav .flickity-viewport {
    height: 400px;
  }
  .film-carousel-nav .carousel-cell-nav {
    width: 100%;
    margin-right: 0;
    margin-bottom: var(--spacing-2);
  }
  .film-carousel-nav .carousel-cell-nav img {
    height: 80px;
    width: 100%;
  }
  .film-carousel-nav .flickity-prev-next-button {
    left: 50%;
    transform: translateX(-50%);
  }
  .film-carousel-nav .flickity-prev-next-button.previous {
    top: 5px;
    transform: translateX(-50%) rotate(-90deg);
  }
  .film-carousel-nav .flickity-prev-next-button.next {
    top: auto;
    bottom: 5px;
    transform: translateX(-50%) rotate(90deg);
  }
}
.film-carousel .flickity-page-dots,
.film-carousel-nav .flickity-page-dots {
  display: none;
}

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}

/* Flickity fullscreen v1.0.1
------------------------- */
.flickity-enabled.is-fullscreen {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.9);
  padding-bottom: 35px;
  padding-bottom: 0;
  z-index: 11000;
}

.flickity-enabled.is-fullscreen .flickity-page-dots {
  bottom: 10px;
}

.flickity-enabled.is-fullscreen img {
  -o-object-fit: contain;
     object-fit: contain;
}

.flickity-enabled.is-fullscreen .flickity-page-dots .dot {
  background: white;
}

/* prevent page scrolling when flickity is fullscreen */
html.is-flickity-fullscreen {
  overflow: hidden;
}

/* ---- flickity-fullscreen-button ---- */
.flickity-fullscreen-button {
  display: block;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
}

/* right-to-left */
.flickity-rtl .flickity-fullscreen-button {
  right: auto;
  left: 10px;
}

.flickity-fullscreen-button-exit {
  display: none;
}

.flickity-enabled.is-fullscreen .flickity-fullscreen-button-exit {
  display: block;
}

.flickity-enabled.is-fullscreen .flickity-fullscreen-button-view {
  display: none;
}

.flickity-fullscreen-button .flickity-button-icon {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 4px;
  top: 4px;
}

.wp-pagenavi {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: var(--gap);
  margin-bottom: var(--spacing-50);
}
.wp-pagenavi > * {
  font-family: var(--font-family-primary);
  font-weight: 400;
  color: var(--color-text);
  font-size: var(--font-size-medium);
  line-height: var(--line-height-title-3);
  text-transform: uppercase;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.wp-pagenavi > *.current {
  background-color: var(--color-text);
  color: var(--color-white);
}
[data-whatintent=mouse] .wp-pagenavi > *:not(.current):hover {
  background-color: var(--color-gray);
  text-decoration: none;
}

.card-default {
  text-decoration: none;
}
.card-default__thumbnail {
  overflow: hidden;
}
.card-default__thumbnail img {
  aspect-ratio: 34/19;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform var(--speed-2) ease-in-out;
}
.card-default__title {
  font-size: var(--font-size-heading-small);
  text-align: left;
  margin-top: var(--spacing-10);
  color: var(--color-text);
  text-decoration: none;
  color: var(--color-text);
}
[data-whatintent=mouse] .card-default:hover .card-default__thumbnail img {
  transform: scale(1.2);
}

.card-post {
  text-decoration: none;
}
.card-post__thumbnail {
  overflow: hidden;
}
.card-post__thumbnail img {
  aspect-ratio: 34/19;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform var(--speed-2) ease-in-out;
}
.card-post__title {
  font-size: var(--font-size-heading-medium);
  text-align: left;
  margin-top: var(--spacing-10);
  color: var(--color-text);
  text-decoration: none;
  color: var(--color-text);
}
.card-post__date {
  font-size: var(--font-size-medium-large);
}
.card-post__excerpt {
  margin-top: 0.5em;
}
.card-post__link {
  margin-top: var(--spacing-10);
}

.card-page {
  text-decoration: none;
}
.card-page__thumbnail {
  overflow: hidden;
}
.card-page__thumbnail img {
  aspect-ratio: var(--aspect-ratio-wide);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1);
  transition: transform var(--speed-2) ease-in-out;
}
.card-page__title {
  font-size: var(--font-size-heading-small);
  text-align: center;
  padding: var(--spacing-10);
  background-color: var(--color-section-background);
  color: var(--color-text);
}
[data-whatintent=mouse] .card-page:hover .card-page__thumbnail img {
  transform: scale(1.2);
}

.card-person {
  text-decoration: none;
  background: var(--color-section-background);
  overflow: hidden;
  aspect-ratio: 34/30;
  position: relative;
}
.card-person__content {
  position: absolute;
  top: 0;
  left: 0;
  width: 167%;
  display: grid;
  grid-template-columns: 2fr 3fr;
  transform: translateX(0);
  transition: transform var(--speed-2) ease-in-out;
}
.card-person__content.is-visible {
  transform: translateX(-40%);
}
.card-person__thumbnail {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.card-person__title {
  font-size: var(--font-size-heading-small);
}
.card-person figcaption {
  width: 100%;
  padding: var(--spacing-30);
}
.card-person__toggle {
  background: transparent;
  border: none;
  color: var(--color-text);
  padding: 0;
  text-decoration: underline;
}
.card-person__description {
  margin-top: var(--spacing-10);
  opacity: 0;
  transition: opacity var(--speed-2) ease-in-out;
}
.card-person__content.is-visible .card-person__description {
  opacity: 1;
}

.card-evenement-preview {
  display: grid;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  row-gap: var(--spacing-30);
  border-top: 1px solid var(--color-text);
  padding: var(--spacing-30) 0;
}
.card-evenement-preview__head {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-10);
  justify-content: space-between;
}
.card-evenement-preview__head p {
  font-size: var(--font-size-small);
}
.card-evenement-preview__date {
  margin-top: var(--spacing-10);
}
.card-evenement-preview__thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 34/26;
  -o-object-fit: cover;
     object-fit: cover;
}
.card-evenement-preview__content > * {
  margin: 0;
}
.card-evenement-preview__content > *:not(:last-child) {
  margin-bottom: var(--spacing-10);
}
@media screen and (min-width: 48.875em) {
  .card-evenement-preview {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-formation {
  text-decoration: none;
  display: grid;
  grid-template-columns: 2fr 3fr;
  background-color: var(--wp--preset--color--yellow);
  color: var(--color-text);
}
.card-formation__thumbnail {
  overflow: hidden;
}
.card-formation__thumbnail img {
  aspect-ratio: 2/3;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(1);
  transition: transform var(--speed-2) ease-in-out;
}
.card-formation__content {
  padding: var(--gap);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card-formation__title {
  font-size: var(--font-size-heading-medium);
}
.card-formation__info {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.card-formation__hours {
  font-size: var(--font-size-heading-medium);
}
.card-formation__logo {
  width: 72px;
}
.card-formation__logo svg {
  width: 100%;
  height: auto;
}
[data-whatintent=mouse] .card-formation:hover .card-formation__thumbnail img {
  transform: scale(1.2);
}

.page-header {
  border-bottom: 1px solid var(--color-text);
}
.page-header h1 {
  font-size: var(--font-size-heading-large);
  padding: 0.4em 0;
}

.special-home-button-margin {
  margin-block-start: calc(var(--spacing-30) + 10px) !important;
}

.post-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  row-gap: var(--spacing-80);
  margin-top: var(--spacing-50);
  margin-bottom: var(--spacing-50);
}
@media screen and (min-width: 48.875em) {
  .post-index {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 64em) {
  .post-index {
    grid-template-columns: repeat(3, 1fr);
  }
}

.post-index {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: var(--gap);
       column-gap: var(--gap);
  row-gap: var(--spacing-80);
  margin-top: var(--spacing-50);
  margin-bottom: var(--spacing-50);
}
@media screen and (min-width: 48.875em) {
  .post-index {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 64em) {
  .post-index {
    grid-template-columns: repeat(3, 1fr);
  }
}

.single-post__date {
  margin: var(--spacing-10) 0;
  font-weight: 700;
}

.single-formation__header {
  background-color: var(--wp--preset--color--yellow);
  display: grid;
}
@media screen and (min-width: 48.875em) {
  .single-formation__header {
    grid-template-columns: 1fr 1fr;
  }
}
.single-formation__thumbnail img {
  aspect-ratio: 4/2;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (min-width: 48.875em) {
  .single-formation__thumbnail img {
    aspect-ratio: auto;
    min-height: 600px;
  }
}
.single-formation__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spacing-40);
  padding: var(--gap);
}
.single-formation__title {
  font-size: var(--font-size-heading-large);
}
.single-formation__info {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.single-formation__tagline, .single-formation__schedule {
  font-size: var(--font-size-heading-medium);
}
.single-formation__logo {
  width: 170px;
}
.single-formation__logo svg {
  width: 100%;
  height: auto;
}

.events-header {
  display: flex;
  gap: var(--gap);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0.8em 0;
}
.events-header .wpgb-facet fieldset {
  margin: 0 !important;
}
.events-header .wpgb-facet .wpgb-inline-list {
  margin: 0;
  gap: var(--gap);
}
.events-header .wpgb-facet .wpgb-inline-list li {
  margin: 0;
}
.events-header .wpgb-facet .wpgb-inline-list li .wpgb-button {
  --button-color-text: var(--color-text);
  --button-color-text-hover: var(--color-text);
  --button-color-background: var(--color-section-background, var(--color-primary));
  --button-color-background-hover: var(--color-section-background, var(--color-primary));
  --button-color-border: transparent;
  --button-border-radius: 0;
  --button-hover-brightness: 1.3;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 0.8em 2.5em;
  overflow: hidden;
  font-size: var(--font-size-button);
  font-weight: 400;
  line-height: 1;
  color: var(--button-color-text) !important;
  text-align: center;
  background-color: var(--button-color-background);
  border: 1px solid !important;
  border-color: var(--button-color-border) !important;
  border-radius: var(--button-border-radius);
  transition: all var(--speed-1) ease-in-out;
  text-decoration: none;
}
.events-header .wpgb-facet .wpgb-inline-list li .wpgb-button:hover {
  color: var(--button-color-text-hover) !important;
  text-decoration: none;
  background-color: var(--button-color-background-hover);
  filter: brightness(var(--button-hover-brightness));
}
.events-header .wpgb-facet .wpgb-inline-list li .wpgb-button {
  --button-color-background: transparent;
  --button-hover-brightness: 1;
  --button-border-radius: 2em;
  padding: 0.35em 1em;
  border-width: 2px !important;
}
.events-header .wpgb-facet .wpgb-inline-list li .wpgb-button:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 0.25rem;
}
.events-header .wpgb-facet .wpgb-inline-list li:first-child .wpgb-button {
  --button-color-background-hover: var(--wp--preset--color--rose);
  --button-color-border: var(--wp--preset--color--rose);
}
.events-header .wpgb-facet .wpgb-inline-list li:first-child .wpgb-button[aria-pressed=true] {
  --button-color-background: var(--wp--preset--color--rose);
}
.events-header .wpgb-facet .wpgb-inline-list li:nth-child(2) .wpgb-button {
  --button-color-background-hover: var(--wp--preset--color--yellow);
  --button-color-border: var(--wp--preset--color--yellow);
}
.events-header .wpgb-facet .wpgb-inline-list li:nth-child(2) .wpgb-button[aria-pressed=true] {
  --button-color-background: var(--wp--preset--color--yellow);
}

.events-index {
  padding: 0;
  margin: 0;
  list-style: none;
}/*# sourceMappingURL=theme.css.map */