/*   
Theme Name: MMDWC
Author: MATTIEU MOREAU DOMECQ WEB CONCEPTION
Author URI: http://www.mattieumoreaudomecq.com
*/

/* 
-------------------------------------------------------------------------------*/

html,
body,
body div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* ==========================================================
COLOR VARIABLES
========================================================== */

:root {
  --black: #000000;
  --white: #ffffff;
  --darkgreen: #003c47;
  --mediumgreen: #008b80;
  --lightgreen: #00cba8;
  --lightgray: #f0f2f1;
  --darkblue: #30307b;
  --mediumblue: #003595;
  --red: #e2425a;
}

/* ==========================================================
CSS
========================================================== */

html,
body {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Source Code Pro', monospace;
  font-family: 'Source Sans 3', sans-serif;
  color: var(--black);
}

#wrapper {
  width: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

* {
  -webkit-overflow-scrolling: touch;
}

* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

.link-absolute {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}

.link__btn {
  display: inline-block;
  padding: 0.25rem 0.75rem 0.25rem 0.75rem;
  background: var(--white);
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}

.link__btn img {
  display: inline-block;
  width: 0.75rem;
  margin-left: 0.25rem;
  height: 0.75rem;
  margin-bottom: 0 !important;
}

.link__btn:hover {
  background-color: #ccdad0;
  color: var(--black);
  text-decoration: none;
}

.link-medium__btn {
  font-size: 1rem;
  line-height: 1rem;
}

.link-large__btn {
  font-size: 1.15rem;
  line-height: 1.15rem;
  padding: 0.55rem 0.75rem 0.5rem 0.75rem;
  text-decoration: none !important;
  border-bottom: none !important;
}

section {
  padding-left: 2rem;
  padding-right: 2rem;
}

/* ==========================================================
ACCORDION
========================================================== */

.accordion {
  padding: 0rem;
}

.accordion-group {
  margin: 0rem 0 3rem 0;
}

.accordion-group__title {
  font-family: 'Source Code Pro', monospace;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.5rem;
  line-height: 1.75rem;
  border-bottom: 1px solid;
  padding-bottom: 1rem;
}

.accordion-item {
  padding: 0rem 0 0.5rem 0;
  border-top: 1px solid;
}
.accordion-header {
  font-weight: 700;
  font-family: 'Source Code Pro', monospace;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: 3fr 1fr;
  line-height: 1.25rem;
  cursor: pointer;
  align-items: center;
  align-content: center;
  margin-bottom: 0;
  padding: 0.5rem 0;
}
.accordion-title {
}

.accordion-arrow {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.accordion-arrow img {
  width: 0.75rem;
  height: 0.75rem;
  transform: rotate(90deg);
}

.accordion-opened .accordion-arrow img {
  transform: rotate(270deg);
}

.accordion-arrow span {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
}

.accordion-arrow span::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 2px;
  width: 2px;
  height: 10px;
  background: currentColor;
  transform: translateX(-50%);
}

.accordion-arrow span::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: translateX(-50%) rotate(45deg);
}

.accordion-item:not(.accordion-opened) .accordion-arrow span {
  transform: rotate(180deg);
}

.accordion-content {
  display: none;
}

.accordion-opened .accordion-content,
.home .home-services__accordion-content {
  display: block;
}

.home .accordion-content a {
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-skip-ink: auto;
  text-decoration: underline;
  text-decoration-thickness: auto;
  text-decoration-thickness: 1px;
}

.home .home-services__accordion-title {
  cursor: initial;
}

.home .accordion .accordion-arrow {
  display: none;
}
.accordion-content ul {
  margin-bottom: 1rem;
  margin-left: 1.5rem;
}

.accordion-content p {
  margin-bottom: 1rem;
}

/* ==========================================================
HEADER
========================================================== */

.site-header {
  position: fixed;
  z-index: 10;
  padding: 1rem 2rem;
  width: 100%;
  background-color: var(--white);
  top: 0;
  color: var(--black);
  transition:
    background-color 0s ease-in-out,
    color 0.3s ease-in-out,
    transform 0.5s ease-in-out;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.site-header__brand {
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-weight: 900;
  text-decoration: none !important;
  color: var(--black);
  text-transform: lowercase;
  font-family: 'Source Code Pro', monospace;
}

.site-header__brand:hover {
  color: var(--black);
}

.site-header__menu {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.site-header__menu a {
  font-size: 1rem;
  line-height: 1rem;
  text-transform: uppercase;
  font-family: 'Source Code Pro', monospace;
  font-weight: 400;
  color: var(--black);
}

.single-realisation .site-header__menu #menu-item-29 a,
header .current_page_item a,
.site-header__menu a:hover,
.site-header__menu a:focus,
.site-header__menu a:active {
  text-underline-offset: 4px;
  text-decoration-skip-ink: auto;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.color-header {
  background-color: var(--darkgreen);
  color: var(--white);
}

.color-header .site-header__brand {
  color: var(--white);
}

.color-header .site-header__menu a {
  color: var(--white);
}

/* ==========================================================
REALISATIONS ITEM
========================================================== */

.realisations__project-item,
.no-result-item {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-top: 1px solid;
  border-bottom: 1px solid;
  opacity: 1;
  transition: opacity 0.2s ease;
  will-change: transform;
  transform: translateZ(0);
}

.no-result-item {
  color: var(--mediumgreen);
  border-bottom: 1px dashed var(--mediumgreen);
  border-top: 1px dashed var(--mediumgreen);
  background-color: #f0f2f1;
  font-size: 1.75rem;
  line-height: 2.25rem;
  font-weight: 400;
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem;
}

.no-result-item p {
  margin-bottom: 3rem;
}

.no-result-item .link__btn {
  background-color: var(--mediumgreen);
  color: var(--white);
}

body.is-loading .realisations__project-grid {
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.realisations__project-item--big {
  aspect-ratio: 16/9;
}

.realisations__project-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s ease-in-out;
}

.realisations__project-item:hover img {
  transform: scale(1.025);
}

.realisations__project-item--big:hover img {
  transform: scale(1.01);
}

.realisations__project-item-header {
  /*! border-bottom: 1px solid; */
  padding-bottom: 1rem;
  /*! border-top: 1px solid; */
}
.realisations__project-item-header--grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 1rem 0rem 0rem 0rem;
  z-index: 1;
  overflow: visible;
}

.realisations__project-item-header--grid::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;

  height: calc(100% + 7rem);

  z-index: -1;
  pointer-events: none;

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  background: linear-gradient(
    to bottom,
    rgba(var(--couleur-degrade-rgb, 255, 255, 255), 0.8) 0%,
    rgba(var(--couleur-degrade-rgb, 255, 255, 255), 0.75) 30%,
    rgba(var(--couleur-degrade-rgb, 255, 255, 255), 0.5) 60%,
    rgba(var(--couleur-degrade-rgb, 255, 255, 255), 0.25) 80%,
    rgba(var(--couleur-degrade-rgb, 255, 255, 255), 0) 100%
  );

  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 25%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.1) 85%,
    rgba(0, 0, 0, 0) 100%
  );

  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 25%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.1) 85%,
    rgba(0, 0, 0, 0) 100%
  );
}

.realisations__project-item-title,
.realisations__project-item-description {
  position: relative;
  z-index: 1;
}

.realisation-content__text-inner .realisations__project-item-title,
.realisation-content__text-inner .realisations__project-item-description {
  opacity: 0;
}

.realisations__project-item-title {
  font-family: 'Source Code Pro', monospace;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 1.75rem;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.realisations__project-item-description {
  font-weight: 400;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.25rem;
  line-height: 1.6rem;
  padding-right: 1rem;
}

.realisations__project-item-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 2fr 2fr;
  align-items: end;
  justify-content: space-between;
  padding: 1rem;
  z-index: 1;
  overflow: visible;
}

.realisations__project-item-footer::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  height: calc(100% + 5rem);

  z-index: -1;
  pointer-events: none;

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  background: linear-gradient(
    to top,
    rgba(var(--couleur-degrade-rgb, 255, 255, 255), 0.8) 0%,
    rgba(var(--couleur-degrade-rgb, 255, 255, 255), 0.75) 30%,
    rgba(var(--couleur-degrade-rgb, 255, 255, 255), 0.5) 60%,
    rgba(var(--couleur-degrade-rgb, 255, 255, 255), 0.25) 80%,
    rgba(var(--couleur-degrade-rgb, 255, 255, 255), 0) 100%
  );

  mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 25%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.1) 85%,
    rgba(0, 0, 0, 0) 100%
  );

  -webkit-mask-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 25%,
    rgba(0, 0, 0, 0.6) 50%,
    rgba(0, 0, 0, 0.25) 70%,
    rgba(0, 0, 0, 0.1) 85%,
    rgba(0, 0, 0, 0) 100%
  );
}

.realisations__project-item__footer-left,
.realisations__project-item__footer-right {
  position: relative;
  z-index: 1;
}

.realisations__project-item__logo {
  max-width: 6rem;
  max-height: 6rem;
  width: auto;
  height: auto;
}

.realisations__project-item-footer .realisations__project-item__logo {
  margin-left: auto;
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

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

.realisations__project-item__logo svg * {
  fill: currentColor !important;
}

ul.realisations-cat-list.realisations-cat-list--complete {
  flex-direction: unset;
}

ul.realisations-cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1rem;
}

ul.realisations-cat-list.realisations-cat-list--complete span {
  display: block;
  margin-bottom: 0.25rem;
  font-family: 'Source Code Pro', monospace;
  font-size: 0.65rem;
}

ul.realisations-cat-list .realisations-cat-list__name {
  text-transform: uppercase;
  border: 1px solid;
  display: inline-block;
  border-radius: 0.35rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
}

.realisations__project-grid,
.realisations__project-grid-no-results {
  display: grid;
  gap: 1rem;
  justify-content: space-between;
  grid-template-columns: 2fr 2fr 2fr;
}

/* ==========================================================
REALISATIONS SINGLE 
========================================================== */

#page-header.page-header--single-realisations {
  margin-bottom: 1rem;
}

.toggle-realisation {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.toggle-realisation.is-opened {
  background-color: black !important;
}

.toggle-realisation img {
  width: 0.65rem;
  height: 0.65rem;
  display: block;
  filter: brightness(0) saturate(100%) invert(100%) sepia(33%) saturate(0%)
    hue-rotate(99deg) brightness(111%) contrast(101%);
  transition: all 0.3s ease-in-out;
}

.toggle-realisation.is-opened img {
  transform: rotate(45deg);
}

#realisation-content {
  display: grid;
  column-gap: 0;
  row-gap: 2rem;
  grid-template-columns: 0 100%;
  transition:
    grid-template-columns 0.6s ease,
    column-gap 0.6s ease;
  margin-bottom: 2rem;
  position: relative;
}

#realisation-content > * {
  min-width: 0;
}

.realisations__project-item-header--grid-absolute {
  position: absolute;
  width: calc(100% - 4rem);
  left: 2rem;
  border-top: 1px solid;
  transition: all 0.3s ease-in-out;
}

.realisations__project-item-header--grid-absolute
  .realisations__project-item-title,
.realisations__project-item-header--grid-absolute
  .realisations__project-item-description {
  transition: padding 0.3s ease-in-out;
}

.realisation-content__text {
  overflow: hidden;
}

.realisation-content__text-inner {
  opacity: 0;
  transition: opacity 0.3s ease;
  height: 0;
  overflow: hidden;
}

.realisation-content__medias .realisations__project-item-header--grid,
.realisation-content__medias .realisations__project-item-footer {
  opacity: 1;
  transition: opacity 0.25s ease;
}

.realisation-content__text .realisations__project-item-header {
  margin-bottom: 1rem;
  border-top: 1px solid;
  padding-top: 1rem;
  border-bottom: 1px solid;
}

.realisation-content__text .realisations__project-item__logo {
  max-width: 8rem;
  max-height: 8rem;
}

.realisation-content__text .realisations-cat-list {
  margin-bottom: 2rem;
  padding-top: 1rem;
}

.realisation-content__text h3 {
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Source Code Pro', monospace;
}

.realisations-results__list {
  display: grid;
  gap: 1rem 3rem;
  justify-content: space-between;
  grid-template-columns: 2fr 2fr 2fr;
  list-style: none;
  margin: 1rem 0 1.75rem 0;
}

.realisations-results__list .realisations-results__item {
  text-align: center;
}

.realisations-results__list
  .realisations-results__item
  .realisations-results__number {
  font-size: 3rem;
  line-height: 3rem;
  font-weight: 300;
}

.realisations-results__list
  .realisations-results__item
  .realisations-results__text {
  font-size: 0.75rem;
  line-height: 1rem;
}

.realisations-text {
  border-bottom: 1px solid;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}

.realisations-text .realisations-text__item {
  margin-bottom: 1.75rem;
}

.realisations-text p,
.realisations-text ul,
.realisations-text ol,
.realisations-partners p {
  margin-bottom: 1rem;
}

.realisations-text ul,
.realisations-text ol {
  margin-left: 1rem;
}

.realisations-partners {
  border-bottom: 1px solid;
}

.realisations-partners ul {
  list-style: none;
  padding-left: 0;
}

.realisations-partners ul li {
  position: relative;
  padding-left: 20px;
}

.realisations-partners ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--black);
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M5.87,12l-1.1-1.23,4.19-3.87H0v-1.79h8.96L4.77,1.23l1.1-1.23,6.13,5.96v.09l-6.13,5.95Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M5.87,12l-1.1-1.23,4.19-3.87H0v-1.79h8.96L4.77,1.23l1.1-1.23,6.13,5.96v.09l-6.13,5.95Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.realisations-partners .realisations-partners__item {
  margin-bottom: 1rem;
}

.realisations-partners h4 {
  text-transform: uppercase;
  font-size: 0.75rem;
  line-height: 1rem;
  margin-bottom: 0.5rem;
}

.realisations-partners a {
  text-underline-offset: 4px;
  text-decoration-skip-ink: auto;
  text-decoration: underline;
  text-decoration-thickness: auto;
  text-decoration-thickness: 1px;
  color: var(--black);
}

.realisation-content__medias .realisations__project-item--big,
.realisation-content__medias img:not(:last-child),
.realisation-images-sup img,
.realisation-images-sup video {
  margin-bottom: 1rem;
}

.realisation-images-sup video {
  width: 100%;
}

#realisation-content.is-hiding-right-content
  .realisations__project-item-footer {
  opacity: 0;
  pointer-events: none;
}

#realisation-content.is-split
  .realisations__project-item-header--grid-absolute {
  position: absolute;
  width: calc(35% - 2rem);
  background: none;
  color: var(--black) !important;
}

#realisation-content.is-split .realisations__project-item-header--grid::before {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: none;
  mask-image: none;
  -webkit-mask-image: none;
}

body.hide-project-header-grid-before
  .realisations__project-item-header--grid::before {
  display: none;
}

#realisation-content.is-split
  .realisations__project-item-header--grid-absolute
  .realisations__project-item-title,
#realisation-content.is-split
  .realisations__project-item-header--grid-absolute
  .realisations__project-item-description {
  padding-left: 0;
}

#realisation-content.is-split {
  column-gap: 2rem;
  grid-template-columns: calc(35% - 1rem) calc(65% - 1rem);
}

#realisation-content.is-split .realisations__project-item {
  color: var(--black) !important;
  border: none;
}

#realisation-content.is-visible .realisation-content__text-inner {
  opacity: 1;
  height: auto;
}

#realisation-images-main {
  margin-bottom: 3rem;
}

.realisation-images-sup {
}

#realisation-testimonies {
  color: var(--white);
  background-color: var(--darkgreen);
  padding-top: 0;
  padding-bottom: 5rem;
  padding-left: 0;
  padding-right: 0;
}

#realisation-testimonies .testimonies-item {
  display: flex;
  gap: 6rem;
}

#realisation-testimonies .testimonies-item .testimonies-item__quotes {
  width: calc(100vw / 12 * 4);
}

#realisation-testimonies .testimonies-item .testimonies-item__text {
  width: calc(100vw / 12 * 5);
  margin-bottom: 0;
  padding-top: 10rem;
}

#realisation-testimonies
  .testimonies-item
  .testimonies-item__text
  .testimonies-item__header {
  display: flex;
  gap: 2rem;
  align-items: center;
  margin-bottom: 1rem;
}

#realisation-testimonies .testimonies-item__header-left {
  width: 10rem;
}
#realisation-testimonies .testimonies-item__header-left img {
  width: 10rem;
  height: auto;
  display: block;
  border-radius: 100%;
  filter: grayscale(100%);
}

.testimonies-item__header-right {
  font-size: 1rem;
  line-height: 1.5rem;
}

#realisation-testimonies
  .testimonies-item__header-right
  .testimonies-item__name {
  text-transform: uppercase;
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
}

#realisation-testimonies
  .testimonies-item__header-right
  .testimonies-item__info {
  font-size: 1rem;
  line-height: 1.25rem;
}

#realisation-testimonies .testimonies-item__content {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.single-realisation .realisations__project-item--big:hover img {
  transform: none;
}

/* ==========================================================
HOME
========================================================== */

.section__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 1rem;
}

.section__header-title {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 300;
  font-family: 'Source Code Pro', monospace;
  margin-left: -3px;
}

.section__header-btn {
  background-color: var(--lightgray);
}

#hero {
  background: var(--darkgreen);
  color: var(--white);
  height: 100vh;
  display: flex;
  min-height: 700px;
  padding-top: 5rem;
  padding-bottom: 1rem;
  margin-bottom: 4rem;
}

.hero__inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 0 auto;
}

.hero__body {
  flex: 1;
  display: flex;
}

.hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9rem;
  width: 100%;
  align-items: center;
}

.hero__title {
  margin: 0;
  font-size: 8rem;
  font-family: 'Source Code Pro', monospace;
  font-weight: 400;
  line-height: 10rem;
  margin-left: -0.5rem;
}

.hero__title-line {
  display: block;
}

.hero__col--text {
  font-size: 1.5rem;
  line-height: 2rem;
}

.hero__lead {
  margin-bottom: 1rem;
}

.hero__lead h1 {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 2rem;
}

.hero__text {
  margin-bottom: 3rem;
  font-weight: 400;
}

.hero__text p {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
}

.hero__text p:not(:last-child) {
  margin-bottom: 1rem;
}

.hero__btn {
  color: var(--darkgreen);
  transition: 0.3s ease-in-out;
}

.hero__btn:hover {
  background-color: #00cba8;
  color: var(--white);
}

.hero__btn:hover {
}

.hero__footer {
}

.hero__clients-title {
}

.hero__clients-title p {
  margin: 0;
}

.hero__logos {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: 100%;
  align-items: center;
}

.hero__logos .hero__logos-container {
  flex: 1 1 0;
  min-width: 0;
}

.hero__logos img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

#home-services {
  color: var(--black);
  margin-bottom: 8rem;
}

.home-services__header {
}

.home-services__title {
}

.home-services__btn {
}

.home-services__grid {
  display: grid;
  gap: 1rem;
  justify-content: space-between;
  grid-template-columns: 2fr 2fr 2fr;
}

.home-services__item {
}

.home-services__item img {
  padding: 3rem;
}

.home-services__item-content {
  padding: 0rem 1rem 1rem 1rem;
}

.home-services__item-title {
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 3.25rem;
  line-height: 3.75rem;
  padding: 1rem 1rem 0rem 1rem;
}

.home-services__description {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
}

.home-services__accordion {
}

.home-services__accordion-item {
  padding: 0rem 0 0.5rem 0;
  border-bottom: 1px solid;
  font-size: 1rem;
  line-height: 1.5rem;
  border-top: none;
}

.home-services__accordion-item:last-child {
  border-bottom: none;
}
.home-services__accordion-item:last-child .home-services__accordion-content {
  border-bottom: none;
}
.home-services__accordion-header {
  margin-bottom: 0;
  padding: 0.5rem 0;
  cursor: initial;
}
.home-services__accordion-title {
}

.home-services__accordion-content {
  /*! font-size: 0.9rem; */
  /*! padding-bottom: 0.5rem; */
}

.home-services__accordion-content ul {
}

#home-realisations {
  color: var(--black);
  margin-bottom: 6rem;
}

#home-realisations .realisations__project-item--big {
  margin-bottom: 1rem;
}

#home-testimonies {
  color: var(--white);
  background-color: var(--darkgreen);
  padding-top: 5rem;
  padding-bottom: 5rem;
  margin-bottom: 5rem;
}

#home-testimonies .home-testimonies__header {
  margin-bottom: 5rem;
}

#home-testimonies .home-testimonies__title {
}

#home-testimonies .testimonies__grid {
  display: grid;
  gap: 8rem;
  justify-content: space-between;
  grid-template-columns: 2fr 2fr;
}
.testimonies-item {
  /*! font-size: 1.25rem; */
}
.testimonies-item__quotes {
  font-family: arial black;
  color: var(--mediumgreen);
  width: 6rem;
  margin-bottom: 1rem;
}

.testimonies-item__text {
  margin-bottom: 3rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.testimonies-item__text ul {
  margin-bottom: 1rem;
  margin-left: 1.5rem;
}

.testimonies-item__text p {
  margin-bottom: 1rem;
}

.testimonies-item__footer {
  text-align: right;
}

.testimonies-item__footer-name {
  text-transform: uppercase;
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
}

.testimonies-item__footer-info {
  font-size: 1rem;
  line-height: 1.25rem;
}

.testimonies-item__footer-info p {
}

#home-a-propos {
  color: var(--black);
  margin-bottom: 6rem;
}

#home-a-propos .home-a-propos__header {
}

#home-a-propos .home-a-propos__title {
}

#home-a-propos .home-a-propos__btn {
}

#home-a-propos .home-a-propos__content {
  display: grid;
  grid-template-columns: 2.25fr 1.75fr;
  gap: 2rem;
}

#home-a-propos .home-a-propos__content-img {
}

#home-a-propos .home-a-propos__content-img img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 1rem;
}

#home-a-propos .home-a-propos__content-txt {
  /*! column-count: 2; */
  /*! column-gap: 1rem; */
}

#home-a-propos .home-a-propos__content-txt p {
  break-inside: avoid;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 400;
}

#home-faq {
  color: var(--black);
  margin-bottom: 6rem;
}

.home-faq__accordion-item:last-child {
  border-bottom: none;
}

.home-faq__accordion-item .accordion-content {
  margin-bottom: 0.5rem;
  padding-left: 50%;
  padding-right: 1rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

/* ==========================================================
PAGES
========================================================== */

#page-header {
  margin-top: 6rem;
  margin-bottom: 6rem;
}

.page-header__title {
  font-family: 'Source Code Pro', monospace;
  font-weight: 300;
  text-transform: uppercase;
  font-size: 4rem;
  line-height: 4rem;
}

/* ==========================================================
PAGE REALISATIONS
========================================================== */

#page-header.page-header--realisations {
  margin-bottom: 2rem;
}

section#realisations {
  margin-bottom: 6rem;
}

.page-header__filters {
  width: calc((100% - 2rem) / 3);
  margin-left: auto;
}

.page-header__filters-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) 1rem;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.75rem;
  line-height: 1rem;
}

.page-header__filters-item {
  min-width: 0;
}

.page-header__filters-item--reset {
  width: 1rem;
}

.page-header__filters-item .filter {
  width: 100%;
  text-transform: uppercase;
  border: 1px solid;
  display: inline-block;
  background-color: transparent;
  height: 26px;
  border-radius: 0.35rem;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-color: black !important;
  color: black !important;
}

.page-header__filters select:focus {
  outline: none;
  box-shadow: none;
}

.page-header__filters select {
  -webkit-tap-highlight-color: transparent;
}

.page-header__filters select:focus-visible {
  outline: none;
  box-shadow: none;
}

.page-header__filters-label {
  font-size: 0.75rem;
  margin-bottom: 0.25rem;
  font-family: 'Source Code Pro', monospace;
}

#reset.no-reset {
  pointer-events: none;
}

#reset {
  width: 1rem;
  height: auto;
  display: block;
  cursor: pointer;
}

#realisations .realisations__project-grid {
  /*! margin-bottom: 6rem; */
}

/* ==========================================================
PAGES CONTENU
========================================================== */

.page-contenu__section--intro p {
  font-weight: 500;
  font-size: 2rem;
  line-height: 2.5rem;
  padding-left: calc(100vw / 6);
}

.page-contenu__section--intro,
.page-contenu__section--text,
.page-contenu__section--text-and-image,
.page-contenu__section--image,
.page-contenu__section--video {
  margin: 0rem calc(100vw / 6) 6rem calc(100vw / 6);
}

.page-contenu__section--intro {
  margin-bottom: 6rem;
}

.page-contenu__section--intro,
.page-contenu__section--text,
.page-contenu__section--text-and-image,
.page-contenu__section--video {
  padding: 0rem 0 0.5rem 0;
}

.page-contenu__section--text-and-image__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.page-contenu__section .section__header-title {
  margin-bottom: 3rem;
}

.page-contenu__section--text-and-image__content--image {
}

.page-contenu__section--text-and-image__content--text {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.page-contenu__section--text__title {
  font-weight: 700;
  font-family: 'Source Code Pro', monospace;
  text-transform: uppercase;
  display: grid;
  grid-template-columns: 3fr 1fr;
  line-height: 1rem;
  align-items: center;
  align-content: center;
  padding: 0.5rem 0 0rem 0;
  border-top: 1px solid;
  margin-bottom: 1rem;
}

.page-contenu__section--text__content {
  padding-left: calc(100vw / 6);
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.page-contenu__section--text__content a {
  text-underline-offset: 4px;
  text-decoration-skip-ink: auto;
  text-decoration: underline;
  text-decoration-thickness: auto;
  text-decoration-thickness: 1px;
  color: var(--black);
}

.page-contenu__section--text__content .link__btn,
.page-contenu__section--text-and-image__content .link__btn {
  margin-top: 3rem;
}

.page-contenu__section--text__content p,
.page-contenu__section--text-and-image p,
.page-contenu__section--color__content--text p,
.page-contenu__section--color-text__content--text--item p {
  margin-bottom: 1rem;
}

.page-contenu__section--text__content ul,
.page-contenu__section--text__content ol,
.page-contenu__section--text-and-image ul,
.page-contenu__section--text-and-image ol,
.page-contenu__section--color__content--text ul,
.page-contenu__section--color__content--text ol,
.page-contenu__section--color-text__content--text--item ul,
.page-contenu__section--color-text__content--text--item ol {
  margin-bottom: 1rem;
}

.page-contenu__section--text__content ul li,
.page-contenu__section--text__content ul ol,
.page-contenu__section--text-and-image__content ul li,
.page-contenu__section--text-and-image__content ul ol {
  margin-left: 1.5rem;
}

.page-contenu__section--text__content blockquote,
.page-contenu__section--text-and-image blockquote,
.page-contenu__section--color__content--text blockquote,
.page-contenu__section--color-text__content--text--item blockquote {
  font-size: 3.5rem;
  line-height: 4rem;
  font-weight: 200;
  margin-top: 2rem;
}

.page-contenu__section--color,
.page-contenu__section--services,
.page-contenu__section--realisations {
  margin-bottom: 3rem;
}

.page-contenu__section--color,
.page-contenu__section--color-text {
  padding: 3rem 2rem;
  margin-bottom: 3rem;
}

.page-contenu__section--color__content--text {
  width: 50%;
  margin-top: 3rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.page-contenu__section--color h2,
.page-contenu__section--color-text h2 {
  font-size: 3rem;
  text-transform: uppercase;
  font-weight: 300;
  font-family: 'Source Code Pro', monospace;
  margin-bottom: 3rem;
}

.page-contenu__section--image {
  padding: 0;
}

.page-contenu__section--color-text img {
  margin-bottom: 1rem;
}

.page-contenu__section--color-text__content--text {
  column-count: 2;
  column-gap: 3rem;
  margin-bottom: 0rem;
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.page-contenu__section--color-text__content--text
  .page-contenu__section--color-text__content--text--item {
  break-inside: avoid;
}

.page-contenu__section--color-text__content--text
  .page-contenu__section--color-text__content--text--item
  ul,
.page-contenu__section--color-text__content--text
  .page-contenu__section--color-text__content--text--item
  ol {
  margin-left: 1.5rem;
}

.page-contenu__section--color-text__content--outro {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.page-contenu__section--color-text__content--outro a {
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-skip-ink: auto;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.page-contenu__section--color-text__content--outro ul {
  list-style: none;
  padding-left: 0;
}

.page-contenu__section--color-text__content--outro ul li {
  position: relative;
  padding-left: 1.25rem;
  color: white;
}

.page-contenu__section--color-text__content--outro ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 0.75rem;
  height: 0.75rem;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M5.87,12l-1.1-1.23,4.19-3.87H0v-1.79h8.96L4.77,1.23l1.1-1.23,6.13,5.96v.09l-6.13,5.95Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M5.87,12l-1.1-1.23,4.19-3.87H0v-1.79h8.96L4.77,1.23l1.1-1.23,6.13,5.96v.09l-6.13,5.95Z'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}

.page-contenu__section video {
  width: 100%;
}

.video-player {
  position: relative;
  width: 100%;
}

.video-player__video {
  display: block;
  width: 100%;
  height: auto;
}

.video-player__poster {
  position: absolute;
  inset: 0;
  z-index: 2;
  cursor: pointer;
}

.video-player__thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-player__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.video-player.is-playing .video-player__poster {
  display: none;
}

/* ==========================================================
SECTION CONTACT
========================================================== */

.section-contact {
  margin-bottom: 6rem;
}

.section-contact__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.section-contact__text {
  font-size: 1.75rem;
  line-height: 2.25rem;
  font-weight: 400;
}

.section-contact__text p:not(:last-child) {
  margin-bottom: 1.75rem;
}

.section-contact__form {
  width: 100%;
}

.contact-form__response--success {
  width: 100%;
  color: var(--black);
  border-bottom: 1px solid var(--mediumgreen);
  border-top: 1px solid var(--mediumgreen);

  background-color: #f0f2f1;
  padding: 2.25rem 3rem;
  font-size: 1.75rem;
  line-height: 2.25rem;
  font-weight: 400;
}

.contact-form__response--success h2 {
  color: var(--mediumgreen);
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-form__response--success p {
  margin-bottom: 6rem;
}

.contact-form__response--success p,
.contact-form__response--success .signature {
}

.contact-form__response--success .signature {
  text-align: right;
}

/* ==========================================================
CONTACT FORM
========================================================== */

.section-contact .wpcf7 {
  width: 100%;
}

.section-contact .wpcf7-form p {
  margin: 0;
}

.contact-form__honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.section-contact .contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.section-contact .contact-form__field {
  margin-bottom: 1.5rem;
}

.section-contact .contact-form__field--half {
  width: calc(50% - 0.5rem);
}

.section-contact .contact-form__field label {
  margin-bottom: 0.5rem;
  font-weight: 700;
  font-family: 'Source Code Pro', monospace;
  text-transform: uppercase;
  line-height: 1rem;
  display: block;
  color: var(--mediumgreen);
}

.section-contact .contact-form__field input,
.section-contact .contact-form__field textarea {
  width: 100%;
  color: var(--black);
  font-size: 1rem;
  line-height: 1.25rem;
  padding: 0.5rem;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--mediumgreen);
  background-color: #f0f2f1;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #000;
}

.section-contact .contact-form__field textarea {
  min-height: 12rem;
  resize: none;
}

.section-contact input::placeholder,
.section-contact textarea::placeholder {
  color: var(--black);
  opacity: 1;
}

.section-contact .contact-form__submit button {
  border: none;
  background-color: var(--mediumgreen);
  color: var(--white);
  font-family: 'Source Code Pro', monospace;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 1.15rem;
  line-height: 1.15rem;
  padding: 0.55rem 0.75rem 0.5rem 0.75rem;
}

/* ==========================================================
PRE FOOTER
========================================================== */

#pre-footer {
  background: var(--lightgreen);
  color: var(--white);
  padding: 3rem 2rem 3rem 2rem;
}
.pre-footer__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0rem;
  width: 100%;
}

.pre-footer__title {
  margin: 0;
  font-size: 3rem;
  line-height: 3.75rem;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
}

.pre-footer__title-line {
  display: block;
}

.pre-footer__col--text {
}

.pre-footer__lead {
  margin-bottom: 1rem;
  padding-top: 0.2em;
}

.pre-footer__lead p {
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 2rem;
}

.pre-footer__text {
  margin-bottom: 3rem;
}

.pre-footer__text p {
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: 300;
}

.pre-footer__btn {
  color: var(--lightgreen);
}

.pre-footer__btn:hover {
  background-color: var(--darkgreen);
  color: var(--white);
}

/* ==========================================================
FOOTER
========================================================== */

#site-footer {
  background-color: var(--mediumgreen);
  color: var(--white);
  padding: 2rem 2rem 0.75rem 2rem;
}

.site-footer__main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.site-footer__brand {
  font-family: 'Source Code Pro', monospace;
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-weight: 900;
  text-transform: lowercase;
}

.site-footer__body {
  justify-content: space-between;
  align-items: flex-start;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0rem;
  width: 100%;
}

.site-footer__baseline {
}

.site-footer__baseline img {
  max-width: 250px;
}

.site-footer__cols {
  flex: 0 0 50%;
  display: grid;
  grid-template-columns: 0.75fr 1.5fr 1fr 0.5fr;
  gap: 3rem;
  font-size: 0.8rem;
  line-height: 1.15rem;
}

.site-footer__title {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.8rem;
  line-height: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.site-footer__list,
.site-footer__socials,
.site-footer__legal {
  list-style: none;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.site-footer a:hover {
  text-underline-offset: 4px;
  text-decoration-skip-ink: auto;
  text-decoration: underline;
  text-decoration-thickness: 0.5px;
}

.site-footer__list {
  font-size: 0.8rem;
  line-height: 1.25rem;
}

.site-footer__list li:not(:last-child) {
  /*! margin-bottom: 0.5rem; */
}

.site-footer__address {
  /*! font-size: 0.75rem; */
  /*! line-height: 1rem; */
}

.site-footer__address p:not(:last-child) {
  margin-bottom: 1rem;
}

.site-footer__address strong {
  font-weight: 700;
}

.site-footer__address em {
  font-style: italic;
}

.site-footer__socials {
  display: flex;
  gap: 0.75rem;
}

.site-footer__socials a {
  display: flex;
  width: 1.25rem;
}

.site-footer__bottom {
  align-items: center;
  border-top: 1px solid var(--white);
  margin-top: 2rem;
  padding-top: 0.5rem;
  font-size: 0.8rem;
  line-height: 1rem;
  display: grid;
  gap: 1rem;
  justify-content: space-between;
  grid-template-columns: 2fr 2fr 2fr;
}

.site-footer__legal {
  display: flex;
  gap: 0.25rem;
}

.site-footer__legal li:not(:last-child)::after {
  content: '|';
  margin-left: 0.25rem;
}

.site-footer__copyright {
  text-align: center;
}

.site-footer__credits {
  text-align: right;
}

.site-footer__bottom a {
  text-decoration: underline;
  color: inherit;
  text-underline-offset: 4px;
  text-decoration-skip-ink: auto;
  text-decoration: underline;
  text-decoration-thickness: auto;
  text-decoration-thickness: 1px !important;
}

.site-footer__bottom a:hover {
  border-bottom: none !important;
}

.mobile {
  display: none;
}

@media (max-width: 991px) {
  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }

  html {
    font-size: 12px;
  }

  section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section__header {
    display: block;
    margin-bottom: 1rem;
  }

  .section__header-title {
    margin-left: 0px;
    margin-bottom: 0;
  }

  .section__header-btn,
  .link-large__btn {
    background-color: var(--lightgray);
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .section__header-btn.mobile {
    display: block;
    width: fit-content;
    margin-left: auto;
  }

  /* ==========================================================
   HEADER
   ========================================================== */
  .site-header {
    padding: 1rem;
  }

  /* ==========================================================
MENU OVERLAY
========================================================== */

  #menu-overlay__open {
    width: 24px;
    filter: brightness(0) saturate(100%);
  }

  .color-header #menu-overlay__open {
    width: 24px;
    filter: none;
  }

  #menu-overlay {
    position: fixed;
    z-index: 200;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--darkgreen);
    color: var(--white);
    padding: 1rem;
    transform: translateX(-100%);
    /* transition: transform 0.4s ease-in-out; */
  }

  body.menu-opened {
    overflow: hidden;
  }

  body.menu-opened #menu-overlay {
    transform: translateX(0);
  }

  .menu-overlay__inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .menu-overlay__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .menu-overlay__brand {
    font-size: 1.25rem;
    line-height: 1.25rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--white);
    text-transform: lowercase;
    font-family: 'Source Code Pro', monospace;
  }

  .menu-overlay__brand:hover {
    color: var(--white);
  }

  #menu-overlay__close {
    width: 18px;
  }

  .menu-overlay__nav {
    margin-top: 3rem;
    text-transform: uppercase;
    font-family: 'Source Code Pro', monospace;
    font-size: 3rem;
    line-height: 5rem;
    font-weight: 300;
  }

  .menu-overlay__list {
    list-style: none;
  }

  .menu-overlay__list a {
    color: var(--white);
    text-decoration: none;
  }

  .menu-overlay__list a:hover,
  .menu-overlay__list a:focus,
  .menu-overlay__list a:active,
  .menu-overlay__list .current-menu-item a {
    text-underline-offset: 10px;
    text-decoration-skip-ink: auto;
    text-decoration: underline;
    text-decoration-thickness: 1px;
  }

  .menu-overlay__footer {
    margin-top: auto;
  }

  .menu-overlay__cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
    font-size: 0.8rem;
    line-height: 1.15rem;
  }

  .menu-overlay__footer .site-footer__title {
    font-family: 'Source Code Pro', monospace;
    font-size: 0.8rem;
    line-height: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1rem;
  }

  .menu-overlay__footer .site-footer__address p:not(:last-child) {
    margin-bottom: 1rem;
  }

  .menu-overlay__footer .site-footer__address strong {
    font-weight: 700;
  }

  .menu-overlay__footer .site-footer__address em {
    font-style: italic;
  }

  .menu-overlay__footer .site-footer__socials {
    list-style: none;
    display: flex;
    gap: 0.75rem;
  }

  .menu-overlay__footer .site-footer__socials a {
    display: flex;
    width: 1.25rem;
  }

  .menu-overlay__footer a {
    color: var(--white);
    text-decoration: none;
  }

  .menu-overlay__footer a:hover {
    text-underline-offset: 4px;
    text-decoration-skip-ink: auto;
    text-decoration: underline;
    text-decoration-thickness: 0.5px;
  }

  .menu-overlay__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--white);
    margin-top: 0;
    padding-top: 0.5rem;
    font-size: 0.8rem;
    line-height: 1rem;
  }

  .menu-overlay__bottom .site-footer__legal {
    list-style: none;
    display: flex;
    gap: 0.25rem;
  }

  .menu-overlay__bottom .site-footer__legal li:not(:last-child)::after {
    content: '|';
    margin-left: 0.25rem;
  }

  .menu-overlay__bottom .site-footer__copyright {
    text-align: right;
  }

  /* ==========================================================
   HOME
   ========================================================== */

  #hero {
    height: auto;
  }

  .hero__inner {
    display: block;
  }

  .hero__body {
    display: block;
    margin-bottom: 3rem;
  }

  .hero__content {
    display: block;
  }

  .hero__content img {
    margin-bottom: 2.5rem;
  }

  .hero__title {
    font-size: 3.5rem;
    line-height: 4rem;
    margin-left: 0rem;
  }

  .hero__clients-title p {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .hero__logos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0rem 1rem;
  }

  #home-services {
    color: var(--black);
    margin-bottom: 4rem;
  }

  .home-services__grid {
    display: block;
    margin-bottom: 2rem;
  }

  .home-services__item {
    margin-bottom: 1rem;
  }

  #home-a-propos {
    margin-bottom: 4rem;
  }

  #home-a-propos .home-a-propos__content {
    display: block;
  }

  #home-realisations {
    margin-bottom: 4rem;
  }

  .realisations__project-item--big {
    aspect-ratio: 4/5;
  }

  .realisations__project-grid,
  .realisations__project-grid-no-results {
    display: block;
  }

  #home-realisations .realisations__project-grid {
    margin-bottom: 2rem;
  }

  .realisations__project-item,
  .no-result-item {
    margin-bottom: 1rem;
  }

  #home-testimonies {
    padding-top: 4rem;
    padding-bottom: 2rem;
    margin-bottom: 4rem;
  }

  #home-testimonies .home-testimonies__header {
    margin-bottom: 4rem;
  }

  #home-testimonies .testimonies__grid {
    display: block;
  }

  .testimonies-item__text {
    margin-bottom: 1rem;
  }

  .testimonies-item {
    margin-bottom: 2rem;
  }

  .accordion-header {
    align-items: start;
    font-size: 1.25rem;
    line-height: 1.75rem;
    grid-template-columns: 3.75fr 0.25fr;
    font-weight: 600;
  }

  .accordion-content p {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .accordion-arrow {
    margin-top: 4px;
  }

  #home-faq {
    margin-bottom: 2rem;
  }

  .realisations__project-item-title {
    padding-right: 1rem;
  }

  .realisations__project-item-description {
    font-size: 1.25rem;
    line-height: 1.5rem;
    padding-right: 1rem;
  }

  .home-faq__accordion-item .accordion-content {
    padding-left: 0%;
  }

  ul.realisations-cat-list .realisations-cat-list__name {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  ul.realisations-cat-list.realisations-cat-list--complete {
    flex-direction: column;
  }

  ul.realisations-cat-list.realisations-cat-list--complete span {
    display: none;
  }

  /* ==========================================================
   PRE FOOTER
   ========================================================== */

  #pre-footer {
    padding: 3rem 1rem 3rem 1rem;
  }

  .pre-footer__title {
    margin-bottom: 3rem;
  }

  .pre-footer__lead {
    margin-bottom: 3rem;
  }

  .pre-footer__content {
    display: block;
  }

  /* ==========================================================
  PAGE CONTENU
   ========================================================== */

  .page-contenu__section--intro,
  .page-contenu__section--text,
  .page-contenu__section--text-and-image,
  .page-contenu__section--image,
  .page-contenu__section--video {
    margin: 0rem 1rem 3rem 1rem;
  }

  .page-contenu__section--text__title {
    font-size: 1.5rem;
    line-height: 2rem;
    display: block;
  }

  .page-contenu__section--text__content {
    padding-left: 0;
    font-size: 1.5rem;
    line-height: 2rem;
  }

  .page-contenu__section--intro p {
    padding-left: 0;
  }

  .page-contenu__section--color,
  .page-contenu__section--color-text {
    padding: 3rem 1rem;
  }

  .page-contenu__section--color-text__content--text--item:not(:last-child) {
    margin-bottom: 2rem;
  }

  .page-contenu__section--text-and-image__content {
    display: block;
  }

  .page-contenu__section--text-and-image__content img {
    margin-bottom: 1rem;
  }

  .page-contenu__section--color-text__content--text {
    column-count: 1;
    font-size: 1.5rem;
    line-height: 2rem;
    margin-top: 2rem;
  }

  .page-contenu__section .section__header-title {
    margin-bottom: 1rem;
  }

  .page-contenu__section .realisations__project-grid {
    margin-bottom: 2rem;
  }

  /* ==========================================================
   CONTACT
   ========================================================== */

  .section-contact__content {
    display: block;
  }

  .section-contact__text {
    margin-bottom: 3rem;
  }

  .section-contact .contact-form__row {
    display: block;
  }

  .section-contact .contact-form__field--half {
    width: 100%;
  }

  .section-contact .contact-form__field input,
  .section-contact .contact-form__field textarea {
    font-size: 16px;
    line-height: initial;
  }

  .section-contact .contact-form__field label {
    font-size: 1.25rem;
    line-height: 1.5rem;
  }

  .section-contact .contact-form__submit button {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .contact-form__response--success {
    padding: 1.5rem;
  }

  /* ==========================================================
   PAGE REALISATIONS
   ========================================================== */

  #page-header.page-header--realisations .page-header__title {
    margin-bottom: 2rem;
  }

  .page-header__filters {
    width: 100%;
    margin-bottom: 2rem;
  }

  .page-header__filters-item .filter {
    font-size: 1rem;
    padding: 0.15rem 0.5rem;
    height: 23px;
  }

  /* ==========================================================
   SINGLE REALISATION
   ========================================================== */
  #modal__open {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: fixed;
    z-index: 199;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  body.modal-single-opened #modal__open {
    background-color: black !important;
  }

  #modal__open img {
    width: 0.65rem;
    height: 0.65rem;
    display: block;
    filter: brightness(0) saturate(100%) invert(100%) sepia(33%) saturate(0%)
      hue-rotate(99deg) brightness(111%) contrast(101%);
    transition: all 0.3s ease-in-out;
  }

  body.modal-single-opened #modal__open img {
    transform: rotate(45deg);
    width: 0.75rem;
    height: 0.75rem;
  }

  .realisations__project-item-header--grid-absolute {
    width: calc(100% - 2rem);
    left: 1rem;
  }

  .realisation-content__text--mobile {
    overflow: unset;
    position: fixed;
    top: 0;
    background-color: white;
    height: 100vh;
    width: 100vw;
    z-index: 101;
    left: 0;
    overflow: auto;
    cursor: initial;
    display: none;
  }

  body.modal-single-opened .realisation-content__text--mobile {
    display: block;
  }

  .realisation-content__text--mobile
    ul.realisations-cat-list.realisations-cat-list--complete {
    flex-direction: initial;
  }

  .realisation-content__text--mobile
    ul.realisations-cat-list.realisations-cat-list--complete
    span {
    display: block;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }

  .realisation-content__text {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .realisations-results__list
    .realisations-results__item
    .realisations-results__text {
    font-size: 1rem;
    line-height: 1.25rem;
  }

  #modal__close {
    width: 18px;
    filter: brightness(0) saturate(100%);
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 100;
  }

  .realisation-content__text--mobile .realisation-content__text-inner {
    opacity: 1;
    transition: opacity 0.3s ease;
    height: auto;
    overflow: unset;
    padding: 1rem;
  }

  .realisation-content__text--mobile .realisations__project-item-header {
    border-top: 0;
    padding-top: 0;
  }

  .realisation-content__text--mobile
    .realisations__project-item-header
    .realisations__project-item-title,
  .realisation-content__text--mobile
    .realisations__project-item-header
    .realisations__project-item-description {
    opacity: 1;
    padding-left: 0;
  }

  .realisation-content__text--mobile
    .realisations__project-item-header
    .realisations__project-item-title {
  }

  .realisation-content__text--mobile .realisations-partners {
    border-bottom: 0px solid;
  }

  .realisation-content__text--mobile
    .realisations-partners
    .realisations-partners__item:last-child {
    margin-bottom: 0;
  }

  /* ==========================================================
   FOOTER
   ========================================================== */

  #site-footer {
    padding: 2rem 1rem 0.75rem 1rem;
  }

  .site-footer__body {
    display: block;
  }

  .site-footer__brand {
    margin-bottom: 3rem;
  }

  .site-footer__baseline {
    margin-bottom: 3rem;
  }

  .site-footer__cols {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .site-footer__col--flex-column {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .site-footer__baseline img {
  }

  .site-footer__bottom {
    display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: start;
    align-items: unset;
  }

  .site-footer__legal {
    display: block;
    gap: 0.25rem;
  }

  .site-footer__copyright {
    text-align: left;
    order: 3;
  }

  .site-footer__credits {
    text-align: left;
    order: 2;
  }

  .site-footer__bottom a {
    text-decoration: none !important;
    color: inherit;
    text-underline-offset: 4px;
    text-decoration-skip-ink: auto;
    text-decoration: underline;
    text-decoration-thickness: auto;
    text-decoration-thickness: auto;
    text-decoration-thickness: 0px !important;
  }
}
