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

:root {
  --swiper-theme-color: #595153;
  --swiper-scrollbar-size: 5px;
}
/* Gestion de la taille de la police */
html {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 14px;
  }
}

@media screen and (min-width: 1024px) {
  html {
    font-size: 16px;
  }
}
body,
button,
input,
select,
optgroup,
textarea {
  font-family: "poppinsextralight";
  color: #595153;
  letter-spacing: 0.025em;
}
a,
a:hover,
a:visited {
  color: #595153;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  line-height: 1.2;
}
.container-type {
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .container-type {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px;
}
@media screen and (min-width: 768px) {
  .site-header {
    padding: 30px;
    padding-bottom: 0;
  }
}
.site-branding {
  float: left;
  position: relative;
  z-index: 801;
}
.custom-logo-link img {
  height: 66px;
  width: auto;
}
.menu-toggle {
  display: block;
  float: right;
  appearance: none;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  position: relative;
  z-index: 801;
  padding: 0;
  transition: transform 0.25s ease;
}
.toggled .menu-toggle {
  transform: rotate(45deg);
}
.menu-dplusb-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* height: 0; */
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-color: #f4f0e8;
  z-index: 800;
  display: flex;
  justify-content: center;
  opacity: 0;
  transition: height 0.25s ease, clip-path 0.5s ease-out,
    opacity 0.1s ease-out 0.5s;
  clip-path: circle(32px at calc(100% - 43px) 43px);
}
.main-navigation.toggled .menu-dplusb-container {
  /* max-height: none;
  height: 100vh;
  height: 100dvh; */
  opacity: 1;
  /* transition: all 0.75s ease; */
  transition: clip-path 0.5s ease-in 0.1s, opacity 0.1s ease-in;
  clip-path: circle(200% at calc(100% - 43px) 43px);
}
@media screen and (min-width: 768px) {
  .menu-dplusb-container {
    clip-path: circle(32px at calc(100% - 63px) 63px);
  }
  .main-navigation.toggled .menu-dplusb-container {
    clip-path: circle(200% at calc(100% - 63px) 63px);
  }
}

.menu-dplusb-container ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 2vh;
  list-style: none;
  width: fit-content;
  margin: auto;
  opacity: 0;
  padding-top: 75px;
  padding-left: 0;
}
.main-navigation.toggled .menu-dplusb-container ul {
  opacity: 1;
}

.menu-dplusb-container ul li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.main-navigation.toggled .menu-dplusb-container ul li:nth-child(1) {
  transition-delay: 0.4s;
  grid-area: 1 / 1 / 2 / 3;
}
.main-navigation.toggled .menu-dplusb-container ul li:nth-child(2) {
  transition-delay: 0.55s;
  grid-area: 2 / 1 / 3 / 3;
}
.main-navigation.toggled .menu-dplusb-container ul li:nth-child(3) {
  transition-delay: 0.7s;
  grid-area: 3 / 1 / 4 / 3;
}
.main-navigation.toggled .menu-dplusb-container ul li:nth-child(4) {
  transition-delay: 0.85s;
}
.main-navigation.toggled .menu-dplusb-container ul li:nth-child(5) {
  transition-delay: 0.85s;
}

.menu-dplusb-container ul li a {
  display: inline-block;
  font-size: 3.5em;
  transition: transform 0.25s ease;
}

.menu-dplusb-container ul li:nth-child(4) a,
.menu-dplusb-container ul li:nth-child(5) a {
  font-size: 1.5em;
}
.menu-dplusb-container ul li a:hover {
  transform: translateX(5px);
}
.main-navigation.toggled .menu-dplusb-container ul li {
  opacity: 1;
  transform: translateY(0);
}
.home .site-header img,
.home .site-header svg {
  filter: brightness(5);
  transition: filter 0.25s ease;
}
.home .site-header .toggled img,
.home .site-header .toggled svg {
  filter: brightness(1);
}
.home .site-header.disableFilter img,
.home .site-header.disableFilter svg {
  filter: none;
}
/* Maximum allowed aspect ratio */
/* Select aspect ratios 1400/799 */
/* @media (min-aspect-ratio: 1400/799) { */
.swiperFront .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  height: 100dvh;
  /* transition: all 0.5s ease; */
}
.swiperFront img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: all 0.5s ease; */
}
/* } */
.caps-content-front {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  padding-top: 40px;
  max-width: 1111px;
  margin: auto;
}
.caps-content-front-G img {
  max-width: 200px;
  margin: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .caps-content-front {
    padding: 30px;
    padding-top: 100px;
    flex-direction: row;
    gap: 80px;
  }
  .caps-content-front-G img {
    max-width: 100%;
  }
  .caps-content-front-G {
    flex: 1.5;
  }
  .caps-content-front-D {
    flex: 2;
  }
}

.content-news-front {
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .content-news-front {
    padding-left: 30px;
  }
}
.content-news-front img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.caps-news-front .swiper-wrapper {
  padding-bottom: 20px;
}
.swiper-scrollbar {
  max-width: 50%;
  left: 50% !important;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .swiper-scrollbar {
    max-width: 30%;
  }
}
.site-footer {
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .site-footer {
    padding-top: 100px;
  }
}
.caps-footer-elements {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .caps-footer-elements {
    flex-direction: row;
  }
}
.caps-footer-elements ul {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
.padding-template {
  padding-left: 0;
  padding-top: 75px;
}
@media screen and (min-width: 768px) {
  .padding-template {
    padding-left: 160px;
    padding-top: 20px;
  }
}
.filtres-projets {
  display: flex;
  row-gap: 10px;
  column-gap: 25px;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.filtres-projets button {
  display: inline-block;
  padding: 5px 0px;
  background-color: #f4f0e8;
  color: #595153;
  border-radius: 0px;
  transition: background-color 0.25s ease;
  appearance: none;
  cursor: pointer;
  border: 0;
  border-bottom: 1px solid transparent;
  transition: all 0.25s ease;
}
.filtres-projets button:hover,
.filtres-projets button.is-checked {
  border-bottom: 1px solid #595153;
}
.filtres-projets button:focus {
  outline: none;
}
.grille-projets {
  margin-bottom: 20px;
}
.projet-sizer,
.projet-item {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (max-width: 579px) {
  .projet-item img {
    height: 300px !important;
    object-fit: cover;
  }
}
@media screen and (min-width: 580px) {
  .projet-sizer,
  .projet-item {
    width: calc(50% - 20px);
  }
}
@media screen and (min-width: 1200px) {
  .projet-sizer,
  .projet-item {
    width: calc(33.3333% - 20px);
  }
}
/* @media screen and (min-width: 1200px) {
  .projet-sizer,
  .projet-item {
    width: calc(25% - 20px);
  }
} */
.projet-item.en-paysage {
  width: 100%;
}
h2 {
  font-size: 1.38rem;
}
h2 span,
h3 {
  font-size: 1.1rem;
}

.projet-item a {
  display: block;
  position: relative;
  overflow: hidden;
}
.tooltip {
  position: absolute;
  /* top: 50%;
  left: 50%;*/
  transform: translate(-50%, -50%);
  background-color: #f4f0e8e4;
  color: #595153;
  border-radius: 50%;
  opacity: 0;
  display: none;
  font-size: 10px;
  line-height: 1.1;
  text-transform: uppercase;
  text-align: center;
  padding-top: 20px;
  height: 60px;
  width: 60px;
  transition: opacity 0.25s ease 1s;
  letter-spacing: 0.5px;
  font-family: "poppinsregular";
}
.image-projet img,
.image-paysage img {
  width: 100%;
  transition: all 1.05s ease;
  display: block;
}
.image-projet a:hover img,
.image-paysage a:hover img {
  transform: scale(1.05);
}

.juste-un-peu .image-projet img {
  max-height: 600px;
  overflow: hidden;
  object-fit: cover;
}
.image-paysage img {
  max-height: 500px;
  object-fit: cover;
  width: 100%;
}
.entry-content--projet {
  margin-bottom: 100px;
  margin-top: 80px;
}
@media screen and (min-width: 1200px) {
  .entry-content--projet {
    margin-left: 40vw;
    margin-right: 5vw;
  }
}
.page h1,
.blog h1,
.single-projet h1 {
  min-height: 50px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .page h1,
  .single-projet h1 {
    padding-right: 65px;
  }
}
.projet-meta {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 40px;
  margin-bottom: 20px;
}
.swiperProjet .swiper-slide {
  width: auto;
}
.swiperProjet .swiper-wrapper {
  margin-bottom: 30px;
}
.swiperProjet img {
  height: 80vh;
  display: block;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  /* une flèche vers la gauche en svg */
  content: url('data:image/svg+xml,<svg width="66" height="66" viewBox="0 0 66 66" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="33" cy="33" r="32.5" transform="rotate(-180 33 33)" stroke="white"/><path d="M37.95 47.8501L23.1 33.0001L37.95 18.1501" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  /* une flèche vers la droite en svg */
  content: url('data:image/svg+xml,<svg width="66" height="66" viewBox="0 0 66 66" fill="none" xmlns="http://www.w3.org/2000/svg"><circle cx="33" cy="33" r="32.5" stroke="white"/><path d="M28.05 18.1499L42.9 32.9999L28.05 47.8499" stroke="white" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}
.home .fond-logo {
  display: none;
}
.home .disableFilter .fond-logo {
  display: block;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: 40px;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: 40px;
}
.swiperProjet .swiper-scrollbar {
  max-width: 50%;
  left: 50% !important;
  transform: translateX(-50%);
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0;
  pointer-events: all;
}
.grille-equipe {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;

  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.grille-equipe h2 {
  margin-bottom: 5px;
}
.grille-equipe p {
  margin-top: 0;
}
.membre a:hover {
  text-decoration: underline;
}
.image-membre {
  position: relative;
  overflow: hidden;
}
.image-membre img {
  transition: opacity 0.55s ease;
}
.image-membre--survol {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.image-membre:hover .image-membre--survol {
  opacity: 1;
}
.image-membre .image-membre--normal {
  opacity: 1;
  position: relative;
  z-index: 2;
}
.image-membre:hover .image-membre--normal {
  opacity: 0;
}

.grille-clients {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 80px;
  margin-left: 40px;
  margin-right: 40px;
}
@media screen and (min-width: 1200px) {
  .grille-clients {
    max-width: 1500px;
    margin-left: auto;
    margin-right: auto;
  }
}
.client {
  display: flex;
  justify-content: center;
  align-items: center;
}
:root {
  --base: #f4f0e8;
  --bg-blend: multiply;
  --blur: 0px;
  --fg-blend: lighten;
  --foreground: #595153;
  --opacity: 1;
  --spacing: 1%;
}
.img-wrapper {
  background-color: var(--base);
  display: flex;
  flex: 1 1 100%;
  height: 100%;
  overflow: hidden;
  padding: var(--spacing);
  position: relative;
}

.img-wrapper img {
  filter: grayscale(100%) contrast(1) blur(var(--blur));
  flex: 1 0 100%;
  height: 100%;
  max-width: 100%;
  mix-blend-mode: var(--bg-blend);
  object-fit: contain;
  opacity: var(--opacity);
  position: relative;
  width: 100%;
  max-height: 155px;
}

.img-wrapper::before {
  background-color: var(--foreground);
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  mix-blend-mode: var(--fg-blend);
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.les-articles {
  max-width: 900px;
  margin: auto;
}
.les-articles h2 {
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  .les-articles {
    margin-top: 80px;
  }
  .les-articles .post {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
  }
  .les-articles .entry-meta {
    white-space: nowrap;
    text-align: right;
    text-transform: capitalize;
    padding-top: 3px;
    min-width: 170px;
  }
}
.nav-next::after {
  content: "→";
  margin-left: 10px;
}
.nav-previous::before {
  content: "←";
  margin-right: 10px;
}
.entry-content--contact {
  padding: 20px;
  max-width: 900px;
  margin: auto;
}
.entry-content--contact h2 {
  font-size: 3.25rem;
}
.entry-content a {
  text-decoration: underline;
}
.meta-footer {
  font-size: 0.75rem;
}
.caps-featured img {
  width: 100%;
  max-width: none;
  height: auto;
  max-height: 80vh;
  object-fit: cover;
}
.image-grande img {
  max-height: 82vh;
  object-fit: cover;
  min-height: 30vw;
}
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}
.caps-liens-projet {
  padding-top: 100px;
  font-size: 2rem;
  display: flex;
  justify-content: space-between;
}
.site-footer h2 {
  font-size: 2rem;
}
.page-id-34 .entry-content {
  max-width: 560px;
}
.wp-block-separator {
  border: none;
}
.nav-links {
  padding-top: 50px;
}
