/*   
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;
}

.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;
}

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;
  /*! font-size: 0.90rem; */
  line-height: 1rem;
  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 {
  display: block;
}
.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: 700;
  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 {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-top: 1px solid;
  border-bottom: 1px solid;
  opacity: 1;
  transition: opacity 0.2s ease;
}

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-header {
  /*! border-bottom: 1px solid; */
  padding-bottom: 0.5rem;
  /*! border-top: 1px solid; */
}
.realisations__project-item-header--grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 1rem;
  z-index: 1;
  overflow: visible;
}

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

  height: calc(100% + 5rem);

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

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

  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.75) 30%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0.25) 80%,
    rgba(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;
}

.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.25rem;
}

.realisations__project-item-description {
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  border-bottom: 1px solid;
  padding-bottom: 0.5rem;
}

.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(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.75) 30%,
    rgba(255, 255, 255, 0.5) 60%,
    rgba(255, 255, 255, 0.25) 80%,
    rgba(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 {
  /*! list-style: none; */
  /*! display: flex; */
  /*! gap: 0.5rem; */
  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 {
  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;
  background-color: var(--lightgray);
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
}

.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%);
  transform: rotate(45deg);
  transition: all 0.3s ease-in-out;
}

.toggle-realisation.is-opened img {
  transform: rotate(90deg);
  width: 0.75rem;
  height: 0.75rem;
}

#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: 6rem;
}

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

.realisation-content__text {
  overflow: hidden;
}

.realisation-content__text-inner {
  opacity: 0;
  transform: translateX(-2rem);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  height: 0;
}

.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;
}

.realisation-content__text .realisations-cat-list {
  margin-bottom: 2rem;
  /*! border-top: 1px solid; */
  /*! margin-top: 0.5rem; */
  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 .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 {
  margin-bottom: 1rem;
}

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

#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-split .realisation-content__text-inner {
  opacity: 1;
  transform: translateX(0);
  height: auto;
}

#realisation-testimonies {
  color: var(--white);
  background-color: var(--darkgreen);
  padding-top: 0;
  padding-bottom: 5rem;
  margin-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;
}

/* ==========================================================
   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: 3rem;
  width: 100%;
  align-items: start;
}

.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 {
  padding-top: 2.2em;
  font-size: 1.5rem;
  line-height: 2rem;
}

.hero__lead {
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero__lead p {
  /*! font-weight: 700; */
}

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

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

.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 {
  margin-bottom: 1rem;
}

.hero__clients-title p {
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.5rem;
  font-weight: 400;
}

.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 {
  background-color: var(--lightgray);
  border-bottom: 1px solid;
  border-top: 1px solid;
}
.home-services__item-image-container {
  aspect-ratio: 4/3;
  /*! overflow: hidden; */
}

.home-services__item-image-container img {
  width: 100%;
  height: auto;
}

.home-services__item-content {
  padding: 1rem 1rem 0rem 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 5rem 1rem;
}

.home-services__description {
  font-size: 1.5rem;
  line-height: 2rem;
  font-weight: 500;
  border-bottom: 1px solid;
  padding-bottom: 2rem;
}

.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;
}
.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%;
}

/* 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: 4.5rem;
  line-height: 4.5rem;
}

/* 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;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  line-height: 0.75rem;
  font-weight: 600;
  padding: 0 0.5rem;
  background-color: transparent;
  height: 26px;
}

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

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

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

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

.realisations__project-grid .realisations__project-item {
}

/* 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 {
  margin: 0rem calc(100vw / 6) 3rem calc(100vw / 6);
}

.page-contenu__section--intro,
.page-contenu__section--text,
.page-contenu__section--text-and-image {
  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: 1rem;
}

.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;
  cursor: pointer;
  align-items: center;
  align-content: center;
  margin-bottom: 0;
  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 .link__btn,
.page-contenu__section--text-and-image__content .link__btn {
  margin-top: 3rem;
}

.page-contenu__section--text__content p:not(:last-of-type),
.page-contenu__section--text-and-image p:not(:last-of-type),
.page-contenu__section--color__content--text p:not(:last-of-type),
.page-contenu__section--color-text__content--text--item p:not(:last-of-type) {
  margin-bottom: 1rem;
}

.page-contenu__section--text__content ul:not(:last-of-type),
.page-contenu__section--text__content ol:not(:last-of-type),
.page-contenu__section--text-and-image ul:not(:last-of-type),
.page-contenu__section--text-and-image ol:not(:last-of-type),
.page-contenu__section--color__content--text ul:not(:last-of-type),
.page-contenu__section--color__content--text ol:not(:last-of-type),
.page-contenu__section--color-text__content--text--item ul:not(:last-of-type),
.page-contenu__section--color-text__content--text--item ol:not(:last-of-type) {
  margin-bottom: 1rem;
}

.page-contenu__section--text__content ul li,
.page-contenu__section--text__content ul ol {
  margin-bottom: 0.5rem;
  margin-left: 2rem;
}

.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__content--text {
  column-count: 2;
  column-gap: 3rem;
  margin-bottom: 3rem;
  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--outro {
  font-size: 1rem;
  line-height: 1.5rem;
}

.page-contenu__section--color-text__content--outro a {
  color: inherit;
  text-decoration: underline;
}

/* ==========================================================
   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
   ========================================================== */

.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;
}

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

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(--lightgray);
  color: var(--black);
  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-family: 'Source Code Pro', monospace;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 3rem;
  line-height: 3.75rem;
}

.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: 700;
  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 {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  font-family: 'Source Code Pro', monospace;
  font-size: 4rem;
  line-height: 4.75rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.site-footer__baseline span {
  display: block;
}

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

.site-footer__title {
  font-family: 'Source Code Pro', monospace;
  font-size: 0.75rem;
  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.75rem;
  line-height: 0.75rem;
}

.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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--white);
  margin-top: 2rem;
  padding-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

.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: right;
}
