@charset "UTF-8";
/*--------------------------------------------------------------
Author: Jeff du studio Blue room
Author URI: http://www.blueroom.fr

>>> TABLE OF CONTENTS:
----------------------------------------------------------------

1.0 Normalize
2.0 Alignement
3.0 Typography
4.0 Forms
5.0 Navigation
6.0 Layout
   6.1 Header
   6.2 Front Page
   6.3 Regular Content
   6.4 Posts
   6.5 Custom Post type
   6.6 Pages
   6.7 Footer
14.0 Comments
15.0 Widgets
16.0 Media
16.1 Galleries
17.0 Customizer
18.0 SVGs Fallbacks
19.0 Media Queries
20.0 Print
--------------------------------------------------------------*/
/* 
@package CMOI
=======================================
Variables
=======================================
*/
/* 
@package CMOI
=======================================
Mixins
=======================================
*/
/*
@package CMOI
=======================================
WordPress Core Styles - Version Optimisée 2024
=======================================
*/
/* ✅ Classes d'alignement WordPress (ESSENTIELLES) */
.alignnone {
  margin: 0.5rem 1.5rem 1.5rem 0;
}

.aligncenter,
div.aligncenter {
  display: block;
  margin: 0.5rem auto;
}

.alignright {
  float: right;
  margin: 0.5rem 0 1.5rem 1.5rem;
}

.alignleft {
  float: left;
  margin: 0.5rem 1.5rem 1.5rem 0;
}

/* Images dans les liens */
a img.alignright {
  float: right;
  margin: 0.5rem 0 1.5rem 1.5rem;
}

a img.alignnone {
  margin: 0.5rem 1.5rem 1.5rem 0;
}

a img.alignleft {
  float: left;
  margin: 0.5rem 1.5rem 1.5rem 0;
}

a img.aligncenter {
  display: block;
  margin: 0.5rem auto;
}

/* ✅ Captions WordPress (ESSENTIELLES) */
.wp-caption {
  background: #fff;
  border: 1px solid #f0f0f0;
  max-width: 100%;
  padding: 0.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.wp-caption.alignnone {
  margin: 0.5rem 1.5rem 1.5rem 0;
}

.wp-caption.alignleft {
  margin: 0.5rem 1.5rem 1.5rem 0;
}

.wp-caption.alignright {
  margin: 0.5rem 0 1.5rem 1.5rem;
}

.wp-caption img {
  border: 0;
  height: auto;
  margin: 0;
  max-width: 100%;
  padding: 0;
  width: auto;
}

.wp-caption p.wp-caption-text {
  font-size: 0.875rem;
  line-height: 1.4;
  margin: 0.5rem 0 0;
  padding: 0;
}

/* ✅ Accessibilité (CRUCIAL) */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* ✅ Clearfix moderne (simplifié) */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* ✅ Responsive design pour les alignements */
@media (max-width: 768px) {
  .alignright,
  .alignleft,
  .wp-caption.alignright,
  .wp-caption.alignleft {
    float: none;
    display: block;
    margin: 1rem auto;
    max-width: 100%;
  }
  .alignnone,
  .wp-caption.alignnone {
    margin: 1rem 0;
  }
}
/* ✅ Images responsives par défaut */
.alignright img,
.alignleft img,
.aligncenter img,
.alignnone img {
  max-width: 100%;
  height: auto;
}

/* 
@package 
=======================================
Fonticon
=======================================
*/
/*
1.0 Normalize
Josh's Custom CSS Reset - Version 2025
https://www.joshwcomeau.com/css/custom-css-reset/
*/
/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

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

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

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

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

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

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

/* 10. Create a root stacking context */
#root, #__next, body {
  isolation: isolate;
}

/* WordPress specific adjustments */
.wp-block-image img {
  height: auto;
}

/* Remove outline on focus for mouse users */
:focus:not(:focus-visible) {
  outline: none;
}

/* Improve focus visibility */
:focus-visible {
  outline: 2px solid #005ccc;
  outline-offset: 2px;
}

/*--------------------------------------------------------------
2.0 Alignments
--------------------------------------------------------------*/
:root {
  --container-width: 90%;
  --container-max-width: 1366px;
  --grid-gap: 1rem;
}

.wrap {
  width: var(--container-width);
  margin: 0 auto;
  max-width: var(--container-max-width);
}

.flex {
  display: flex;
  flex-wrap: wrap;
  gap: var(--grid-gap);
}

.col-1 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .col-1 {
    flex-basis: 100%;
  }
}
@media (min-width: 1024px) {
  .col-1 {
    flex-basis: 100%;
  }
}

.col-1-2 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .col-1-2 {
    flex-basis: 50%;
  }
}
@media (min-width: 1024px) {
  .col-1-2 {
    flex-basis: 50%;
  }
}

.col-1-3 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .col-1-3 {
    flex-basis: 33.333%;
  }
}
@media (min-width: 1024px) {
  .col-1-3 {
    flex-basis: 33.333%;
  }
}

.col-2-3 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .col-2-3 {
    flex-basis: 66.666%;
  }
}
@media (min-width: 1024px) {
  .col-2-3 {
    flex-basis: 66.666%;
  }
}

.col-1-4 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .col-1-4 {
    flex-basis: 50%;
  }
}
@media (min-width: 1024px) {
  .col-1-4 {
    flex-basis: 25%;
  }
}

.col-1-5 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .col-1-5 {
    flex-basis: 50%;
  }
}
@media (min-width: 1024px) {
  .col-1-5 {
    flex-basis: 20%;
  }
}

.col-1-6 {
  flex-basis: 100%;
}
@media (min-width: 768px) {
  .col-1-6 {
    flex-basis: 50%;
  }
}
@media (min-width: 1024px) {
  .col-1-6 {
    flex-basis: 16.666%;
  }
}

.alignwide {
  margin-inline: calc(-1 * var(--grid-gap) * 2);
}

.alignfull {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
}

img {
  max-width: 100%;
  height: auto;
}

/*--------------------------------------------------------------
3.0 Typography
--------------------------------------------------------------*/
body, button, input, select, textarea {
  color: #171717;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  line-height: 1.66;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  clear: both;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  letter-spacing: 0.03em;
  color: #171717;
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child {
  padding-top: 0;
}

/* Tailles par défaut - Mobile First */
h1 {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 600;
  padding: 0;
  line-height: 1.2;
}

h2 {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
}

h4 {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.4;
}

h5 {
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  line-height: 1.5;
}

h6 {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

@media screen and (min-width: 53em) {
  h1 {
    font-size: 48px;
    font-size: 3rem; /* ✅ Cohérent avec 48px */
    font-weight: 600;
    padding: 0;
  }
  h2 {
    font-size: 54px;
    font-size: 3.375rem; /* ✅ Cohérent avec 54px */
    font-weight: 600;
  }
  h3 {
    font-size: 18px;
    font-size: 1.2rem; /* ✅ Cohérent avec 18px */
    font-weight: 600;
  }
  h4 {
    font-size: 16px;
    font-size: 1.067rem; /* ✅ Cohérent avec 16px */
    font-weight: 800;
  }
  h5 {
    font-size: 13px;
    font-size: 0.867rem; /* ✅ Cohérent avec 13px */
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }
  h6 {
    font-size: 15px;
    font-size: 1rem; /* ✅ Cohérent avec 15px */
    font-weight: 800;
  }
  p {
    margin: 0 0 1.5em;
    padding: 0;
  }
}
p a,
li a,
span a {
  color: inherit;
}

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

blockquote {
  color: #666;
  font-size: 18px;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

blockquote cite {
  display: block;
  font-style: normal;
  font-weight: 600;
  margin-top: 0.5em;
}

address {
  margin: 0 0 1.5em;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

code, kbd, tt, var {
  font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
  font-size: 15px;
  font-size: 0.9375rem;
}

abbr, acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

mark, ins {
  background: #eee;
  text-decoration: none;
}

.big {
  font-size: 125%;
}

.small {
  font-size: 80%;
}

/*blockquote {
	quotes: "" "";
}

q {
	quotes: "“" "”" "‘" "’";
}

blockquote:before, blockquote:after {
	content: "";
}*/
:focus {
  outline: 2px solid #292929;
  outline-offset: 2px;
}

/* Pour les boutons spécifiquement */
.button:focus {
  outline: 2px solid #171717;
  outline-offset: 2px;
}

/*--------------------------------------------------------------
4.0 Forms
--------------------------------------------------------------*/
.infos-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  border: none;
  background: #ededed;
  padding: 50px;
}
.infos-box .box {
  width: 100%;
}

input[type=radio], input[type=radio]:checked {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  text-align: center;
  vertical-align: middle;
  width: 16px;
  height: 16px;
  border: solid 2px #808285;
  border-radius: 50%;
  position: relative;
}

input[type=radio]:checked:before {
  content: "";
  border-radius: 50%;
  width: 8px;
  height: 8px;
  margin-left: 2px;
  background-color: #171717;
}

input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  clear: none;
  cursor: pointer;
  margin: -0.25rem 0.25rem 0 0;
  outline: 0;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  width: 16px;
  height: 16px;
  border: solid 2px #ededed;
  margin-right: 8px;
  position: relative;
  transition: all 0.3s ease-in-out;
}

input[type=checkbox]:checked {
  background: #171717;
  border: solid 2px #171717;
}

input[type=checkbox]:checked:before {
  content: "";
  display: inline-block !important;
  height: 9px;
  width: 5px;
  border: solid 1px white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  position: absolute;
  top: -2px;
  left: 2px;
}

input[type=text], input[type=password], input[type=email], input[type=tel] {
  display: block;
  width: 100%;
  height: 3em;
  padding: 6px 2%;
  border: solid 1px #171717;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  background: white;
  color: #212121;
  outline: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: all 0.2s ease-in-out;
}

select {
  display: block;
  width: 100%;
  height: 4em;
  padding: 6px 2%;
  border: solid 1px #171717;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 5vh;
  background: white;
  color: #212121;
  outline: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: all 0.2s ease-in-out;
}

textarea {
  resize: none;
  display: block;
  width: 100%;
  padding: 6px 2%;
  border: solid 1px #171717;
  border-radius: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  background: rgba(255, 255, 255, 0.97);
  color: #212121;
  outline: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.wpcf7-form {
  font-size: 1rem;
}
.wpcf7-form .label-container {
  position: relative;
  display: flex;
}
.wpcf7-form .label-container label {
  position: absolute;
  top: -15px;
  left: 20px;
  background: white;
  padding: 0 10px;
  color: #909090;
  transition: all 0.2s ease-in-out;
}
.wpcf7-form input[type=text], .wpcf7-form input[type=password], .wpcf7-form input[type=email], .wpcf7-form input[type=tel], .wpcf7-form textarea {
  margin-bottom: 5vh;
}
.wpcf7-form .small {
  display: inline;
  font-size: 80%;
}
.wpcf7-form input[type=submit] {
  width: 100%;
  padding: 30px 0;
  margin: 5vh 0;
  cursor: pointer;
  border: solid 1px #171717;
  border-top: 5px solid #ed7527;
  border-radius: 0;
  background: #171717;
  background-position: right top;
  background-repeat: no-repeat;
  color: #ededed;
  font-weight: 900;
  font-size: 1.25rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  position: relative;
}
.wpcf7-form input[type=submit]::after, .wpcf7-form .wpcf7-submit::after {
  background: #ed7527;
  content: "\f063";
  font-family: "FontAwesome";
  position: absolute;
  margin-left: 5px;
}
.wpcf7-form input[type=submit]:hover {
  border: solid 1px #ededed;
  border-top: 5px solid #ed7527;
  background: #ededed;
  color: #171717;
}
.wpcf7-form .mc4wp-checkbox {
  display: inline-block;
  margin-top: 2rem;
}

.search-submit {
  font-family: "FontAwesome";
  content: "f002";
}

.screen-reader-response ul {
  color: red;
}

.wpcf7-response-output {
  color: green;
}

.orange {
  color: #ed7527;
}

/*--------------------------------------------------------------
5.0 Navigation
--------------------------------------------------------------*/
/* 5.1 CURSOR */
/* Curseur personnalisé - Styles de base */
.mf-cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 250;
  direction: ltr;
  contain: layout style size;
  pointer-events: none;
  transition: opacity 0.3s, color 0.4s;
}

.mf-cursor:before {
  content: "";
  position: absolute;
  top: -24px;
  left: -24px;
  display: block;
  width: 48px;
  height: 48px;
  transform: scale(0.2);
  background: currentColor;
  border-radius: 50%;
  transition: transform 0.25s ease-in-out, opacity 0.1s;
}

/* Variante inverse */
.mf-cursor.-inverse {
  color: #fff;
}

/* Support pour mix-blend-mode */
@supports (mix-blend-mode: exclusion) {
  .mf-cursor.-exclusion {
    mix-blend-mode: exclusion;
  }
  .mf-cursor.-exclusion:before {
    background: #fff;
  }
}
/* États du curseur */
.mf-cursor.-pointer:before {
  transform: scale(0.15);
}

.mf-cursor.-text:before {
  opacity: 0.85;
  transform: scale(1.7);
}

.mf-cursor.-text.-active:before {
  transform: scale(1.6);
  transition-duration: 0.2s;
}

.mf-cursor.-icon:before {
  transform: scale(1.5);
}

.mf-cursor.-icon.-active:before {
  transform: scale(1.4);
}

.mf-cursor.-hidden:before {
  transform: scale(0);
}

/* Texte du curseur */
.mf-cursor-text {
  position: absolute;
  top: -18px;
  left: -18px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0) rotate(10deg);
  opacity: 0;
  color: #fff;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  transition: opacity 0.4s, transform 0.3s;
}

.mf-cursor.-text .mf-cursor-text,
.mf-cursor.-icon .mf-cursor-text {
  opacity: 1;
  transform: scale(1);
}

/* Média du curseur */
.mf-cursor-media {
  position: absolute;
  width: 400px;
  height: 400px;
  margin: -200px 0 0 -200px;
}

.mf-cursor-media img,
.mf-cursor-media video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

/* Support pour object-fit */
@supports ((-o-object-fit: cover) or (object-fit: cover)) {
  .mf-cursor-media img,
  .mf-cursor-media video {
    position: static;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    transform: translateZ(0);
  }
}
/* Conteneur du média */
.mf-cursor-media-box {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: scale(0) translateZ(0);
  padding: 1px;
  opacity: 0;
  border-radius: 50%;
  transition: transform 0.35s, opacity 0.2s 0.2s;
}

.mf-cursor.-media .mf-cursor-media-box {
  opacity: 1;
  transform: scale(0.696);
  transition-duration: 0.4s, 0.4s;
  transition-delay: 0s, 0s;
}

/*--------------------------------------------------------------
6.0 Layout
--------------------------------------------------------------*/
/* 6.1 LOADER */
.loader-wrap {
  position: absolute;
  width: 100%;
  height: 100svh;
  z-index: 3;
}
.loader-wrap .loader-reveal-1, .loader-wrap .loader-reveal-2 {
  position: absolute;
  width: 100%;
  height: 100svh;
}
.loader-wrap .loader-reveal-1 {
  background: color-mix(in srgb, #292929 93%, black 7%);
  z-index: 13;
}
.loader-wrap .loader-reveal-2 {
  background: #292929;
  z-index: 10;
}
.loader-wrap .text-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 12;
  font-size: 3.125rem;
  text-align: center;
  color: white;
}
.loader-wrap > div {
  overflow: hidden;
}
.loader-wrap > div span {
  display: inline-block;
}

#page {
  position: relative;
}

.animate-letters {
  perspective: 1000px;
}
.animate-letters .char {
  display: inline-block;
  white-space: pre;
  transform-style: preserve-3d;
}
.animate-letters .char:empty {
  width: 0.25em;
}
.animate-letters span.char {
  color: inherit;
}

.section-title.animate-letters {
  overflow: hidden;
}
.section-title.animate-letters span .char {
  color: inherit;
}

/* 6.2 HEADER */
#masthead {
  background-color: #ededed;
}
#masthead .header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2svh 0;
  text-align: center;
  position: relative;
}
#masthead .header-container .site-title {
  background: url(../img/CMOI-by-ROCM.svg) center center no-repeat;
  background-size: contain;
  color: transparent;
  width: 300px;
  height: 120px;
  margin: 0;
}
#masthead .header-container .site-title .sticky {
  display: block;
  height: 100%;
  color: transparent;
}
#masthead .header-container .site-description {
  color: #808285;
  font-weight: 600;
  font-size: 1.75rem;
  margin: 0;
}
#masthead .header-container .site-description span {
  color: #ed7527;
}
#masthead .header-container .toggle-btn {
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 0;
}
#masthead .header-container .toggle-btn .burger {
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.75em 2em;
  background: #171717;
  border: none;
  outline: none;
  width: 28px;
  height: 28px;
  transition: all 0.3s ease-in-out;
}
#masthead .header-container .toggle-btn .burger::before, #masthead .header-container .toggle-btn .burger::after {
  content: "";
  display: block;
  width: 28px;
  height: 2px;
  background: white;
  transition: all 0.3s ease-in-out;
  will-change: transform;
  position: absolute;
}
#masthead .header-container .toggle-btn .burger::before {
  transform: translateY(-3px);
}
#masthead .header-container .toggle-btn .burger::after {
  transform: translateY(3px);
}
#masthead .header-container .toggle-btn .burger.active::before {
  transform: rotate(45deg) translateY(0);
}
#masthead .header-container .toggle-btn .burger.active::after {
  transform: rotate(-45deg) translateY(0);
}
#masthead .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100svh;
  background: rgba(0, 0, 0, 0.9);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  will-change: transform;
  z-index: 9998;
}
#masthead .overlay .overlay-menu {
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9998;
  display: flex;
  gap: 2.5em;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#masthead .overlay .overlay-menu .menu-item {
  display: flex;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  text-align: center;
  position: relative;
  font-size: 10svw;
  line-height: 80%;
  will-change: transform;
  transition: letter-spacing 0.3s ease-in-out;
}
#masthead .overlay .overlay-menu .menu-item:hover {
  letter-spacing: 0.075em;
}
#masthead .overlay .overlay-menu .menu-item span a {
  text-decoration: none;
}
#masthead .overlay .overlay-menu .menu-item span#active::after {
  content: "";
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 8px;
  background: #ed7527;
  transition: width 0.5s ease-in-out;
}
#masthead .overlay .overlay-menu .menu-item span#active.show-indicator::after {
  width: 100%;
}
#masthead .overlay .sub-nav {
  color: white;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2em;
  opacity: 0;
}

/*--------------------------------------------------------------
13.4 Front Page
--------------------------------------------------------------*/
.home #page .site-content-contain #content #primary #main #section-1 {
  background: #ededed;
  background-position: center center;
  background-size: cover;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vh 0;
}
.home #page .site-content-contain #content #primary #main #section-1 .section-container {
  position: relative;
  z-index: 2;
}
.home #page .site-content-contain #content #primary #main #section-1 .section-container .section-header {
  overflow: hidden;
}
.home #page .site-content-contain #content #primary #main #section-1 .section-container .section-header .section-title {
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 3rem;
}
.home #page .site-content-contain #content #primary #main #section-1 .section-container .section-header .section-title span {
  color: #ed7527;
}
.home #page .site-content-contain #content #primary #main #section-1 .section-container .section-header .section-title .changing-text {
  border-right: 2px solid #ed7527;
  color: #171717;
  padding-right: 5px;
  animation: blink-cursor 1s infinite;
}
@keyframes blink-cursor {
  0%, 50% {
    border-right-color: #ed7527;
  }
  51%, 100% {
    border-right-color: transparent;
  }
}
.home #page .site-content-contain #content #primary #main #section-1 .section-container .section-header .section-title .char {
  opacity: 0;
  display: inline-block;
}
.home #page .site-content-contain #content #primary #main #section-1 .section-container .info-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: 100%;
}
.home #page .site-content-contain #content #primary #main #section-1 .section-container .info-container p {
  font-size: 1.5rem;
  font-weight: 600;
}
.home #page .site-content-contain #content #primary #main #section-1 .section-container .info-container p span {
  color: #ed7527;
}
.home #page .site-content-contain #content #primary #main #section-1 .section-container .info-container .button__fixed {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.home #page .site-content-contain #content #primary #main #section-1 .section-container .info-container .button {
  position: relative;
  background-color: #ed7527;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all ease-in-out 0.5;
}
.home #page .site-content-contain #content #primary #main #section-1 .section-container .info-container .button:hover {
  background: #292929;
}
.home #page .site-content-contain #content #primary #main #section-1 .section-container .info-container .btn-text {
  text-align: center;
  color: white;
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.home #page .site-content-contain #content #primary #main #section-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); /* Blanc à 80% d'opacité */
  z-index: 1;
}
.home #page .site-content-contain #content #primary #main #section-2 {
  background: #292929;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vh 0;
}
.home #page .site-content-contain #content #primary #main #section-2 .section-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
}
.home #page .site-content-contain #content #primary #main #section-2 .section-container .section-header {
  margin-bottom: 10svh;
}
.home #page .site-content-contain #content #primary #main #section-2 .section-container .section-header .section-title {
  color: white;
  font-size: 1.75rem;
  letter-spacing: 0.25rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.home #page .site-content-contain #content #primary #main #section-2 .section-container .section-header .section-title .orange {
  color: #ed7527;
}
.home #page .site-content-contain #content #primary #main #section-2 .section-container .info-container .services {
  padding: 0;
  margin: 0 5%;
  display: flex;
  flex-direction: column;
  gap: 5svw;
  position: relative;
  width: 90%;
  flex-wrap: wrap;
  justify-content: center;
}
.home #page .site-content-contain #content #primary #main #section-2 .section-container .info-container .services li {
  list-style: none;
  text-align: center;
  padding: 1rem;
  color: white;
  font-size: 2rem;
  font-weight: 600;
  width: 100%;
}
.home #page .site-content-contain #content #primary #main #section-2 .section-container .info-container .services li a {
  text-decoration: none;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  -webkit-text-stroke: 1px white;
  -webkit-text-fill-color: transparent;
}
.home #page .site-content-contain #content #primary #main #section-2 .section-container .info-container .services li a:hover {
  -webkit-text-fill-color: white;
}
.home #page .site-content-contain #content #primary #main #section-3 {
  background: #ededed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home #page .site-content-contain #content #primary #main #section-3 .section-header {
  padding: 10svh 0 0;
}
.home #page .site-content-contain #content #primary #main #section-3 .section-header .section-title {
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-size: 1.75rem;
  letter-spacing: 0.25rem;
  text-align: center;
}
.home #page .site-content-contain #content #primary #main #section-3 .section-header .section-title .orange {
  color: #ed7527;
}
.home #page .site-content-contain #content #primary #main #section-3 .gallery-wrapper {
  position: relative;
  height: 80svh;
  display: flex;
  align-items: center;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}
.home #page .site-content-contain #content #primary #main #section-3 .gallery-wrapper .gallery {
  position: relative;
  z-index: 1;
  height: 50svh;
  display: flex;
  flex-wrap: nowrap;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
.home #page .site-content-contain #content #primary #main #section-3 .gallery-wrapper .gallery .gallery-item {
  flex: none;
  width: 50vw;
  height: 80%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  margin-right: 2rem;
}
.home #page .site-content-contain #content #primary #main #section-3 .gallery-wrapper .gallery .gallery-item .gallery-link {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.home #page .site-content-contain #content #primary #main #section-3 .gallery-wrapper .gallery .gallery-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  transform: scale(1) !important;
  transform-origin: center center;
  transition: transform 0.3s ease;
  will-change: transform;
}
.home #page .site-content-contain #content #primary #main #section-3 .gallery-wrapper .gallery .gallery-item img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
}
.home #page .site-content-contain #content #primary #main #section-3 .gallery-wrapper .gallery .gallery-item:hover img {
  transform: scale(1.1) !important;
}
.home #page .site-content-contain #content #primary #main #section-3 .gallery-wrapper .gallery .gallery-item:hover img::before {
  opacity: 1;
}
.home #page .site-content-contain #content #primary #main #section-3 .gallery-wrapper .gallery .gallery-item:last-child {
  margin-right: 0;
}
@media (max-width: 768px) {
  .home #page .site-content-contain #content #primary #main #section-3 .gallery .gallery-item {
    width: 90vw;
    margin-right: 1rem;
  }
}
.home #page .site-content-contain #content #primary #main #section-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.home #page .site-content-contain #content #primary #main #section-4 .section-header {
  padding: 10svh 0 0;
}
.home #page .site-content-contain #content #primary #main #section-4 .section-header .section-title {
  font-size: 1.75rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.home #page .site-content-contain #content #primary #main #section-4 .section-header .section-title .orange {
  color: #ed7527;
}
.home #page .site-content-contain #content #primary #main #section-4 .blog-list {
  padding: 0;
  width: 99vw;
  position: relative;
  display: flex;
  flex-direction: column;
  list-style: none;
  text-align: right;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  counter-reset: menucounter;
  z-index: 1;
}
.home #page .site-content-contain #content #primary #main #section-4 .blog-list li {
  padding: 2svh 0;
}
.home #page .site-content-contain #content #primary #main #section-4 .blog-list__item {
  flex: none;
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-left: 0;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
}
.home #page .site-content-contain #content #primary #main #section-4 .blog-list__item::before {
  display: none;
}
.home #page .site-content-contain #content #primary #main #section-4 .blog-list__item:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.home #page .site-content-contain #content #primary #main #section-4 .blog-list__item-text {
  position: relative;
  cursor: pointer;
  padding: 0.5rem;
  display: block;
  overflow: hidden;
  font-size: 1rem;
}
.home #page .site-content-contain #content #primary #main #section-4 .blog-list__item-textinner {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
  color: #171717;
}
.home #page .site-content-contain #content #primary #main #section-4 .js .blog-list__item-textinner {
  transform: translateY(100%);
}
.home #page .site-content-contain #content #primary #main #section-4 .blog-list__item:hover .blog-list__item-textinner {
  color: #ed7527;
}
.home #page .site-content-contain #content #primary #main #section-4 .blog-list__item-sub {
  display: none;
}
.home #page .site-content-contain #content #primary #main #section-4 .blog-list__item:hover .blog-list__item-sub {
  opacity: 1;
  transform: translateX(0);
}
.home #page .site-content-contain #content #primary #main #section-4 .blog-list__item-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  width: 1px;
  height: 70%;
  background: currentColor;
  transform-origin: 0 100%;
  transform: rotate(22.5deg) scale3d(1, 0, 1);
  transition: transform 0.3s;
}
.home #page .site-content-contain #content #primary #main #section-4 .blog-list__item:hover .blog-list__item-sub::before {
  transform: rotate(22.5deg) scale3d(1, 1, 1);
}
.home #page .site-content-contain #content #primary #main #section-4 .hover-reveal {
  position: absolute;
  width: 300px;
  height: 300px;
  top: -153px !important;
  left: 55px !important;
  pointer-events: none;
  opacity: 0;
  /*transform: rotate(11deg) !important;*/
}
.home #page .site-content-contain #content #primary #main #section-4 .hover-reveal__inner,
.home #page .site-content-contain #content #primary #main #section-4 .hover-reveal__img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 100%;
}
.home #page .site-content-contain #content #primary #main #section-4 .hover-reveal__deco {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #292929;
  border-radius: 100%;
}
.home #page .site-content-contain #content #primary #main #section-4 .hover-reveal__img {
  background-size: cover;
  background-position: 50% 50%;
}

/*--------------------------------------------------------------
13.2 Posts
--------------------------------------------------------------*/
.archive #page .site-content-contain .site-content #primary .page-header, .blog #page .site-content-contain .site-content #primary .page-header {
  padding: 5svh 0;
}
.archive #page .site-content-contain .site-content #primary .page-header .page-title, .blog #page .site-content-contain .site-content #primary .page-header .page-title {
  font-size: 2.5rem;
  color: #171717;
  margin-bottom: 1.5rem;
  text-align: center;
  text-transform: uppercase;
}
.archive #page .site-content-contain .site-content #primary .page-header .page-title span, .blog #page .site-content-contain .site-content #primary .page-header .page-title span {
  font-size: 50%;
  color: #ed7527;
}
.archive #page .site-content-contain .site-content #primary .blog-list, .blog #page .site-content-contain .site-content #primary .blog-list {
  padding: 0;
  width: 99vw;
  position: relative;
  display: flex;
  flex-direction: column;
  list-style: none;
  text-align: right;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  counter-reset: menucounter;
  z-index: 1;
}
.archive #page .site-content-contain .site-content #primary .blog-list li, .blog #page .site-content-contain .site-content #primary .blog-list li {
  padding: 2svh 0;
}
.archive #page .site-content-contain .site-content #primary .blog-list__item, .blog #page .site-content-contain .site-content #primary .blog-list__item {
  flex: none;
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-left: 0;
  text-decoration: none;
  transition: all ease-in-out 0.5s;
}
.archive #page .site-content-contain .site-content #primary .blog-list__item::before, .blog #page .site-content-contain .site-content #primary .blog-list__item::before {
  display: none;
}
.archive #page .site-content-contain .site-content #primary .blog-list__item:hover::before, .blog #page .site-content-contain .site-content #primary .blog-list__item:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.archive #page .site-content-contain .site-content #primary .blog-list__item-text, .blog #page .site-content-contain .site-content #primary .blog-list__item-text {
  position: relative;
  cursor: pointer;
  padding: 0.5rem;
  display: block;
  overflow: hidden;
  font-size: 1rem;
}
.archive #page .site-content-contain .site-content #primary .blog-list__item-textinner, .blog #page .site-content-contain .site-content #primary .blog-list__item-textinner {
  display: block;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
  color: #171717;
}
.archive #page .site-content-contain .site-content #primary .js .blog-list__item-textinner, .blog #page .site-content-contain .site-content #primary .js .blog-list__item-textinner {
  transform: translateY(100%);
}
.archive #page .site-content-contain .site-content #primary .blog-list__item:hover .blog-list__item-textinner, .blog #page .site-content-contain .site-content #primary .blog-list__item:hover .blog-list__item-textinner {
  color: #ed7527;
}
.archive #page .site-content-contain .site-content #primary .blog-list__item-sub, .blog #page .site-content-contain .site-content #primary .blog-list__item-sub {
  display: none;
}
.archive #page .site-content-contain .site-content #primary .blog-list__item:hover .blog-list__item-sub, .blog #page .site-content-contain .site-content #primary .blog-list__item:hover .blog-list__item-sub {
  opacity: 1;
  transform: translateX(0);
}
.archive #page .site-content-contain .site-content #primary .blog-list__item-sub::before, .blog #page .site-content-contain .site-content #primary .blog-list__item-sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15%;
  width: 1px;
  height: 70%;
  background: currentColor;
  transform-origin: 0 100%;
  transform: rotate(22.5deg) scale3d(1, 0, 1);
  transition: transform 0.3s;
}
.archive #page .site-content-contain .site-content #primary .blog-list__item:hover .blog-list__item-sub::before, .blog #page .site-content-contain .site-content #primary .blog-list__item:hover .blog-list__item-sub::before {
  transform: rotate(22.5deg) scale3d(1, 1, 1);
}
.archive #page .site-content-contain .site-content #primary .hover-reveal, .blog #page .site-content-contain .site-content #primary .hover-reveal {
  position: absolute;
  width: 300px;
  height: 300px;
  top: -153px !important;
  left: 55px !important;
  pointer-events: none;
  opacity: 0;
  /*transform: rotate(11deg) !important;*/
}
.archive #page .site-content-contain .site-content #primary .hover-reveal__inner,
.archive #page .site-content-contain .site-content #primary .hover-reveal__img, .blog #page .site-content-contain .site-content #primary .hover-reveal__inner,
.blog #page .site-content-contain .site-content #primary .hover-reveal__img {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 100%;
}
.archive #page .site-content-contain .site-content #primary .hover-reveal__deco, .blog #page .site-content-contain .site-content #primary .hover-reveal__deco {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #292929;
  border-radius: 100%;
}
.archive #page .site-content-contain .site-content #primary .hover-reveal__img, .blog #page .site-content-contain .site-content #primary .hover-reveal__img {
  background-size: cover;
  background-position: 50% 50%;
}

.single #page .site-content-contain .site-content #primary {
  /* Si le sidebar n'est pas présent, la main occupera 100% */
}
.single #page .site-content-contain .site-content #primary #main {
  display: flex;
}
.single #page .site-content-contain .site-content #primary #main .post {
  width: 100%; /* Prend 100% de la largeur de .site-content */
}
.single #page .site-content-contain .site-content #primary #main .post .entry-header {
  height: 50svh;
  align-items: center;
  background: center center no-repeat;
  background-size: cover;
  color: white;
  display: flex;
  filter: contrast(90%) saturate(123%);
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.single #page .site-content-contain .site-content #primary #main .post .entry-header .entry-title {
  color: white;
  font-size: 3.5rem;
  margin: 0;
  position: relative;
  text-align: center;
  width: 90%;
}
.single #page .site-content-contain .site-content #primary #main .post .entry-header .entry-date {
  font-size: 0.75rem;
  font-weight: 700;
  position: relative;
}
.single #page .site-content-contain .site-content #primary #main .post .entry-header .entry-date .fa-regular {
  margin-right: 10px;
}
.single #page .site-content-contain .site-content #primary #main .post .entry-header .share-title {
  letter-spacing: 0.5rem;
  position: relative;
  text-transform: uppercase;
}
.single #page .site-content-contain .site-content #primary #main .post .entry-header .share {
  display: flex;
  font-size: 140%;
  list-style: none;
  position: relative;
  margin: 0;
  padding: 0;
}
.single #page .site-content-contain .site-content #primary #main .post .entry-header .share li {
  margin: 0 10px;
}
.single #page .site-content-contain .site-content #primary #main .post .entry-header .share li .fa-solid, .single #page .site-content-contain .site-content #primary #main .post .entry-header .share li .fa-brands {
  transition: all 0.5s;
}
.single #page .site-content-contain .site-content #primary #main .post .entry-header .share li .fa-solid:hover, .single #page .site-content-contain .site-content #primary #main .post .entry-header .share li .fa-brands:hover {
  animation: bounce-fa 0.5s ease infinite;
  color: #ed7527;
}
.single #page .site-content-contain .site-content #primary #main .post .entry-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Couleur sombre avec opacité */
}
.single #page .site-content-contain .site-content #primary #main .post .entry-content {
  padding: 2svh 0;
}
.single #page .site-content-contain .site-content #primary #main .post .entry-content h2, .single #page .site-content-contain .site-content #primary #main .post .entry-content h3 {
  color: #666;
}
.single #page .site-content-contain .site-content #primary #main .post .entry-content #comments #respond #commentform .form-submit #submit {
  border: none;
  background: black;
  color: #ededed;
  padding: 1rem 5rem;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.single #page .site-content-contain .site-content #primary #main .post .entry-content #comments #respond #commentform .form-submit #submit:hover {
  background: #ed7527;
  color: #ededed;
}
.single #page .site-content-contain .site-content #primary #main #sidebar {
  width: 20%; /* Prend 20% de la largeur de .site-content */
}
.single #page .site-content-contain .site-content #primary #main:not(:has(#sidebar)) .post {
  width: 100%; /* Prend 100% de la largeur de .site-content */
}
.single #page .site-content-contain .site-content #primary #main:not(:has(#sidebar)) #sidebar {
  display: none; /* Cache le sidebar si non présent */
}
.single #page .site-content-contain .site-content .post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  padding: 2svh 0;
}
.single #page .site-content-contain .site-content .post-navigation .nav-links .nav-previous {
  text-align: left;
}
.single #page .site-content-contain .site-content .post-navigation .nav-links .nav-next {
  text-align: right;
}
.single #page .site-content-contain .site-content .post-navigation .nav-links .nav-next .nav-subtitle, .single #page .site-content-contain .site-content .post-navigation .nav-links .nav-previous .nav-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 900;
  color: #808285;
}
.single #page .site-content-contain .site-content .post-navigation .nav-links a {
  text-decoration: none;
  color: #171717;
  font-weight: 600;
  transition: all 0.3s ease;
}
.single #page .site-content-contain .site-content .post-navigation .nav-links a:hover {
  color: #ed7527;
}

/*--------------------------------------------------------------
13.3 Custom Post Type
--------------------------------------------------------------*/
.post-type-archive-realisations #page .site-content-contain .site-content .archive-realisations {
  background: #292929;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10vh 0;
}
.post-type-archive-realisations #page .site-content-contain .site-content .archive-realisations .archive-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5svh 0;
}
.post-type-archive-realisations #page .site-content-contain .site-content .archive-realisations .archive-header .archive-title {
  color: white;
  letter-spacing: 0.25rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.post-type-archive-realisations #page .site-content-contain .site-content .archive-realisations .archive-header .archive-description {
  color: #ed7527;
  text-align: center;
}
.post-type-archive-realisations #page .site-content-contain .site-content .archive-realisations .realisations-container .types-realisations {
  padding: 0;
  margin: 0 5%;
  display: flex;
  flex-direction: column;
  gap: 5svw;
  position: relative;
  width: 90%;
  flex-wrap: wrap;
  justify-content: center;
}
.post-type-archive-realisations #page .site-content-contain .site-content .archive-realisations .realisations-container .types-realisations li {
  list-style: none;
  text-align: center;
  padding: 1rem;
  color: white;
  font-size: 2rem;
  font-weight: 600;
  width: 100%;
}
.post-type-archive-realisations #page .site-content-contain .site-content .archive-realisations .realisations-container .types-realisations li a {
  text-decoration: none;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  -webkit-text-stroke: 1px white;
  -webkit-text-fill-color: transparent;
}
.post-type-archive-realisations #page .site-content-contain .site-content .archive-realisations .realisations-container .types-realisations li a:hover {
  -webkit-text-fill-color: white;
}

.tax-type_realisation #page .site-content-contain .site-content {
  /* Item de réalisation */
  /* Cercle contenant l'image */
  /* Wrapper de l'image */
  /* Icône d'agrandissement */
  /* Effet hover */
  /* Cercle sans image */
  /* Titre sous le cercle */
  /* Message si pas de réalisations */
  /* Pagination */
  /* Responsive */
}
.tax-type_realisation #page .site-content-contain .site-content .taxonomy-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10svh 0;
}
.tax-type_realisation #page .site-content-contain .site-content .taxonomy-header .taxonomy-title {
  color: #ed7527;
  letter-spacing: 0.25rem;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.tax-type_realisation #page .site-content-contain .site-content .realisations-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 2rem;
}
.tax-type_realisation #page .site-content-contain .site-content .realisation-item {
  flex: 0 0 calc(25% - 1.5rem);
  text-align: center;
}
.tax-type_realisation #page .site-content-contain .site-content .realisation-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.tax-type_realisation #page .site-content-contain .site-content .realisation-circle {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
}
.tax-type_realisation #page .site-content-contain .site-content .realisation-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
}
.tax-type_realisation #page .site-content-contain .site-content .realisation-image-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.tax-type_realisation #page .site-content-contain .site-content .realisation-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.tax-type_realisation #page .site-content-contain .site-content .realisation-icon svg {
  color: #333;
}
.tax-type_realisation #page .site-content-contain .site-content .realisation-link:hover .realisation-image-wrapper img {
  transform: scale(1.15);
}
.tax-type_realisation #page .site-content-contain .site-content .realisation-link:hover .realisation-icon {
  opacity: 1;
}
.tax-type_realisation #page .site-content-contain .site-content .realisation-no-image {
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}
.tax-type_realisation #page .site-content-contain .site-content .realisation-title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
}
.tax-type_realisation #page .site-content-contain .site-content .realisation-link:hover + .realisation-title {
  color: #ed7527;
}
.tax-type_realisation #page .site-content-contain .site-content .no-realisations {
  text-align: center;
  padding: 4rem 1rem;
  color: #666;
}
.tax-type_realisation #page .site-content-contain .site-content .no-realisations h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #333;
}
.tax-type_realisation #page .site-content-contain .site-content .btn-back {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #ed7527;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background 0.3s ease;
}
.tax-type_realisation #page .site-content-contain .site-content .btn-back:hover {
  background: #ed7527;
}
.tax-type_realisation #page .site-content-contain .site-content .pagination-wrapper {
  text-align: center;
  margin-top: 4rem;
}
.tax-type_realisation #page .site-content-contain .site-content .page-numbers {
  display: inline-block;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  background: #f5f5f5;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}
.tax-type_realisation #page .site-content-contain .site-content .page-numbers:hover,
.tax-type_realisation #page .site-content-contain .site-content .page-numbers.current {
  background: #007cba;
  color: white;
}
@media (max-width: 1200px) {
  .tax-type_realisation #page .site-content-contain .site-content .realisation-item {
    flex: 0 0 calc(33.333% - 1.33rem);
  }
}
@media (max-width: 768px) {
  .tax-type_realisation #page .site-content-contain .site-content .realisation-item {
    flex: 0 0 calc(50% - 0.5rem);
  }
  .tax-type_realisation #page .site-content-contain .site-content .realisations-gallery {
    gap: 2rem 1rem;
  }
  .tax-type_realisation #page .site-content-contain .site-content .realisation-title {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
13.4 Page
--------------------------------------------------------------*/
.page-template-default #page .site-content-contain .site-content #main .page .page-header {
  height: 50svh;
  align-items: center;
  background: center center no-repeat;
  background-size: cover;
  color: white;
  display: flex;
  filter: contrast(90%) saturate(123%);
  flex-direction: column;
  justify-content: center;
  position: relative;
  margin-bottom: 10svh;
}
.page-template-default #page .site-content-contain .site-content #main .page .page-header .page-title {
  color: white;
  font-size: 3.5rem;
  margin: 0;
  position: relative;
  text-align: center;
  width: 90%;
}
.page-template-default #page .site-content-contain .site-content #main .page .page-header .page-title span {
  font-size: 2rem;
}
.page-template-default #page .site-content-contain .site-content #main .page .page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); /* Couleur sombre avec opacité */
}
.page-template-default #page .site-content-contain .site-content #main .page .entry-content h2, .page-template-default #page .site-content-contain .site-content #main .page .entry-content h3 {
  color: #666;
}
.page-template-default #page .site-content-contain .site-content #main .page .entry-content .slider-container {
  background: #171717;
  height: 50vh;
  overflow: hidden;
}
.page-template-default #page .site-content-contain .site-content #main .page .entry-content .slider-container .slider {
  position: relative;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100%;
  z-index: 1;
}
.page-template-default #page .site-content-contain .site-content #main .page .entry-content .slider-container .slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 50vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-template-default #page .site-content-contain .site-content #main .page .entry-content .slider-container .slider .slide .slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.page-template-default #page .site-content-contain .site-content #main .page .entry-content .slider-container .slider .slide:not(#slide-1) {
  transform-origin: center;
  z-index: 2;
}

#map_canvas {
  height: 50svh;
}
@media screen and (min-width: 53em) {
  #map_canvas {
    height: 60svh;
  }
}

/*--------------------------------------------------------------
13.7 Footer
--------------------------------------------------------------*/
#colophon {
  background: white;
  color: #171717;
}
#colophon .container-footer {
  flex-direction: column;
  align-items: center;
  padding: 5svh 0;
  text-align: center;
}
#colophon .container-footer .nav-info-footer .header-info-footer .title-info-footer {
  background: url(../img/CMOI-by-ROCM.svg) center center no-repeat;
  background-size: contain;
  color: transparent;
  height: 200px;
}
#colophon .container-footer .nav-info-footer #nav-social-menu .social-menu {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5%;
  margin: 0;
  padding: 0;
  font-size: 2.5rem;
}
#colophon .container-footer .nav-info-footer #nav-social-menu .social-menu .menu-item .fa-brands {
  transition: all 0.5s;
}
#colophon .container-footer .nav-info-footer #nav-social-menu .social-menu .menu-item .fa-brands:hover {
  animation: bounce-fa 0.5s ease infinite;
  color: #808285;
}
@keyframes bounce-fa {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
#colophon .container-footer .nav-info-footer .info-footer {
  padding: 2svh 0;
}
#colophon .container-footer .nav-info-footer .info-footer p {
  font-size: 0.75rem;
  font-weight: 600;
  margin: 0;
}
#colophon .container-footer .nav-info-footer .info-footer p a {
  text-decoration: none;
  position: relative;
  display: inline;
  transition: color 0.4s ease;
}
#colophon .container-footer .nav-info-footer .info-footer p a:hover {
  color: #ed7527;
}
#colophon .container-footer .nav-info-footer .info-footer p a:hover:after {
  width: 100%;
  background: #ed7527;
}
#colophon .container-footer .nav-info-footer .info-footer p a:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -0.09em;
  left: 0;
  width: 0;
  height: 1px;
  color: #808285;
  transition: width 0.4s ease;
}
#colophon .container-footer .nav-info-footer .info-footer #phone-footer {
  font-size: 1.5rem;
}
#colophon .container-footer .nav-info-footer .info-footer #phone-footer a {
  text-decoration: none;
  position: relative;
  display: inline;
  transition: color, 0.4s, ease;
}
#colophon .container-footer .nav-info-footer .info-footer #phone-footer a:hover {
  color: #ed7527;
}
#colophon .container-footer .nav-info-footer .info-footer #phone-footer a:hover:after {
  width: 100%;
  background: #ed7527;
}
#colophon .container-footer .nav-info-footer .info-footer #phone-footer a:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -0.09em;
  left: 0;
  width: 0;
  height: 1px;
  color: #808285;
  transition: width 0.4s ease;
}
#colophon .container-footer .nav-info-footer .info-footer #phone-footer span {
  font-weight: 800;
}
#colophon .container-footer .menu-extra-container {
  width: 100%;
  padding: 5svh 0 0;
}
#colophon .container-footer .menu-extra-container .menu-infos {
  border-top: solid 1px #ededed;
  display: inline-flex;
  flex-direction: column;
  font-size: 80%;
  padding: 20px;
  list-style: none;
  margin: 0;
}
#colophon .container-footer .menu-extra-container .menu-infos .menu-item {
  margin-right: 10px;
}
#colophon .container-footer .menu-extra-container .menu-infos .menu-item a {
  text-decoration: none;
  position: relative;
  display: inline;
  transition: color 0.4s ease;
}
#colophon .container-footer .menu-extra-container .menu-infos .menu-item a:hover {
  color: #ed7527;
}
#colophon .container-footer .menu-extra-container .menu-infos .menu-item a:hover:after {
  width: 100%;
  background: #ed7527;
}
#colophon .container-footer .menu-extra-container .menu-infos .menu-item a:after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -0.09em;
  left: 0;
  width: 0;
  height: 1px;
  color: #808285;
  transition: width 0.4s ease;
}
#colophon .container-footer .menu-extra-container .menu-infos .menu-item:last-child {
  margin-right: 0;
}
#colophon .container-footer .menu-extra-container .menu-infos .blueroom:before {
  content: "Webdesign & Développement : ";
}

/* cookies */
.cky-btn-accept {
  border-color: #292929;
  background: #292929;
}

/*--------------------------------------------------------------
13.8 Responsive
--------------------------------------------------------------*/
@media screen and (min-width: 53em) {
  /* Header */
  #masthead .header-container {
    flex-direction: row;
    align-items: center;
    padding: 2svh 0;
    text-align: center;
    justify-content: space-between;
  }
  #masthead .header-container .site-description {
    margin: 0 0 0 -100px;
  }
  #masthead .header-container .toggle-btn {
    position: relative;
  }
  #masthead .overlay .overlay-menu .menu-item {
    font-size: 3svw;
  }
  /* Accueil */
  .home #page .site-content-contain #content #primary #main #section-1 .section-container .section-header .section-title {
    font-size: 3.5rem;
  }
  .home #page .site-content-contain #content #primary #main #section-1 .section-container .info-container {
    flex-direction: row;
  }
  .home #page .site-content-contain #content #primary #main #section-2 .section-container .section-header .section-title {
    font-size: 3.5rem;
  }
  .home #page .site-content-contain #content #primary #main #section-2 .section-container .info-container .services {
    flex-direction: row;
  }
  .home #page .site-content-contain #content #primary #main #section-2 .section-container .info-container .services li {
    width: 25%;
  }
  .home #page .site-content-contain #content #primary #main #section-4 .section-header .section-title {
    font-size: 3.5rem;
  }
  .home #page .site-content-contain #content #primary #main #section-4 .blog-list {
    padding: 10rem 0 20vh 0;
    width: 90vw;
    position: relative;
    display: flex;
    flex-direction: column;
    list-style: none;
    text-align: right;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    counter-reset: menucounter;
    z-index: 1;
  }
  .home #page .site-content-contain #content #primary #main #section-4 .blog-list li {
    padding: 2svh 0;
  }
  .home #page .site-content-contain #content #primary #main #section-4 .blog-list__item {
    flex: none;
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding-left: 2rem;
    text-decoration: none;
    transition: all ease-in-out 0.5s;
  }
  .home #page .site-content-contain #content #primary #main #section-4 .blog-list__item::before {
    counter-increment: menucounter;
    content: counters(menucounter, ".", decimal-leading-zero);
    position: absolute;
    left: 0;
    border-left: 3px solid currentColor;
    top: 20%;
    height: 60%;
    padding-left: 1rem;
    display: flex;
    align-items: center;
    line-height: 1;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-1rem);
    transition: transform 0.3s, opacity 0.3s;
  }
  .home #page .site-content-contain #content #primary #main #section-4 .blog-list__item:hover::before {
    opacity: 1;
    transform: translateX(0);
  }
  .home #page .site-content-contain #content #primary #main #section-4 .blog-list__item-text {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    display: block;
    overflow: hidden;
    font-size: 2.5rem;
  }
  .home #page .site-content-contain #content #primary #main #section-4 .blog-list__item-textinner {
    display: block;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    color: #171717;
  }
  .home #page .site-content-contain #content #primary #main #section-4 .js .blog-list__item-textinner {
    transform: translateY(100%);
  }
  .home #page .site-content-contain #content #primary #main #section-4 .blog-list__item:hover .blog-list__item-textinner {
    color: #ed7527;
  }
  .home #page .site-content-contain #content #primary #main #section-4 .blog-list__item-sub {
    display: flex;
    text-transform: uppercase;
    font-weight: bold;
    white-space: nowrap;
    align-items: center;
    position: relative;
    margin-left: 2rem;
    padding-left: 3rem;
    opacity: 0;
    transform: translateX(-1rem);
    transition: transform 0.3s, opacity 0.3s;
  }
  .home #page .site-content-contain #content #primary #main #section-3 .section-header .section-title {
    font-size: 3.5rem;
  }
  /* Custom post type */
  .post-type-archive-realisations #page .site-content-contain .site-content .archive-realisations {
    background: #292929;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10vh 0;
  }
  .post-type-archive-realisations #page .site-content-contain .site-content .archive-realisations .realisations-container .types-realisations {
    flex-direction: row;
  }
  .post-type-archive-realisations #page .site-content-contain .site-content .archive-realisations .realisations-container .types-realisations li {
    width: 25%;
  }
  /* Blog */
  .archive #page .site-content-contain .site-content #primary .blog-list, .blog #page .site-content-contain .site-content #primary .blog-list {
    padding: 10rem 0 20vh 0;
    width: 90vw;
    position: relative;
    display: flex;
    flex-direction: column;
    list-style: none;
    text-align: right;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    counter-reset: menucounter;
    z-index: 1;
  }
  .archive #page .site-content-contain .site-content #primary .blog-list li, .blog #page .site-content-contain .site-content #primary .blog-list li {
    padding: 2svh 0;
  }
  .archive #page .site-content-contain .site-content #primary .blog-list__item, .blog #page .site-content-contain .site-content #primary .blog-list__item {
    flex: none;
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding-left: 2rem;
    text-decoration: none;
    transition: all ease-in-out 0.5s;
  }
  .archive #page .site-content-contain .site-content #primary .blog-list__item::before, .blog #page .site-content-contain .site-content #primary .blog-list__item::before {
    counter-increment: menucounter;
    content: counters(menucounter, ".", decimal-leading-zero);
    position: absolute;
    left: 0;
    border-left: 3px solid currentColor;
    top: 20%;
    height: 60%;
    padding-left: 1rem;
    display: flex;
    align-items: center;
    line-height: 1;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-1rem);
    transition: transform 0.3s, opacity 0.3s;
  }
  .archive #page .site-content-contain .site-content #primary .blog-list__item:hover::before, .blog #page .site-content-contain .site-content #primary .blog-list__item:hover::before {
    opacity: 1;
    transform: translateX(0);
  }
  .archive #page .site-content-contain .site-content #primary .blog-list__item-text, .blog #page .site-content-contain .site-content #primary .blog-list__item-text {
    position: relative;
    cursor: pointer;
    padding: 0.5rem;
    display: block;
    overflow: hidden;
    font-size: 2.5rem;
  }
  .archive #page .site-content-contain .site-content #primary .blog-list__item-textinner, .blog #page .site-content-contain .site-content #primary .blog-list__item-textinner {
    display: block;
    font-weight: 400;
    text-transform: uppercase;
    white-space: nowrap;
    color: #171717;
  }
  .archive #page .site-content-contain .site-content #primary .js .blog-list__item-textinner, .blog #page .site-content-contain .site-content #primary .js .blog-list__item-textinner {
    transform: translateY(100%);
  }
  .archive #page .site-content-contain .site-content #primary .blog-list__item:hover .blog-list__item-textinner, .blog #page .site-content-contain .site-content #primary .blog-list__item:hover .blog-list__item-textinner {
    color: #ed7527;
  }
  .archive #page .site-content-contain .site-content #primary .blog-list__item-sub, .blog #page .site-content-contain .site-content #primary .blog-list__item-sub {
    display: flex;
    text-transform: uppercase;
    font-weight: bold;
    white-space: nowrap;
    align-items: center;
    position: relative;
    margin-left: 2rem;
    padding-left: 3rem;
    opacity: 0;
    transform: translateX(-1rem);
    transition: transform 0.3s, opacity 0.3s;
  }
  /* Contact */
  .infos-box .box {
    width: 48%;
  }
  /* Footer */
  #colophon .container-footer .menu-extra-container .menu-infos {
    flex-direction: row;
  }
}
/*--------------------------------------------------------------
15.0 Widgets
--------------------------------------------------------------*/
.sidebar {
  flex-basis: 24%;
  margin-left: 1%;
}
@media (max-width: 414px) {
  .sidebar {
    flex-basis: 98%;
    margin: 0 1%;
  }
}
@media (min-width: 415px) and (max-width: 768px) {
  .sidebar {
    flex-basis: 98%;
    margin: 0 1%;
  }
}
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .sidebar {
    flex-basis: 98%;
    margin: 0 1%;
  }
}
.sidebar ul {
  list-style: none;
  padding: 0;
}
.sidebar a {
  color: white;
}

/*--------------------------------------------------------------
16.0 Medias
--------------------------------------------------------------*/
/* Images et vidéos responsives (ESSENTIEL) */
img,
video {
  height: auto;
  max-width: 100%;
}

/* Smileys WordPress */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
  border: none;
  margin: 0;
  padding: 0;
}

/* Embeds responsives */
embed,
iframe,
object {
  margin-bottom: 1.5em;
  max-width: 100%;
}

/* Captions */
.wp-caption,
.gallery-caption {
  color: #666;
  font-size: 0.8125rem;
  font-style: italic;
  margin-bottom: 1.5em;
  max-width: 100%;
}

.wp-caption img[class*=wp-image-] {
  display: block;
  margin: 0 auto;
}

.wp-caption .wp-caption-text {
  margin: 0.8075em 0;
}

/* Media Elements */
.mejs-container {
  margin-bottom: 1.5em;
}

/*--------------------------------------------------------------
16.1 Galleries
--------------------------------------------------------------*/
.gallery {
  margin: auto;
}
.gallery .gallery-item {
  float: left;
  margin-top: 10px;
  text-align: center;
  width: 12%;
}
.gallery .gallery-item img {
  border: none;
}
.gallery .gallery-caption {
  margin-left: 0;
}

.gallery-item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  margin: 0 0 1.5em;
  padding: 0 1em 0 0;
  width: 50%;
}
.gallery-item a,
.gallery-item a:hover,
.gallery-item a:focus {
  box-shadow: none;
  background: none;
  display: inline-block;
  max-width: 100%;
}
.gallery-item a img,
.gallery-item a:hover img,
.gallery-item a:focus img {
  display: block;
  transition: filter 0.2s ease-in;
  backface-visibility: hidden;
}
.gallery-item a:hover img,
.gallery-item a:focus img {
  filter: opacity(60%);
}

/* Colonnes de galerie */
.gallery-columns-1 .gallery-item {
  width: 100%;
}

.gallery-columns-2 .gallery-item {
  max-width: 50%;
}

.gallery-columns-3 .gallery-item {
  max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
  max-width: 25%;
}

.gallery-columns-5 .gallery-item {
  max-width: 20%;
}

.gallery-columns-6 .gallery-item {
  max-width: 16.66%;
}

.gallery-caption {
  display: block;
  text-align: left;
  padding: 0 10px 0 0;
  margin-bottom: 0;
}

/* Responsive pour les galeries */
@media (max-width: 768px) {
  .gallery-item {
    width: 100% !important;
    max-width: 100% !important;
  }
}/*# sourceMappingURL=cmoi-2025.css.map */