@charset "UTF-8";
/*
Theme Name: Thème FSE B17
Theme URI: 
Author: B17
Author URI: https://www.b17.fr
Description: Thème agence pour le Full Site Editing
Requires at least: 6.5
Tested up to: 6.5
Requires PHP: 8.0
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: b17-base
*/
/****************************************************************************/
/* BASE
/****************************************************************************/
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/****************************************************************************/
/* UTILS
/****************************************************************************/
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  border: 0;
  vertical-align: baseline;
}

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
}

body {
  /* 3. Add accessible line-height */
  line-height: 1.5;
  /* 4. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 5. Improve media defaults */
img, picture, video, canvas, svg {
  max-width: 100%;
  vertical-align: middle;
}

/* 6. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 7. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/* 8. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

/* ==========================================================================
    Grid System Variables
   ========================================================================== */
:root {
  --grid-gutter: 15px;
  --grid-max-width: 1352px;
  --grid-breakpoint-sm: 576px;
  --grid-breakpoint-md: 768px;
  --grid-breakpoint-lg: 992px;
  --grid-breakpoint-xl: 1200px;
}

/* ==========================================================================
    Container Styles
   ========================================================================== */
.container,
.container-fluid {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--grid-gutter);
}

/* Container Breakpoints */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1352px;
  }
}
.container-sm {
  max-width: 740px;
}

.container-lg {
  max-width: 1400px;
}

.container-full {
  max-width: none;
  padding: 0;
}

.max-width-xxl {
  max-width: 1920px;
}

.max-width-xl {
  max-width: var(--wp--style--global--wide-size);
}

.max-width-lg {
  max-width: var(--wp--style--global--content-size);
}

.max-width-md {
  max-width: 960px;
}

.max-width-sm {
  max-width: 720px;
}

/* ==========================================================================
    Row Layout System
   ========================================================================== */
.u--flex {
  display: flex;
}

.u--align-center {
  align-items: center;
}

.u--justify-center {
  justify-content: center;
}

.u--justify-end {
  justify-content: flex-end;
}

.u--justify-between {
  justify-content: space-between;
}

.u--justify-around {
  justify-content: space-around;
}

.u--flex-direction--column, .u--flex--column {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

[data-row] {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: calc(100% + 30px);
  margin-left: calc(var(--grid-gutter) * -1);
  margin-right: calc(var(--grid-gutter) * -1);
}

/* Row Gap Variations */
[data-row*=gap-sm] {
  gap: 15px;
}

[data-row*=gap-lg] {
  gap: 45px;
}

[data-row*=gap-none] {
  gap: 0;
}

/* Horizontal Alignment */
[data-row=right] {
  justify-content: flex-end;
}

[data-row=center] {
  justify-content: center;
}

[data-row=space-between] {
  justify-content: space-between;
}

[data-row=space-evenly] {
  justify-content: space-evenly;
}

[data-row=space-around] {
  justify-content: space-around;
}

/* Vertical Alignment */
[data-row=top] {
  align-items: flex-start;
}

[data-row=middle] {
  align-items: center;
  height: 100%;
}

[data-row=bottom] {
  align-items: flex-end;
  height: 100%;
}

/* Combined Alignments */
[data-row="center middle"],
[data-row="right middle"],
[data-row="space-evenly middle"],
[data-row="space-between middle"] {
  align-items: center;
  height: 100%;
}

[data-row="center middle"] {
  justify-content: center;
}

[data-row="right middle"] {
  justify-content: flex-end;
}

[data-row="space-evenly middle"] {
  justify-content: space-evenly;
}

[data-row="space-between middle"] {
  justify-content: space-between;
}

[data-row="space-between bottom"] {
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
}

/* Direction Control */
[data-row=reverse],
[data-row="reverse middle"] {
  flex-direction: row-reverse;
}

[data-row="reverse middle"] {
  align-items: center;
  height: 100%;
}

/* Nested Rows */
[data-row] [data-row] {
  margin-left: calc(var(--grid-gutter) * -1);
  margin-right: calc(var(--grid-gutter) * -1);
  width: calc(100% + var(--grid-gutter) * 2);
}

/* ==========================================================================
   Column System
   ========================================================================== */
[data-col] {
  box-sizing: border-box;
  flex: 0 1 auto;
  align-self: auto;
  position: relative;
  min-width: 0;
  padding: 0 var(--grid-gutter);
}

/* Column Sizing Utilities */
[data-col=auto] {
  flex: 0 0 auto;
  width: auto;
}

[data-col=grow] {
  flex: 1 1 0;
  width: auto;
}

/* ==========================================================================
   Grid System
   ========================================================================== */
[data-grid] {
  display: grid;
  gap: 30px;
  padding: 0 var(--grid-gutter);
}

[data-grid=auto-fit] {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

[data-grid=auto-fill] {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

/* ==========================================================================
   Responsive Utilities
   ========================================================================== */
@media screen and (max-width: 991px) {
  [data-hide=mobile] {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  [data-hide=desktop] {
    display: none;
  }
}

/* ==========================================================================
   Column Fractions
   ========================================================================== */
/* Generate 12-column grid */
[data-col="1/12"] {
  flex-basis: 8.3333333333%;
}

.ie [data-col="1/12"] {
  max-width: 8.3333333333%;
}

[data-col-offset="1/12"] {
  margin-left: 8.3333333333%;
}

[data-col="2/12"] {
  flex-basis: 16.6666666667%;
}

.ie [data-col="2/12"] {
  max-width: 16.6666666667%;
}

[data-col-offset="2/12"] {
  margin-left: 16.6666666667%;
}

[data-col="3/12"] {
  flex-basis: 25%;
}

.ie [data-col="3/12"] {
  max-width: 25%;
}

[data-col-offset="3/12"] {
  margin-left: 25%;
}

[data-col="4/12"] {
  flex-basis: 33.3333333333%;
}

.ie [data-col="4/12"] {
  max-width: 33.3333333333%;
}

[data-col-offset="4/12"] {
  margin-left: 33.3333333333%;
}

[data-col="5/12"] {
  flex-basis: 41.6666666667%;
}

.ie [data-col="5/12"] {
  max-width: 41.6666666667%;
}

[data-col-offset="5/12"] {
  margin-left: 41.6666666667%;
}

[data-col="6/12"] {
  flex-basis: 50%;
}

.ie [data-col="6/12"] {
  max-width: 50%;
}

[data-col-offset="6/12"] {
  margin-left: 50%;
}

[data-col="7/12"] {
  flex-basis: 58.3333333333%;
}

.ie [data-col="7/12"] {
  max-width: 58.3333333333%;
}

[data-col-offset="7/12"] {
  margin-left: 58.3333333333%;
}

[data-col="8/12"] {
  flex-basis: 66.6666666667%;
}

.ie [data-col="8/12"] {
  max-width: 66.6666666667%;
}

[data-col-offset="8/12"] {
  margin-left: 66.6666666667%;
}

[data-col="9/12"] {
  flex-basis: 75%;
}

.ie [data-col="9/12"] {
  max-width: 75%;
}

[data-col-offset="9/12"] {
  margin-left: 75%;
}

[data-col="10/12"] {
  flex-basis: 83.3333333333%;
}

.ie [data-col="10/12"] {
  max-width: 83.3333333333%;
}

[data-col-offset="10/12"] {
  margin-left: 83.3333333333%;
}

[data-col="11/12"] {
  flex-basis: 91.6666666667%;
}

.ie [data-col="11/12"] {
  max-width: 91.6666666667%;
}

[data-col-offset="11/12"] {
  margin-left: 91.6666666667%;
}

[data-col="12/12"] {
  flex-basis: 100%;
}

.ie [data-col="12/12"] {
  max-width: 100%;
}

[data-col-offset="12/12"] {
  margin-left: 100%;
}

/* Common Fractions */
[data-col="1/2"] {
  flex-basis: 50%;
}

[data-col="1/3"] {
  flex-basis: 33.33333%;
}

[data-col="2/3"] {
  flex-basis: 66.66667%;
}

[data-col="1/4"] {
  flex-basis: 25%;
}

[data-col="3/4"] {
  flex-basis: 75%;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media screen and (min-width: 768px) {
  [data-row=nowrap] {
    flex-wrap: nowrap;
  }
  [data-row=nowrap] [data-col] {
    flex: 1;
  }
}
@media screen and (max-width: 991px) {
  [data-col-offset] {
    margin-left: 0;
  }
  /* Tablet-specific columns */
  [data-tab-col="1/12"] {
    flex-basis: 8.3333333333%;
  }
  [data-tab-col-offset="1/12"] {
    margin-left: 8.3333333333%;
  }
  [data-tab-col="2/12"] {
    flex-basis: 16.6666666667%;
  }
  [data-tab-col-offset="2/12"] {
    margin-left: 16.6666666667%;
  }
  [data-tab-col="3/12"] {
    flex-basis: 25%;
  }
  [data-tab-col-offset="3/12"] {
    margin-left: 25%;
  }
  [data-tab-col="4/12"] {
    flex-basis: 33.3333333333%;
  }
  [data-tab-col-offset="4/12"] {
    margin-left: 33.3333333333%;
  }
  [data-tab-col="5/12"] {
    flex-basis: 41.6666666667%;
  }
  [data-tab-col-offset="5/12"] {
    margin-left: 41.6666666667%;
  }
  [data-tab-col="6/12"] {
    flex-basis: 50%;
  }
  [data-tab-col-offset="6/12"] {
    margin-left: 50%;
  }
  [data-tab-col="7/12"] {
    flex-basis: 58.3333333333%;
  }
  [data-tab-col-offset="7/12"] {
    margin-left: 58.3333333333%;
  }
  [data-tab-col="8/12"] {
    flex-basis: 66.6666666667%;
  }
  [data-tab-col-offset="8/12"] {
    margin-left: 66.6666666667%;
  }
  [data-tab-col="9/12"] {
    flex-basis: 75%;
  }
  [data-tab-col-offset="9/12"] {
    margin-left: 75%;
  }
  [data-tab-col="10/12"] {
    flex-basis: 83.3333333333%;
  }
  [data-tab-col-offset="10/12"] {
    margin-left: 83.3333333333%;
  }
  [data-tab-col="11/12"] {
    flex-basis: 91.6666666667%;
  }
  [data-tab-col-offset="11/12"] {
    margin-left: 91.6666666667%;
  }
  [data-tab-col="12/12"] {
    flex-basis: 100%;
  }
  [data-tab-col-offset="12/12"] {
    margin-left: 100%;
  }
}
/* Tablet-specific styles */
@media screen and (min-width: 768px) and (max-width: 991px) {
  /* ... existing tablet styles ... */
}
@media screen and (max-width: 767px) {
  /* Tablet-specific columns */
  [data-mobile-col="1/12"] {
    flex-basis: 8.3333333333%;
  }
  [data-mobile-col-offset="1/12"] {
    margin-left: 8.3333333333%;
  }
  [data-mobile-col="2/12"] {
    flex-basis: 16.6666666667%;
  }
  [data-mobile-col-offset="2/12"] {
    margin-left: 16.6666666667%;
  }
  [data-mobile-col="3/12"] {
    flex-basis: 25%;
  }
  [data-mobile-col-offset="3/12"] {
    margin-left: 25%;
  }
  [data-mobile-col="4/12"] {
    flex-basis: 33.3333333333%;
  }
  [data-mobile-col-offset="4/12"] {
    margin-left: 33.3333333333%;
  }
  [data-mobile-col="5/12"] {
    flex-basis: 41.6666666667%;
  }
  [data-mobile-col-offset="5/12"] {
    margin-left: 41.6666666667%;
  }
  [data-mobile-col="6/12"] {
    flex-basis: 50%;
  }
  [data-mobile-col-offset="6/12"] {
    margin-left: 50%;
  }
  [data-mobile-col="7/12"] {
    flex-basis: 58.3333333333%;
  }
  [data-mobile-col-offset="7/12"] {
    margin-left: 58.3333333333%;
  }
  [data-mobile-col="8/12"] {
    flex-basis: 66.6666666667%;
  }
  [data-mobile-col-offset="8/12"] {
    margin-left: 66.6666666667%;
  }
  [data-mobile-col="9/12"] {
    flex-basis: 75%;
  }
  [data-mobile-col-offset="9/12"] {
    margin-left: 75%;
  }
  [data-mobile-col="10/12"] {
    flex-basis: 83.3333333333%;
  }
  [data-mobile-col-offset="10/12"] {
    margin-left: 83.3333333333%;
  }
  [data-mobile-col="11/12"] {
    flex-basis: 91.6666666667%;
  }
  [data-mobile-col-offset="11/12"] {
    margin-left: 91.6666666667%;
  }
  [data-mobile-col="12/12"] {
    flex-basis: 100%;
  }
  [data-mobile-col-offset="12/12"] {
    margin-left: 100%;
  }
}
.wp-block-columns {
  align-items: normal !important;
  box-sizing: border-box;
  display: flex;
  gap: 0;
  flex-wrap: wrap !important;
}

@media (min-width: 768px) {
  .wp-block-columns {
    flex-wrap: nowrap !important;
  }
}
.wp-block-columns.are-vertically-aligned-top {
  align-items: flex-start;
}

.wp-block-columns.are-vertically-aligned-center {
  align-items: center;
}

.wp-block-columns.are-vertically-aligned-bottom {
  align-items: flex-end;
}

@media (max-width: 767px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}
@media (min-width: 768px) {
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 0;
    flex-grow: 1;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column[style*=flex-basis] {
    flex-grow: 0;
  }
}
.wp-block-columns.is-not-stacked-on-mobile {
  flex-wrap: nowrap !important;
}

.wp-block-columns.is-not-stacked-on-mobile > .wp-block-column {
  flex-basis: 0;
  flex-grow: 1;
}

.wp-block-columns.is-not-stacked-on-mobile > .wp-block-column[style*=flex-basis] {
  flex-grow: 0;
}

:where(.wp-block-columns) {
  margin-bottom: 1.75em;
}

:where(.wp-block-columns.has-background) {
  padding: 1.25em 2.375em;
}

.wp-block-column {
  flex-grow: 1;
  min-width: 0;
  overflow-wrap: break-word;
  word-break: break-word;
}

.wp-block-column.is-vertically-aligned-top {
  align-self: flex-start;
}

.wp-block-column.is-vertically-aligned-center {
  align-self: center;
}

.wp-block-column.is-vertically-aligned-bottom {
  align-self: flex-end;
}

.wp-block-column.is-vertically-aligned-stretch {
  align-self: stretch;
}

.wp-block-column.is-vertically-aligned-bottom,
.wp-block-column.is-vertically-aligned-center,
.wp-block-column.is-vertically-aligned-top {
  width: 100%;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.overflow-hidden {
  overflow: hidden;
}

.fw-bold {
  font-weight: 700;
  color: var(--wp--preset--color--secondary);
}

p strong {
  font-weight: 900;
}
p.is-style-text-exergue {
  padding-top: var(--wp--preset--spacing--xxl);
  padding-bottom: var(--wp--preset--spacing--xxl);
}
@media all and (max-width: 768px) {
  p.is-style-text-exergue {
    padding-top: var(--wp--preset--spacing--l);
    padding-bottom: var(--wp--preset--spacing--l);
  }
}
p.is-style-text-exergue span {
  position: relative;
}
p.is-style-text-exergue span::after {
  content: "";
  background: var(--wp--preset--color--white);
  width: 19px;
  height: 19px;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 25px;
  border-radius: 50px;
}

.txt_exergue_part.has-background p.is-style-text-exergue {
  padding: 0 !important;
}

main a {
  font-weight: 900;
  border-bottom: 1px solid var(--wp--preset--color--black);
}

h1 {
  margin-bottom: var(--wp--preset--spacing--xxl) !important;
}

h2.is-style-is-big {
  font-size: var(--wp--preset--font-size--xxl);
  line-height: calc(var(--wp--preset--font-size--xxl) - 7px);
  position: relative;
  margin-bottom: var(--wp--preset--spacing--xxs);
  display: inline-block;
}
h2.is-style-is-big::after {
  content: "";
  background: var(--wp--preset--color--yellow);
  width: 19px;
  height: 19px;
  border-radius: 50px;
  display: inline-block;
  margin-left: 18px;
}
@media all and (max-width: 767px) {
  h2.is-style-is-big::after {
    width: 15px;
    height: 15px;
    margin-left: 12px;
  }
}

/****************************************************************************/
/* TEMPLATE PARTS
/****************************************************************************/
header .is-angled-bg::before {
  display: none;
}
@media all and (max-width: 1340px) {
  header .logo {
    padding-left: 10px;
  }
}
header .logo img {
  max-width: 145px;
}
header .main_menu .wp-block-navigation__container li {
  margin-right: var(--wp--preset--spacing--xl);
}
@media all and (max-width: 1280px) {
  header .main_menu .wp-block-navigation__container li {
    margin-right: var(--wp--preset--spacing--xs);
  }
}
header .main_menu .wp-block-navigation__container li a, header .main_menu .wp-block-navigation__container li button {
  font-weight: 700;
  position: relative;
  padding-top: var(--wp--preset--spacing--xxxs);
  padding-bottom: var(--wp--preset--spacing--xxxs);
}
header .main_menu .wp-block-navigation__container li a::before, header .main_menu .wp-block-navigation__container li button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  background: var(--wp--preset--color--black);
  height: 2px;
  transition: all 0.3s ease-in-out;
  width: 0;
}
header .main_menu .wp-block-navigation__container li .wp-block-navigation__submenu-icon {
  display: none;
}
header .main_menu .wp-block-navigation__container li:hover a::before, header .main_menu .wp-block-navigation__container li:hover button::before {
  width: 100%;
}
header .main_menu .wp-block-navigation__container li.wp-block-navigation-submenu button, header .main_menu .wp-block-navigation__container li.wp-block-navigation-submenu a {
  padding-right: 0;
}
header .main_menu .wp-block-navigation__container li.wp-block-navigation-submenu button span::after, header .main_menu .wp-block-navigation__container li.wp-block-navigation-submenu a span::after {
  content: "+";
  margin-left: 7px;
}
header .main_menu .wp-block-navigation__container li.wp-block-navigation-submenu .wp-block-navigation__submenu-container span::after {
  display: none;
}

.wp-block-navigation__submenu-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  padding: 40px 0;
}

.wp-block-navigation__submenu-container li {
  max-width: 1200px;
  margin: auto;
}

.wp-block-navigation__responsive-container-close svg, .wp-block-navigation__responsive-container-open svg {
  height: 35px;
  width: 35px;
}

header .wp-block-navigation__responsive-container.is-menu-open {
  background-color: var(--wp--preset--color--blue) !important;
  overflow: scroll;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
  max-height: 80vh;
  padding-right: 10px;
  overflow-x: scroll;
  scrollbar-width: none;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
  --navigation-layout-justification-setting: flex-start;
  --navigation-layout-justify: flex-start;
  align-items: flex-start;
  width: 100%;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container li {
  width: 100%;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container li a, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container li button {
  padding-bottom: var(--wp--preset--spacing--xxxs) !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container li a span::after, header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container li button span::after {
  display: none;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container li + li {
  margin-top: 20px;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-navigation__submenu-container {
  position: relative !important;
  display: block;
  transform: none !important;
  width: 100% !important;
  max-width: 100% !important;
  top: auto !important;
  padding: 15px 0 !important;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-navigation__submenu-container li {
  width: 100%;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-navigation__submenu-container li a {
  padding-bottom: 0;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-navigation__submenu-container li a span::after {
  display: none;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container .wp-block-navigation__submenu-container li + li {
  margin-top: 0;
}
header .wp-block-navigation__responsive-container.is-menu-open .wp-block-buttons {
  margin-top: 30px;
  margin-right: auto;
}

@media (min-width: 1150px) {
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: block;
  }
}
@media (max-width: 1150px) {
  .wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    display: none;
  }
  .wp-block-navigation__responsive-container-open:not(.always-shown) {
    display: block;
  }
}
header {
  position: relative;
}
header .bloc_header {
  padding: 0 !important;
}
header .has_z_index {
  z-index: 999;
}
header .main_menu .wp-block-navigation {
  z-index: 10;
}
header .main_menu .wp-block-navigation-item.has-child {
  position: static;
}
header .main_menu .wp-block-navigation__submenu-container {
  position: absolute !important;
  background: var(--wp--preset--color--blue) !important;
  border: none !important;
  left: 2px !important;
  right: 0 !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  width: 100vw !important;
  max-width: 100vw !important;
  top: calc(100% + 25px) !important;
  margin: 0 !important;
  padding: var(--wp--preset--spacing--m) 390px calc(var(--wp--preset--spacing--xl) + 20px);
  z-index: 999 !important;
}
header .main_menu .wp-block-navigation__submenu-container li {
  margin-right: 0 !important;
  margin-left: 0;
  max-width: 100%;
  width: 50%;
}
header .main_menu .wp-block-navigation__submenu-container li a {
  font-weight: 300;
  font-size: calc(var(--wp--preset--font-size--xxs) + 3px);
  transition: all 0.3s ease-in-out;
}
header .main_menu .wp-block-navigation__submenu-container li a::before {
  display: none;
}
header .main_menu .wp-block-navigation__submenu-container li a::after {
  content: "";
  background: var(--wp--preset--color--white);
  height: 7px;
  width: 7px;
  margin-left: 10px;
  margin-top: 12px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
header .main_menu .wp-block-navigation__submenu-container li:hover a, header .main_menu .wp-block-navigation__submenu-container li.current-menu-item a {
  font-weight: 900;
}
header .main_menu .wp-block-navigation__submenu-container li:hover a::after, header .main_menu .wp-block-navigation__submenu-container li.current-menu-item a::after {
  opacity: 1;
}

footer {
  z-index: 999;
}
@media all and (max-width: 767px) {
  footer .footer_menu .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 49% !important;
  }
}
@media all and (max-width: 570px) {
  footer .footer_menu .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: 100% !important;
  }
}
footer .footer_menu .wp-block-navigation__container {
  display: block;
}
footer .footer_menu .wp-block-navigation__container li {
  line-height: 25px;
  padding-left: 0;
  transition: all 0.4s ease-in-out;
}
footer .footer_menu .wp-block-navigation__container li + li.group_part {
  margin-top: var(--wp--preset--spacing--m);
}
@media all and (max-width: 767px) {
  footer .footer_menu .wp-block-navigation__container li + li.group_part {
    margin-top: var(--wp--preset--spacing--xxs);
  }
}
footer .footer_menu .wp-block-navigation__container li:hover {
  padding-left: var(--wp--preset--spacing--xxs);
}
footer .footer_menu a.wp-block-button__link {
  color: var(--wp--preset--color--black);
}
footer .footer_menu a.wp-block-button__link::after {
  background: var(--wp--preset--color--yellow);
}
footer .leftbottom_footer_part {
  padding-right: var(--wp--preset--spacing--xxxl);
}
@media all and (max-width: 992px) {
  footer .leftbottom_footer_part {
    padding-right: 0;
  }
}
footer .leftbottom_footer_part .seo_content {
  font-size: calc(var(--wp--preset--font-size--xxs) + 3px);
}
footer .leftbottom_footer_part p.valign_bottom img {
  vertical-align: baseline;
}
footer .social_part {
  margin: var(--wp--preset--spacing--xxl);
}
@media all and (max-width: 767px) {
  footer .social_part {
    margin: var(--wp--preset--spacing--xxs);
    margin-top: var(--wp--preset--spacing--s);
  }
}
@media all and (max-width: 767px) {
  footer .social_part {
    margin-bottom: var(--wp--preset--spacing--xxxs);
  }
}
footer .social_part p.newsletter_link a {
  border-bottom: 2px solid var(--wp--preset--color--black);
}
footer .copyright {
  font-size: var(--wp--preset--font-size--xxxs);
  line-height: 21px;
  margin-top: var(--wp--preset--spacing--xl);
  padding: var(--wp--preset--spacing--l) 0;
}
footer .copyright li + li::before {
  content: "—";
  margin-right: var(--wp--preset--spacing--xxs);
}
footer .is-angled-bg p.is-style-text-exergue {
  font-size: 90px;
}
@media all and (max-width: 767px) {
  footer .is-angled-bg p.is-style-text-exergue {
    font-size: 60px;
  }
  footer .is-angled-bg p.is-style-text-exergue span::after {
    width: 15px;
    height: 15px;
    top: 15px;
  }
}
@media all and (max-width: 576px) {
  footer .is-angled-bg p.is-style-text-exergue {
    font-size: 45px;
  }
  footer .is-angled-bg p.is-style-text-exergue span::after {
    width: 12px;
    height: 12px;
    top: 10px;
  }
}

.is-angled-bg, .testimony_part {
  position: relative;
  padding-top: 0;
  padding-bottom: 0;
}
.is-angled-bg > *, .testimony_part > * {
  position: relative;
  z-index: 1;
}
.is-angled-bg::before, .testimony_part::before {
  content: "";
  position: absolute;
  top: -49px;
  left: 0;
  width: 100%;
  height: 50px;
  background: inherit;
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  z-index: 1;
}
@media all and (max-width: 768px) {
  .is-angled-bg::before, .testimony_part::before {
    top: -29px;
    height: 30px;
  }
}
.is-angled-bg::after, .testimony_part::after {
  content: "";
  position: absolute;
  bottom: -49px;
  left: 0;
  width: 100%;
  z-index: 1;
  height: 50px;
  background: inherit;
  clip-path: polygon(0% 100%, 100% 0%, 0% 0%, 0% 100%);
}
@media all and (max-width: 768px) {
  .is-angled-bg::after, .testimony_part::after {
    bottom: -29px;
    height: 30px;
  }
}
.is-angled-bg.blue-bg::before, .testimony_part.blue-bg::before {
  background: var(--wp--preset--color--blue);
  top: -40%;
  height: 160%;
}

footer .is-angled-bg {
  z-index: 99;
}

.listing_bloc {
  gap: var(--wp--preset--spacing--xxxs);
  padding-top: var(--wp--preset--spacing--m);
}
.listing_bloc .wp-block-twentybellows-taxonomy-query-filter input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  margin: 0;
  pointer-events: none;
}
.listing_bloc .wp-block-twentybellows-taxonomy-query-filter label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0 var(--wp--preset--spacing--l);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  margin: 5px 0;
}
@media all and (max-width: 992px) {
  .listing_bloc .wp-block-twentybellows-taxonomy-query-filter label {
    width: 33%;
    display: inline-block;
    text-align: left;
  }
}
@media all and (max-width: 600px) {
  .listing_bloc .wp-block-twentybellows-taxonomy-query-filter label {
    width: 49%;
    display: inline-block;
    text-align: left;
  }
}
@media all and (max-width: 450px) {
  .listing_bloc .wp-block-twentybellows-taxonomy-query-filter label {
    width: 99%;
  }
}
.listing_bloc label + input + label::before {
  content: "";
  background: var(--wp--preset--color--yellow);
  position: absolute;
  left: 0;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
@media all and (max-width: 992px) {
  .listing_bloc label + input + label::before {
    display: none;
  }
}
.listing_bloc .wp-block-twentybellows-taxonomy-query-filter input[type=radio]:checked + label {
  font-weight: 600;
}
.listing_bloc .wp-block-twentybellows-taxonomy-query-filter input[type=radio] + label:hover {
  font-weight: 600;
}
.listing_bloc .wp-block-details {
  text-align: center;
  padding-bottom: var(--wp--preset--spacing--xxl);
}
@media all and (max-width: 576px) {
  .listing_bloc .wp-block-details {
    padding-bottom: var(--wp--preset--spacing--m);
  }
}
.listing_bloc .wp-block-details summary {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 4.5px;
  font-size: var(--wp--preset--font-size--xxxs);
  padding-bottom: 7px;
  border-bottom: 1px solid var(--wp--preset--color--black);
  margin-bottom: var(--wp--preset--spacing--s);
}
.listing_bloc .wp-block-details summary::marker {
  display: none;
}
.listing_bloc .wp-block-details summary::after {
  content: "+";
  margin-left: var(--wp--preset--spacing--m);
}
.listing_bloc .wp-block-details[open] summary::after {
  content: "-";
}
.listing_bloc .wp-block-query.filters {
  position: relative;
  /*input[type="radio"]{
      position: absolute;
      top: 0;
      left: -9999px;
      opacity: 0;
      left: 0;
      width: 100%;
      height: 100%;
      visibility: visible;
      z-index: 999;
      cursor: pointer;
  }*/
}
.listing_bloc .wp-block-query.filters label {
  position: relative;
  top: 0;
  font-weight: 500;
  cursor: pointer;
  padding: 0 var(--wp--preset--spacing--l);
}
.listing_bloc ul {
  display: flex;
  flex-wrap: wrap;
}
.listing_bloc ul li {
  position: relative;
  flex: auto;
  width: 49.5%;
  max-width: 49.5%;
  margin: 0;
  border: 1px solid var(--wp--preset--color--white);
}
.listing_bloc ul li .caption {
  position: absolute;
  opacity: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
  left: 0;
  background: var(--wp--preset--color--purple);
  height: 100%;
  width: 100%;
}
@media all and (max-width: 992px) {
  .listing_bloc ul li .caption {
    display: flex;
    align-items: center;
  }
}
@media all and (max-width: 768px) {
  .listing_bloc ul li .caption {
    opacity: 1;
  }
}
.listing_bloc ul li .caption .flex_element {
  display: flex;
  padding: var(--wp--preset--spacing--xl);
  height: 100%;
  justify-content: center;
}
@media all and (max-width: 992px) {
  .listing_bloc ul li .caption .flex_element {
    flex-direction: row;
    justify-content: flex-start;
    height: auto;
    padding: var(--wp--preset--spacing--s);
  }
}
@media all and (max-width: 576px) {
  .listing_bloc ul li .caption .flex_element {
    padding: 0;
  }
}
.listing_bloc ul li .caption .flex_element h2 {
  margin-bottom: var(--wp--preset--spacing--xs);
  width: 100%;
}
@media all and (max-width: 992px) {
  .listing_bloc ul li .caption .flex_element h2 {
    font-size: var(--wp--preset--font-size--xs);
    margin-bottom: var(--wp--preset--spacing--xxs);
  }
}
.listing_bloc ul li .caption .flex_element p.btn {
  position: relative;
  background: transparent;
  z-index: 10;
  margin-bottom: var(--wp--preset--spacing--m);
  font-weight: 700;
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--m);
}
@media all and (max-width: 992px) {
  .listing_bloc ul li .caption .flex_element p.btn {
    margin-bottom: var(--wp--preset--spacing--xxs);
    padding: var(--wp--preset--spacing--xxs) var(--wp--preset--spacing--xs);
  }
}
.listing_bloc ul li .caption .flex_element p.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--white);
  transform: skewY(-1deg);
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.listing_bloc ul li .caption .flex_element .info_bottom {
  gap: 6px;
}
.listing_bloc ul li .caption .flex_element .info_bottom .nospacebloc {
  gap: 0;
}
.listing_bloc ul li .caption .flex_element .info_bottom .nospacebloc p.withspace {
  margin: 0 10px;
}
.listing_bloc ul li .caption .flex_element .info_bottom > .is-acf-field, .listing_bloc ul li .caption .flex_element .info_bottom > p {
  display: inline-block;
}
.listing_bloc ul li .caption .flex_element .wp-block-buttons.absolutelink a {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  background-color: transparent;
  text-indent: -99999px;
}
.listing_bloc ul li .caption .flex_element .wp-block-buttons.absolutelink a::after {
  display: none;
}
.listing_bloc ul li:nth-child(5n+1) .caption {
  background: var(--wp--preset--color--purple);
}
.listing_bloc ul li:nth-child(5n+2) .caption {
  background: var(--wp--preset--color--pink);
}
.listing_bloc ul li:nth-child(5n+3) .caption {
  background: var(--wp--preset--color--blue);
}
.listing_bloc ul li:nth-child(5n+4) .caption {
  background: var(--wp--preset--color--yellow);
}
.listing_bloc ul li:nth-child(5n+5) .caption {
  background: var(--wp--preset--color--green);
}
.listing_bloc ul li:hover .caption {
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.listing_bloc ul.columns-3 li {
  width: 32%;
  max-width: 32%;
}
@media all and (max-width: 800px) {
  .listing_bloc ul.columns-3 li {
    width: 49%;
    max-width: 49%;
  }
}
@media all and (max-width: 576px) {
  .listing_bloc ul.columns-3 li {
    width: 99%;
    max-width: 99%;
  }
}
.listing_bloc ul.columns-3 li h2 {
  font-size: var(--wp--preset--font-size--xs);
}
.listing_bloc ul.columns-2 {
  gap: var(--wp--preset--spacing--xxxs);
}
@media all and (max-width: 768px) {
  .listing_bloc ul.columns-2 li {
    width: 99%;
    max-width: 99%;
  }
}

/****************************************************************************/
/* ELEMENTS
/****************************************************************************/
@container (width <= 992px) {}
@container (width <= 782px) {}
@container (width <= 576px) {}
.wp-block-buttons {
  z-index: 1;
  /*&.is-style-fill {
    z-index: 1;
    .wp-block-button__link {
      position: relative;
      transition: all 0.3s ease-in-out;
      line-height : initial ; 
      height : auto !important ;
      padding : var(--wp--preset--spacing--xs) var(--wp--preset--spacing--m); 
      background : transparent ; 

    }
  }*/
}
.wp-block-buttons .wp-block-button__link {
  position: relative;
  transition: all 0.3s ease-in-out;
  background: transparent;
  z-index: 10;
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--m);
}
.wp-block-buttons .wp-block-button__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--black);
  transform: skewY(-1deg);
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.wp-block-buttons .wp-block-button__link:hover::after {
  transform: skewY(1deg);
}

.wp-block-button.is-style-white {
  z-index: 1;
}
.wp-block-button.is-style-white .wp-block-button__link {
  position: relative;
  background: var(--wp--preset--color--white);
  color: var(--wp--preset--color--black);
  border: 1px solid var(--wp--preset--color--white);
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-white .wp-block-button__link:hover {
  background: var(--wp--custom--color--secondary-hover);
  border-color: var(--wp--custom--color--secondary-hover);
  color: var(--wp--preset--color--white);
}

.is-style-secondary-background .wp-block-button.is-style-fill .wp-block-button__link:hover, .is-style-secondary-bordered .wp-block-button.is-style-fill .wp-block-button__link:hover {
  background: var(--wp--preset--color--purple);
  border-color: var(--wp--preset--color--purple);
  color: var(--wp--preset--color--blue);
}
.is-style-secondary-background .wp-block-button.is-style-fill .wp-block-button__link:hover:after, .is-style-secondary-bordered .wp-block-button.is-style-fill .wp-block-button__link:hover:after {
  background: var(--wp--preset--color--white);
}

.wp-block-button.is-style-link-arrow .wp-block-button__link {
  position: relative;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-link-arrow .wp-block-button__link:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: var(--wp--preset--color--black);
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-link-arrow .wp-block-button__link:after {
  content: "";
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url("./assets/svg/link-arrow.svg") no-repeat center;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-link-arrow .wp-block-button__link:hover:before {
  width: 100%;
}
.wp-block-button.is-style-link-arrow .wp-block-button__link:hover:after {
  transform: translateY(-50%) rotate(90deg);
}

.wp-block-button.is-style-circle-arrow .wp-block-button__link {
  text-indent: -9999px;
  position: relative;
  width: 40px;
  height: 40px;
}
.wp-block-button.is-style-circle-arrow .wp-block-button__link:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--wp--preset--color--black);
  border-radius: 50%;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-circle-arrow .wp-block-button__link:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 14px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC4zNzEiIGhlaWdodD0iMTcuMTUzIiB2aWV3Qm94PSIwIDAgMTguMzcxIDE3LjE1MyI+CiAgPHBhdGggaWQ9Ikljb25fYWthci1hcnJvdy1yaWdodCIgZGF0YS1uYW1lPSJJY29uIGFrYXItYXJyb3ctcmlnaHQiIGQ9Ik02LDE0LjY2MkgyMi4zNzFNMTUuMjA4LDcuNWw3LjE2Miw3LjE2Mi03LjE2Miw3LjE2MiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUgLTYuMDg2KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjNDEyZGUwIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K") no-repeat center;
  background-size: contain;
  transition: all 0.3s ease-in-out;
}
.wp-block-button.is-style-circle-arrow .wp-block-button__link:hover:before {
  background: var(--wp--preset--color--black);
}
.wp-block-button.is-style-circle-arrow .wp-block-button__link:hover:after {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxOC4zNzEiIGhlaWdodD0iMTcuMTUzIiB2aWV3Qm94PSIwIDAgMTguMzcxIDE3LjE1MyI+CiAgPHBhdGggaWQ9Ikljb25fYWthci1hcnJvdy1yaWdodCIgZGF0YS1uYW1lPSJJY29uIGFrYXItYXJyb3ctcmlnaHQiIGQ9Ik02LDE0LjY2MkgyMi4zNzFNMTUuMjA4LDcuNWw3LjE2Miw3LjE2Mi03LjE2Miw3LjE2MiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUgLTYuMDg2KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRkZGRkZGIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIvPgo8L3N2Zz4K") no-repeat center;
  background-size: contain;
}

.fluentform {
  font-family: var(--wp--preset--font-family--);
  padding-right: var(--wp--preset--spacing--xxl);
  padding-top: var(--wp--preset--spacing--xl);
  /*.ff-t-container {
      .ff-el-group:not(.ff-el-form-hide_label):not(.ff-dropzone):not(.ff-custom_html) {
          margin-top: 15px;
          margin-bottom: 15px;
          position: relative;

          .ff-el-input--label {
              position: absolute;
              top: 4px;
              margin-bottom: 0;
              transition: all 0.3s ease-in-out;



              &.active {
                  font-size: 12px;
                  font-weight: 700;
                  top: -15px;
                  left: 0;

                  &.ff-el-is-required.asterisk-right {
                      label {
                          &:after {
                              color: var(--wp--preset--color--blue);
                          }
                      }
                  }
              }
          }

          &:is(.ff-el-is-error) {
              .ff-el-form-control:not(textarea) {
                  border-color: var(--fluentform-danger)
              }
          }
      }
  }*/
}
@media all and (max-width: 992px) {
  .fluentform {
    padding-right: 0;
  }
}
.fluentform form .ff-el-group {
  position: relative;
  margin-bottom: var(--wp--preset--spacing--m);
}
.fluentform form .ff-el-group .ff-el-input--label {
  position: absolute;
  top: 3px;
  transition: all 0.3s ease-in-out 0s;
  left: 0;
}
.fluentform form .ff-el-group .ff-el-input--label label {
  color: var(--wp--preset--color--black);
  text-transform: uppercase;
  font-weight: 400;
  font-size: var(--wp--preset--font-size--xxxs);
  letter-spacing: 4.5px;
  transition: all 0.3s ease-in-out 0s;
}
.fluentform form .ff-el-group .ff-el-input--label.asterisk-right label::after {
  color: var(--wp--preset--color--black);
  margin-left: 0;
}
.fluentform form .ff-el-group .ff-el-input--label.active {
  top: -20px;
}
.fluentform form .ff-el-group .ff-el-input--label.active label {
  font-size: 12px;
  font-weight: 900;
}
.fluentform form .ff-el-group .ff-el-form-control {
  color: var(--wp--preset--color--black);
}
.fluentform form .ff-el-group .ff-el-form-control:focus {
  background: transparent;
}
.fluentform form .ff-el-group .ff-el-form-control:not(textarea) {
  padding: var(--wp--preset--spacing--xxxs) 0;
}
.fluentform form .ff-el-group:has(textarea) .ff-el-input--label {
  position: relative;
  top: 0;
}
.fluentform form .ff-dropzone {
  margin-top: 24px;
  margin-bottom: 0;
}
.fluentform form .ff-dropzone .ff_upload_btn.ff-btn {
  border: 1px solid var(--wp--preset--color--black);
  padding: 12px;
  border-radius: var(--wp--custom--radius--m);
  color: var(--wp--preset--color--black);
}
.fluentform form .ff-dropzone .ff_upload_btn.ff-btn > span {
  text-decoration: underline;
}
.fluentform form .ff-dropzone .ff_upload_btn.ff-btn span.green {
  color: var(--wp--preset--color--green);
  font-weight: 400;
}
.fluentform form .ff-dropzone .ff-uploaded-list {
  margin-top: 5px !important;
}
.fluentform form .ff-dropzone + .ff-custom_html {
  margin-top: 0;
  margin-bottom: 0;
}
.fluentform form .ff-dropzone + .ff-custom_html p {
  margin-top: 0;
  font-size: clamp(0.813rem, 0.768rem + 0.119vw, 0.875rem);
}
.fluentform select {
  font-family: var(--wp--preset--font-family--black);
  margin-top: 24px;
  color: var(--wp--preset--color--white);
  background: var(--wp--preset--color--blue);
  border: 0;
  outline: 0;
  font-size: var(--wp--preset--font-size--xxs);
}
.fluentform .ff-el-form-control:not(textarea) {
  padding: 12px 0 0 0;
  height: 32px;
  outline: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.fluentform .ff-el-form-control:not(textarea)::-moz-placeholder {
  visibility: hidden;
}
.fluentform .ff-el-form-control:not(textarea)::placeholder {
  visibility: hidden;
}
.fluentform .ff-el-form-control:not(textarea):focus {
  border-color: var(--wp--preset--color--black);
}
.fluentform select, .fluentform textarea, .fluentform .ff-el-form-control:not(textarea) {
  border-bottom: 1px solid var(--wp--preset--color--black);
}
.fluentform textarea {
  border: 1px solid var(--wp--preset--color--black) !important;
  padding: var(--wp--preset--spacing--xxs);
  border-radius: 0 !important;
  outline-color: var(--wp--preset--color--black);
  background: transparent;
}
.fluentform textarea:focus {
  background-color: transparent;
}
.fluentform .ff-el-group {
  margin-top: 15px;
}
.fluentform .ff-btn-submit {
  position: relative;
  border-radius: var(--wp--custom--radius--m);
  cursor: pointer;
  background: transparent !important;
  color: var(--wp--preset--color--black) !important;
  font-weight: 700;
  border: none;
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--m);
  transition: all 0.3s ease-in-out;
}
.fluentform .ff-btn-submit::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--white);
  transform: skewY(-1deg);
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
.fluentform .ff-btn-submit:hover {
  opacity: 1;
  color: var(--wp--preset--color--black) !important;
}
.fluentform .ff-btn-submit:hover::after {
  transform: skewY(1deg);
}

.wp-rgpd-block {
  font-size: 14px;
  width: 90%;
}
.wp-rgpd-block > p {
  font-weight: 700;
}
.wp-rgpd-block p {
  margin: 0;
  color: var(--wp--preset--color--black);
}
.wp-rgpd-block .wp-rgpd-block__content {
  height: 72px;
  overflow-y: auto;
  scrollbar-width: none;
}

@media (min-width: 1200px) {
  .frm-fluent-form .ff-t-container {
    gap: var(--wp--preset--spacing--m);
  }
}
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.wp-block-list li, ol.wp-block-list li, .realisation-layout ul li, .realisation-layout ol li {
  position: relative;
  margin-bottom: 0.938rem;
  font-size: var(--wp--preset--font-size--xxs);
  line-height: 25px;
}

ul.wp-block-list li, .realisation-layout ul li {
  padding-left: 30px;
}
ul.wp-block-list li::before, .realisation-layout ul li::before {
  content: "";
  position: absolute;
  background: var(--wp--preset--color--blue);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  left: 0px;
  top: 8px;
}

ol.wp-block-list, .realisation-layout ol {
  counter-reset: section;
}
ol.wp-block-list li, .realisation-layout ol li {
  padding-left: 45px;
}
ol.wp-block-list li:before, .realisation-layout ol li:before {
  position: absolute;
  letter-spacing: 4.5px;
  left: 0;
  width: 24px;
  text-transform: uppercase;
  counter-increment: section;
  color: var(--wp--preset--color--black);
  content: counter(section, decimal-leading-zero) ".";
}

.rank-math-breadcrumb {
  text-align: center;
  padding-top: var(--wp--preset--spacing--xl);
  padding-bottom: calc(var(--wp--preset--spacing--xl) + 30px);
}
.rank-math-breadcrumb p, .rank-math-breadcrumb a {
  font-size: var(--wp--preset--font-size--xxs);
  font-weight: 400;
  color: var(--wp--preset--color--black);
  border-bottom: 0;
}

.wp-block-accordion-item h3.wp-block-accordion-heading {
  letter-spacing: 4.5px;
  border-bottom: 1px solid var(--wp--preset--color--black);
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--xxxs) !important;
}

.wp-block-accordion-heading__toggle:hover .wp-block-accordion-heading__toggle-title {
  text-decoration: none;
}

.wp-block-accordion-item .wp-block-accordion-heading .wp-block-accordion-heading__toggle::after {
  content: "+";
  text-indent: initial;
}

.wp-block-accordion-item.is-open > .wp-block-accordion-heading .wp-block-accordion-heading__toggle::after {
  content: "-";
  text-indent: initial;
}

.splide {
  position: relative;
  padding-bottom: 100px;
}
@media all and (max-width: 767px) {
  .splide {
    padding-bottom: 50px;
  }
}
.splide .splide__arrows {
  position: absolute;
  bottom: 40px;
}
@media all and (max-width: 767px) {
  .splide .splide__arrows {
    bottom: 0;
  }
}
@media all and (max-width: 767px) {
  .splide .splide__arrows .splide__arrow {
    bottom: 0;
    top: auto;
    transform: none;
  }
}
.splide .splide__arrows .splide__arrow svg {
  display: none;
}
.splide .splide__arrows .splide__arrow.splide__arrow--prev {
  left: 0px;
  background: url(./assets/img/arrow-left-slider.svg) no-repeat center var(--wp--preset--color--blue);
}
.splide .splide__arrows .splide__arrow.splide__arrow--next {
  left: 55px;
  background: url(./assets/img/arrow-right-slider.svg) no-repeat center var(--wp--preset--color--blue);
}

.wp-block-group-is-layout-flex > figure {
  flex-shrink: 0;
}

picture {
  display: block;
  overflow: clip;
}
picture img {
  border-radius: inherit;
  aspect-ratio: inherit;
  -o-object-fit: inherit;
     object-fit: inherit;
  -o-object-position: inherit;
     object-position: inherit;
}

figure.wp-block-image figcaption.wp-element-caption {
  position: relative;
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--m);
  display: table;
  margin-top: -30px;
  z-index: 10;
  margin-left: 40px;
  margin-bottom: 0;
  font-weight: 700;
  font-size: var(--wp--preset--font-size--xxs);
}
@media all and (max-width: 576px) {
  figure.wp-block-image figcaption.wp-element-caption {
    padding: var(--wp--preset--spacing--xxs) var(--wp--preset--spacing--s);
    margin-left: 20px;
  }
}
figure.wp-block-image figcaption.wp-element-caption::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--wp--preset--color--purple);
  transform: skewY(-1deg);
  z-index: -1;
}

.trust_logo {
  margin: var(--wp--preset--spacing--xl) 0;
}
.trust_logo p.is-style-text-surtitre-blanc {
  margin-bottom: var(--wp--preset--spacing--xs);
}
@media all and (max-width: 992px) {
  .trust_logo .logos_grid {
    display: flex;
    flex-wrap: wrap;
  }
}
.trust_logo .logos_grid .wp-block-image {
  text-align: center;
}
@media all and (max-width: 992px) {
  .trust_logo .logos_grid .wp-block-image {
    width: 30%;
  }
}
@media all and (max-width: 576px) {
  .trust_logo .logos_grid .wp-block-image {
    width: 45%;
    margin: 0 !important;
  }
}
.trust_logo .logos_grid .wp-block-image a {
  border-bottom: none;
}
.trust_logo .logos_grid .wp-block-image img {
  filter: saturate(0) opacity(0.9);
  transition: all 0.3s ease-in-out;
}
.trust_logo .logos_grid .wp-block-image:hover img {
  filter: saturate(100%) opacity(1);
}

body:not(.home) .trust_logo .logos_grid .wp-block-image img {
  filter: none;
}

.item .caption_part {
  position: relative;
}
.item .caption_part::after {
  width: 100%;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: var(--wp--preset--color--white);
  transition: all 0.4s ease-in-out;
}
.item:hover .caption_part::after {
  width: 0;
}

.item .image-wrap::after, body:not(.blog) .post .image-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  -webkit-backdrop-filter: grayscale(100%);
          backdrop-filter: grayscale(100%);
  transition: all 0.4s ease-in-out;
}

.item:hover .image-wrap::after, body:not(.blog) .post:hover .image-wrap::after {
  width: 0;
}

.item .image-wrap a {
  border-bottom: none;
}

.article-nav .article_nav_row {
  padding: var(--wp--preset--spacing--xxl) 0;
  align-items: flex-start;
}
.article-nav .article_nav_row .wp-block-post-navigation-link {
  flex: 1;
}
.article-nav .article_nav_row .wp-block-post-navigation-link .post-navigation-link__label {
  font-size: var(--wp--preset--font-size--xxxs);
  letter-spacing: 4.5px;
  padding-bottom: var(--wp--preset--spacing--l);
  font-weight: 400;
  margin-bottom: var(--wp--preset--spacing--xs);
  text-transform: uppercase;
  display: block;
}
.article-nav .article_nav_row .wp-block-post-navigation-link a {
  font-size: var(--wp--preset--font-size--l);
  font-weight: 900;
  line-height: var(--wp--preset--font-size--l);
}
@media all and (max-width: 768px) {
  .article-nav .article_nav_row .wp-block-post-navigation-link a {
    font-size: var(--wp--preset--font-size--xs);
  }
}
.article-nav .article_nav_row .wp-block-post-navigation-link a:hover {
  text-decoration: underline !important;
}
.article-nav .article_nav_row .post-navigation-link-previous {
  text-align: left;
  padding-right: 10%;
}
@media all and (max-width: 767px) {
  .article-nav .article_nav_row .post-navigation-link-previous {
    padding-right: 5%;
  }
}
.article-nav .article_nav_row .post-navigation-link-previous .post-navigation-link__label {
  background: url(./assets/img/arrow-prev-article.svg) no-repeat bottom left;
}
.article-nav .article_nav_row .post-navigation-link-previous a:hover {
  text-decoration: underline !important;
}
.article-nav .article_nav_row .post-navigation-link-next {
  text-align: right;
  padding-left: 10%;
}
@media all and (max-width: 767px) {
  .article-nav .article_nav_row .post-navigation-link-next {
    padding-left: 5%;
  }
}
.article-nav .article_nav_row .post-navigation-link-next .post-navigation-link__label {
  background: url(./assets/img/arrow-next-article.svg) no-repeat bottom right;
}
.article-nav .article_nav_row .post-navigation-link-next a:hover {
  text-decoration: underline !important;
}

.pagination_part {
  padding: var(--wp--preset--spacing--xxl) 0 var(--wp--preset--spacing--xxxl);
  justify-content: flex-end;
}
.pagination_part a, .pagination_part span {
  font-size: var(--wp--preset--font-size--xxxs);
  letter-spacing: 4.5px;
  font-weight: 400;
  text-transform: uppercase;
}
.pagination_part a::after, .pagination_part span::after {
  content: ".";
}
.pagination_part span.current {
  font-weight: 900;
}
.pagination_part span.page-numbers.dots, .pagination_part span.page-numbers.dots + a {
  display: none;
}
.pagination_part .wp-block-query-pagination-next {
  margin-left: var(--wp--preset--spacing--s);
}
.pagination_part .wp-block-query-pagination-previous {
  margin-right: var(--wp--preset--spacing--s);
}

.post-type-archive-realisation .pagination_part {
  padding-right: var(--wp--preset--spacing--xxl);
}

/****************************************************************************/
/* COOKIES / RGPD
/****************************************************************************/
body.gdpr-infobar-visible {
  position: relative;
  container-type: inline-size;
}
body.gdpr-infobar-visible::after {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  top: -150px;
  left: 0;
  z-index: 9980;
}
body.gdpr-infobar-visible .mgbutton {
  border-radius: 24px !important;
}
body.gdpr-infobar-visible .change-settings-button:hover {
  color: var(--wp--preset--color--blue) !important;
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar {
  z-index: 9990;
}
@media all and (max-width: var(--grid-breakpoint-sm)) {
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container {
    padding-top: 60px;
  }
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-infobar-allow-all {
  order: 2 !important;
}
body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-infobar-reject-btn {
  order: 1 !important;
}
@container (width <= 782px) {
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content {
    display: flex;
    flex-direction: column-reverse;
  }
  body.gdpr-infobar-visible aside#moove_gdpr_cookie_info_bar .moove-gdpr-info-bar-container .moove-gdpr-info-bar-content .moove-gdpr-button-holder {
    align-self: flex-end;
  }
}

.gdpr_lightbox {
  z-index: 99970;
}

.grecaptcha-badge {
  visibility: hidden;
}

/****************************************************************************/
/* TEMPLATE
/****************************************************************************/
html {
  scroll-behavior: smooth;
  font-Size: var(--wp--preset--font-size--xxs);
  line-height: 25px;
}

main,
.wp-block-template-part,
.entry-content {
  margin-top: 0;
}

#content + .wp-block-group,
main + .wp-block-group {
  margin-top: var(--wp--preset--spacing--xs);
}

.wp-site-blocks, .page-content.is-layout-constrained {
  container-type: inline-size;
}

.theme-color-blue-template main .wp-block-accordion-item h3, .theme-color-blue-template main .wp-block-buttons .wp-block-button__link {
  color: var(--wp--preset--color--black);
}
.theme-color-blue-template main h3.wp-block-heading, .theme-color-blue-template main h4.wp-block-heading {
  color: var(--wp--preset--color--bluetxt);
}
.theme-color-blue-template main ul.wp-block-list li::before, .theme-color-blue-template main figure.wp-block-image figcaption.wp-element-caption::after,
.theme-color-blue-template main h2.is-style-is-big::after, .theme-color-blue-template main .wp-block-buttons .wp-block-button__link::after, .theme-color-blue-template main .realisation-layout ul li::before, .theme-color-blue-template main .realisation-layout ol li::before {
  background: var(--wp--preset--color--blue);
}
.theme-color-blue-template main .wp-block-buttons .wp-block-button__link.has-blue-background-color,
.theme-color-blue-template main .wp-block-buttons .wp-block-button__link.has-yellow-background-color,
.theme-color-blue-template main .wp-block-buttons .wp-block-button__link.has-purple-background-color,
.theme-color-blue-template main .wp-block-buttons .wp-block-button__link.has-green-background-color,
.theme-color-blue-template main .wp-block-buttons .wp-block-button__link.has-pink-background-color,
.theme-color-blue-template main .wp-block-buttons .wp-block-button__link.has-black-background-color {
  background: transparent !important;
}
.theme-color-blue-template main .wp-block-buttons .wp-block-button__link.has-black-background-color {
  color: var(--wp--preset--color--white);
}
.theme-color-blue-template main .wp-block-buttons .wp-block-button__link.has-background::after {
  content: "";
  background: var(--btn-bg);
}
.theme-color-blue-template main .wp-block-button__link.has-black-background-color {
  background: transparent !important;
  --btn-bg: var(--wp--preset--color--black);
}
.theme-color-blue-template main .wp-block-button__link.has-blue-background-color {
  --btn-bg: var(--wp--preset--color--blue);
}
.theme-color-blue-template main .wp-block-button__link.has-yellow-background-color {
  --btn-bg: var(--wp--preset--color--yellow);
}
.theme-color-blue-template main .wp-block-button__link.has-purple-background-color {
  --btn-bg: var(--wp--preset--color--purple);
}
.theme-color-blue-template main .wp-block-button__link.has-green-background-color {
  --btn-bg: var(--wp--preset--color--green);
}
.theme-color-blue-template main .wp-block-button__link.has-pink-background-color {
  --btn-bg: var(--wp--preset--color--pink);
}

.theme-color-purple-template main .wp-block-accordion-item h3, .theme-color-purple-template main .wp-block-buttons .wp-block-button__link {
  color: var(--wp--preset--color--black);
}
.theme-color-purple-template main h3.wp-block-heading, .theme-color-purple-template main h4.wp-block-heading {
  color: var(--wp--preset--color--purple);
}
.theme-color-purple-template main ul.wp-block-list li::before, .theme-color-purple-template main figure.wp-block-image figcaption.wp-element-caption::after,
.theme-color-purple-template main h2.is-style-is-big::after, .theme-color-purple-template main .wp-block-buttons .wp-block-button__link::after, .theme-color-purple-template main .realisation-layout ul li::before, .theme-color-purple-template main .realisation-layout ol li::before {
  background: var(--wp--preset--color--purple);
}
.theme-color-purple-template main .wp-block-buttons .wp-block-button__link.has-blue-background-color,
.theme-color-purple-template main .wp-block-buttons .wp-block-button__link.has-yellow-background-color,
.theme-color-purple-template main .wp-block-buttons .wp-block-button__link.has-purple-background-color,
.theme-color-purple-template main .wp-block-buttons .wp-block-button__link.has-green-background-color,
.theme-color-purple-template main .wp-block-buttons .wp-block-button__link.has-pink-background-color,
.theme-color-purple-template main .wp-block-buttons .wp-block-button__link.has-black-background-color {
  background: transparent !important;
}
.theme-color-purple-template main .wp-block-buttons .wp-block-button__link.has-black-background-color {
  color: var(--wp--preset--color--white);
}
.theme-color-purple-template main .wp-block-buttons .wp-block-button__link.has-background::after {
  content: "";
  background: var(--btn-bg);
}
.theme-color-purple-template main .wp-block-button__link.has-black-background-color {
  background: transparent !important;
  --btn-bg: var(--wp--preset--color--black);
}
.theme-color-purple-template main .wp-block-button__link.has-blue-background-color {
  --btn-bg: var(--wp--preset--color--blue);
}
.theme-color-purple-template main .wp-block-button__link.has-yellow-background-color {
  --btn-bg: var(--wp--preset--color--yellow);
}
.theme-color-purple-template main .wp-block-button__link.has-purple-background-color {
  --btn-bg: var(--wp--preset--color--purple);
}
.theme-color-purple-template main .wp-block-button__link.has-green-background-color {
  --btn-bg: var(--wp--preset--color--green);
}
.theme-color-purple-template main .wp-block-button__link.has-pink-background-color {
  --btn-bg: var(--wp--preset--color--pink);
}

.theme-color-yellow-template main .wp-block-accordion-item h3, .theme-color-yellow-template main .wp-block-buttons .wp-block-button__link {
  color: var(--wp--preset--color--black);
}
.theme-color-yellow-template main h3.wp-block-heading, .theme-color-yellow-template main h4.wp-block-heading {
  color: var(--wp--preset--color--yellowtxt);
}
.theme-color-yellow-template main ul.wp-block-list li::before, .theme-color-yellow-template main figure.wp-block-image figcaption.wp-element-caption::after,
.theme-color-yellow-template main h2.is-style-is-big::after, .theme-color-yellow-template main .wp-block-buttons .wp-block-button__link::after, .theme-color-yellow-template main .realisation-layout ul li::before, .theme-color-yellow-template main .realisation-layout ol li::before {
  background: var(--wp--preset--color--yellow);
}
.theme-color-yellow-template main .wp-block-buttons .wp-block-button__link.has-blue-background-color,
.theme-color-yellow-template main .wp-block-buttons .wp-block-button__link.has-yellow-background-color,
.theme-color-yellow-template main .wp-block-buttons .wp-block-button__link.has-purple-background-color,
.theme-color-yellow-template main .wp-block-buttons .wp-block-button__link.has-green-background-color,
.theme-color-yellow-template main .wp-block-buttons .wp-block-button__link.has-pink-background-color,
.theme-color-yellow-template main .wp-block-buttons .wp-block-button__link.has-black-background-color {
  background: transparent !important;
}
.theme-color-yellow-template main .wp-block-buttons .wp-block-button__link.has-black-background-color {
  color: var(--wp--preset--color--white);
}
.theme-color-yellow-template main .wp-block-buttons .wp-block-button__link.has-background::after {
  content: "";
  background: var(--btn-bg);
}
.theme-color-yellow-template main .wp-block-button__link.has-black-background-color {
  background: transparent !important;
  --btn-bg: var(--wp--preset--color--black);
}
.theme-color-yellow-template main .wp-block-button__link.has-blue-background-color {
  --btn-bg: var(--wp--preset--color--blue);
}
.theme-color-yellow-template main .wp-block-button__link.has-yellow-background-color {
  --btn-bg: var(--wp--preset--color--yellow);
}
.theme-color-yellow-template main .wp-block-button__link.has-purple-background-color {
  --btn-bg: var(--wp--preset--color--purple);
}
.theme-color-yellow-template main .wp-block-button__link.has-green-background-color {
  --btn-bg: var(--wp--preset--color--green);
}
.theme-color-yellow-template main .wp-block-button__link.has-pink-background-color {
  --btn-bg: var(--wp--preset--color--pink);
}

.theme-color-pink-template main .wp-block-accordion-item h3, .theme-color-pink-template main .wp-block-buttons .wp-block-button__link {
  color: var(--wp--preset--color--black);
}
.theme-color-pink-template main h3.wp-block-heading, .theme-color-pink-template main h4.wp-block-heading {
  color: var(--wp--preset--color--pink);
}
.theme-color-pink-template main ul.wp-block-list li::before, .theme-color-pink-template main figure.wp-block-image figcaption.wp-element-caption::after,
.theme-color-pink-template main h2.is-style-is-big::after, .theme-color-pink-template main .wp-block-buttons .wp-block-button__link::after, .theme-color-pink-template main .realisation-layout ul li::before, .theme-color-pink-template main .realisation-layout ol li::before {
  background: var(--wp--preset--color--pink);
}
.theme-color-pink-template main .wp-block-buttons .wp-block-button__link.has-blue-background-color,
.theme-color-pink-template main .wp-block-buttons .wp-block-button__link.has-yellow-background-color,
.theme-color-pink-template main .wp-block-buttons .wp-block-button__link.has-purple-background-color,
.theme-color-pink-template main .wp-block-buttons .wp-block-button__link.has-green-background-color,
.theme-color-pink-template main .wp-block-buttons .wp-block-button__link.has-pink-background-color,
.theme-color-pink-template main .wp-block-buttons .wp-block-button__link.has-black-background-color {
  background: transparent !important;
}
.theme-color-pink-template main .wp-block-buttons .wp-block-button__link.has-black-background-color {
  color: var(--wp--preset--color--white);
}
.theme-color-pink-template main .wp-block-buttons .wp-block-button__link.has-background::after {
  content: "";
  background: var(--btn-bg);
}
.theme-color-pink-template main .wp-block-button__link.has-black-background-color {
  --btn-bg: var(--wp--preset--color--black);
}
.theme-color-pink-template main .wp-block-button__link.has-blue-background-color {
  --btn-bg: var(--wp--preset--color--blue);
}
.theme-color-pink-template main .wp-block-button__link.has-yellow-background-color {
  --btn-bg: var(--wp--preset--color--yellow);
}
.theme-color-pink-template main .wp-block-button__link.has-purple-background-color {
  --btn-bg: var(--wp--preset--color--purple);
}
.theme-color-pink-template main .wp-block-button__link.has-green-background-color {
  --btn-bg: var(--wp--preset--color--green);
}
.theme-color-pink-template main .wp-block-button__link.has-pink-background-color {
  --btn-bg: var(--wp--preset--color--pink);
}

.theme-color-green-template main .wp-block-accordion-item h3, .theme-color-green-template main .wp-block-buttons .wp-block-button__link {
  color: var(--wp--preset--color--black);
}
.theme-color-green-template main h3.wp-block-heading, .theme-color-green-template main h4.wp-block-heading {
  color: var(--wp--preset--color--green);
}
.theme-color-green-template main ul.wp-block-list li::before, .theme-color-green-template main figure.wp-block-image figcaption.wp-element-caption::after,
.theme-color-green-template main h2.is-style-is-big::after, .theme-color-green-template main .wp-block-buttons .wp-block-button__link::after, .theme-color-green-template main .realisation-layout ul li::before, .theme-color-green-template main .realisation-layout ol li::before {
  background: var(--wp--preset--color--green);
}
.theme-color-green-template main .wp-block-buttons .wp-block-button__link.has-blue-background-color,
.theme-color-green-template main .wp-block-buttons .wp-block-button__link.has-yellow-background-color,
.theme-color-green-template main .wp-block-buttons .wp-block-button__link.has-purple-background-color,
.theme-color-green-template main .wp-block-buttons .wp-block-button__link.has-green-background-color,
.theme-color-green-template main .wp-block-buttons .wp-block-button__link.has-pink-background-color,
.theme-color-green-template main .wp-block-buttons .wp-block-button__link.has-black-background-color {
  background: transparent !important;
}
.theme-color-green-template main .wp-block-buttons .wp-block-button__link.has-black-background-color {
  color: var(--wp--preset--color--white);
}
.theme-color-green-template main .wp-block-buttons .wp-block-button__link.has-background::after {
  content: "";
  background: var(--btn-bg);
}
.theme-color-green-template main .wp-block-button__link.has-black-background-color {
  --btn-bg: var(--wp--preset--color--black);
}
.theme-color-green-template main .wp-block-button__link.has-blue-background-color {
  --btn-bg: var(--wp--preset--color--blue);
}
.theme-color-green-template main .wp-block-button__link.has-yellow-background-color {
  --btn-bg: var(--wp--preset--color--yellow);
}
.theme-color-green-template main .wp-block-button__link.has-purple-background-color {
  --btn-bg: var(--wp--preset--color--purple);
}
.theme-color-green-template main .wp-block-button__link.has-green-background-color {
  --btn-bg: var(--wp--preset--color--green);
}
.theme-color-green-template main .wp-block-button__link.has-pink-background-color {
  --btn-bg: var(--wp--preset--color--pink);
}

.single-post .banner_single h1.wp-block-post-title {
  font-size: 60px;
  margin-bottom: var(--wp--preset--spacing--xs) !important;
}
@media all and (max-width: 576px) {
  .single-post .banner_single h1.wp-block-post-title {
    font-size: 40px;
  }
}
.single-post .banner_single .properties_article {
  padding-bottom: var(--wp--preset--spacing--xxl);
  gap: var(--wp--preset--spacing--m);
}
@media all and (max-width: 767px) {
  .single-post .banner_single .properties_article {
    gap: var(--wp--preset--spacing--xxs);
  }
}
.single-post .banner_single .properties_article .term_column {
  padding-left: var(--wp--preset--spacing--m);
  position: relative;
}
@media all and (max-width: 767px) {
  .single-post .banner_single .properties_article .term_column {
    padding-left: 0;
  }
}
.single-post .banner_single .properties_article .term_column p {
  padding: 0;
}
@media all and (max-width: 767px) {
  .single-post .banner_single .properties_article .term_column {
    text-align: center;
  }
}
.single-post .banner_single .properties_article .date_column {
  text-align: right;
}
@media all and (max-width: 767px) {
  .single-post .banner_single .properties_article .date_column {
    text-align: center;
  }
}
.single-post .banner_single .properties_article .date_column + .term_column::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}
@media all and (max-width: 767px) {
  .single-post .banner_single .properties_article .date_column + .term_column::before {
    display: none;
  }
}

.realisation-layout {
  display: grid;
  grid-template-columns: minmax(260px, 450px) minmax(0, 1fr);
  gap: var(--wp--preset--spacing--xl);
  align-items: flex-start;
}
@media all and (max-width: 1000px) {
  .realisation-layout {
    display: block;
  }
}
.realisation-layout .realisation-layout__left {
  position: sticky;
  top: var(--wp--preset--spacing--xl);
  padding: var(--wp--preset--spacing--xl);
}
@media all and (max-width: 1000px) {
  .realisation-layout .realisation-layout__left {
    position: relative;
    top: 0;
  }
}
.realisation-layout .realisation-layout__left h2, .realisation-layout .realisation-layout__left h3, .realisation-layout .realisation-layout__left h4 {
  margin-bottom: var(--wp--preset--spacing--xxs);
}
.realisation-layout .realisation-layout__left .btn {
  display: inline-block;
  font-size: var(--wp--preset--font-size--xxs);
  width: auto;
  margin-bottom: var(--wp--preset--spacing--m);
}
.realisation-layout .realisation-layout__left .realisation-client {
  font-style: italic;
}
.realisation-layout .realisation-layout__left .realisation-resume {
  margin-bottom: 1.5rem;
}
.realisation-layout .realisation-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--wp--preset--spacing--xxxs);
}
.realisation-layout .realisation-gallery img {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.realisation-layout .realisation-gallery .realisation-gallery__item--full {
  grid-column: 1/-1;
}
.realisation-layout .realisation-gallery .realisation-gallery__item--half img {
  width: 100%;
  height: auto;
  display: block;
}

.single-realisation .banner_image_projet {
  margin-top: -30px;
}
.single-realisation h1 {
  font-weight: 900;
  font-family: var(--wp--preset--font-family--primary);
  padding-top: var(--wp--preset--spacing--xs);
  font-size: 40px;
  padding-bottom: var(--wp--preset--spacing--xs);
}
.single-realisation h1 strong {
  font-family: var(--wp--preset--font-family--secondary);
  display: block;
  font-size: var(--wp--preset--font-size--xxxl);
}
.single-realisation.withbannerimage header .has-blue-background-color, .single-realisation.withbannerimage header .is-angled-bg::after {
  background: var(--wp--preset--color--white) !important;
}

.archive h1, .blog h1, .page-template-contact-page h1, .page-template-inscription-la-newsletter h1 {
  margin-bottom: 0 !important;
}

.page-template-contact-page header, .page-template-inscription-la-newsletter header {
  z-index: 999999;
}
.page-template-contact-page .sticky_contact_bloc, .page-template-inscription-la-newsletter .sticky_contact_bloc {
  position: sticky;
  top: 0;
  padding-left: 100px;
  padding-right: 40px;
  height: 100vh;
  z-index: 2;
  padding-top: 120px;
}
@media all and (max-width: 1300px) {
  .page-template-contact-page .sticky_contact_bloc, .page-template-inscription-la-newsletter .sticky_contact_bloc {
    padding-left: 40px;
    padding-right: 95px;
  }
}
.page-template-contact-page .sticky_contact_bloc a, .page-template-inscription-la-newsletter .sticky_contact_bloc a {
  font-weight: 400;
}
.page-template-contact-page .sticky_contact_bloc::before, .page-template-inscription-la-newsletter .sticky_contact_bloc::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--wp--preset--color--black);
  z-index: 1;
}
.page-template-contact-page .sticky_contact_bloc::after, .page-template-inscription-la-newsletter .sticky_contact_bloc::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -69px;
  width: 70px;
  height: calc(100% + 100px);
  background: inherit;
  background: var(--wp--preset--color--black);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 999;
}
.page-template-contact-page .sticky_contact_bloc p.withline, .page-template-inscription-la-newsletter .sticky_contact_bloc p.withline {
  border-bottom: 1px solid var(--wp--preset--color--white);
  padding-bottom: var(--wp--preset--spacing--xxxs);
  margin-top: 65px;
}
.page-template-contact-page .form_contact_bloc .has-blue-background-color, .page-template-inscription-la-newsletter .form_contact_bloc .has-blue-background-color {
  z-index: 1;
  position: relative;
  padding-top: var(--wp--preset--spacing--xl);
  padding-right: var(--wp--preset--spacing--xl);
  padding-left: calc(var(--wp--preset--spacing--xxl) + 30px);
}
@media all and (max-width: 992px) {
  .page-template-contact-page .form_contact_bloc .has-blue-background-color, .page-template-inscription-la-newsletter .form_contact_bloc .has-blue-background-color {
    padding-left: calc(var(--wp--preset--spacing--xl));
  }
}
.page-template-contact-page .form_contact_bloc .has-blue-background-color::before, .page-template-inscription-la-newsletter .form_contact_bloc .has-blue-background-color::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: var(--wp--preset--color--blue);
  z-index: -1;
}
.page-template-contact-page .form_contact_bloc iframe, .page-template-inscription-la-newsletter .form_contact_bloc iframe {
  width: 100%;
}
.page-template-contact-page .rank-math-breadcrumb, .page-template-inscription-la-newsletter .rank-math-breadcrumb {
  text-align: left;
}
.page-template-contact-page footer .is-angled-bg::before, .page-template-inscription-la-newsletter footer .is-angled-bg::before {
  z-index: 9999;
}
@media all and (max-width: 992px) {
  .page-template-contact-page .contact_bloc_banner, .page-template-inscription-la-newsletter .contact_bloc_banner {
    display: flex;
    flex-direction: column;
  }
  .page-template-contact-page .contact_bloc_banner .sticky_contact_bloc, .page-template-inscription-la-newsletter .contact_bloc_banner .sticky_contact_bloc {
    height: auto;
    padding-top: var(--wp--preset--spacing--xxl);
    padding-bottom: var(--wp--preset--spacing--xxxl);
    position: relative;
    order: 2;
  }
  .page-template-contact-page .contact_bloc_banner .sticky_contact_bloc::before, .page-template-contact-page .contact_bloc_banner .sticky_contact_bloc::after, .page-template-inscription-la-newsletter .contact_bloc_banner .sticky_contact_bloc::before, .page-template-inscription-la-newsletter .contact_bloc_banner .sticky_contact_bloc::after {
    display: none;
  }
  .page-template-contact-page .contact_bloc_banner .sticky_contact_bloc p.withline, .page-template-inscription-la-newsletter .contact_bloc_banner .sticky_contact_bloc p.withline {
    margin-top: 25px;
  }
}

.home .banner_home_title {
  padding-top: var(--wp--preset--spacing--xxl);
  padding-bottom: var(--wp--preset--spacing--l);
}
@media all and (max-width: 992px) {
  .home .banner_home_title {
    padding-top: var(--wp--preset--spacing--s);
  }
}
.home .banner_home_title h1 {
  letter-spacing: 4.5px;
  line-height: initial;
  margin-bottom: 0 !important;
}
.home .banner_home_title h2 {
  font-size: 90px;
  font-family: var(--wp--preset--font-family--secondary);
  line-height: 90px;
  margin-block-start: 0;
  padding-top: var(--wp--preset--spacing--xxs);
  padding-bottom: var(--wp--preset--spacing--xxs);
}
@media all and (max-width: 767px) {
  .home .banner_home_title h2 {
    font-size: 60px;
    line-height: 60px;
  }
}
.home .banner_home_title h2 span {
  position: relative;
}
.home .banner_home_title h2 span::after {
  content: "";
  background: var(--wp--preset--color--white);
  position: absolute;
  width: 19px;
  height: 19px;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  top: 25px;
  border-radius: 50px;
}
@media all and (max-width: 767px) {
  .home .banner_home_title h2 span::after {
    width: 15px;
    height: 15px;
    top: 15px;
  }
}
.home .home_listing_categories {
  padding-top: calc(var(--wp--preset--spacing--xl) + 20px);
  padding-bottom: var(--wp--preset--spacing--s);
}
@media all and (max-width: 992px) {
  .home .home_listing_categories {
    padding-bottom: 0;
    /*overflow-x: auto;
        flex-wrap: nowrap !important;
        padding: 10px 20px 20px 50px;
        scroll-padding-left: 50px;*/
  }
}
.home .home_listing_categories ul {
  display: flex;
  justify-content: center;
}
@media all and (max-width: 992px) {
  .home .home_listing_categories ul {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 20px;
  }
}
.home .home_listing_categories ul li {
  position: relative;
  font-weight: 500;
  white-space: nowrap;
}
.home .home_listing_categories ul li a {
  font-weight: 500;
  border-bottom: none;
}
.home .home_listing_categories ul li a:hover {
  font-weight: 600;
}
.home .home_listing_categories ul li + li {
  padding-left: var(--wp--preset--spacing--l);
  margin-left: var(--wp--preset--spacing--l);
}
@media all and (max-width: 1200px) {
  .home .home_listing_categories ul li + li {
    padding-left: var(--wp--preset--spacing--s);
    margin-left: var(--wp--preset--spacing--s);
  }
}
.home .home_listing_categories ul li + li::before {
  content: "";
  background: var(--wp--preset--color--yellow);
  position: absolute;
  left: 0;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.wp-block-categories-list.wp-block-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wp-block-categories-list.wp-block-categories li {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUpItem 1s ease forwards;
}

/* Délai progressif */
.wp-block-categories-list.wp-block-categories li:nth-child(1) {
  animation-delay: 0.2s;
}

.wp-block-categories-list.wp-block-categories li:nth-child(2) {
  animation-delay: 0.4s;
}

.wp-block-categories-list.wp-block-categories li:nth-child(3) {
  animation-delay: 0.6s;
}

.wp-block-categories-list.wp-block-categories li:nth-child(4) {
  animation-delay: 0.8s;
}

.wp-block-categories-list.wp-block-categories li:nth-child(5) {
  animation-delay: 1s;
}

.wp-block-categories-list.wp-block-categories li:nth-child(6) {
  animation-delay: 1.2s;
}

.wp-block-categories-list.wp-block-categories li:nth-child(7) {
  animation-delay: 1.4s;
}

.wp-block-categories-list.wp-block-categories li:nth-child(8) {
  animation-delay: 1.6s;
}

@keyframes fadeUpItem {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.rank-math-html-sitemap .rank-math-html-sitemap__section > h2 {
  margin-bottom: var(--wp--preset--spacing--s);
}
.rank-math-html-sitemap .rank-math-html-sitemap__section > ul {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: var(--wp--preset--spacing--m);
       column-gap: var(--wp--preset--spacing--m);
}
.rank-math-html-sitemap .rank-math-html-sitemap__section + .rank-math-html-sitemap__section {
  margin-top: var(--wp--preset--spacing--xl);
}

/****************************************************************************/
/* PATTERNS
/****************************************************************************/
/*
* Pagination
*
*/
.wp-block-query-pagination {
  gap: 0;
}
.wp-block-query-pagination .is-arrow-arrow {
  color: var(--wp--preset--color--black);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 1.2em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-block-query-pagination-numbers {
  display: flex;
  gap: var(--wp--preset--spacing--s);
}

/****************************************************************************/
/* BLOCKS
/****************************************************************************/
.leftright_media_text_part {
  max-width: 1500px;
  margin: auto;
}
.leftright_media_text_part .text_content {
  max-width: 550px;
  margin: auto;
  padding: 0 var(--wp--preset--spacing--xl);
}
@media all and (max-width: 992px) {
  .leftright_media_text_part .text_content {
    padding: 0 var(--wp--preset--spacing--l);
  }
}
@media all and (max-width: 781px) {
  .leftright_media_text_part .text_content {
    padding: 0 var(--wp--preset--spacing--m);
    max-width: none;
  }
}
@media all and (max-width: 576px) {
  .leftright_media_text_part .text_content {
    padding: 20px var(--wp--preset--spacing--m);
  }
}

.testimony_part {
  clip-path: polygon(0 50px, 100% 0, 100% calc(100% - 50px), 0 100%);
}
@media all and (max-width: 767px) {
  .testimony_part {
    padding: 0;
  }
}
.testimony_part .media_content {
  max-width: 450px;
}
@media all and (max-width: 1100px) {
  .testimony_part .media_content {
    flex-basis: 40% !important;
  }
}
@media all and (max-width: 767px) {
  .testimony_part .media_content {
    max-width: none;
  }
}
.testimony_part .text_content {
  padding: 0 100px;
}
@media all and (max-width: 1250px) {
  .testimony_part .text_content {
    padding: 0 50px;
  }
}
@media all and (max-width: 767px) {
  .testimony_part .text_content {
    padding: 0px 50px;
  }
}

.is-angled-bg + .testimony_part {
  padding-top: 30px;
}
.is-angled-bg + .testimony_part::before {
  display: none;
}

@media all and (max-width: 992px) {
  .blog_part .news_heading_part {
    display: block;
  }
}
.blog_part .news_heading_part h2.is-style-is-big::after, .blog_part .news_heading_part .wp-block-buttons .wp-block-button__link::after {
  background: var(--wp--preset--color--pink) !important;
}
@media all and (max-width: 992px) {
  .blog_part .news_heading_part .wp-block-buttons {
    justify-content: flex-start;
  }
  .blog_part .news_heading_part .wp-block-buttons .wp-block-button {
    margin-top: var(--wp--preset--spacing--s);
  }
}
@media all and (max-width: 992px) {
  .blog_part .news_heading_part .wp-block-button {
    margin-top: var(--wp--preset--spacing--l);
  }
}
.blog_part .listing_part {
  gap: var(--wp--preset--spacing--xxl);
}
@media all and (max-width: 992px) {
  .blog_part .listing_part {
    gap: var(--wp--preset--spacing--s);
  }
}
.blog_part .listing_part a {
  border-bottom: none;
}
.blog_part .wp-block-post {
  position: relative;
}
.blog_part .wp-block-post a::after {
  content: "";
  position: absolute;
  inset: 0;
}
.blog_part .wp-block-post time {
  position: relative;
  font-weight: 300;
}
.blog_part .wp-block-post time::after {
  content: "";
  background: var(--wp--preset--color--pink);
  width: 10px;
  height: 10px;
  border-radius: 50px;
  display: inline-block;
  margin-left: 10px;
  margin-bottom: 1px;
}
.blog_part .wp-block-post .wp-block-post-excerpt {
  position: relative;
}
@media all and (max-width: 576px) {
  .blog_part .wp-block-post .wp-block-post-excerpt {
    display: none;
  }
}
.blog_part .wp-block-post .wp-block-post-excerpt::before {
  width: 100%;
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background-color: var(--wp--preset--color--white);
  transition: all 0.4s ease-in-out;
}
.blog_part .wp-block-post .wp-block-post-excerpt__more-link {
  display: none;
}
.blog_part .wp-block-post:hover .wp-block-post-excerpt::before {
  width: 0;
}

.imp-tooltip {
  background: transparent !important;
  font-family: var(--wp--preset--font-family--black) !important;
  padding: 0 !important;
}
.imp-tooltip .hs-arrow {
  display: none !important;
}
.imp-tooltip a {
  border-radius: 0 !important;
  color: var(--wp--preset--color--black) !important;
  padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--m) !important;
  height: auto !important;
  line-height: initial !important;
}
.imp-tooltip a.pink {
  background-color: var(--wp--preset--color--pink) !important;
}
.imp-tooltip a.blue {
  background-color: var(--wp--preset--color--blue) !important;
}
.imp-tooltip a.green {
  background-color: var(--wp--preset--color--green) !important;
}
.imp-tooltip a.yellow {
  background-color: var(--wp--preset--color--yellow) !important;
}
.imp-tooltip a.purple {
  background-color: var(--wp--preset--color--purple) !important;
}

.faq_part .hero_faq_part {
  padding: var(--wp--preset--spacing--xxxl) 10px var(--wp--preset--spacing--xl);
}
@media all and (max-width: 992px) {
  .faq_part .hero_faq_part {
    padding: var(--wp--preset--spacing--xxl) 10px var(--wp--preset--spacing--m);
  }
}
.faq_part .content_faq_part {
  padding: var(--wp--preset--spacing--xxl) 10px var(--wp--preset--spacing--xxxl);
}
@media all and (max-width: 992px) {
  .faq_part .content_faq_part {
    padding: var(--wp--preset--spacing--xxl) 10px var(--wp--preset--spacing--xxl);
  }
}
.faq_part .is-angled-bg + .is-angled-bg::before {
  display: none;
}

.expertises_part > .wp-block-group {
  padding: 0 var(--wp--preset--spacing--xl);
}
@media all and (max-width: 850px) {
  .expertises_part > .wp-block-group {
    padding: 0 var(--wp--preset--spacing--xxs);
  }
}
.expertises_part h2.is-style-is-big::after {
  background: var(--wp--preset--color--yellow) !important;
}
.expertises_part .expertiseslisting_part {
  padding-top: var(--wp--preset--spacing--xl);
  padding-bottom: var(--wp--preset--spacing--xl);
  display: grid;
  grid-template-columns: minmax(220px, 440px) 1fr;
  gap: 24px;
}
@media all and (max-width: 850px) {
  .expertises_part .expertiseslisting_part {
    display: block;
    padding-top: var(--wp--preset--spacing--xxs);
  }
}
@media all and (max-width: 850px) {
  .expertises_part .expertiseslisting_part .expertiseslisting_part__left {
    margin-bottom: var(--wp--preset--spacing--xl);
  }
}
.expertises_part .expertiseslisting_part .expertiseslisting_part__left .expertiseslisting_part__item {
  text-align: left;
  font-size: var(--wp--preset--font-size--l);
  font-weight: 300;
  height: auto;
  color: var(--wp--preset--color--black) !important;
  line-height: initial;
  padding: var(--wp--preset--spacing--xs) 0;
  border: none;
  background: transparent;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media all and (max-width: 992px) {
  .expertises_part .expertiseslisting_part .expertiseslisting_part__left .expertiseslisting_part__item {
    padding: var(--wp--preset--spacing--xxs) 0;
  }
}
.expertises_part .expertiseslisting_part .expertiseslisting_part__left .expertiseslisting_part__item.is-active {
  font-weight: 900;
}
.expertises_part .expertiseslisting_part .expertiseslisting_part__left .expertiseslisting_part__item.is-active::after {
  content: "";
  background: var(--wp--preset--color--yellow);
  width: 11px;
  height: 11px;
  border-radius: 50px;
  display: inline-block;
  margin-left: 10px;
}
.expertises_part .expertiseslisting_part .expertiseslisting_part__right {
  position: relative;
  margin-top: -30px;
}
.expertises_part .expertiseslisting_part .expertiseslisting_part__right p.h2 {
  font-family: var(--wp--preset--font-family--secondary);
  font-size: clamp(2.813rem, -0.134rem + 7.857vw, 6.938rem);
  font-weight: 700;
  color: var(--wp--preset--color--purple);
  opacity: 0.14;
}
.expertises_part .expertiseslisting_part .expertiseslisting_part__right .expertiseslisting_part__more {
  display: inline-block;
  margin-top: var(--wp--preset--spacing--m);
  font-weight: 900;
  border-bottom: 1px solid var(--wp--preset--color--black);
}
.expertises_part .expertiseslisting_part .expertiseslisting_part__right .hiddenlink {
  visibility: hidden;
  height: 0;
  position: absolute;
}

.step_part {
  padding: var(--wp--preset--spacing--xxl) 0;
}
.step_part .item .item_content {
  padding: 0 var(--wp--preset--spacing--m);
}
@media all and (max-width: 992px) {
  .step_part .item .item_content {
    padding: var(--wp--preset--spacing--xs) var(--wp--preset--spacing--m);
  }
}
.step_part .item .item_content p.is-style-text-surtitre-blanc {
  margin-bottom: var(--wp--preset--spacing--m);
}
@media all and (max-width: 992px) {
  .step_part .item .item_content p.is-style-text-surtitre-blanc {
    margin-bottom: 0;
  }
}

.cta_part {
  padding: var(--wp--preset--spacing--xxxl) 0;
}

.studio_part .bottom_studio_part {
  padding-top: var(--wp--preset--spacing--xl);
}
@media all and (max-width: 768px) {
  .studio_part .bottom_studio_part {
    display: block;
  }
}
.studio_part .bottom_studio_part .right_bottom_content {
  padding: 0 var(--wp--preset--spacing--s);
}
@media all and (max-width: 768px) {
  .studio_part .bottom_studio_part .right_bottom_content {
    padding: var(--wp--preset--spacing--s) 0;
  }
}
.studio_part .bottom_studio_part .right_bottom_content .wp-block-buttons {
  margin-top: var(--wp--preset--spacing--xs);
}

.reassurance_part {
  padding: var(--wp--preset--spacing--xl) 0 !important;
}
@media all and (max-width: 992px) {
  .reassurance_part .item {
    padding: var(--wp--preset--spacing--xs) 0;
  }
}
.reassurance_part .item .item_content {
  padding: 0 var(--wp--preset--spacing--m);
}