@charset "UTF-8";
/* ==========================================================================
   Variables.scss
   ========================================================================= */
/* ==========================================================================
   Reset.scss
   ========================================================================= */
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

/* Suppression des styles par défaut des titres */
h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  font-size: inherit;
}

/* Nettoyage typographique de base */
body {
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.no-scroll {
  overflow: hidden;
}

.site {
  overflow: clip;
}

@media (height >= 50rem) {
  .site-main {
    min-height: 50vh;
  }
}
/* Suppression des styles des listes */
ul, ol {
  list-style: none;
}

/* Liens sans style par défaut */
a {
  color: inherit;
  text-decoration: none;
}

/* Images réactives */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Formulaires accessibles et neutres */
input, button, textarea, select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
  background: none;
}

textarea {
  resize: vertical;
}

/* Tableaux */
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

/* Supprime les animations pour les utilisateurs préférant les interfaces sans effet */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.d-flex, .is-layout-flex {
  display: flex;
}

.justify-content-start {
  justify-content: flex-start;
}

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

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

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

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

.align-items-start {
  align-items: flex-start;
}

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

.align-items-end {
  align-items: flex-end;
}

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

.flex-1 {
  flex: 1;
}

.w-100 {
  width: 100%;
}

.m-xs {
  margin-block: clamp(0.5rem, 1vw, 1rem);
}

.p-xs {
  padding-block: clamp(0.5rem, 1vw, 1rem);
}

.mt-xs {
  margin-top: clamp(0.5rem, 1vw, 1rem);
}

.mb-xs {
  margin-bottom: clamp(0.5rem, 1vw, 1rem);
}

.ms-xs {
  margin-left: clamp(0.5rem, 1vw, 1rem);
}

.me-xs {
  margin-right: clamp(0.5rem, 1vw, 1rem);
}

.pt-xs {
  padding-top: clamp(0.5rem, 1vw, 1rem);
}

.pb-xs {
  padding-bottom: clamp(0.5rem, 1vw, 1rem);
}

.ps-xs {
  padding-left: clamp(0.5rem, 1vw, 1rem);
}

.pe-xs {
  padding-right: clamp(0.5rem, 1vw, 1rem);
}

.m-sm {
  margin-block: clamp(1rem, 2vw, 2rem);
}

.p-sm {
  padding-block: clamp(1rem, 2vw, 2rem);
}

.mt-sm {
  margin-top: clamp(1rem, 2vw, 2rem);
}

.mb-sm {
  margin-bottom: clamp(1rem, 2vw, 2rem);
}

.ms-sm {
  margin-left: clamp(1rem, 2vw, 2rem);
}

.me-sm {
  margin-right: clamp(1rem, 2vw, 2rem);
}

.pt-sm {
  padding-top: clamp(1rem, 2vw, 2rem);
}

.pb-sm {
  padding-bottom: clamp(1rem, 2vw, 2rem);
}

.ps-sm {
  padding-left: clamp(1rem, 2vw, 2rem);
}

.pe-sm {
  padding-right: clamp(1rem, 2vw, 2rem);
}

.m-md {
  margin-block: clamp(2rem, 4vw, 4rem);
}

.p-md {
  padding-block: clamp(2rem, 4vw, 4rem);
}

.mt-md {
  margin-top: clamp(2rem, 4vw, 4rem);
}

.mb-md {
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.ms-md {
  margin-left: clamp(2rem, 4vw, 4rem);
}

.me-md {
  margin-right: clamp(2rem, 4vw, 4rem);
}

.pt-md {
  padding-top: clamp(2rem, 4vw, 4rem);
}

.pb-md {
  padding-bottom: clamp(2rem, 4vw, 4rem);
}

.ps-md {
  padding-left: clamp(2rem, 4vw, 4rem);
}

.pe-md {
  padding-right: clamp(2rem, 4vw, 4rem);
}

.m-lg {
  margin-block: clamp(3rem, 6vw, 6rem);
}

.p-lg {
  padding-block: clamp(3rem, 6vw, 6rem);
}

.mt-lg {
  margin-top: clamp(3rem, 6vw, 6rem);
}

.mb-lg {
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.ms-lg {
  margin-left: clamp(3rem, 6vw, 6rem);
}

.me-lg {
  margin-right: clamp(3rem, 6vw, 6rem);
}

.pt-lg {
  padding-top: clamp(3rem, 6vw, 6rem);
}

.pb-lg {
  padding-bottom: clamp(3rem, 6vw, 6rem);
}

.ps-lg {
  padding-left: clamp(3rem, 6vw, 6rem);
}

.pe-lg {
  padding-right: clamp(3rem, 6vw, 6rem);
}

.has-primary-color {
  color: #0f0f0f !important;
}

.has-primary-background-color {
  background-color: #0f0f0f !important;
}

.has-secondary-color {
  color: #80d1d2 !important;
}

.has-secondary-background-color {
  background-color: #80d1d2 !important;
}

.has-blue-color {
  color: #009fe3 !important;
}

.has-blue-background-color {
  background-color: #009fe3 !important;
}

.has-altblue-color {
  color: #7fcff1 !important;
}

.has-altblue-background-color {
  background-color: #7fcff1 !important;
}

.has-lightblue-color {
  color: #80d1d2 !important;
}

.has-lightblue-background-color {
  background-color: #80d1d2 !important;
}

.has-orange-color {
  color: #ef8f2c !important;
}

.has-orange-background-color {
  background-color: #ef8f2c !important;
}

.has-lightorange-color {
  color: #fbba77 !important;
}

.has-lightorange-background-color {
  background-color: #fbba77 !important;
}

.has-red-color {
  color: #ff0000 !important;
}

.has-red-background-color {
  background-color: #ff0000 !important;
}

.has-green-color {
  color: #3aaa35 !important;
}

.has-green-background-color {
  background-color: #3aaa35 !important;
}

.has-green-60-color {
  color: oklch(65.09% 0.1851 142.5deg / 0.6) !important;
}

.has-green-60-background-color {
  background-color: oklch(65.09% 0.1851 142.5deg / 0.6) !important;
}

.has-lightgreen-color {
  color: #9cd49a !important;
}

.has-lightgreen-background-color {
  background-color: #9cd49a !important;
}

.has-black-color {
  color: #0f0f0f !important;
}

.has-black-background-color {
  background-color: #0f0f0f !important;
}

.has-lightgrey-color {
  color: #eff2f5 !important;
}

.has-lightgrey-background-color {
  background-color: #eff2f5 !important;
}

.has-white-color {
  color: #fff !important;
}

.has-white-background-color {
  background-color: #fff !important;
}

@media (width <= 75rem) {
  .desktop {
    display: none !important;
  }
}

@media (width > 75rem) {
  .mobile {
    display: none !important;
  }
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

/* ==========================================================================
   Typography.scss - Hiérarchie typographique de base
   ========================================================================= */
@font-face {
  font-family: "Poppins Light";
  src: url("../fonts/poppins-300.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Poppins";
  src: url("../fonts/poppins-regular.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Poppins Medium";
  src: url("../fonts/poppins-500.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Poppins SemiBold";
  src: url("../fonts/poppins-600.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Poppins Bold";
  src: url("../fonts/poppins-700.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-variable.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 200 900;
}
body {
  font-family: "Poppins", sans-serif;
  font-size: 100%;
  color: oklch(16.84% 0 0deg);
  background-color: #fff;
}

h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: 2.25rem;
}

h2 {
  font-size: clamp(2.25rem, 2.071rem + 0.476vw, 2.5rem);
}

h3 {
  font-size: 1.25rem;
}

h4 {
  font-size: 1.15rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

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

h1,
h2,
h3 {
  font-family: "Raleway", sans-serif;
}

h1 {
  font-weight: normal;
}

h2 {
  font-weight: normal;
}
h2.circle {
  position: relative;
}
h2.circle::before {
  content: "";
  background: url("../img/pictos/demi-cercle-titre.svg") no-repeat;
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 4rem;
  height: 2.5rem;
}
h2.twolines {
  padding-bottom: 4rem;
  padding-left: 1rem;
  font-size: clamp(1.15rem, 1.007rem + 0.381vw, 1.35rem);
  line-height: 1;
}
h2.twolines span {
  font-size: clamp(2.25rem, 2.071rem + 0.476vw, 2.5rem);
  padding-left: 1rem;
  display: block;
}

p {
  margin-bottom: 1em;
}

.has-small-font-size {
  font-size: clamp(0.75rem, 0.643rem + 0.286vw, 0.9rem) !important;
}

.has-medium-font-size {
  font-size: clamp(1.1rem, 0.993rem + 0.286vw, 1.25rem) !important;
}

.has-large-font-size {
  font-size: clamp(2rem, 0.75rem + 3.333vw, 3.75rem) !important;
}

strong,
.strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

blockquote {
  margin: 1em 0;
  padding-left: 1em;
  border-left: 4px solid #ccc;
  font-style: italic;
  color: #555;
}

code, pre {
  font-family: monospace;
  background: #f8f8f8;
  padding: 0.2em 0.4em;
  border-radius: 4px;
}

pre {
  overflow-x: auto;
  padding: 1em;
}

.text-start {
  text-align: left !important;
}

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

.text-end {
  text-align: right !important;
}

/* ==========================================================================
   Accessibility.scss - Helpers pour l'accessibilité
   ========================================================================= */
/* Cache visuellement tout en gardant l'élément accessible aux lecteurs d'écran */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Liens "aller au contenu" */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 100;
}
.skip-link:focus, .skip-link:active {
  position: static;
  width: fit-content;
  height: auto;
  margin: 1rem;
  padding: 0.5rem 1rem;
  background: oklch(16.84% 0 0deg);
  color: #fff;
  text-decoration: none;
}

/* Indication de focus visible */
:focus-visible {
  outline: 2px dotted oklch(16.84% 0 0deg);
  outline-offset: 2px;
}

/* Pour les navigateurs ne supportant pas :focus-visible */
:focus:not(:focus-visible) {
  outline: none;
}

/* ==========================================================================
   Container.scss - Conteneur de base responsive
   ========================================================================= */
.content-grid {
  display: grid;
  grid-template-columns: [full-width-start] minmax(2rem, 1fr) [content-start] min(100% - 4rem, 71.25rem) [content-end] minmax(2rem, 1fr) [full-width-end];
}
.content-grid > * {
  grid-column: content;
}
.content-grid > .full-width {
  grid-column: full-width;
}
.content-grid.grid-breakout {
  grid-template-columns: [full-width-start] minmax(2rem, 1fr) [breakout-start] minmax(0, 1.875rem) [content-start] min(100% - 4rem, 71.25rem) [content-end] minmax(0, 1.875rem) [breakout-end] minmax(2rem, 1fr) [full-width-end];
}
.content-grid.grid-breakout > .breakout {
  grid-column: breakout;
}

.full-width > * {
  grid-column: content;
}

.wrapper {
  display: grid;
  gap: 1.5rem;
}

.wrapper-cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.5rem;
}

.hero {
  width: 100%;
  background-size: cover !important;
  background-position: center !important;
  position: relative;
  z-index: 0;
}
@media (width >= 62rem) {
  .hero {
    height: 15rem;
  }
}
.home .hero {
  height: calc(45vh - 10rem);
}
@media (height <= 62.5rem) {
  .home .hero {
    height: calc(75vh - 10rem);
  }
}
.hero .wrapper {
  height: 100%;
}
.hero.hero-photo .wrapper__photo {
  width: 100%;
  height: 15rem;
}
@media (width >= 62rem) {
  .hero.hero-photo .wrapper {
    grid-template-columns: repeat(24, 1fr);
  }
  .hero.hero-photo .wrapper__photo {
    grid-column: 1/10;
    background-size: cover !important;
    background-position: center !important;
    height: 100%;
    z-index: 2;
  }
  .hero.hero-photo .wrapper__title {
    grid-column: 10/25;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .hero.hero-photo .wrapper__title p {
    text-wrap: balance;
    font-size: clamp(2.5rem, 2.143rem + 0.952vw, 3rem);
    margin-bottom: 0;
    margin-left: 4rem;
  }
  .hero.hero-photo .wrapper__title::after {
    content: "";
    position: absolute;
    bottom: -1rem;
    left: -2rem;
    background: url("../img/pictos/stripe.svg") repeat-x;
    background-size: contain !important;
    height: 2rem;
    width: calc(100% + 2rem);
  }
}
@media (width <= 62rem) {
  .hero.hero-photo .wrapper__photo {
    background-position: center center !important;
  }
  .hero.hero-photo .wrapper__title {
    padding-inline: 2rem;
  }
  .hero.hero-photo .wrapper__title p {
    font-size: clamp(2.25rem, 2.071rem + 0.476vw, 2.5rem);
    text-align: center;
  }
}
.hero.hero-simple {
  display: grid;
  place-content: center;
  position: relative;
}
.hero.hero-simple::after {
  content: "";
  position: absolute;
  bottom: -1rem;
  left: 0rem;
  background: url("../img/pictos/stripe.svg") repeat-x;
  background-size: contain !important;
  height: 2rem;
  width: 100%;
}
.hero.hero-simple .wrapper__title {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero.hero-simple .wrapper__title h1,
.hero.hero-simple .wrapper__title p {
  text-wrap: balance;
  font-size: clamp(2.5rem, 2.143rem + 0.952vw, 3rem);
  margin-bottom: 0;
  position: relative;
}
@media (width <= 48rem) {
  .hero.hero-simple .wrapper__title h1,
  .hero.hero-simple .wrapper__title p {
    padding-block: 2rem;
    line-height: 1.2;
  }
}
.hero.hero-simple .wrapper__title h1 span,
.hero.hero-simple .wrapper__title p span {
  position: relative;
}
.hero.hero-simple .wrapper__title h1 span::before,
.hero.hero-simple .wrapper__title p span::before {
  content: "";
  background: url("../img/pictos/demi-cercle-titre-blanc.svg") no-repeat;
  position: absolute;
  bottom: -1.5rem;
  left: -2rem;
  width: 4rem;
  height: 2.5rem;
}
@media (width <= 48rem) {
  .hero.hero-simple {
    min-height: 15rem;
  }
}

.breadcrumb li {
  font-family: "Poppins", sans-serif;
  font-size: clamp(0.75rem, 0.679rem + 0.19vw, 0.85rem);
}
.breadcrumb li.active span {
  font-family: "Poppins Bold", sans-serif;
}
.breadcrumb li:not(:first-of-type) {
  padding-left: 0.25rem;
}
.breadcrumb li a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.site-footer {
  margin-top: 4rem;
  position: relative;
}
.site-footer > * {
  position: relative;
  z-index: 1;
}
.home .site-footer {
  margin-top: 0;
}
.site-footer::before {
  content: "";
  background: url("../img/pictos/stripe.svg") repeat-x;
  background-size: contain !important;
  height: 2rem;
  width: 100%;
  position: absolute;
  top: -1rem;
  left: 0;
}
.site-footer::after {
  content: "";
  background: url("../img/pictos/goutte-footer.svg") no-repeat;
  background-size: cover !important;
  width: 15rem;
  height: 14rem;
  position: absolute;
  bottom: -1px;
  right: 0;
  z-index: 0;
}
.site-footer .wrapper-cols {
  align-items: center;
}
.site-footer h2 {
  font-size: clamp(0.95rem, 0.914rem + 0.095vw, 1rem);
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.site-footer .site-info__logo {
  inline-size: fit-content;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.site-footer .site-info p {
  font-size: clamp(0.85rem, 0.743rem + 0.286vw, 0.95rem);
  display: flex;
  align-items: flex-start;
}
.site-footer .site-info p img {
  margin-right: 0.5rem;
}
.site-footer .site-links {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.site-footer .site-links a {
  font-family: "Poppins Bold", sans-serif;
}
.site-footer .site-links a.btn {
  min-width: 10rem;
}
.site-footer .site-links a:not(.btn) {
  text-align: center;
}
.site-footer .site-links a:not(.btn):hover {
  text-decoration: underline;
}
.site-footer #social h2 {
  margin-bottom: 0;
}
@media (width <= 48rem) {
  .site-footer #social {
    justify-content: center;
  }
}
.site-footer #copyright {
  margin-top: 2rem;
}
.site-footer #copyright li {
  font-size: clamp(0.75rem, 0.679rem + 0.19vw, 0.85rem);
}
.site-footer #copyright li a:hover {
  text-decoration: underline;
}
.site-footer #copyright li:not(:last-of-type) {
  margin-right: 0.5rem;
}
@media (width >= 48rem) {
  .site-footer #copyright li:not(:last-of-type)::after {
    content: "|";
    padding-left: 0.5rem;
    display: inline-block;
  }
}
@media (width <= 48rem) {
  .site-footer #copyright ul {
    flex-direction: column;
    text-align: center;
  }
}

.btn {
  border-radius: 25px;
  border: 2px solid;
  padding: 0.5rem 1.5rem;
  width: fit-content;
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  white-space: nowrap;
  font-weight: 600;
}
.btn.btn-outline {
  background-color: oklch(100% 0 0deg / 0);
  border-color: oklch(80.93% 0.0794 196.71deg);
  color: oklch(80.93% 0.0794 196.71deg);
  position: relative;
  overflow: hidden;
}
.btn.btn-outline::before {
  content: "";
  position: absolute;
  background-color: oklch(80.93% 0.0794 196.71deg);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: 100%;
  left: 0;
  transform: translateY(0);
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  z-index: -1;
}
.btn.btn-outline:hover {
  color: oklch(16.84% 0 0deg);
}
.btn.btn-outline:hover::before {
  transform: translateY(-100%);
}
.btn.btn-outline.btn-black {
  border-color: oklch(16.84% 0 0deg);
  color: oklch(16.84% 0 0deg);
}
.btn.btn-outline.btn-black::before {
  background-color: oklch(16.84% 0 0deg);
}
.btn.btn-outline.btn-black:hover {
  color: oklch(100% 0 0deg);
}
.btn.btn-outline.btn-white {
  border-color: oklch(100% 0 0deg);
  color: oklch(100% 0 0deg);
}
.btn.btn-outline.btn-white::before {
  background-color: oklch(100% 0 0deg);
}
.btn.btn-outline.btn-white:hover {
  color: oklch(16.84% 0 0deg);
}
.btn.btn-full {
  border-color: oklch(80.93% 0.0794 196.71deg);
  color: oklch(16.84% 0 0deg);
  display: inline-flex;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn.btn-full::before {
  content: "";
  background-color: oklch(80.93% 0.0794 196.71deg);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.btn.btn-full::after {
  content: "";
  position: absolute;
  background-color: oklch(100% 0 0deg);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: 100%;
  left: 0;
  transform: translateY(0);
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  z-index: -1;
}
.btn.btn-full:hover {
  color: oklch(16.84% 0 0deg);
}
.btn.btn-full:hover::after {
  transform: translateY(-100%);
}
.btn.btn-picto {
  display: flex;
  align-items: center;
}
.btn.btn-picto img {
  margin-right: 0.5rem;
}

.wp-block-buttons {
  margin-block: 2rem;
  gap: 1rem;
}
.wp-block-buttons .wp-block-button__link {
  text-decoration: none;
  border-radius: 25px;
  border: 2px solid;
  padding: 0.25rem 1.5rem;
  font-weight: 700;
  width: fit-content;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  white-space: nowrap;
  border-color: oklch(16.84% 0 0deg);
  color: oklch(100% 0 0deg);
  position: relative;
  overflow: hidden;
  z-index: 0;
}
@media (width <= 75rem) {
  .wp-block-buttons .wp-block-button__link {
    white-space: normal;
  }
}
.wp-block-buttons .wp-block-button__link::before {
  content: "";
  position: absolute;
  background-color: oklch(16.84% 0 0deg);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: 0;
  left: 0;
  transform: translateY(0);
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  z-index: -1;
}
.wp-block-buttons .wp-block-button__link::after {
  content: "";
  position: absolute;
  background-color: oklch(100% 0 0deg);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  top: 100%;
  left: 0;
  transform: translateY(0);
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95);
  z-index: -1;
}
.wp-block-buttons .wp-block-button__link:hover {
  color: oklch(16.84% 0 0deg);
}
.wp-block-buttons .wp-block-button__link:hover::after {
  transform: translateY(-100%);
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: oklch(100% 0 0deg / 0);
  border-color: oklch(16.84% 0 0deg);
  color: oklch(16.84% 0 0deg);
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link::before {
  display: none;
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link::after {
  background-color: oklch(16.84% 0 0deg);
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: oklch(100% 0 0deg);
}
.wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover::after {
  transform: translateY(-100%);
}
.eau .wp-block-buttons .wp-block-button__link {
  border-color: oklch(66.67% 0.1473 237.8deg);
  color: oklch(16.84% 0 0deg);
}
.eau .wp-block-buttons .wp-block-button__link::before {
  background-color: oklch(81.54% 0.09202 227.176deg);
}
.eau .wp-block-buttons .wp-block-button__link::after {
  background-color: oklch(100% 0 0deg);
}
.eau .wp-block-buttons .wp-block-button__link:hover {
  color: oklch(16.84% 0 0deg);
}
.eau .wp-block-buttons .wp-block-button__link:hover::after {
  transform: translateY(-100%);
}
.eau .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: oklch(100% 0 0deg / 0);
  border-color: oklch(66.67% 0.1473 237.8deg);
  color: oklch(16.84% 0 0deg);
}
.eau .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link::after {
  background-color: oklch(81.54% 0.09202 227.176deg);
}
.eau .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: oklch(16.84% 0 0deg);
}
.eau .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover::after {
  transform: translateY(-100%);
}
.dechets .wp-block-buttons .wp-block-button__link {
  border-color: oklch(73.63% 0.1563 60.75deg);
  color: oklch(16.84% 0 0deg);
}
.dechets .wp-block-buttons .wp-block-button__link::before {
  background-color: oklch(86% 0.12 62.89deg);
}
.dechets .wp-block-buttons .wp-block-button__link::after {
  background-color: oklch(100% 0 0deg);
}
.dechets .wp-block-buttons .wp-block-button__link:hover {
  color: oklch(16.84% 0 0deg);
}
.dechets .wp-block-buttons .wp-block-button__link:hover::after {
  transform: translateY(-100%);
}
.dechets .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: oklch(100% 0 0deg / 0);
  border-color: oklch(73.63% 0.1563 60.75deg);
  color: oklch(16.84% 0 0deg);
}
.dechets .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link::after {
  background-color: oklch(86% 0.12 62.89deg);
}
.dechets .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: oklch(16.84% 0 0deg);
}
.dechets .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover::after {
  transform: translateY(-100%);
}
.assainissement .wp-block-buttons .wp-block-button__link {
  border-color: oklch(65.09% 0.1851 142.5deg);
  color: oklch(16.84% 0 0deg);
}
.assainissement .wp-block-buttons .wp-block-button__link::before {
  background-color: oklch(81.628% 0.09884 143.816deg);
}
.assainissement .wp-block-buttons .wp-block-button__link::after {
  background-color: oklch(100% 0 0deg);
}
.assainissement .wp-block-buttons .wp-block-button__link:hover {
  color: oklch(16.84% 0 0deg);
}
.assainissement .wp-block-buttons .wp-block-button__link:hover::after {
  transform: translateY(-100%);
}
.assainissement .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link {
  background-color: oklch(100% 0 0deg / 0);
  border-color: oklch(65.09% 0.1851 142.5deg);
  color: oklch(16.84% 0 0deg);
}
.assainissement .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link::after {
  background-color: oklch(81.628% 0.09884 143.816deg);
}
.assainissement .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover {
  color: oklch(16.84% 0 0deg);
}
.assainissement .wp-block-buttons .wp-block-button.is-style-outline .wp-block-button__link:hover::after {
  transform: translateY(-100%);
}

.top-button {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  border: 0;
  padding: 0;
  margin: 0;
  background: #9bdfe0;
  padding: 1rem;
  border-radius: 10px;
  transform: translateY(0);
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 2;
}
.top-button img {
  transform: rotate(180deg);
}
.top-button.visible {
  opacity: 1;
}
.top-button:hover, .top-button:focus-visible, .top-button:focus-within, .top-button:active {
  transform: translateY(-10px);
  background: none !important;
}
.top-button span {
  visibility: hidden;
}

header {
  position: sticky;
  top: 0;
  z-index: 1050;
  transform: translateY(0);
  background: oklch(100% 0 0deg);
  transition: transform 0.35s cubic-bezier(0.15, 0.9, 0.34, 0.95);
}
header.scrolled {
  transform: translateY(-2.5rem);
  box-shadow: 0 0 10px oklch(95.97% 0.0052 247.88deg);
}
.admin-bar header {
  transform: translateY(0);
}

.site-header {
  padding-block: 0.5rem;
  transition: all 0.35s ease;
}
@media (width >= 75rem) {
  .site-header {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
}
@media (width <= 75rem) {
  .site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
  }
}
.site-header__logo {
  display: flex;
  align-items: flex-end;
}
@media (width >= 75rem) {
  .site-header__logo {
    grid-column: 1/5;
  }
}
.site-header__logo h1,
.site-header__logo p {
  margin-bottom: 0;
}
.site-header__logo .site-logo,
.site-header__logo svg {
  width: 12rem;
  height: auto;
  transform: translateY(0);
  transition: all 0.15s ease;
}
.site-header__logo .site-logo #description,
.site-header__logo .site-logo #baseline,
.site-header__logo svg #description,
.site-header__logo svg #baseline {
  opacity: 1;
  transition: all 0.15s ease;
}
@media (width <= 75rem) {
  .site-header__logo .site-logo,
  .site-header__logo svg {
    width: 8rem;
  }
}
.site-header__logo a:focus img, .site-header__logo a:focus-visible img {
  outline: 2px dotted oklch(16.84% 0 0deg);
  outline-offset: 2px;
}
.scrolled .site-header__logo svg {
  transform: translateY(2.5rem);
}
.scrolled .site-header__logo svg #description,
.scrolled .site-header__logo svg #baseline {
  opacity: 0;
}
.scrolled .site-header__logo svg #description path,
.scrolled .site-header__logo svg #baseline path {
  stroke-width: 0;
}
@media (width <= 48rem) {
  .scrolled .site-header__logo svg {
    transform: translateY(1rem);
  }
}
.site-header.hidden {
  transform: translateY(-100%);
}
.site-header__btns {
  display: flex;
}
.site-header__btns .menu-toggle,
.site-header__btns .search {
  width: 3rem;
  height: 3rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header__btns .menu-toggle img,
.site-header__btns .menu-toggle svg,
.site-header__btns .search img,
.site-header__btns .search svg {
  width: 2rem;
  height: 2rem;
}
.site-header__btns .menu-toggle {
  background-color: oklch(80.93% 0.0794 196.71deg);
}
.site-header__btns .menu-toggle svg {
  width: 2.85rem;
  height: 2.85rem;
}
.site-header__btns .menu-toggle .bar {
  fill: oklch(16.84% 0 0deg);
  transition: all 0.3s ease;
  transform-origin: center;
  border-radius: 3px;
}
.site-header__btns .menu-toggle .bar.bar1 {
  width: 100%;
}
.site-header__btns .menu-toggle .bar.bar2 {
  width: 80%;
}
.site-header__btns .menu-toggle .bar.bar3 {
  width: 60%;
}
.site-header__btns .menu-toggle[aria-expanded=true] .bar1 {
  transform: translateY(29px) rotate(45deg);
  width: 100%;
  y: 15;
  x: -19;
}
.site-header__btns .menu-toggle[aria-expanded=true] .bar2 {
  opacity: 0;
}
.site-header__btns .menu-toggle[aria-expanded=true] .bar3 {
  transform: translateY(-29px) rotate(-45deg);
  width: 100%;
  x: -18;
  y: 59;
}
.site-header__btns .search {
  margin-right: 0.5rem;
  background-color: #dadde1;
}
@media (width >= 75rem) {
  .site-header__btns {
    display: none;
  }
}
.site-header #topmenu {
  display: flex;
  align-items: center;
}
@media (width >= 75rem) {
  .site-header #topmenu {
    position: absolute;
    right: 0;
    top: 0.5rem;
    transform: translateY(0);
    transition: all 0.35s cubic-bezier(0.15, 0.9, 0.34, 0.95);
    opacity: 1;
    z-index: 2;
  }
  .scrolled .site-header #topmenu {
    opacity: 0;
    transform: translateY(-0.5rem);
    pointer-events: none;
  }
}
.site-header #topmenu ul:not(.dropdown-menu) {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (width >= 75rem) {
  .site-header #topmenu ul:not(.dropdown-menu) li:not(:last-of-type) {
    margin-right: 1rem;
  }
  .site-header #topmenu ul:not(.dropdown-menu) li:not(:last-of-type)::after {
    content: "|";
    padding-left: 1rem;
    display: inline-block;
  }
}
.site-header #topmenu a {
  font-size: 0.85rem;
  font-weight: bold;
  text-decoration: none;
}
.site-header #topmenu a:hover {
  text-decoration: underline;
}
.site-header #topmenu #logout a.btn-logout {
  font-weight: bold;
  margin-right: 1rem;
  text-decoration: underline;
}
.site-header #topmenu #logout a.btn-logout:hover {
  text-decoration: none;
}
@media (width <= 74.938rem) {
  .site-header #topmenu {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 1rem;
    order: 2;
  }
  .site-header #topmenu ul:not(.dropdown-menu) {
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .site-header #topmenu ul:not(.dropdown-menu) li {
    text-align: left;
  }
  .site-header #topmenu ul:not(.dropdown-menu) li a {
    font-size: 0.95rem;
  }
  .site-header #topmenu h2 {
    font-size: clamp(1.15rem, 1.007rem + 0.381vw, 1.35rem);
  }
  .site-header #topmenu > .d-flex:first-of-type {
    justify-content: space-between;
    width: 100%;
    align-items: flex-start;
  }
}
@media (width >= 75rem) {
  .site-header nav {
    display: flex;
    align-items: flex-end;
    grid-column: 5/13;
  }
  .site-header nav .nav-wrapper {
    width: 100%;
  }
  .site-header nav .nav-wrapper .main-menu {
    display: flex;
    justify-content: space-around;
    width: 100%;
  }
  .site-header nav .nav-wrapper .main-menu > li > a {
    font-size: 1.2rem;
    font-family: "Raleway", sans-serif;
    font-weight: 800;
    text-transform: uppercase;
    position: relative;
  }
  .site-header nav .nav-wrapper .main-menu > li > a::after {
    content: "";
    background-color: oklch(16.84% 0 0deg);
    height: 0.25rem;
    width: 3rem;
    position: absolute;
    bottom: -0.7rem;
    left: 50%;
    transform: translateX(-50%);
    transition: width 0.35s cubic-bezier(0.15, 0.9, 0.34, 0.95);
    z-index: 1;
  }
  .site-header nav .nav-wrapper .main-menu > li > a:hover::after {
    width: 100%;
  }
  .site-header nav .nav-wrapper .main-menu > li.eau > a::after {
    background-color: oklch(66.67% 0.1473 237.8deg);
  }
  .site-header nav .nav-wrapper .main-menu > li.dechets > a::after {
    background-color: oklch(73.63% 0.1563 60.75deg);
  }
  .site-header nav .nav-wrapper .main-menu > li.assainissement > a::after {
    background-color: oklch(65.09% 0.1851 142.5deg);
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    position: absolute;
    background: oklch(100% 0 0deg);
    padding: 1rem;
    border-bottom: 5px solid;
    top: 100%;
    width: calc(100% + 10rem);
    left: 50%;
    padding-inline: 5rem;
    padding-block: 4rem 2rem;
    pointer-events: none;
    will-change: transform;
    transform: translate(-50%, -1.5rem);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu .menu-featured-image-item {
    grid-column: 1/5;
    padding-right: 2rem;
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu .menu-featured-image-item img {
    min-height: 14rem;
    object-fit: cover;
    border-radius: 10px;
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu ul.wrapper {
    grid-column: 5/13;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu ul.wrapper > li {
    flex: 48%;
    margin-inline: 0 !important;
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu ul.wrapper > li > a {
    display: block;
    width: 100%;
    font-weight: bold;
    text-decoration: none;
    text-underline-offset: 2px;
    color: oklch(16.84% 0 0deg);
    border-bottom: 1px solid oklch(95.97% 0.0052 247.88deg);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu ul.wrapper > li > a:hover {
    text-decoration: underline;
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu ul.wrapper > li .sub-menu {
    display: block;
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu ul.wrapper > li .sub-menu li {
    margin-bottom: 0.25rem;
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu ul.wrapper > li .sub-menu li a {
    text-decoration: none;
    font-size: 0.95rem;
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu ul.wrapper > li .sub-menu li a:hover {
    text-decoration: underline;
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu ul.wrapper > li .sub-menu .sub-menu {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding-left: 0.5rem;
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu ul.wrapper > li .sub-menu .sub-menu li {
    margin-bottom: 0;
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children > .sub-menu ul.wrapper > li .sub-menu .sub-menu li a {
    font-size: 0.85rem;
    font-style: italic;
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children.eau .sub-menu {
    border-color: oklch(66.67% 0.1473 237.8deg);
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children.dechets .sub-menu {
    border-color: oklch(73.63% 0.1563 60.75deg);
  }
  .site-header nav .nav-wrapper .main-menu > li.menu-item-has-children.assainissement .sub-menu {
    border-color: oklch(65.09% 0.1851 142.5deg);
  }
  .site-header nav .nav-wrapper .main-menu > li.is-open > .sub-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0rem);
  }
}
@media (width <= 74.938rem) {
  .site-header nav {
    position: absolute;
    top: 5rem;
    right: 0;
    height: 100vh;
    width: 40%;
    background: oklch(100% 0 0deg);
    overflow: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.76, 0, 0.24, 1);
    display: flex;
    flex-direction: column;
    padding: 1rem;
    padding-bottom: 15rem;
    z-index: 1000;
  }
  .site-header nav .nav-wrapper .main-menu {
    padding-bottom: 2rem;
    background: oklch(95.97% 0.0052 247.88deg);
    border-radius: 5px;
    padding: 0.5rem;
  }
  .site-header nav .nav-wrapper .main-menu > li {
    border-radius: 0.5rem;
    text-align: center;
    background-color: #fafafa;
    padding-block: 0.5rem;
  }
  .site-header nav .nav-wrapper .main-menu > li:not(:last-of-type) {
    margin-bottom: 0.5rem;
  }
  .site-header nav .nav-wrapper .main-menu > li > a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.15rem;
    text-transform: uppercase;
    position: relative;
  }
  .site-header nav .nav-wrapper .main-menu > li > a::after {
    content: "";
    background: url("../img/pictos/arrow-simple.svg") no-repeat;
    background-size: cover !important;
    width: 0.8rem;
    height: 0.45rem;
    transform: rotate(0);
    margin-left: 0.5rem;
    transition: transform 0.35s cubic-bezier(0.76, 0, 0.24, 1);
  }
  .site-header nav .nav-wrapper .main-menu > li.submenu-open > a::after {
    transform: rotate(180deg);
  }
  .site-header nav .nav-wrapper .main-menu > li > .sub-menu {
    display: block;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    padding-inline: 1rem;
    transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
  }
  .site-header nav .nav-wrapper .main-menu > li > .sub-menu .menu-featured-image-item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
  }
  .site-header nav .nav-wrapper .main-menu > li > .sub-menu .menu-featured-image-item img {
    height: 8rem;
    width: 100%;
    object-fit: cover;
  }
  .site-header nav .nav-wrapper .main-menu > li > .sub-menu .wrapper {
    gap: 0;
  }
  .site-header nav .nav-wrapper .main-menu > li > .sub-menu .wrapper > li {
    text-align: left;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .site-header nav .nav-wrapper .main-menu > li > .sub-menu .wrapper > li .sub-menu li a {
    font-size: 0.85rem;
    font-weight: 300;
  }
  .site-header nav .nav-wrapper .main-menu > li.submenu-open > .sub-menu {
    max-height: 1000px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    margin-top: 0.5rem;
  }
  .site-header nav.is-open {
    transform: translateX(0);
  }
}
@media (width <= 48rem) {
  .site-header nav {
    width: 100%;
    padding-inline: 2rem;
  }
}

#persona {
  position: relative;
  display: inline-block;
}
@media (width >= 75rem) {
  #persona {
    margin-left: 2rem;
  }
}
#persona .dropdown-toggle {
  border-radius: 5px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0.5em 1em;
  gap: 0.5em;
  font-family: inherit;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.85rem;
}
@media (width <= 75rem) {
  #persona .dropdown-toggle {
    width: 100%;
    justify-content: flex-start;
    border-radius: 0 0 10px 10px;
    padding-left: 0;
  }
}
#persona .chevron {
  transition: transform 0.3s ease;
}
#persona[data-open=true] .chevron {
  transform: rotate(180deg);
}
#persona .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5em;
  padding: 0.5em 0;
  border-radius: 5px;
  list-style: none;
  min-width: 9.375rem;
  background: oklch(100% 0 0deg);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (width >= 62rem) {
  #persona .dropdown-menu {
    background-color: oklch(80.93% 0.0794 196.71deg);
    border: 1px solid oklch(16.84% 0 0deg);
  }
}
#persona .dropdown-menu a {
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  color: oklch(16.84% 0 0deg);
}
#persona .dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.05);
}
#persona[data-open=true] .dropdown-menu {
  display: block;
}

#search button {
  padding: 0.5rem;
  border-radius: 5px;
  background-color: #dadde1;
}
#search button img {
  width: 1rem;
  height: 1rem;
}

.gform_wrapper {
  background-color: oklch(95.97% 0.0052 247.88deg);
  padding: 2rem;
  margin-top: 2rem;
}
.gform_wrapper h2 {
  margin-top: 0 !important;
}
.gform_wrapper input[type=submit] {
  border-radius: 25px !important;
  border: 2px solid !important;
  padding: 0.5rem 1.5rem !important;
  width: fit-content !important;
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95) !important;
  white-space: nowrap !important;
  font-weight: 600 !important;
  background-color: oklch(100% 0 0deg / 0) !important;
  border-color: oklch(16.84% 0 0deg) !important;
  color: oklch(16.84% 0 0deg) !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer;
}
.gform_wrapper input[type=submit]:hover {
  color: oklch(100% 0 0deg) !important;
  background-color: oklch(16.84% 0 0deg) !important;
}
.gform_wrapper fieldset legend,
.gform_wrapper fieldset label {
  font-weight: bold !important;
}
.gform_wrapper h2::after {
  display: none !important;
}
.gform_wrapper h3 {
  color: oklch(16.84% 0 0deg) !important;
}
.gform_wrapper .gform_next_button,
.gform_wrapper .gf_progressbar .percentbar_blue {
  background-color: oklch(16.84% 0 0deg) !important;
}
.gform_wrapper .gform_required_legend {
  font-style: italic;
  font-size: clamp(0.75rem, 0.679rem + 0.19vw, 0.85rem);
}

#form-commune {
  background: oklch(95.97% 0.0052 247.88deg);
  border-radius: 5px;
  padding: 1rem;
  width: fit-content;
}
#form-commune label {
  font-weight: bold;
  margin-right: 0.5rem;
}
#form-commune input[type=text] {
  background: white;
  border-radius: 3px;
  padding: 0.5rem 1rem;
  margin-right: 0.5rem;
  min-width: 20rem;
}
#form-commune button[type=submit] {
  border-radius: 25px !important;
  border: 2px solid !important;
  padding: 0.5rem 1.5rem !important;
  width: fit-content !important;
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95) !important;
  white-space: nowrap !important;
  font-weight: 600 !important;
  background-color: oklch(100% 0 0deg / 0) !important;
  border-color: oklch(16.84% 0 0deg) !important;
  color: oklch(16.84% 0 0deg) !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer;
}
#form-commune button[type=submit]:hover {
  color: oklch(100% 0 0deg) !important;
  background-color: oklch(16.84% 0 0deg) !important;
}

#search-modal {
  position: fixed;
  inset: 0;
  background: oklch(80.93% 0.0794 196.71deg);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
#search-modal .modal-content {
  max-width: 90%;
  border-radius: 8px;
  position: relative;
}
@media (width >= 62rem) {
  #search-modal .modal-content {
    width: 37.5rem;
  }
}
#search-modal .modal-content > img {
  margin: 0 auto 4rem;
  height: auto;
  width: 15rem;
}
#search-modal .modal-content .search-wrapper {
  position: relative;
  width: 100%;
}
#search-modal .modal-content form {
  background: none !important;
}
#search-modal .modal-content input[type=search] {
  background: #fff;
  font-weight: bold;
  width: 100%;
  padding: 2rem 3rem;
  border-radius: 50px;
}
@media screen and (width <= 31.25rem) {
  #search-modal .modal-content input[type=search] {
    padding: 1.5rem 2rem;
  }
}
#search-modal .modal-content .search-submit {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
#search-modal .modal-content .search-submit img {
  width: 2rem;
  height: 2rem;
}
#search-modal .modal-content #quick-links h2 {
  color: oklch(16.84% 0 0deg);
  margin-block: 2rem;
  font-size: clamp(1.65rem, 1.436rem + 0.571vw, 1.95rem);
  font-weight: 600;
  line-height: 1.2;
}
#search-modal .modal-content #quick-links ul li {
  border-bottom: 1px solid oklch(16.84% 0 0deg);
}
#search-modal .modal-content #quick-links ul li a {
  display: block;
  font-family: "Raleway", sans-serif;
  color: oklch(16.84% 0 0deg);
  font-size: 1.15rem;
  font-weight: bold;
  text-decoration: none;
  padding-block: 1rem;
}
#search-modal .modal-content #quick-links ul li:first-of-type {
  border-top: 1px solid oklch(16.84% 0 0deg);
}
#search-modal .modal-content #quick-links ul li:hover a:hover {
  text-decoration: underline;
}
#search-modal .modal-close {
  position: absolute;
  top: 4rem;
  right: 3rem;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg preserveAspectRatio='xMinYMid' xmlns='http://www.w3.org/2000/svg' width='34.121' height='34.121' viewBox='0 0 34.121 34.121'%3E%3Cg transform='translate(-1787.425 -147.439)'%3E%3Cline y1='32' x2='32' transform='translate(1788.485 148.5)' fill='none' stroke='%23000000' stroke-width='3'/%3E%3Cline x1='32' y1='32' transform='translate(1788.485 148.5)' fill='none' stroke='%23000000' stroke-width='3'/%3E%3C/g%3E%3C/svg%3E");
  width: 4rem;
  height: 4rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: invert(1);
}
@media screen and (width <= 31.25rem) {
  #search-modal .modal-close {
    top: 1rem;
    right: 1rem;
    width: 2rem;
    height: 2rem;
  }
}
#search-modal[open], #search-modal.show {
  opacity: 1;
  visibility: visible;
}

.login-form form {
  background: oklch(95.97% 0.0052 247.88deg);
  padding: 2rem;
  margin-top: 2rem;
  text-align: center;
  border-radius: 10px;
}
@media (width >= 75rem) {
  .login-form form {
    margin-inline: auto;
    max-width: 50rem;
  }
}
@media (width <= 62rem) {
  .login-form form {
    padding: 1rem;
  }
}
.login-form form p {
  font-family: "Poppins SemiBold", sans-serif;
  margin-right: 1rem;
}
.login-form form p.login-username label, .login-form form p.login-password label {
  display: inline-block;
  width: 7rem;
  text-align: right;
}
.login-form form p.login-remember label {
  font-size: 0.85rem;
  font-style: italic;
}
.login-form form input[type=text],
.login-form form input[type=password] {
  background: white;
  margin-left: 1rem;
  padding: 0.25rem 0.5rem;
}
.login-form form .login-submit {
  margin-bottom: 0;
}
.login-form form input[type=submit] {
  border-radius: 25px !important;
  border: 2px solid !important;
  padding: 0.5rem 1.5rem !important;
  width: fit-content !important;
  transition: all 0.25s cubic-bezier(0.15, 0.9, 0.34, 0.95) !important;
  white-space: nowrap !important;
  font-weight: 600 !important;
  background-color: oklch(100% 0 0deg / 0) !important;
  border-color: oklch(16.84% 0 0deg) !important;
  color: oklch(16.84% 0 0deg) !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer;
}
.login-form form input[type=submit]:hover {
  color: oklch(100% 0 0deg) !important;
  background-color: oklch(16.84% 0 0deg) !important;
}

.home .hero {
  background-size: cover !important;
  display: grid;
  place-content: center;
}
.home .hero h2,
.home .hero p {
  text-align: center;
  color: oklch(100% 0 0deg);
}
.home .hero h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: clamp(2.5rem, 2.143rem + 0.952vw, 3rem);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.home .hero p {
  text-transform: uppercase;
  font-weight: bold;
  max-width: 80%;
  margin-inline: auto;
}
.home #unclic h2 {
  font-size: clamp(1.45rem, 1.236rem + 0.571vw, 1.75rem);
  line-height: 1.1;
  position: relative;
  padding-bottom: 0.5rem;
}
.home #unclic h2 span {
  display: block;
  font-size: clamp(2.5rem, 2.143rem + 0.952vw, 3rem);
}
.home #unclic h2::after {
  content: "";
  background: oklch(16.84% 0 0deg);
  height: 6px;
  width: 3rem;
  position: absolute;
  bottom: 0;
  left: 0;
}
.home #unclic ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.home #unclic ul li {
  cursor: pointer;
  flex: 1;
}
@media (width <= 62rem) {
  .home #unclic ul li {
    flex: 44%;
    border: 1px solid oklch(95.97% 0.0052 247.88deg);
    border-radius: 10px;
    padding: 1rem;
  }
}
.home #unclic ul li a {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-underline-offset: 3px;
}
.home #unclic ul li a p {
  font-family: "Poppins Bold", sans-serif;
  font-weight: bold;
  text-wrap: balance;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 0;
}
.home #unclic ul li a img {
  width: 4rem;
  margin-bottom: 1rem;
  transform: scale(1);
  transition: all 0.35s ease;
}
.home #unclic ul li a:hover {
  text-decoration: underline;
}
.home #unclic ul li a:hover img {
  transform: scale(0.95);
}
.home #actualites {
  background: linear-gradient(#eff2f5, #fff);
}
.home #actualites .wrapper-featurednews {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 1fr);
  position: relative;
  height: 30rem;
  align-items: center;
  overflow: hidden;
}
.home #actualites .wrapper-featurednews__content {
  grid-column: 3/11;
  grid-row: 4/13;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: oklch(100% 0 0deg);
  border-radius: 25px;
  padding: 1.75rem 2rem;
  z-index: 1;
  position: relative;
}
.home #actualites .wrapper-featurednews__content h3 {
  font-size: clamp(1.45rem, 1.236rem + 0.571vw, 1.75rem);
  order: 2;
  margin-bottom: 1rem;
}
.home #actualites .wrapper-featurednews__content p {
  order: 3;
}
.home #actualites .wrapper-featurednews__content p.tag {
  background-color: white;
  padding: 0.25rem 1rem;
  font-size: 1.15rem;
  border-radius: 10px;
  width: fit-content;
  font-weight: 700;
  order: -1;
}
.home #actualites .wrapper-featurednews__content p.date {
  font-family: "Poppins Bold", sans-serif;
  font-size: clamp(0.75rem, 0.679rem + 0.19vw, 0.85rem);
  order: 4;
  margin-bottom: 0;
}
.home #actualites .wrapper-featurednews__content .cat {
  order: 1;
}
@media screen and (width >= 62rem) {
  .home #actualites .wrapper-featurednews__content {
    grid-column: 1/5;
    grid-row: 3/10;
  }
}
.home #actualites .wrapper-featurednews__img {
  border-radius: 25px;
  grid-column: 1/13;
  grid-row: 1/11;
  height: 100%;
  overflow: hidden;
  background-size: cover !important;
  background-position: center !important;
}
@media screen and (width >= 62rem) {
  .home #actualites .wrapper-featurednews__img {
    grid-column: 3/13;
    grid-row: 1/13;
  }
}
.home #actualites .wrapper-featurednews:hover .wrapper-news__content a, .home #actualites .wrapper-featurednews:focus .wrapper-news__content a, .home #actualites .wrapper-featurednews:focus-visible .wrapper-news__content a {
  text-decoration: underline;
}
@media screen and (width <= 31.25rem) {
  .home #actualites .wrapper-featurednews {
    grid-column: full-width;
  }
  .home #actualites .wrapper-featurednews__img {
    border-radius: 0;
  }
  .home #actualites .wrapper-featurednews__content {
    grid-column: 2/12;
  }
}
.home #syndicat .graphic img {
  width: 100%;
  filter: drop-shadow(30px 20px 2px #f6f8fa);
}
.home #panneau_pocket {
  position: relative;
}
.home #panneau_pocket .content-grid {
  position: relative;
}
@media (width >= 62rem) {
  .home #panneau_pocket .content-grid .wrapper {
    grid-template-columns: repeat(12, 1fr);
  }
  .home #panneau_pocket .content-grid .wrapper .smartphone {
    grid-column: 1/4;
    display: flex;
  }
  .home #panneau_pocket .content-grid .wrapper .content {
    grid-column: 4/10;
  }
  .home #panneau_pocket .content-grid .wrapper .qrcode {
    grid-column: 10/13;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .home #panneau_pocket .content-grid .wrapper .qrcode img {
    padding: 0.5rem;
    border-radius: 10px;
    border: 1px solid oklch(95.97% 0.0052 247.88deg);
  }
}
@media (width <= 48rem) {
  .home #panneau_pocket .content-grid .wrapper .smartphone {
    grid-column: 1/6;
  }
  .home #panneau_pocket .content-grid .wrapper .content {
    grid-column: 6/13;
  }
  .home #panneau_pocket .content-grid .wrapper .qrcode {
    display: none;
  }
}
.home #panneau_pocket h2 {
  font-family: "Poppins Bold", sans-serif;
  font-size: clamp(1.65rem, 1.436rem + 0.571vw, 1.95rem);
  margin-bottom: 2rem;
}
.home #panneau_pocket h2 img {
  display: block;
  margin-top: 1rem;
  width: 15rem;
  margin-inline: auto;
}
@media (width <= 48rem) {
  .home #panneau_pocket h2 img {
    width: 10rem;
  }
}
.home #panneau_pocket p {
  font-family: "Poppins Bold", sans-serif;
  font-size: clamp(0.95rem, 0.914rem + 0.095vw, 1rem);
  color: oklch(66.67% 0.1473 237.8deg);
}
.home #panneau_pocket a {
  display: block;
  margin-bottom: 2rem;
}
@media (width <= 31.25rem) {
  .home #panneau_pocket a {
    font-size: 0.85rem;
  }
}
.home #panneau_pocket::before {
  content: "";
  background: url("../img/pictos/fond-pocket-left.svg") no-repeat;
  background-size: cover !important;
  left: 0;
  bottom: 0;
  position: absolute;
  width: 55rem;
  height: 10rem;
  z-index: -1;
}
@media (width <= 48rem) {
  .home #panneau_pocket::before {
    width: 100%;
  }
}
.home #panneau_pocket::after {
  content: "";
  background: url("../img/pictos/fond-pocket-right.svg") no-repeat;
  background-size: cover !important;
  right: 0;
  top: 0;
  position: absolute;
  width: 32rem;
  height: 10rem;
  z-index: -1;
}

.editor h1 {
  margin-bottom: 2rem;
  line-height: 1.2;
}
.editor h2 {
  font-family: "Poppins Bold", sans-serif;
  color: oklch(16.84% 0 0deg);
  font-size: 1.85rem;
  margin-top: 4rem;
  position: relative;
}
.editor h2::after {
  content: "";
  width: 3rem;
  height: 0.5rem;
  position: absolute;
  bottom: -0.75rem;
  left: 0;
}
.eau .editor h2::after {
  background-color: oklch(66.67% 0.1473 237.8deg);
}
.dechets .editor h2::after {
  background-color: oklch(73.63% 0.1563 60.75deg);
}
.assainissement .editor h2::after {
  background-color: oklch(65.09% 0.1851 142.5deg);
}
.editor h3 {
  font-family: "Poppins Bold", sans-serif;
  color: #448084;
  margin-bottom: 1rem;
}
.editor h4 {
  background-color: oklch(95.97% 0.0052 247.88deg);
  padding: 0.5rem 0.35rem;
  font-family: "Poppins Bold", sans-serif;
  font-size: clamp(0.95rem, 0.914rem + 0.095vw, 1rem);
  display: flex;
  align-items: flex-start;
  margin: 2rem 0 1rem 0;
  width: fit-content;
}
.editor h4::before {
  content: "";
  background: url("../img/pictos/puce.svg") no-repeat;
  background-size: cover !important;
  width: 1rem;
  height: 1rem;
  margin-right: 0.35rem;
  margin-top: 0.1rem;
}
.editor h2 + h3 {
  margin-top: 3rem;
}
.editor h2 + p {
  margin-top: 1.5rem;
}
.editor p + h2,
.editor p + h3,
.editor figure + h2,
.editor figure + h3,
.editor ul + h2,
.editor ul + h3,
.editor h2 + ul,
.editor h2 + ol,
.editor .wp-block-spacer + h2,
.editor p + figure {
  margin-top: 2rem;
}
.editor a {
  font-family: "Poppins Bold", sans-serif;
  text-decoration: underline;
}
.editor a:hover {
  text-decoration: none;
}
.editor .wp-block-list {
  margin-bottom: 1rem;
}
.editor ul {
  list-style: disc;
  padding-left: 2rem;
}
.editor ul li::marker {
  color: oklch(80.93% 0.0794 196.71deg);
}
.editor ol {
  list-style: auto;
  padding-left: 1rem;
}
.eau .editor h3 {
  color: #156ca2;
}
.eau .editor h4::before {
  background: url("../img/pictos/puce-bleu.svg") no-repeat;
}
.eau .editor ul li::marker {
  color: oklch(66.67% 0.1473 237.8deg);
}
.dechets .editor h3 {
  color: #836444;
}
.dechets .editor h4::before {
  background: url("../img/pictos/puce-orange.svg") no-repeat;
}
.dechets .editor ul li::marker {
  color: oklch(73.63% 0.1563 60.75deg);
}
.assainissement .editor h3 {
  color: #068500;
}
.assainissement .editor h4::before {
  background: url("../img/pictos/puce-vert.svg") no-repeat;
}
.assainissement .editor ul li::marker {
  color: oklch(65.09% 0.1851 142.5deg);
}
.editor figure img {
  border-radius: 15px;
}
.editor figcaption {
  font-size: 0.85rem;
  font-style: italic;
  text-align: center;
}
.editor > img {
  border-radius: 15px;
  margin-bottom: 2rem;
}
.editor .has-background {
  padding: 1rem;
  margin-block: 2rem;
}
.editor .has-background p:last-of-type {
  margin-bottom: 0;
}
.editor .wp-block-media-text {
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.editor .wp-block-media-text__content h2:first-of-type {
  margin-top: 0;
}
.editor .child-pages {
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(16rem, 1fr));
  gap: 2rem;
}
.editor .child-pages li {
  list-style-type: none;
  height: 10rem;
  background-color: oklch(95.97% 0.0052 247.88deg);
  box-shadow: 0 0 0 oklch(95.97% 0.0052 247.88deg);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.editor .child-pages li a {
  color: oklch(16.84% 0 0deg);
  font-weight: bold;
  font-size: clamp(1.15rem, 1.007rem + 0.381vw, 1.35rem);
  text-decoration: none;
  text-align: center;
  text-wrap: balance;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  transform: scale(1);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.editor .child-pages li:hover {
  box-shadow: 0 0 5px oklch(72% 0 0deg);
}
.editor .child-pages li:hover a {
  transform: scale(0.97);
}
.page-template-home-elu .editor h2, .page-template-home-collectivite .editor h2, .page-template-extranet-collectivite .editor h2,
.editor .elu-section:first-of-type h2 {
  margin-top: 0;
}
.editor .sp-wrap-cpt h2 {
  margin-top: 1.5rem;
}

@media screen and (width >= 62rem) {
  .page-template-page-sidebar .content .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    grid-template-columns: 23% 1fr;
  }
}
.page-template-page-sidebar aside {
  position: sticky;
  top: 8rem;
  align-self: start;
  height: fit-content;
  background-color: #f5f7f9;
  border-radius: 10px;
  padding: 1rem;
}
.page-template-page-sidebar aside > p {
  font-family: "Raleway", sans-serif;
  font-weight: 800;
}
.page-template-page-sidebar aside ul {
  list-style: none;
  padding-left: 1rem;
}
.page-template-page-sidebar aside ul.menu-h2 {
  position: relative;
  padding-top: 1rem;
  margin-left: 5px;
}
.page-template-page-sidebar aside ul.menu-h2::before {
  content: "";
  width: 1.5px;
  background: oklch(16.84% 0 0deg);
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.page-template-page-sidebar aside ul.menu-h2 > li > a {
  font-family: "Poppins Bold", sans-serif;
  color: oklch(16.84% 0 0deg);
  font-size: clamp(0.95rem, 0.914rem + 0.095vw, 1rem);
  text-decoration: none;
  line-height: 1;
}
.page-template-page-sidebar aside ul.menu-h2 > li > a:hover {
  text-decoration: underline;
}
.page-template-page-sidebar aside ul.menu-h2 > li:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
.page-template-page-sidebar aside ul.menu-h2 li {
  position: relative;
  line-height: 1;
}
.page-template-page-sidebar aside ul.menu-h2 li.active::before {
  content: "";
  position: absolute;
  left: -1.25rem;
  top: 0.25rem;
  background: oklch(16.84% 0 0deg);
  border-radius: 50%;
  width: 10px;
  height: 10px;
}
.page-template-page-sidebar aside ul ul {
  padding-left: 0;
  margin-top: 0.25rem;
}
.page-template-page-sidebar aside ul ul li {
  margin-block: 0.35rem;
}
.page-template-page-sidebar aside ul ul li a {
  font-family: "Poppins", sans-serif;
  color: oklch(16.84% 0 0deg);
  font-size: 0.7rem;
  text-decoration: none;
}
.page-template-page-sidebar aside ul ul li a:hover {
  text-decoration: underline;
}
.page-template-page-sidebar aside ul ul li.active a {
  font-weight: bold;
  text-decoration: underline;
}
.page-template-page-sidebar aside ul ul li.active::before {
  top: 0.35rem !important;
}
@media (width <= 62rem) {
  .page-template-page-sidebar aside ul[hidden] {
    display: none;
  }
}
@media (width <= 62rem) {
  .page-template-page-sidebar aside {
    background: oklch(100% 0 0deg);
    border: 1px solid oklch(16.84% 0 0deg);
    padding: 1rem;
    top: 3rem;
    margin-bottom: 4rem;
    border-radius: 0 0 10px 10px;
    z-index: 2;
  }
  .page-template-page-sidebar aside p {
    margin-bottom: 0;
  }
  .page-template-page-sidebar aside .summary-toggle {
    width: 100%;
    font-family: "Poppins Bold", sans-serif;
    color: oklch(16.84% 0 0deg);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .page-template-page-sidebar aside .summary-menu {
    max-height: 15rem;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: white transparent;
    margin-top: 1rem;
  }
  .page-template-page-sidebar aside .summary-menu::-webkit-scrollbar {
    width: 8px;
  }
  .page-template-page-sidebar aside .summary-menu::-webkit-scrollbar-thumb {
    background-color: white;
    border-radius: 4px;
    border: 2px solid transparent;
    background-clip: content-box;
  }
  .page-template-page-sidebar aside .summary-menu::-webkit-scrollbar-track {
    background: transparent;
  }
  .page-template-page-sidebar aside .summary-menu li a {
    font-family: "Poppins", sans-serif;
    font-size: clamp(0.95rem, 0.914rem + 0.095vw, 1rem);
    color: oklch(16.84% 0 0deg);
  }
  .page-template-page-sidebar aside .summary-menu li:not(.submenu) a {
    font-family: "Poppins SemiBold", sans-serif;
    font-size: clamp(1.15rem, 1.007rem + 0.381vw, 1.35rem);
  }
}
.page-template-page-sidebar.eau .menu-h2 li.active::before {
  background: oklch(66.67% 0.1473 237.8deg);
}
.page-template-page-sidebar.dechets .menu-h2 li.active::before {
  background: oklch(73.63% 0.1563 60.75deg);
}
.page-template-page-sidebar.assainissement .menu-h2 li.active::before {
  background: oklch(65.09% 0.1851 142.5deg);
}
.page-template-page-sidebar .editor h2,
.page-template-page-sidebar .editor h3 {
  scroll-margin-top: 7rem;
}

.single-post .entry-date {
  font-style: italic;
  font-size: clamp(0.95rem, 0.914rem + 0.095vw, 1rem);
}
@media (width >= 62rem) {
  .single-post .editor .featured-img {
    max-width: 35rem;
  }
}

@media screen and (width >= 62rem) {
  .single-emploi #job .wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    grid-template-columns: 70% 1fr;
  }
}
.single-emploi #job aside {
  position: sticky;
  top: 12rem;
  align-self: start;
  height: fit-content;
  background: #fafafa;
  border-radius: 10px;
  padding: 1rem;
}
.single-emploi #job aside p {
  font-size: 0.85rem;
}
.single-emploi #job aside p span {
  font-weight: bold;
  font-size: 0.75rem;
}
.single-emploi #job aside p:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.single-emploi #job aside a:not(.btn) {
  color: oklch(66.67% 0.1473 237.8deg);
  font-weight: bold;
  text-decoration: underline;
}
.single-emploi #job aside a:not(.btn):hover {
  text-decoration: none;
}
.single-emploi #job aside a:not(.btn) img {
  margin-right: 0.25rem;
}
.single-emploi #job aside .btn {
  display: block;
  margin-top: 1rem;
  margin-inline: auto;
}
.single-emploi #job aside::before {
  content: "";
  position: absolute;
  top: -1rem;
  right: -1rem;
  width: 3rem;
  height: 3rem;
  background: url("../img/pictos/job.svg") no-repeat;
  background-size: cover !important;
}

#jobs {
  padding-left: 0;
  list-style: none;
}
#jobs .item {
  margin-bottom: 1rem;
  background-color: oklch(95.97% 0.0052 247.88deg);
  padding: 1rem;
  position: relative;
}
#jobs .item__header h3 {
  margin-bottom: 0.5rem;
}
#jobs .item__header h3::before {
  display: none;
}
#jobs .item__header--infos {
  width: 30%;
  text-align: right;
  border-bottom: 1px solid;
  margin-bottom: 3rem;
}
#jobs .item__header--infos p {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: bold;
}
#jobs .item a {
  text-decoration: none;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

@media (width <= 62rem) {
  .admin-bar aside {
    top: 5rem;
  }
}

.documents-wrapper {
  background: url("../img/pictos/stripe-grey.svg") repeat;
  background-size: contain !important;
  padding: 2rem;
}
@media (width <= 48rem) {
  .documents-wrapper {
    padding: 1rem;
  }
}
.documents-wrapper h2 {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 1.65rem;
  margin-top: 0;
}
.documents-wrapper h2::after {
  display: none;
}
.documents-wrapper ul {
  padding-left: 0;
}
.documents-wrapper ul li {
  list-style: none;
}
.documents-wrapper ul li a {
  width: fit-content;
  text-decoration: none;
}
.documents-wrapper ul li a span {
  font-family: "Poppins", sans-serif;
  font-style: italic;
  font-size: 0.85rem;
}
.documents-wrapper ul li a:hover {
  text-decoration: underline;
}

.info-wrapper {
  padding: 2rem;
  border-radius: 10px;
}
.info-wrapper.has-orange-background-color {
  background-color: oklch(73.63% 0.1563 60.75deg / 0.6) !important;
}
@media (width >= 75rem) {
  .info-wrapper {
    max-width: 80%;
    margin-inline: auto;
  }
}
.info-wrapper h3 {
  color: oklch(16.84% 0 0deg) !important;
}
.info-wrapper p:last-of-type {
  margin-bottom: 0;
}
.info-wrapper ul {
  padding-left: 1rem;
}
.info-wrapper ul li::marker {
  color: oklch(16.84% 0 0deg) !important;
}
@media (width >= 75rem) {
  .info-wrapper .content {
    margin-left: 1rem;
  }
}
@media (width <= 62rem) {
  .info-wrapper .d-flex {
    flex-direction: column;
  }
  .info-wrapper .d-flex .content {
    margin-top: 1rem;
  }
}

.wp-block-gallery {
  flex-wrap: wrap;
}
.wp-block-gallery.columns-2 figure {
  flex: 45%;
}

.autocomplete-items {
  border: 1px solid #ccc;
  border-top: none;
  background: white;
  position: absolute;
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
}
.autocomplete-items div:hover {
  background-color: #f0f0f0;
}

ul.wp-block-tt-accordion {
  padding-left: 0;
}
ul.wp-block-tt-accordion li {
  list-style-type: none;
}
ul.wp-block-tt-accordion li button span {
  font-family: "Poppins SemiBold", sans-serif;
}

.archive .wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.card {
  position: relative;
}
.card.card-news {
  border-radius: 10px;
}
.card__header {
  height: 10rem;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.card__header img {
  border-radius: 10px 10px 0 0;
  max-height: 10rem;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.card__body {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
.card__body h2 {
  order: 2;
  font-family: "Raleway", sans-serif;
  font-weight: bold;
  font-size: clamp(1.15rem, 1.007rem + 0.381vw, 1.35rem);
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
.card__body--extract {
  order: 3;
}
.card__body--date {
  font-family: "Poppins Bold", sans-serif;
  font-size: clamp(0.75rem, 0.679rem + 0.19vw, 0.85rem);
  order: 4;
}
.card:hover .card__header img {
  transform: scale(1);
}

.cat {
  order: 1;
  font-family: "Poppins Bold", sans-serif;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 0.914rem + 0.095vw, 1rem);
  font-weight: bold;
  position: relative;
}
.cat::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 0.35rem;
  bottom: -0.5rem;
  left: 0;
}
.cat.defaut::after {
  background: oklch(16.84% 0 0deg);
}
.cat.eau::after {
  background: oklch(66.67% 0.1473 237.8deg);
}
.cat.dechets::after {
  background-color: oklch(73.63% 0.1563 60.75deg);
}
.cat.assainissement::after {
  background-color: oklch(65.09% 0.1851 142.5deg);
}

.blog #actualites {
  position: relative;
}
@media (width >= 62rem) {
  .blog #actualites {
    display: flex;
    gap: 2rem;
  }
}
.blog aside {
  background-color: oklch(95.97% 0.0052 247.88deg);
  border-radius: 10px;
  padding: 1rem;
  width: 100%;
  margin-bottom: 2rem;
}
@media (width >= 62rem) {
  .blog aside {
    max-width: 18rem;
    position: sticky;
    top: 10rem;
    height: fit-content;
    margin-bottom: 0;
  }
}
.blog aside h2 {
  font-size: 1.25rem;
  color: oklch(16.84% 0 0deg);
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog aside ul {
  padding-left: 0;
}
.blog aside ul li a {
  text-underline-offset: 2px;
}
.blog aside ul li a span {
  font-size: 0.95rem;
  font-style: italic;
}
.blog aside ul li a:hover {
  text-decoration: underline;
}
.blog aside ul li a.active {
  font-weight: bold;
  text-decoration: underline;
}
.blog .wrapper-cols {
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}

.search .hero.hero-simple .wrapper p {
  text-align: center;
  font-size: 1.15rem;
  font-style: italic;
}
.search .hero.hero-simple .wrapper p::before {
  display: none;
}
.search #results .wrapper {
  display: grid;
  gap: 2rem;
}
.search #results .wrapper .card {
  position: relative;
  border-radius: 10px;
  border: 1px solid oklch(97% 0 0deg);
  background-color: oklch(97% 0 0deg);
  padding: 1rem;
  cursor: pointer;
  transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search #results .wrapper .card > * {
  color: oklch(16.84% 0 0deg);
  transition: color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search #results .wrapper .card__header {
  display: flex;
  flex-wrap: wrap;
  border-radius: 0;
  gap: 1rem;
}
.search #results .wrapper .card__header--content {
  flex: 80%;
  display: flex;
  flex-direction: column;
}
@media (width <= 48rem) {
  .search #results .wrapper .card__header--content {
    flex: 70%;
  }
}
.search #results .wrapper .card__header--content h2 {
  order: 2;
  transition: color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search #results .wrapper .card__header--thumbnail {
  flex: 5%;
}
@media (width <= 48rem) {
  .search #results .wrapper .card__header--thumbnail {
    flex: 22%;
  }
}
.search #results .wrapper .card__header--thumbnail img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.search #results .wrapper .card__header--post {
  order: 1;
  padding: 0.25rem 0.5rem;
  border-radius: 5px;
  width: fit-content;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  color: oklch(100% 0 0deg);
  text-transform: capitalize;
  transition: all 0.35s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.search #results .wrapper .card__header--post.bg-page {
  background-color: oklch(16.84% 0 0deg);
}
.search #results .wrapper .card__header--text {
  order: 3;
}
.search #results .wrapper .card__header--text a {
  text-decoration: underline;
  font-weight: 600;
  font-size: 0.85rem;
}
.search #results .wrapper .card:hover, .search #results .wrapper .card:focus-visible {
  background-color: oklch(100% 0 0deg);
}
.search #results .wrapper .card:hover .card__body a, .search #results .wrapper .card:focus-visible .card__body a {
  text-decoration: none;
}

.pagination ul {
  display: flex;
  gap: 0.25rem;
}
.pagination ul li {
  width: 1.5rem;
  height: 1.5rem;
}
.pagination ul li a,
.pagination ul li span {
  width: 1.5rem;
  height: 1.5rem;
  background-color: oklch(16.84% 0 0deg);
  color: oklch(100% 0 0deg);
  font-size: clamp(0.95rem, 0.914rem + 0.095vw, 1rem);
  font-family: "Poppins SemiBold", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid oklch(16.84% 0 0deg);
  cursor: pointer;
}
.pagination ul li a:hover,
.pagination ul li span:hover {
  color: oklch(16.84% 0 0deg);
  background-color: oklch(100% 0 0deg / 0);
}
.pagination ul li span.current {
  background: none;
  color: oklch(16.84% 0 0deg);
  border-color: oklch(16.84% 0 0deg);
  cursor: unset;
}

.page-template-contact .site-main h2 {
  font-size: clamp(1.75rem, 1.036rem + 1.905vw, 2.25rem);
}
.page-template-contact aside h3 {
  margin-bottom: 1rem;
}
@media (width >= 62rem) {
  .page-template-contact .editor {
    grid-column: 1/9;
  }
  .page-template-contact aside {
    grid-column: 9/13;
  }
}

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