/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* Apply hover styles only on devices with real hover support (mouse/trackpad) */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
body {
  --l-site-header-offset: 4.625rem;
  --l-site-header-base-offset: 82px;
}
@media screen and (max-width: 1440px) {
  body {
    --l-site-header-base-offset: 77px;
  }
}
@media screen and (max-width: 991px) {
  body {
    --l-site-header-base-offset: 69px;
  }
}

.l-site-header {
  --header-background: var(--wp--preset--color--indigo-rvb);
  --header-border-color: #C5BEFE;
  --header-border-size: 1px;
  --header-border-opacity: 0.5;
  --header-link-color: var(--wp--preset--color--white);
  --header-box-shadow-standard: 0 0.5rem 1rem rgba(0, 0, 0, 0.25);
  --header-box-shadow: var(--header-box-shadow-standard);
  --header-padding-y: 1rem;
  --header-height: var(--l-site-header-base-offset);
}
body.has-hero-image .l-site-header {
  --header-background: transparent;
  --header-box-shadow: none;
}
body.has-hero-image.has-hero--home .l-site-header {
  --header-border-opacity: 0;
}
body.has-hero-image.has-hero--img .l-site-header {
  --header-border-opacity: .25;
  --header-border-color: var(--wp--preset--color--white);
}
.l-site-header.is-scrolled {
  --header-padding-y: 0.5rem !important;
  --header-height: auto;
}
body .l-site-header.has-open-panel, body .l-site-header.is-scrolled, body .l-site-header--nav-open {
  --header-background: var(--wp--preset--color--indigo-rvb) !important;
  --header-border-color: var(--wp--preset--color--lila-rvb) !important;
  --header-border-opacity: .75 !important;
  --header-box-shadow: var(--header-box-shadow-standard) !important;
}
@media (hover: hover) and (pointer: fine) {
  body .l-site-header:hover {
    --header-background: var(--wp--preset--color--indigo-rvb) !important;
    --header-border-color: var(--wp--preset--color--lila-rvb) !important;
    --header-border-opacity: .75 !important;
    --header-box-shadow: var(--header-box-shadow-standard) !important;
  }
}
@media screen and (max-width: 991px) {
  .l-site-header {
    --header-padding-y: 0.75rem;
  }
}

.l-site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background-color: var(--header-background);
  color: var(--header-link-color);
  box-shadow: var(--header-box-shadow);
  transition: background-color 0.25s, color 0.25s, box-shadow 0.25s;
}
.l-site-header__shell {
  position: relative;
}
.l-site-header__shell::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: var(--header-border-size);
  pointer-events: none;
  background-color: var(--header-border-color);
  opacity: var(--header-border-opacity);
  transition: background-color 0.25s, opacity 0.25s;
}
.l-site-header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: var(--header-padding-y);
  padding-bottom: var(--header-padding-y);
  transition: padding 0.25s;
  height: var(--header-height);
}
@media screen and (max-width: 991px) {
  .l-site-header__inner {
    gap: 0.75rem;
  }
}
.l-site-header__logo-link,
.l-site-header .custom-logo-link {
  display: inline-flex;
  align-items: center;
}
.l-site-header .custom-logo {
  display: block;
  height: auto;
  max-height: 2.5rem;
  width: auto;
  max-width: 10rem;
}
.l-site-header__brand {
  flex: 0 0 auto;
  min-width: 0;
}
.l-site-header__nav-cluster {
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  min-width: 0;
}
@media screen and (max-width: 991px) {
  .l-site-header__nav-cluster {
    position: fixed;
    z-index: 998;
    left: 0;
    right: 0;
    bottom: 0;
    top: var(--l-site-header-offset, 4.625rem);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.25rem 1.25rem 2rem;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: var(--header-background);
    color: var(--header-link-color);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s ease, visibility 0.3s ease;
    border-radius: 0;
    box-shadow: none;
  }
  .l-site-header__nav-cluster.is-open {
    transform: translateX(0);
    visibility: visible;
  }
}
.l-site-header__nav {
  justify-self: center;
  min-width: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 991px) {
  .l-site-header__nav {
    justify-content: stretch;
    flex: 1 1 auto;
  }
}
.l-site-header__nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 991px) {
  .l-site-header__nav-links {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
  }
}
.l-site-header__action {
  position: relative;
}
.l-site-header__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
  flex-shrink: 0;
}
.l-site-header__actions .c-btn {
  flex: 0 0 auto;
  width: auto;
  padding: 0.75rem;
}
.l-site-header__actions_submenu {
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  position: absolute;
  top: calc(100% + var(--header-padding-y) + 2px);
  right: 0;
  width: 180px;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 0.75rem;
  text-align: right;
  opacity: 0;
  transition: opacity 0.3s ease, display 0.3s ease;
  transition-behavior: allow-discrete;
}
.l-site-header__actions_submenu.is-open {
  display: flex;
  opacity: 1;
}
.l-site-header__actions_submenu a {
  color: var(--wp--preset--color--white);
  font-family: "paralucent-text", sans-serif;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-site-header__actions_submenu a:hover {
    color: var(--wp--preset--color--lila-rvb);
  }
}
@media screen and (max-width: 991px) {
  .l-site-header__actions {
    margin-top: auto;
    padding-top: 1.5rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    border-top: 1px solid rgba(19, 19, 19, 0.12);
  }
  .l-site-header__actions .c-btn {
    width: 100%;
    justify-content: center;
  }
  .l-site-header__actions_submenu {
    top: auto;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    gap: 1.5rem;
  }
}
.l-site-header__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  margin: 0 0 0 auto;
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.l-site-header__burger-line {
  display: block;
  width: 1.375rem;
  height: 0.125rem;
  border-radius: 1px;
  background-color: var(--wp--preset--color--white);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.l-site-header__burger-line:nth-child(2) {
  margin-top: 0.3125rem;
  margin-bottom: 0.3125rem;
}
.l-site-header--nav-open .l-site-header__burger-line:nth-child(1) {
  transform: translateY(0.4375rem) rotate(45deg);
}
.l-site-header--nav-open .l-site-header__burger-line:nth-child(2) {
  opacity: 0;
}
.l-site-header--nav-open .l-site-header__burger-line:nth-child(3) {
  transform: translateY(-0.4375rem) rotate(-45deg);
}
.l-site-header__nav-overlay {
  display: block;
  position: fixed;
  top: var(--l-site-header-offset, 4.625rem);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 997;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
@media (min-width: 992px) {
  .l-site-header.has-open-panel .l-site-header__nav-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.l-site-header-panel__back {
  display: none;
}
.l-site-header-nav-item {
  display: flex;
  align-items: center;
}
.l-site-header-nav-item__toggle, .l-site-header-nav-item__link {
  font-family: "paralucent-condensed", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  text-transform: none;
  color: var(--header-link-color);
  display: inline-flex;
  align-items: center;
  padding: 0.625rem 0.25rem;
  cursor: pointer;
  white-space: nowrap;
}
.l-site-header-nav-item__link {
  text-decoration: none;
}
.l-site-header-nav-item__link_wrapper {
  display: inline-flex;
  align-items: center;
}
.l-site-header-nav-item__toggle {
  text-align: left;
  appearance: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  column-gap: 0.25rem;
}
.l-site-header-nav-item__toggle svg {
  height: 0.3125rem;
  width: auto;
  transform: translateY(-1px);
}
.l-site-header-nav-item__toggle path {
  fill: currentColor;
}
.l-site-header-panel {
  position: fixed;
  top: calc(var(--l-site-header-offset, 4.625rem) + 1px);
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  padding-top: 0;
  max-width: none;
  margin: auto;
  z-index: 1000;
}
.l-site-header-panel__inner {
  background-color: var(--header-background);
  color: var(--header-link-color);
}
.l-site-header-submenu__cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(100px, 1fr));
  gap: 6.875rem;
  max-width: var(--container-width);
  padding-left: var(--container-padding-x);
  padding-right: var(--container-padding-x);
  margin: auto;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 991px) {
  .l-site-header-submenu__cols {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.l-site-header-submenu__col {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.l-site-header-submenu__col.col--title {
  padding-right: 2rem;
  font-weight: 300;
  font-family: "paralucent", sans-serif;
  line-height: 1.125;
}
.l-site-header-submenu__col.col--title {
  font-size: 28px;
}
@media screen and (min-width: 569px) {
  .l-site-header-submenu__col.col--title {
    font-size: calc(28px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header-submenu__col.col--title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 991px) {
  .l-site-header-submenu__col.col--title {
    padding-right: 0;
    justify-content: flex-start;
  }
}
.l-site-header-submenu__col.col--title em {
  font-style: normal;
  color: var(--wp--preset--color--lila-rvb);
}
.l-site-header-submenu__menu {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.l-site-header-submenu__link {
  margin-top: 1.5rem;
}
.l-site-header-submenu-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(197, 190, 254, 0.2509803922);
  padding-bottom: 0.5rem;
  font-weight: 400;
  font-family: "paralucent", sans-serif;
}
.l-site-header-submenu-item {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .l-site-header-submenu-item {
    font-size: calc(16px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .l-site-header-submenu-item {
    font-size: 1rem;
  }
}
.l-site-header-submenu-item__link {
  display: grid;
  grid-template-columns: 80px 1fr 2rem;
  color: var(--header-link-color);
  gap: 1rem;
  width: 100%;
}
.l-site-header-submenu-item__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center center;
}
.l-site-header-submenu-item__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: space-between;
}
.l-site-header-submenu-item__label {
  font-size: 1rem;
  overflow: hidden;
  text-align: left;
}
.l-site-header-submenu-item__tags {
  display: flex;
  gap: 0.25rem;
}
.l-site-header-submenu-item__tag {
  font-size: 0.5em;
  text-transform: uppercase;
  font-weight: 400;
  background: rgba(197, 190, 254, 0.2);
  padding: 0.375rem 0.75rem;
}
.l-site-header-submenu-item__icon {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.l-site-header-submenu-item__icon .switch-hover-arrow {
  overflow: hidden;
  --arrow-size: 1.625rem;
  --arrow-bg: var(--wp--preset--color--capucine);
  --arrow-color: var(--wp--preset--color--white);
  --arrow-hover-bg: var(--wp--preset--color--capucine);
  --arrow-hover-color: var(--wp--preset--color--white);
}
@media screen and (max-width: 991px) {
  .l-site-header .l-container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .l-site-header__burger {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .l-site-header__nav-overlay.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .l-site-header-nav-item {
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid rgba(19, 19, 19, 0.12);
  }
  .l-site-header-nav-item:last-child {
    border-bottom: 0;
  }
  .l-site-header-nav-item__toggle, .l-site-header-nav-item__link {
    justify-content: space-between;
    width: 100%;
    padding: 1.375rem 0;
    white-space: normal;
  }
  .l-site-header-nav-item__toggle svg {
    flex-shrink: 0;
    transition: transform 0.25s ease;
  }
  .l-site-header__nav.nav-has-sub-open > .l-site-header-nav-item:not(.is-sub-open) {
    display: none;
  }
  .l-site-header__nav.nav-has-sub-open > .l-site-header-nav-item.is-sub-open > .l-site-header-nav-item__toggle {
    display: none;
  }
  .l-site-header-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    margin: 0;
    max-width: none;
    padding: 0 1.25rem 1.5rem;
    background-color: var(--header-background);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.3s ease, opacity 0.25s ease, visibility 0.25s ease;
    pointer-events: none;
  }
  .l-site-header-panel__back {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.5rem 0 0.875rem;
    margin: 0;
    appearance: none;
    border: 0;
    background: transparent;
    color: var(--wp--preset--color--white);
    cursor: pointer;
    text-align: left;
    font-weight: 400;
    line-height: 1;
    font-family: "paralucent", sans-serif;
    text-transform: uppercase;
    flex-shrink: 0;
  }
  .l-site-header-panel__back {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) and (min-width: 569px) {
  .l-site-header-panel__back {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 991px) and (min-width: 1440px) {
  .l-site-header-panel__back {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 991px) {
  .l-site-header-panel__back-icon {
    display: inline-flex;
    width: 1.25rem;
    height: 1.25rem;
    align-items: center;
    justify-content: center;
  }
  .l-site-header-panel__back-icon svg {
    width: 0.5rem;
    height: auto;
  }
  .l-site-header-panel__back-icon path {
    fill: currentColor;
  }
  .l-site-header-panel__inner {
    flex: 1 1 auto;
    min-height: 0;
    flex-direction: column;
    padding: 0.25rem 0 0.5rem;
    border-radius: 0;
    gap: 0.75rem;
  }
  .l-site-header-nav-item.is-sub-open .l-site-header-panel {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
  }
  .l-site-header-panel-item {
    padding: 0.875rem 0;
    column-gap: 0.5rem;
  }
  .l-site-header-panel-item__ttl {
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    font-family: "paralucent", sans-serif;
    color: var(--wp--preset--color--black);
  }
  .l-site-header-panel-item__ttl {
    font-size: 13px;
  }
}
@media screen and (max-width: 991px) and (min-width: 569px) {
  .l-site-header-panel-item__ttl {
    font-size: calc(13px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 991px) and (min-width: 1440px) {
  .l-site-header-panel-item__ttl {
    font-size: 0.8125rem;
  }
}
@media screen and (max-width: 991px) {
  .l-site-header-panel-item__icon {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
  }
  .l-site-header-panel-item__icon svg {
    height: 0.625rem;
    width: auto;
  }
}

.editor-styles-wrapper .l-site-header {
  position: relative;
}

body.l-site-header-nav-locked {
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  body.l-site-header-nav-locked {
    touch-action: none;
  }
}

body.is-resizing .l-site-header,
body.is-resizing .l-site-header * {
  transition: none !important;
}