@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

:root {
  --font-inter: 'Inter', sans-serif;
  --font-archivo: 'Archivo', sans-serif;
  --content-width: 1280px;
  --wide-width: 1620px;
  --gutter: 24px;
}

::after, ::before {
  box-sizing: inherit;
}

html, body {
  position: relative;
  font-size: 1em;
}

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

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd {
  margin: 0;
  padding: 0;
}

h2 {
  margin: 0.5em 0;
}

h3 {
  margin: 0.5em 0;
}

h4 {
  margin: 0.5em 0;
}

h5 {
  margin: 0.8em 0;
}

h6 {
  margin: 0.6em 0;
}

p {
  font-size: 1.1em;
  line-height: 1.4;
  margin-bottom: 1em;
  color: var(--wp--preset--color--text-sombre);
}
p > a {
  position: relative;
}
p > a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--wp--preset--color--interaction);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: ease-in-out 0.3s;
}
p > a:hover:after {
  width: 0;
}

a {
  text-decoration: none;
  line-height: 1.4;
  color: var(--wp--preset--color--text-sombre);
}

ul, ol {
  margin: 0 0 1em 16px;
}
ul > li, ol > li {
  line-height: 1.4;
  margin-bottom: 0.4em;
  font-size: 1.1em;
}

.container {
  width: 95%;
  max-width: 1600px;
  margin: auto;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 0.6rem calc(1rem + 10px) 0.6rem 1rem;
  background-color: var(--wp--preset--color--interaction);
  border: 2px solid var(--wp--preset--color--interaction);
  border-radius: 50px;
  color: #FFFFFF;
  font-weight: 700;
  transition: all 0.3s;
}
.btn:hover {
  gap: 20px;
  padding-right: 1rem;
}

.btn_border {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 0.6rem calc(1rem + 10px) 0.6rem 1rem;
  border: 2px solid var(--wp--preset--color--interaction);
  border-radius: 50px;
  color: var(--wp--preset--color--interaction);
  font-weight: 700;
  transition: all 0.3s;
}
.btn_border:hover {
  gap: 20px;
  padding-right: 1rem;
}

/* MEDIA QUERIES */
@media screen and (max-width: 768px) {
  p, ul > li, ol > li {
    font-size: 1em;
  }
}
/* =========================
   MEGA MENU AU CLIC (SIMPLE)
   Structure WP :
   ul.menu > li > a + ul.sub-menu
   ul.sub-menu > li > a + ul.sub-menu
   ========================= */
header nav {
  overflow: visible;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.8em 2.2em;
  background-color: var(--wp--preset--color--blanc);
  position: relative;
  z-index: 10;
}
header nav > #logo {
  flex: 1;
}
header nav > #logo > a {
  display: block;
  width: 320px;
  transition: all 0.3s;
}
header nav > #logo > a:hover {
  opacity: 0.6;
}
header nav button.mobile {
  display: none;
  align-items: center;
  gap: 0.8em;
  border: none;
  background-color: unset;
  cursor: pointer;
}
header nav button.mobile > p {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2em;
  margin: 3px 0 0;
  color: var(--wp--preset--color--main);
  transition: all 0.3s;
}
header nav button.mobile .barre {
  width: 35px;
  height: 4px;
  margin-bottom: 5px;
  border-radius: 15px;
  background-color: var(--wp--preset--color--main);
  transition: all 0.3s;
}
header nav button.mobile .barre:last-child {
  margin-bottom: 0;
}
header nav button.mobile:hover .barre {
  background-color: var(--wp--preset--color--interaction);
}
header nav button.mobile:hover .barre01, header nav button.mobile:hover .barre02 {
  margin-bottom: 10px;
}
header nav #nav-main {
  display: flex;
  align-items: center;
}
header nav ul.menu {
  list-style: none;
  margin: 0;
  padding: 0 2em;
  display: flex;
  align-items: center;
  gap: 2em;
}
header nav ul.menu > li {
  margin: 0;
}
header nav ul.menu > li > a {
  display: inline-block;
  padding: 10px 4px;
  text-decoration: none;
  color: var(--wp--preset--color--main);
  font-family: var(--font-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 26px;
  letter-spacing: 0px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  position: relative;
}
header nav ul.menu > li > a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--wp--preset--color--main);
  transition: width 0.18s ease;
}
header nav ul.menu > li:hover > a:after, header nav ul.menu > li.current-menu-item > a:after, header nav ul.menu > li.current-menu-ancestor > a:after, header nav ul.menu > li.is-open > a:after {
  width: 100%;
}
header nav {
  /* PANNEAU MEGA (NIVEAU 2) */
}
header nav ul.menu > li.menu-item-has-children.menu-ref.is-open > ul.sub-menu {
  flex-wrap: wrap;
}
header nav ul.menu > li.menu-item-has-children > ul.sub-menu {
  display: none;
  gap: 0;
  align-items: stretch;
  flex-wrap: wrap;
  width: 80vw;
  background-color: var(--wp--preset--color--blanc);
  padding: 4em;
  list-style: none;
  margin-left: 0;
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.18);
  position: absolute;
  top: 100%;
  left: 10%;
  z-index: 9999;
}
header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu {
  display: flex;
  flex-wrap: wrap;
}
header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li {
  flex: 0 0 33.33%;
  max-width: 33.33%;
  padding: 1.2em;
  margin: 0;
}
header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li:not(:first-child):not(:nth-child(4)) {
  border-left: 1px solid #D4D4D4;
}
header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li#menu-item-2117 {
  margin: -7em 0 0 auto;
}
header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li > a {
  display: block;
  margin: 0 0 14px 0;
  text-decoration: none;
  color: var(--wp--preset--color--main);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 18px;
  line-height: 1.2;
  transition: all 0.3s;
}
header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li > a:hover {
  opacity: 0.6;
}
header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li > ul.sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li > ul.sub-menu > li > a {
  display: block;
  padding: 8px 0;
  text-decoration: none;
  color: var(--wp--preset--color--main);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.35;
}
header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li > ul.sub-menu > li > a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}
header nav .mega-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--wp--preset--color--interaction);
  background-color: var(--wp--preset--color--blanc);
  cursor: pointer;
  padding: 0;
  z-index: 10000;
}
header nav .mega-close:hover {
  border-color: var(--wp--preset--color--interaction);
}
header nav .mega-close:before, header nav .mega-close:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 2px;
  background-color: var(--wp--preset--color--interaction);
  transform-origin: center;
  translate: -50% -50%;
  border-radius: 2px;
}
header nav .mega-close:before {
  transform: rotate(45deg);
}
header nav .mega-close:after {
  transform: rotate(-45deg);
}
header nav .head_contact {
  padding: 0.8em 2em;
  background-color: var(--wp--preset--color--main);
  border: 2px solid var(--wp--preset--color--main);
  color: var(--wp--preset--color--blanc);
  border-radius: 50px;
  margin: 0 0.8rem;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 18px;
  transition: all 0.3s;
}
header nav .head_contact:hover {
  color: var(--wp--preset--color--main);
  background-color: var(--wp--preset--color--blanc);
}

.backgroundNoir {
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9;
  transition: all 0.3s;
}
.backgroundNoir.open {
  display: block;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1700px) {
  header nav ul.menu > li.menu-item-has-children > ul.sub-menu {
    padding: 4em 1em;
  }
}
@media screen and (max-width: 1440px) {
  header nav {
    padding: 1.5em;
  }
  header nav > #logo > a {
    width: 225px;
  }
  header nav ul.menu {
    padding: 0 1em;
  }
  header nav .head_contact {
    padding: 0.5em 1.5em;
  }
  header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li#menu-item-2117 {
    margin: auto;
    border-left: 1px solid #D4D4D4;
  }
  header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li:nth-child(3):not(:first-child):not(:nth-child(4)) {
    border-left: none;
  }
  header nav ul.menu > li.menu-item-has-children.is-open#menu-item-2101 > ul > li:nth-child(4) {
    border-left: 1px solid #D4D4D4;
  }
  header nav ul.menu > li.menu-item-has-children.is-open#menu-item-2101 > ul > li:nth-child(5) {
    border-left: none;
  }
}
@media screen and (max-width: 1200px) {
  header nav {
    padding: 1.5em 1em;
  }
  header nav > #logo > a {
    width: 200px;
  }
  header nav ul.menu {
    gap: 1em;
  }
  header nav ul.menu > li > a {
    font-size: 16px;
  }
  header nav ul.menu > li.menu-item-has-children > ul.sub-menu {
    padding: 2em 1em;
  }
  header nav .head_contact {
    margin: 0;
    font-size: 16px;
  }
}
@media screen and (max-width: 990px) {
  header nav button.mobile {
    display: flex;
  }
  header nav #nav-main {
    display: none;
    background-color: var(--wp--preset--color--blanc);
    width: 100%;
    padding: 1em 5em 4em;
    box-shadow: 0 8px 10px 0 rgba(15, 23, 42, 0.18);
    position: absolute;
    left: 0;
    top: 75px;
    z-index: 99;
  }
  header nav #nav-main > ul.menu {
    display: block;
  }
  header nav #nav-main > ul.menu > li {
    margin-bottom: 1em;
  }
  header nav #nav-main > ul.menu > li.menu-item-has-children.is-open > ul.sub-menu {
    display: block;
    width: 100%;
    padding: 0.5em 0;
    margin: 1em 0;
    background-color: var(--wp--preset--color--background-1);
    box-shadow: unset;
    position: unset;
  }
  header nav #nav-main > ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li {
    padding-bottom: 0;
    border-left: none;
  }
  header nav #nav-main .head_contact {
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    font-size: 18px;
    margin-top: 2em;
  }
  header nav #nav-main > div {
    margin-left: 0.8em;
  }
  header nav .mega-close {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header nav #nav-main {
    padding: 1em 2em 2em;
  }
}
@media screen and (max-width: 576px) {
  header nav #nav-main {
    padding: 0 0 2em;
  }
  header nav #nav-main .head_contact {
    margin-top: 1em;
  }
}
@media screen and (max-width: 450px) {
  header nav {
    padding: 1em 1em 1em 0.5em;
  }
  header nav > #logo > a {
    width: 180px;
  }
  header nav #nav-main {
    top: 60px;
  }
  header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li > a {
    font-size: 16px;
  }
  header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li > ul.sub-menu > li {
    margin: 0;
  }
  header nav ul.menu > li.menu-item-has-children.is-open > ul.sub-menu > li > ul.sub-menu > li > a {
    font-size: 14px;
  }
}
/********************* SOMMAIRE *********************/
/* FAQ                                 ligne :   11 */
/* ZONE DE CONTACT                     ligne :   83 */
/* FOOTER ARTICLE                      ligne :  119 */
/* FOOTER                              ligne :  212 */
/* MEDIA QUERIES                       ligne :  330 */
/* FAQ */
.faq {
  width: 95%;
  max-width: 800px;
  margin: 4em auto 6em;
}
.faq > .cat {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  font-weight: 700;
  color: #FFFFFF;
  background-color: var(--wp--preset--color--main);
  border-radius: 50px;
  margin: 0 auto 1.5em;
  font-size: 1.6em;
  padding: 1em 2.5em;
  font-family: "Archivo";
}
.faq > h2 {
  text-align: center;
  margin-top: 0;
  color: var(--wp--preset--color--main);
}
.faq > p:last-of-type {
  text-align: center;
  color: var(--wp--preset--color--main);
  font-size: 1.2em;
  margin-bottom: 2em;
}
.faq > #accordion_faq > div {
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 10px 20px 0 rgba(33, 39, 112, 0.3);
}
.faq > #accordion_faq > div:not(:last-child) {
  margin-bottom: 2em;
}
.faq > #accordion_faq > div > h3 {
  font-weight: 700;
  color: var(--wp--preset--color--main);
  font-size: 1.1em;
  margin: 0;
  padding: 2em calc(2em + 15px) 2em 2em;
  cursor: pointer;
  position: relative;
}
.faq > #accordion_faq > div > h3:before {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-size: 1.4em;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.faq > #accordion_faq > div > h3.ui-accordion-header-active:before {
  transform: translateY(-50%) rotate(180deg);
}
.faq > #accordion_faq > div > div {
  padding: 0 2em 2em;
}
.faq > #accordion_faq > div > div > p:last-of-type {
  margin: 0;
}
.faq > #accordion_faq > div > div > ul:last-child {
  margin-bottom: 0;
}

/* ZONE DE CONTACT */
.contact {
  margin: 0 auto 3em;
  border-radius: 30px;
  background: linear-gradient(90deg, #F9F4ED 0%, #FFF7EF 100%);
  text-align: center;
  padding: 3em 1em 4em;
}
.contact > img {
  width: 65px;
}
.contact > div {
  max-width: 900px;
  margin: 1em auto 3em;
}
.contact > div > h2:first-child {
  margin-top: 0;
}
.contact > div > h2 > strong {
  font-weight: 400;
}
.contact > div > p {
  max-width: 700px;
  margin: auto;
  font-size: 1.4em;
  line-height: 1;
}
.contact > div > p:last-child {
  margin-bottom: 0;
}
.contact > .btn {
  margin: auto;
  font-size: 1.2em;
}

/* FOOTER ARTICLE */
.footerArticle {
  margin: 3em auto 7em;
}
.footerArticle > div {
  width: calc(80% - 1.2rem - var(--wp--preset--spacing--30));
  margin: 0 0 0 auto;
}
.footerArticle > div > .partageLink {
  border-radius: 20px;
  background-color: #EAF6FD;
  text-align: center;
  padding: 2em 1em;
  margin-bottom: 3em;
}
.footerArticle > div > .partageLink > p {
  color: var(--wp--preset--color--main);
  font-size: 1.4em;
  font-weight: 600;
}
.footerArticle > div > .partageLink > a {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: auto;
  border-radius: 10px;
  border: 1px solid #C1C8D7;
  background-color: #FFFFFF;
  padding: 1em 1.5em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}
.footerArticle > div > .partageLink > a:hover {
  background-color: #C1C8D7;
}
.footerArticle > div > .infosAuteur {
  border-radius: 20px;
  background-color: #FFFFFF;
  box-shadow: 0 10px 20px 0 rgba(33, 39, 112, 0.3);
  padding: 2em;
  display: flex;
  align-items: center;
  gap: 3em;
}
.footerArticle > div > .infosAuteur > div:first-child {
  display: flex;
  align-items: flex-start;
  gap: 1.5em;
}
.footerArticle > div > .infosAuteur > div:first-child > div:first-child {
  flex: 0 0 100px;
  max-width: 100px;
  height: 100px;
  border-radius: 100%;
  overflow: hidden;
}
.footerArticle > div > .infosAuteur > div:first-child > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footerArticle > div > .infosAuteur > div:first-child > div:last-child > p:not(:last-child) {
  margin: 0;
  color: var(--wp--preset--color--main);
}
.footerArticle > div > .infosAuteur > div:first-child > div:last-child > p:first-child {
  font-weight: 700;
  font-size: 1.5em;
  font-family: "Archivo";
}
.footerArticle > div > .infosAuteur > div:first-child > div:last-child > p:not(:first-child):not(:last-child) {
  font-weight: 600;
  font-size: 1.2em;
}
.footerArticle > div > .infosAuteur > div:first-child > div:last-child > p:last-child {
  margin: 1em 0 0;
}

/* FOOTER */
footer {
  background-color: #212241;
  margin-top: 4em;
}
footer > .footer {
  display: flex;
  align-items: flex-start;
  gap: 6em;
  padding: 3em 5em;
}
footer > .footer > div {
  flex: 1;
}
footer > .footer > div:first-child {
  margin-top: 12px;
}
footer > .footer > div:first-child > figure > a {
  width: 300px;
}
footer > .footer > div:first-child > p {
  margin: 2em 0 2.5em;
  color: #FFFFFF;
}
footer > .footer > div:first-child > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
footer > .footer > div:first-child > div > p {
  margin: 0;
  color: #FFFFFF;
}
footer > .footer > div:first-child > div > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  font-size: 1.2em;
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #212241;
  border-radius: 100%;
  transition: all 0.3s;
}
footer > .footer > div:first-child > div > a:hover {
  background-color: #212241;
  color: #FFFFFF;
}
footer > .footer > div:last-child {
  flex: unset;
}
footer > .footer > div:last-child > a {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: var(--wp--preset--color--interaction);
  border: 2px solid var(--wp--preset--color--interaction);
  color: #FFFFFF;
  border-radius: 100px;
  font-size: 1.2em;
  font-weight: 700;
  padding: 1em 2em;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  transition: all 0.3s;
}
footer > .footer > div:last-child > a:hover {
  background-color: transparent;
}
footer > .footer > div > h5 {
  font-weight: 700;
  margin: 0 0 1em;
  color: #FFFFFF;
}
footer > .footer > div ul.menu {
  list-style: none;
  margin: 0;
}
footer > .footer > div ul.menu > li {
  margin: 0;
}
footer > .footer > div ul.menu > li > a {
  display: block;
  margin-bottom: 1em;
  color: #FFFFFF;
  transition: all 0.3s;
}
footer > .footer > div ul.menu > li > a:hover {
  opacity: 0.6;
}
footer > .copyright {
  background-color: var(--wp--preset--color--noir);
  padding: 1.5em 0.5em;
}
footer > .copyright > p {
  text-align: center;
  margin: 0;
  color: #FFFFFF;
}
footer > .copyright > p > a {
  color: #FFFFFF;
}
footer > .copyright > p > a:after {
  background-color: #FFFFFF;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1920px) {
  footer > .footer {
    gap: 4em;
  }
}
@media screen and (max-width: 1700px) {
  footer > .footer {
    padding: 3em 2em;
  }
  footer > .footer > div:first-child > figure > a {
    width: 250px;
  }
  footer > .footer > div:last-child > a {
    font-size: 1.1em;
    padding: 0.8em 1.5em;
  }
}
@media screen and (max-width: 1440px) {
  .footerArticle {
    margin: 1em auto 5em;
  }
  .footerArticle > div > .infosAuteur {
    padding: 2em 1em;
    gap: 1em;
  }
  footer > .footer {
    flex-wrap: wrap;
  }
  footer > .footer > div:first-child {
    flex: 0 0 50%;
    order: 1;
  }
  footer > .footer > div:first-child > figure > a {
    width: 400px;
  }
  footer > .footer > div:first-child > p {
    max-width: 400px;
    margin: 1em 0;
  }
  footer > .footer > div:last-child {
    order: 2;
    align-self: center;
  }
  footer > .footer > div:not(:first-child):not(:last-child) {
    flex: 0 0 calc(33.33% - 2.67em);
    max-width: calc(33.33% - 2.67em);
    order: 3;
  }
  footer > .copyright > p {
    font-size: 1em;
  }
}
@media screen and (max-width: 1200px) {
  .footerArticle > div > .partageLink {
    border-radius: 10px;
    padding: 1em;
  }
  .footerArticle > div > .infosAuteur {
    padding: 1em;
    border-radius: 10px;
    flex-wrap: wrap;
    gap: 2em;
  }
  .footerArticle > div > .infosAuteur > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footerArticle > div > .infosAuteur > div:last-child {
    margin: auto;
  }
}
@media screen and (max-width: 990px) {
  .faq > #accordion_faq > div > h3 {
    padding: 1.5em calc(1em + 30px) 1.5em 1em;
  }
  .faq > #accordion_faq > div > div {
    padding: 0 1em 1.5em;
  }
  .contact > div > p {
    font-size: 1.2em;
  }
  .contact > .btn {
    font-size: 1.1em;
  }
  .footerArticle > div {
    width: 100%;
  }
  footer > .footer {
    gap: 4em 2em;
  }
  footer > .footer > div:not(:first-child):not(:last-child) {
    flex: 0 0 calc(33.33% - 1.34em);
    max-width: calc(33.33% - 1.34em);
  }
}
@media screen and (max-width: 768px) {
  .faq > #accordion_faq > div {
    border-radius: 10px;
  }
  .faq > #accordion_faq > div > h3, .faq > #accordion_faq > div > div ul > li {
    font-size: 1em;
  }
  .footerArticle > div > .infosAuteur > div:first-child > div:first-child {
    flex: 0 0 80px;
    max-width: 80px;
    height: 80px;
  }
  .footerArticle > div > .infosAuteur > div:first-child > div:last-child > p:first-child {
    font-size: 1.3em;
  }
  .footerArticle > div > .infosAuteur > div:first-child > div:last-child > p:not(:first-child):not(:last-child) {
    font-size: 1.1em;
  }
  footer > .footer {
    gap: 2em;
  }
  footer > .footer > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
    order: unset;
  }
  footer > .footer > div:last-child {
    order: unset;
  }
  footer > .footer > div:not(:first-child):not(:last-child) {
    flex: 0 0 100%;
    max-width: 100%;
    order: unset;
  }
}
@media screen and (max-width: 576px) {
  .faq > #accordion_faq > div > h3 {
    padding: 1em calc(0.5em + 30px) 1em 0.5em;
  }
  .faq > #accordion_faq > div > h3:before {
    right: 0.5em;
  }
  .faq > #accordion_faq > div > div {
    padding: 0 0.5em 1em;
  }
  .contact {
    border-radius: 15px;
    padding: 1em 0.5em 2em;
  }
  .contact > img {
    width: 50px;
  }
  .footerArticle > div > .partageLink > p {
    font-size: 1.2em;
  }
  .footerArticle > div > .infosAuteur > div:first-child {
    gap: 1em;
  }
  footer > .footer {
    padding: 2em 1em;
  }
  footer > .footer > div:first-child > figure > a {
    width: 325px;
  }
}
@media screen and (max-width: 450px) {
  .footerArticle > div > .infosAuteur > div:first-child > div:first-child {
    flex: 0 0 60px;
    max-width: 60px;
    height: 60px;
  }
}
/********************* SOMMAIRE *********************/
/* PAGE PAR DÉFAUT                     ligne :  000 */
/* ARTICLE PAR DÉFAUT                  ligne :  000 */
/* PAGE D'ACCUEIL                      ligne :  000 */
/* PAGE À PROPOS                       ligne :  000 */
/* PAGE SERVICES                       ligne :  000 */
/* BLOG                                ligne :  000 */
/* PAGE CONTACT                        ligne :  000 */
/* CLIENT PAR DÉFAUT                   ligne :  000 */
/* RÉFÉRENCES                          ligne :  000 */
/* MEDIA QUERIES                       ligne :  000 */
/* PAGE PAR DÉFAUT */
.enteteD {
  background: linear-gradient(90deg, #FFFFFF 0%, #FFF7EF 100%);
  padding: 2em 0 1em;
  margin-bottom: 6em;
}
.enteteD > div {
  display: flex;
  align-items: center;
  gap: 8em;
}
.enteteD > div > div:first-child {
  flex: 0 0 500px;
  max-width: 500px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
}
.enteteD > div > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.enteteD > div > div:last-child {
  flex: 1;
}
.enteteD > div > div:last-child > h1 {
  color: var(--wp--preset--color--main);
  font-size: 4em;
  font-weight: 600;
  margin-bottom: 1em;
}

/* ARTICLE PAR DÉFAUT */
.enteteB {
  background: linear-gradient(90deg, #FFF 0%, #FFF7EF 100%);
  padding: 8em 0 1em;
  margin-bottom: 6em;
}
.enteteB > div:first-child {
  display: flex;
  align-items: center;
  gap: 8em;
}
.enteteB > div:first-child > div:first-child {
  flex: 1;
}
.enteteB > div:first-child > div:first-child > .cats {
  display: flex;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}
.enteteB > div:first-child > div:first-child > .cats > p {
  background-color: #FBBC05;
  border-radius: 10px;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.6em 1.5em;
  margin: 0;
}
.enteteB > div:first-child > div:first-child > h1 {
  font-weight: 700;
  margin-bottom: 0.8em;
}
.enteteB > div:first-child > div:first-child > div:not(.cats):not(.infosArticle) > p:last-child {
  margin: 0;
}
.enteteB > div:first-child > div:first-child > .infosArticle {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-top: 3em;
}
.enteteB > div:first-child > div:first-child > .infosArticle > div {
  width: 68px;
  height: 68px;
  border-radius: 100%;
  overflow: hidden;
}
.enteteB > div:first-child > div:first-child > .infosArticle > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.enteteB > div:first-child > div:first-child > .infosArticle > p {
  margin: 0;
}
.enteteB > div:first-child > div:first-child > .infosArticle > p > span {
  display: block;
  color: #626D84;
  font-size: 0.7em;
}
.enteteB > div:first-child > div:last-child {
  flex: 0 0 750px;
  max-width: 750px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
}
.enteteB > div:first-child > div:last-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.enteteB > div:last-child {
  margin-top: 4em;
}

/* PAGE D'ACCUEIL */
.enteteF {
  background: linear-gradient(90deg, #FFFFFF 0%, #FFF7EF 100%);
  padding: 5em 0 7em;
}
.enteteF > div {
  display: flex;
  align-items: center;
  gap: 6em;
}
.enteteF > div > div:first-child {
  flex: 1;
}
.enteteF > div > div:first-child > p {
  background-color: var(--wp--preset--color--main);
  color: #FFFFFF;
  margin-bottom: 2em;
  border-radius: 10px;
  padding: 0.5em 1.5em;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.enteteF > div > div:first-child > h1 {
  color: var(--wp--preset--color--main);
  font-size: 4em;
}
.enteteF > div > div:first-child > h1 > span {
  display: block;
  font-size: 0.7em;
  font-weight: 600;
}
.enteteF > div > div:first-child > div:first-of-type {
  max-width: 1000px;
  margin: 2em 0 3em;
}
.enteteF > div > div:first-child > div:first-of-type > p:last-child {
  margin: 0;
}
.enteteF > div > div:first-child > div:last-child {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em 2em;
}
.enteteF > div > div:last-child {
  flex: 0 0 480px;
  max-width: 480px;
}
.enteteF > div > div:last-child > div:first-child {
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
}
.enteteF > div > div:last-child > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.enteteF > div > div:last-child > div:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  margin-top: 1em;
}
.enteteF > div > div:last-child > div:last-child > p {
  text-transform: lowercase;
  margin: 0;
}
.enteteF > div > div:last-child > div:last-child > a {
  font-size: 1.8em;
  transition: all 0.3s;
}
.enteteF > div > div:last-child > div:last-child > a:hover {
  opacity: 0.8;
}

/* PAGE À PROPOS */
.enteteA {
  background: linear-gradient(90deg, #FFFFFF 0%, #FFF7EF 100%);
  padding: 4em 0 6em;
}
.enteteA > div {
  display: flex;
  align-items: center;
  gap: 5em;
}
.enteteA > div > div:first-child {
  display: flex;
  align-items: flex-start;
}
.enteteA > div > div:first-child > div:first-child {
  flex: 0 0 340px;
  max-width: 340px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.enteteA > div > div:first-child > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.enteteA > div > div:first-child > div:last-child {
  flex: 0 0 460px;
  max-width: 460px;
  aspect-ratio: 5/6;
  border-radius: 20px;
  overflow: hidden;
  margin: 50px 0 0 -135px;
  position: relative;
}
.enteteA > div > div:first-child > div:last-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(33, 39, 112, 0.5);
  border-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}
.enteteA > div > div:first-child > div:last-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.enteteA > div > div:last-child {
  flex: 1;
}
.enteteA > div > div:last-child > p {
  background-color: var(--wp--preset--color--main);
  color: #FFFFFF;
  margin-bottom: 2em;
  border-radius: 10px;
  padding: 0.5em 1.5em;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  text-transform: uppercase;
}
.enteteA > div > div:last-child > h1 {
  color: var(--wp--preset--color--main);
  font-size: 4em;
}
.enteteA > div > div:last-child > h1 > span {
  display: block;
  font-size: 0.7em;
  font-weight: 600;
}
.enteteA > div > div:last-child > div {
  max-width: 900px;
  margin: 2em 0 3em;
}
.enteteA > div > div:last-child > div > p:last-child {
  margin: 0;
}

/* PAGE SERVICES */
.enteteS {
  margin: 0 auto 5em;
  display: flex;
  align-items: center;
  gap: 4em;
}
.enteteS > div:first-child {
  flex: 0 0 620px;
  max-width: 620px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
}
.enteteS > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.enteteS > div:last-child {
  flex: 1;
}
.enteteS > div:last-child > p {
  background-color: var(--wp--preset--color--main);
  color: #FFFFFF;
  margin-bottom: 2em;
  border-radius: 10px;
  padding: 0.5em 1.5em;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  text-transform: uppercase;
}
.enteteS > div:last-child > h1 {
  color: var(--wp--preset--color--main);
  font-size: 4em;
  font-weight: 600;
}
.enteteS > div:last-child > div {
  max-width: 800px;
  margin: 2em 0 3em;
}
.enteteS > div:last-child > div > p {
  line-height: 1.8;
}
.enteteS > div:last-child > div > p:last-child {
  margin: 0;
}
.enteteS > div:last-child > .btn > i {
  font-size: 1.2em;
}

/* BLOG */
.enteteBl {
  border-radius: 30px;
  background-color: #F9F4ED;
  text-align: center;
  padding: 5em 1em 4em;
  margin-bottom: 4em;
}
.enteteBl > p {
  background-color: var(--wp--preset--color--main);
  color: #FFFFFF;
  margin: 0 auto 3em;
  border-radius: 10px;
  padding: 0.5em 5em;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  text-transform: uppercase;
}
.enteteBl > h1 {
  font-weight: 600;
}
.enteteBl > div {
  max-width: 1200px;
  margin: 2em auto 0;
}

.page-template-page-archivesRef .enteteBl > div {
  font-size: 1.6em;
  font-weight: 600;
  max-width: 750px;
  margin: 2em auto 0;
}

/* CLIENT PAR DÉFAUT */
.enteteC {
  background: linear-gradient(90deg, #FFF 0%, #FFF7EF 100%);
  padding: 8em 0 1em;
  margin-bottom: 6em;
}
.enteteC > div:first-child {
  display: flex;
  align-items: center;
  gap: 8em;
}
.enteteC > div:first-child > div:first-child {
  flex: 1;
}
.enteteC > div:first-child > div:first-child > div {
  display: flex;
  align-items: center;
  gap: 1em;
  margin-bottom: 2em;
}
.enteteC > div:first-child > div:first-child > div > div {
  flex: 0 0 240px;
  max-width: 240px;
  border-radius: 15px;
  background-color: #FFFFFF;
  box-shadow: 0 5px 20px 0 rgba(33, 39, 112, 0.25);
  padding: 0 1em;
  text-align: center;
}
.enteteC > div:first-child > div:first-child > div > div > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.enteteC > div:first-child > div:first-child > div > .cat {
  background-color: #FBBC05;
  border-radius: 10px;
  color: #FFFFFF;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.6em 1.5em;
  margin: 0;
}
.enteteC > div:first-child > div:first-child > h1 {
  font-family: "Inter";
  font-weight: 700;
  font-size: 2.5em;
  line-height: 1.3;
  margin: 0;
}
.enteteC > div:first-child > div:last-child {
  flex: 0 0 750px;
  max-width: 750px;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
}
.enteteC > div:first-child > div:last-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.enteteC > div:last-child {
  margin-top: 4em;
}

/* REFERENCES */
.enteteR > div {
  padding: 6em 1em;
  border-radius: 30px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.enteteR > div:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
}
.enteteR > div > p {
  background-color: var(--wp--preset--color--main);
  color: #FFFFFF;
  margin: 0 auto 3em;
  border-radius: 10px;
  padding: 0.5em 5em;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  text-transform: uppercase;
  position: relative;
}
.enteteR > div > h1 {
  text-align: center;
  font-weight: 600;
  position: relative;
}
.enteteR > div > div {
  text-align: center;
  max-width: 1200px;
  font-size: 1.6em;
  font-weight: 600;
  margin: 1.8em auto 0;
  position: relative;
}
.enteteR > a {
  margin-top: 2em;
  position: relative;
  z-index: 1;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1700px) {
  .enteteS > div:first-child {
    flex: 0 0 520px;
    max-width: 520px;
  }
  .enteteB > div:first-child {
    gap: 4em;
  }
  .enteteB > div:first-child > div:last-child {
    flex: 0 0 650px;
    max-width: 650px;
  }
  .enteteD > div {
    gap: 5em;
  }
  .enteteC > div:first-child {
    gap: 4em;
  }
  .enteteC > div:first-child > div:last-child {
    flex: 0 0 650px;
    max-width: 650px;
  }
}
@media screen and (max-width: 1440px) {
  .enteteF > div {
    gap: 4em;
  }
  .enteteF > div > div:first-child > h1 {
    font-size: 3em;
  }
  .enteteF > div > div:last-child {
    flex: 0 0 350px;
    max-width: 350px;
  }
  .enteteA > div {
    gap: 3em;
  }
  .enteteA > div > div:first-child > div:first-child {
    flex: 0 0 250px;
    max-width: 250px;
  }
  .enteteA > div > div:first-child > div:last-child {
    flex: 0 0 350px;
    max-width: 350px;
  }
  .enteteA > div > div:last-child > h1 {
    font-size: 3em;
  }
  .enteteS {
    margin-top: 2em;
    gap: 2em;
  }
  .enteteS > div:first-child {
    flex: 0 0 475px;
    max-width: 475px;
  }
  .enteteS > div:last-child > h1 {
    font-size: 3em;
  }
  .enteteB > div:first-child > div:last-child {
    flex: 0 0 500px;
    max-width: 500px;
  }
  .enteteBl {
    padding: 3em 1em 2em;
  }
  .enteteD > div {
    gap: 3em;
  }
  .enteteD > div > div:first-child {
    flex: 0 0 400px;
    max-width: 400px;
  }
  .enteteD > div > div:last-child > h1 {
    font-size: 3em;
  }
  .enteteC > div:first-child > div:last-child {
    flex: 0 0 500px;
    max-width: 500px;
  }
  .enteteC > div:first-child > div:first-child > div > div {
    flex: 0 0 175px;
    max-width: 175px;
  }
  .enteteR > div {
    padding: 4em 1em;
  }
}
@media screen and (max-width: 1200px) {
  .enteteF > div > div:last-child {
    flex: 0 0 275px;
    max-width: 275px;
  }
  .enteteS > div:first-child {
    flex: 0 0 350px;
    max-width: 350px;
  }
  .enteteB > div:first-child {
    gap: 2em;
  }
  .enteteB > div:first-child > div:last-child {
    flex: 0 0 400px;
    max-width: 400px;
  }
  .page-template-page-archivesRef .enteteBl > div, .enteteR > div > div {
    font-size: 1.4em;
  }
  .enteteC > div:first-child {
    gap: 2em;
  }
  .enteteC > div:first-child > div:first-child > div {
    flex-wrap: wrap;
  }
  .enteteC > div:first-child > div:first-child > h1 {
    font-size: 2em;
  }
  .enteteC > div:first-child > div:last-child {
    flex: 0 0 400px;
    max-width: 400px;
  }
}
@media screen and (max-width: 990px) {
  .enteteF {
    padding: 4em 0 5em;
  }
  .enteteF > div {
    flex-wrap: wrap;
  }
  .enteteF > div > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .enteteF > div > div:last-child {
    flex: 0 0 400px;
    max-width: 400px;
    margin: auto;
  }
  .enteteA {
    padding: 3em 0 4em;
  }
  .enteteA > div {
    flex-wrap: wrap;
  }
  .enteteA > div > div:first-child {
    order: 2;
    margin: auto;
  }
  .enteteA > div > div:first-child > div:first-child {
    flex: 0 0 300px;
    max-width: 300px;
  }
  .enteteA > div > div:first-child > div:last-child {
    flex: 0 0 400px;
    max-width: 400px;
  }
  .enteteA > div > div:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }
  .enteteS {
    flex-wrap: wrap;
  }
  .enteteS > div:first-child {
    flex: 0 0 400px;
    max-width: 400px;
    order: 2;
    margin: auto;
  }
  .enteteS > div:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }
  .enteteS > div:last-child > div {
    margin: 1em 0 2em;
  }
  .enteteB {
    padding-top: 4em;
  }
  .enteteB > div:first-child {
    flex-wrap: wrap;
  }
  .enteteB > div:first-child > div:first-child, .enteteB > div:first-child > div:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .enteteD > div {
    flex-wrap: wrap;
  }
  .enteteD > div > div:first-child {
    margin: auto;
    order: 2;
  }
  .enteteD > div > div:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }
  .enteteD > div > div:last-child > h1 {
    margin-bottom: 0.5em;
  }
  .enteteC {
    padding-top: 4em;
  }
  .enteteC > div:first-child {
    flex-wrap: wrap;
  }
  .enteteC > div:first-child > div:first-child, .enteteC > div:first-child > div:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .enteteA > div > div:first-child > div:last-child {
    flex: 0 0 350px;
    max-width: 350px;
  }
  .enteteBl {
    border-radius: 15px;
  }
  .page-template-page-archivesRef .enteteBl > div {
    font-size: 1.2em;
  }
  .enteteR > div {
    border-radius: 15px;
    padding: 3em 0.5em 2em;
  }
  .enteteR > div > div {
    font-size: 1.2em;
  }
}
@media screen and (max-width: 576px) {
  .enteteF {
    padding: 2em 0 3em;
  }
  .enteteF > div {
    gap: 2em;
  }
  .enteteF > div > div:first-child > h1 {
    font-size: 2.5em;
  }
  .enteteF > div > div:first-child > div:first-of-type {
    margin-bottom: 2em;
  }
  .enteteF > div > div:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .enteteA > div > div:first-child > div:first-child {
    flex: 0 0 250px;
    max-width: 250px;
  }
  .enteteA > div > div:first-child > div:last-child {
    flex: 0 0 300px;
    max-width: 300px;
  }
  .enteteA > div > div:last-child > h1 {
    font-size: 2.5em;
  }
  .enteteA > div > div:last-child > div {
    margin-bottom: 2em;
  }
  .enteteS > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .enteteS > div:last-child > p {
    margin-bottom: 1em;
  }
  .enteteS > div:last-child > h1 {
    font-size: 2.5em;
  }
  .enteteB {
    padding-top: 2em;
  }
  .enteteBl {
    padding: 2em 0.5em 1em;
  }
  .enteteBl > p {
    margin-bottom: 2em;
  }
  .enteteD {
    margin-bottom: 3em;
  }
  .enteteD > div > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .enteteD > div > div:last-child > h1 {
    font-size: 2.5em;
  }
  .enteteC {
    padding-top: 2em;
  }
  .enteteC > div:first-child > div:first-child > h1 {
    font-size: 1.6em;
  }
  .enteteR > div > p {
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 450px) {
  .enteteA > div > div:first-child > div:last-child {
    display: none;
  }
}
/********************* SOMMAIRE *********************/
/* CONFIANCE                          ligne :    13 */
/* MES SERVICES                       ligne :    74 */
/* PROJETS                            ligne :   154 */
/* AVIS                               ligne :   229 */
/* BLOG                               ligne :   237 */
/* MEDIA QUERIES                      ligne :   308 */
/* CONFIANCE */
.confiance {
  margin: 5em 0 6em;
}
.confiance > div > p {
  text-align: center;
  margin: 0;
  font-size: 2em;
  font-weight: 600;
  font-family: "Archivo";
  color: var(--wp--preset--color--main);
}
.confiance > div > div {
  margin-top: 2em;
  position: relative;
}
.confiance > div > div .slick {
  width: 95%;
  max-width: 1430px;
  margin: auto;
}
.confiance > div > div .slick .slick-track {
  display: flex;
  align-items: center;
  gap: 5em;
}
.confiance > div > div .slick .slick-track p {
  margin: 0;
}
.confiance > div > div .slick .slick-track a {
  transition: all 0.3s;
}
.confiance > div > div .slick .slick-track a:hover {
  opacity: 0.6;
}
.confiance > div > div .paginator {
  width: 100%;
  font-size: 2em;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.confiance > div > div .paginator > div {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.confiance > div > div .paginator > div:hover {
  opacity: 0.6;
}
.confiance > div > div .paginator > div:first-child {
  left: -4px;
}
.confiance > div > div .paginator > div:last-child {
  right: -4px;
}

/* MES SERVICES */
.services {
  margin: 7em auto;
}
.services > .mesServices {
  border-radius: 30px;
  background: linear-gradient(90deg, #F3F6F6 0%, #EAF6FD 100%);
  text-align: center;
  padding: 4em 1em;
}
.services > .mesServices > h2 {
  margin: 0 0 1em;
}
.services > .mesServices > div {
  max-width: 1000px;
  margin: auto;
  font-size: 1.1em;
}
.services > .mesServices > div > p:last-child {
  margin: 0;
}
.services > div:last-child {
  margin-top: 8em;
}
.services > div:last-child > div {
  display: flex;
  align-items: center;
  gap: 6em;
  margin-bottom: 4em;
}
.services > div:last-child > div .image {
  flex: 0 0 500px;
  max-width: 500px;
  aspect-ratio: 3/4;
  border-radius: 30px;
  overflow: hidden;
}
.services > div:last-child > div .image > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services > div:last-child > div .contenu {
  flex: 1;
}
.services > div:last-child > div .contenu > div:first-child {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 2em;
}
.services > div:last-child > div .contenu > div:first-child > img {
  width: 60px;
}
.services > div:last-child > div .contenu > div:first-child h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1;
}
.services > div:last-child > div .contenu > div:first-child p {
  font-weight: 700;
  color: var(--wp--preset--color--sous-titre);
  margin: 0;
  font-size: 1.3em;
  line-height: 1;
}
.services > div:last-child > div .contenu > div:last-of-type {
  margin-bottom: 2em;
  max-width: 950px;
}

/* PROJETS */
.projets {
  background: linear-gradient(90deg, #F3F6F6 0%, #EAF6FD 100%);
  padding: 4em 0 8em;
}
.projets > h2 {
  color: var(--wp--preset--color--main);
  text-align: center;
  margin: 0 0 1.5em;
}
.projets > div {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4em;
}
.projets > div > a {
  flex: 0 0 calc(20% - 1.12em);
  max-width: calc(20% - 1.12em);
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0 5px 30px 0 rgba(33, 39, 112, 0.2);
}
.projets > div > a > div:first-child {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
}
.projets > div > a > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.projets > div > a > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.2em 1em;
}
.projets > div > a > div:last-child > h3 {
  margin: 0 0 1em;
  font-weight: 700;
  font-size: 1.2em;
  text-align: center;
}
.projets > div > a > div:last-child > p:first-of-type {
  text-align: center;
}
.projets > div > a > div:last-child > p:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: var(--wp--preset--color--interaction);
  font-weight: 600;
  text-transform: lowercase;
  margin: 0;
}
.projets > div > a:hover > div:first-child > img {
  transform: scale(1.2);
}

/* AVIS */
.avis {
  width: 95%;
  max-width: 1200px;
  margin: 4em auto;
}

/* BLOG */
.actus {
  background-color: #F9F4ED;
  padding: 4em 0 8em;
}
.actus > h2 {
  color: var(--wp--preset--color--main);
  text-align: center;
  margin: 0 0 1.5em;
}
.actus > div {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1.4em;
}
.actus > div > a {
  flex: 0 0 calc(25% - 1.05em);
  max-width: calc(25% - 1.05em);
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0 5px 30px 0 rgba(33, 39, 112, 0.2);
}
.actus > div > a > div:first-child {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
}
.actus > div > a > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.actus > div > a > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5em 1.5em 1.2em;
}
.actus > div > a > div:last-child > h3 {
  margin: 0 0 1.5em;
  font-weight: 700;
  font-size: 1.2em;
}
.actus > div > a > div:last-child > p:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: var(--wp--preset--color--interaction);
  font-weight: 600;
  text-transform: lowercase;
  margin: 0;
}
.actus > div > a:hover > div:first-child > img {
  transform: scale(1.2);
}

/* MEDIA QUERIES */
@media screen and (max-width: 1700px) {
  .projets > div {
    gap: 1em;
  }
  .projets > div .projets > div > a {
    flex: 0 0 calc(20% - 0.8em);
    max-width: calc(20% - 0.8em);
  }
  .projets > div .projets > div > a > div:last-child > h3 {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 1440px) {
  .services > div:last-child > div {
    gap: 2em;
  }
  .services > div:last-child > div .image {
    flex: 0 0 350px;
    max-width: 350px;
  }
  .services > div:last-child > div .contenu > div:first-child > img {
    width: 50px;
  }
  .projets > div {
    gap: 2em 1em;
  }
  .projets > div > a {
    flex: 0 0 calc(33.33% - 0.67em);
    max-width: calc(33.33% - 0.67em);
  }
  .actus > div > a {
    flex: 0 0 calc(50% - 0.7em);
    max-width: calc(50% - 0.7em);
  }
}
@media screen and (max-width: 1200px) {
  .confiance > div > div .paginator {
    font-size: 1.6em;
  }
  .confiance > div > div .paginator > div:first-child {
    left: -5px;
  }
  .confiance > div > div .paginator > div:last-child {
    right: -5px;
  }
  .services > div:last-child > div .contenu > div:first-child > img {
    width: 40px;
  }
  .services > div:last-child > div .contenu > div:first-child p {
    font-size: 1.1em;
  }
}
@media screen and (max-width: 990px) {
  .confiance > div > div .paginator {
    font-size: 1.4em;
  }
  .confiance > div > div .slick .slick-track {
    gap: 3em;
  }
  .services > div:last-child > div {
    flex-wrap: wrap;
    gap: 1em 2em;
  }
  .services > div:last-child > div.photoGauche .image {
    order: 2;
  }
  .services > div:last-child > div.photoGauche .contenu {
    order: 1;
  }
  .services > div:last-child > div .image {
    margin: auto;
  }
  .services > div:last-child > div .contenu {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .projets > div > a {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
}
@media screen and (max-width: 768px) {
  .confiance > div > div .slick {
    width: 90%;
  }
  .confiance > div > div .slick .slick-track {
    gap: 2em;
  }
  .services > .mesServices {
    border-radius: 15px;
    padding: 3em 1em;
  }
  .services > div:last-child {
    margin-top: 5em;
  }
  .services > div:last-child > div .contenu > div:first-child p {
    margin-top: 2px;
  }
  .projets {
    padding: 3em 0 5em;
  }
  .projets > div > a > div:last-child {
    padding: 1.2em 0.6em;
  }
  .projets > div > a > div:last-child > h3 {
    font-size: 1.1em;
  }
  .actus {
    padding: 3em 0 5em;
  }
  .actus > div > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .actus > div > a > div:last-child {
    padding: 1.5em 1em 1.2em;
  }
}
@media screen and (max-width: 576px) {
  .confiance {
    margin: 3em 0 4em;
  }
  .services {
    margin: 5em auto;
  }
  .services > .mesServices {
    border-radius: 10px;
    padding: 2em 1em 1em;
  }
  .services > div:last-child {
    margin-top: 3em;
  }
  .services > div:last-child > div .contenu > div:first-child {
    gap: 10px;
    margin-bottom: 1em;
  }
  .services > div:last-child > div .contenu > div:first-child > img {
    width: 30px;
  }
  .services > div:last-child > div .image {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .projets > div > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .projets > div > a > div:last-child {
    padding: 1.2em 1em;
  }
}
/********************* SOMMAIRE *********************/
/* CONTENU                             ligne :   10 */
/* À PROPOS                            ligne :   19 */
/* SERVICES                            ligne :   43 */
/* CONTACT                             ligne :  168 */
/* MEDIA QUERIES                       ligne :  168 */
/* CONTENU */
figure.wp-block-image > img {
  border-radius: 30px;
}

#ez-toc-container {
  border-radius: 10px;
  box-shadow: 0 10px 20px 0 rgba(33, 39, 112, 0.25);
  border: none !important;
}
#ez-toc-container .ez-toc-box-title {
  top: 12px;
  left: 12px;
}

.content_404 {
  margin-bottom: 4em;
}

.remonteePage {
  display: block;
  border-radius: 20px;
  background: #FFFFFF;
  box-shadow: 0 5px 30px 0 rgba(33, 39, 112, 0.2);
}
.remonteePage > div:first-child {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
}
.remonteePage > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.remonteePage > div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5em 1.5em 1.2em;
}
.remonteePage > div:last-child > h3 {
  margin: 0 0 1.5em;
  font-weight: 700;
  font-size: 1.2em;
}
.remonteePage > div:last-child > p:last-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  color: var(--wp--preset--color--interaction);
  text-transform: lowercase;
  margin: 0;
}
.remonteePage > div:last-child > p:last-child > span {
  position: relative;
}
.remonteePage > div:last-child > p:last-child > span:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--wp--preset--color--interaction);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: ease-in-out 0.3s;
}
.remonteePage > div:last-child > p:last-child > span:hover:after {
  width: 0;
}
.remonteePage > div:last-child > p:last-child > i {
  transform: rotate(45deg);
}
.remonteePage:hover > div:first-child > img {
  transform: scale(1.2);
}

/* À PROPOS */
.page-template-page-propos .projets {
  max-width: 1600px;
  margin: 0 auto 6em;
  border-radius: 30px;
  padding: 4em 1em 8em;
}
.page-template-page-propos .projets > h2 {
  margin: 0;
}
.page-template-page-propos .projets > p {
  text-align: center;
  color: #000000;
  font-weight: 700;
  margin: 1em 0 2em;
  font-size: 1.4em;
}
.page-template-page-propos .projets > div {
  width: 100%;
  max-width: unset;
}

/* SERVICES */
.pourquoi {
  margin: 0 auto 5em;
  border-radius: 30px;
  background: linear-gradient(90deg, #F3F6F6 0%, #EAF6FD 100%);
  padding: 5em 4em;
  text-align: center;
}
.pourquoi > h2 {
  color: var(--wp--preset--color--main);
  margin: 0 0 1em;
}
.pourquoi > p {
  margin: 0;
  font-size: 1.3em;
  max-width: 850px;
  margin: auto;
}
.pourquoi > div {
  margin-top: 4em;
  display: flex;
  align-items: center;
  gap: 4em;
  flex-wrap: wrap;
  justify-content: center;
}
.pourquoi > div > div {
  flex: 0 0 calc(25% - 3em);
  max-width: calc(25% - 3em);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.pourquoi > div > div > img {
  width: 90px;
}
.pourquoi > div > div > div > h3 {
  margin: 1em 0;
  color: var(--wp--preset--color--text-sombre);
  font-weight: 700;
  font-size: 1.6em;
}

.references {
  border-radius: 30px;
  background-color: #F9F4ED;
  padding: 3em 1em;
  margin: 5em auto 6em;
}
.references > .btn {
  margin: auto;
}

.travailler {
  text-align: center;
  margin: 0 auto 8em;
  width: 95%;
}
.travailler > h2 {
  color: var(--wp--preset--color--main);
  margin: 0 0 1em;
}
.travailler > p {
  margin: 0;
  font-size: 1.3em;
  max-width: 850px;
  margin: auto;
}

.raisons {
  border-radius: 30px;
  background: linear-gradient(90deg, #F3F6F6 0%, #EAF6FD 100%);
  padding: 5em 6em;
  margin-top: 6em;
}
.raisons > div {
  display: flex;
  align-items: center;
  gap: 5em;
}
.raisons > div > div:first-child {
  flex: 0 0 500px;
  max-width: 500px;
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
}
.raisons > div > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.raisons > div > div:last-child {
  flex: 1;
}
.raisons > div > div:last-child > h3 {
  font-weight: 700;
  font-size: 1.8em;
  margin: 0 0 1em;
  color: var(--wp--preset--color--main);
}
.raisons > div > div:last-child > div {
  display: flex;
  align-items: center;
  gap: 1.5em;
}
.raisons > div > div:last-child > div.btns {
  flex-wrap: wrap;
  margin-top: 2.5em;
}
.raisons > div > div:last-child > div:not(.btns) {
  margin-bottom: 1.5em;
}
.raisons > div > div:last-child > div > ol {
  color: var(--wp--preset--color--main);
}
.raisons > div > div:last-child > div > img {
  width: 58px;
}

/* CONTACT */
.content_contact > .content {
  border-radius: 30px;
  background: linear-gradient(90deg, #F3F6F6 0%, #EAF6FD 100%);
  padding: 6em 1em;
}
.content_contact > .content > h2, .content_contact > .content > h3, .content_contact > .content > h4, .content_contact > .content > h5, .content_contact > .content > h6, .content_contact > .content > p, .content_contact > .content > li {
  max-width: 615px;
  margin-left: auto;
  margin-right: auto;
}
.content_contact > .content > form#forminator-module-2689 {
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}
.content_contact > .content .forminator-label {
  color: #676767;
  font-size: 0.9em;
  font-weight: 400;
}
.content_contact > .content #forminator-module-2689 .forminator-row-last {
  text-align: center;
}
.content_contact > .content #forminator-module-2689 .forminator-row-last .forminator-button.forminator-button-submit {
  font-size: 1em;
  font-weight: 700;
  border-radius: 100px;
  padding: 1em calc(5em + 20px) 1em 5em;
  position: relative;
}
.content_contact > .content #forminator-module-2689 .forminator-row-last .forminator-button.forminator-button-submit:after {
  content: "\f1d8";
  font-size: 1.2em;
  font-family: "Font Awesome 6 Free";
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
}

.page-template-page-contact .confiance {
  background-color: #F9F4ED;
  padding: 5em 0;
}
.page-template-page-contact .avis {
  margin-bottom: 6em;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1700px) {
  .raisons {
    padding: 3em 2em;
  }
}
@media screen and (max-width: 1440px) {
  .pourquoi {
    padding: 3em 1em;
    border-radius: 15px;
  }
  .pourquoi > div {
    gap: 2em;
  }
  .pourquoi > div > div {
    flex: 0 0 calc(25% - 1.5em);
    max-width: calc(25% - 1.5em);
  }
  .pourquoi > div > div > img {
    width: 70px;
  }
  .pourquoi > div > div > div > h3 {
    margin: 1em 0 0.5em;
    font-size: 1.4em;
  }
  .raisons > div {
    gap: 2em;
  }
  .raisons > div > div:first-child {
    flex: 0 0 400px;
    max-width: 400px;
  }
  .raisons > div .raisons > div > div:last-child > h3 {
    font-size: 1.6em;
  }
  .raisons > div .raisons > div > div:last-child > div {
    gap: 1em;
  }
  .content_contact > .content {
    padding: 4em 1em;
  }
}
@media screen and (max-width: 1200px) {
  .raisons > div > div:last-child > div > img {
    width: 50px;
  }
}
@media screen and (max-width: 990px) {
  .pourquoi > p {
    font-size: 1.1em;
  }
  .pourquoi > div > div {
    flex: 0 0 calc(50% - 1em);
    max-width: calc(50% - 1em);
  }
  .references {
    border-radius: 15px;
    padding: 2em 1em;
  }
  .raisons {
    border-radius: 15px;
  }
  .raisons > div {
    flex-wrap: wrap;
  }
  .raisons > div > div:first-child {
    flex: 0 0 500px;
    max-width: 500px;
    order: 2;
    margin: auto;
  }
  .raisons > div > div:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }
}
@media screen and (max-width: 768px) {
  .page-template-page-propos .projets {
    border-radius: 15px;
    padding: 2em 1em 4em;
  }
  .pourquoi > div {
    gap: 2em 1em;
  }
  .pourquoi > div > div {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
  .pourquoi > div > div > div > h3 {
    font-size: 1.2em;
  }
  .raisons > div > div:last-child > h3 {
    font-size: 1.6em;
  }
  .content_contact > .content {
    padding: 4em 1em;
  }
}
@media screen and (max-width: 576px) {
  .references {
    border-radius: 10px;
  }
  .raisons {
    padding: 2em 1em;
  }
  .raisons > div > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .raisons > div > div:last-child > div:not(.btns) {
    margin-bottom: 1em;
  }
  .raisons > div > div:last-child > div > img {
    width: 40px;
  }
}
@media screen and (max-width: 450px) {
  .pourquoi > div > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .raisons > div > div:last-child > h3 {
    font-size: 1.4em;
  }
}
/********************* SOMMAIRE *********************/
/* BLOG                               ligne :   000 */
/* FILTRES                            ligne :   000 */
/* LOADER                             ligne :   000 */
/* PAGINATION                         ligne :   000 */
/* MEDIA QUERIES                      ligne :   000 */
/* BLOG */
.remontee_articles {
  display: flex;
  align-items: stretch;
  gap: 4em 1.5em;
  flex-wrap: wrap;
  margin-bottom: 4em;
}
.remontee_articles > a {
  display: flex;
  flex-direction: column;
  flex: 0 0 calc(25% - 1.13em);
  max-width: calc(25% - 1.13em);
  border-radius: 30px;
  background-color: #FFFFFF;
  box-shadow: 0 10px 20px 0 rgba(33, 39, 112, 0.25);
}
.remontee_articles > a > div:first-child {
  aspect-ratio: 16/9;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}
.remontee_articles > a > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.remontee_articles > a > div:last-of-type {
  flex: 1;
  padding: 1.5em 1em 0;
}
.remontee_articles > a > div:last-of-type > h2 {
  font-size: 1.2em;
  font-weight: 700;
  color: var(--wp--preset--color--main);
  margin: 0 0 0.8em;
  letter-spacing: 0;
}
.remontee_articles > a > div:last-of-type > p:first-of-type {
  font-weight: 700;
  font-size: 0.85em;
}
.remontee_articles > a > div:last-of-type > p:last-child {
  color: var(--wp--preset--color--main);
  font-size: 1em;
}
.remontee_articles > a > p {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 1em 1em 1.5em;
  margin: 0 0 0 auto;
  color: var(--wp--preset--color--interaction);
  text-transform: lowercase;
}
.remontee_articles > a > p > span {
  position: relative;
}
.remontee_articles > a > p > span:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--wp--preset--color--interaction);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: ease-in-out 0.3s;
}
.remontee_articles > a > p > span:hover:after {
  width: 0;
}
.remontee_articles > a > p > i {
  transform: rotate(45deg);
}
.remontee_articles > a:hover > div:first-child > img {
  transform: scale(1.2);
}

/* FILTRES  */
.filtrerBlog {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  margin-bottom: 4em;
}
.filtrerBlog > button {
  border: none;
  color: #FFFFFF;
  font-weight: 700;
  background-color: var(--wp--preset--color--interaction);
  border-radius: 100px;
  font-size: 1.2em;
  padding: 0.6em 1.8em;
  cursor: pointer;
  transition: all 0.3s;
}
.filtrerBlog > button:not(.is-active):hover {
  opacity: 0.8;
}
.filtrerBlog > button.is-active {
  background-color: #795329;
}

/* LOADER */
.listeArticle {
  position: relative;
  transition: opacity 0.2s ease;
}
.listeArticle.is-loading {
  pointer-events: none;
}
.listeArticle.is-loading:before {
  content: "";
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.listeArticle.is-loading:after {
  content: "";
  width: 80px;
  height: 80px;
  margin: -20px 0 0 -20px;
  border: 6px solid #CCCCCC;
  border-top: 4px solid #000000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* PAGINATION */
.pagination {
  margin: 4em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1em;
  line-height: 1;
}
.pagination > p {
  text-transform: uppercase;
  color: var(--wp--preset--color--main);
  margin: 0;
  font-weight: 600;
  font-size: 1.6em;
}
.pagination > .current {
  font-size: 2.5em;
  border-bottom: 5px solid var(--wp--preset--color--main);
  font-weight: 600;
  color: var(--wp--preset--color--main);
}
.pagination > a {
  display: block;
  font-weight: 600;
  font-size: 1.6em;
  color: var(--wp--preset--color--main);
  transition: all 0.3s;
}
.pagination > a:hover {
  font-size: 2em;
  color: var(--wp--preset--color--interaction);
  font-weight: 700;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .remontee_articles > a {
    flex: 0 0 calc(33.33% - 1em);
    max-width: calc(33.33% - 1em);
  }
}
@media screen and (max-width: 1200px) {
  .remontee_articles > a {
    flex: 0 0 calc(50% - 0.75em);
    max-width: calc(50% - 0.75em);
  }
}
@media screen and (max-width: 990px) {
  .remontee_articles > a {
    border-radius: 15px;
  }
  .remontee_articles > a > div:first-child {
    border-radius: 15px 15px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .remontee_articles > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .remontee_articles > a > div:last-of-type {
    padding: 1em 0.5em 0;
  }
  .remontee_articles > a > p {
    padding: 1em 0.5em;
  }
  .pagination {
    gap: 0.6em;
  }
  .pagination > p {
    font-size: 1.4em;
  }
  .pagination > .current {
    font-size: 2em;
  }
  .pagination > a {
    font-size: 1.4em;
  }
  .pagination > a:hover {
    font-size: 1.8em;
  }
}
/********************* SOMMAIRE *********************/
/* REMONTÉES RÉFÉRENCES                ligne :  000 */
/* REMONTÉ CLIENTS                     ligne :  000 */
/* SINGLE CLIENT                       ligne :  000 */
/* REMONTÉE LIENS                      ligne :  000 */
/* FILTRES                             ligne :  000 */
/* MEDIA QUERIES                       ligne :  000 */
/* REMONTÉES RÉFÉRENCES */
.remontee_ref {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3em 2em;
  margin-bottom: 4em;
}
.remontee_ref > a {
  display: block;
  flex: 0 0 calc(50% - 1em);
  max-width: calc(50% - 1em);
  border-radius: 30px;
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.remontee_ref > a:before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 17.79%, #202241 87.02%);
  position: absolute;
  top: 0;
  left: 0;
}
.remontee_ref > a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.remontee_ref > a > div {
  width: 100%;
  padding: 0 3em 2em;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
}
.remontee_ref > a > div > h5 {
  color: #FFFFFF;
  margin: 0;
  font-family: "Archivo";
  font-weight: 700;
  font-size: 1.8em;
  margin-right: 10px;
}
.remontee_ref > a > div > i {
  color: #FFFFFF;
  font-size: 2.5em;
  transform: rotate(45deg);
  transition: all 0.3s;
}
.remontee_ref > a:hover > div > i {
  transform: rotate(315deg);
}

/* REMONTÉ CLIENTS */
.jinterviens {
  background: linear-gradient(90deg, #F3F6F6 0%, #EAF6FD 100%);
  padding: 4em 0;
  margin: -24px 0 8em;
}
.jinterviens > div {
  display: flex;
  align-items: center;
  gap: 5em;
}
.jinterviens > div > div:first-child {
  flex: 0 0 545px;
  max-width: 545px;
  aspect-ratio: 6/5;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 30px 0 rgba(33, 39, 112, 0.2);
}
.jinterviens > div > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.jinterviens > div > div:last-child {
  flex: 1;
}

.realisations {
  margin-bottom: 8em;
}
.realisations > h2 {
  text-align: center;
  margin: 0;
}
.realisations > div {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 3em;
}
.realisations > div > * {
  display: block;
  flex: 0 0 calc(16.67% - 1.67em);
  max-width: calc(16.67% - 1.67em);
}
.realisations > div > * > div:first-child {
  aspect-ratio: 1/1;
  border-radius: 15px;
  background: #FFFFFF;
  box-shadow: 0 5px 20px 0 rgba(33, 39, 112, 0.25);
  overflow: hidden;
  padding: 1em;
}
.realisations > div > * > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s;
}
.realisations > div > * > div:last-child {
  margin-top: 1em;
}
.realisations > div > * > div:last-child > .ssTitre {
  text-align: center;
  font-weight: 600;
  padding: 0 0.2em;
}
.realisations > div > * > div:last-child > .plus {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--wp--preset--color--interaction);
  text-transform: lowercase;
  margin: 0;
}
.realisations > div > * > div:last-child > .plus > span {
  position: relative;
}
.realisations > div > * > div:last-child > .plus > span:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--wp--preset--color--interaction);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: ease-in-out 0.3s;
}
.realisations > div > * > div:last-child > .plus > span:hover:after {
  width: 0;
}
.realisations > div > * > div:last-child > .plus > i {
  transform: rotate(45deg);
}
.realisations > div > a > div:first-child:hover > img {
  transform: scale(0.9);
}

.autres {
  margin-bottom: 8em;
}
.autres > h2 {
  text-align: center;
  margin: 0;
}
.autres > div {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 2em;
  margin-top: 3em;
}
.autres > div > * {
  display: block;
  flex: 0 0 calc(14.3% - 1.73em);
  max-width: calc(14.3% - 1.73em);
}
.autres > div > * > div:first-child {
  aspect-ratio: 1/1;
  border-radius: 15px;
  background: #FFFFFF;
  box-shadow: 0 5px 20px 0 rgba(33, 39, 112, 0.25);
  overflow: hidden;
  padding: 1em;
}
.autres > div > * > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s;
}
.autres > div > * > p {
  text-align: center;
  font-weight: 600;
  padding: 0 0.2em;
  margin: 1em 0 0;
  font-size: 1em;
}
.autres > div > a > div:first-child:hover > img {
  transform: scale(0.9);
}

/* REMONTÉE LIENS */
.publications {
  margin-bottom: 6em;
  position: relative;
  transition: opacity 0.2s ease;
}
.publications.is-loading {
  pointer-events: none;
}
.publications.is-loading:before {
  content: "";
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.6;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.publications.is-loading:after {
  content: "";
  width: 80px;
  height: 80px;
  margin: -20px 0 0 -20px;
  border: 6px solid #CCCCCC;
  border-top: 4px solid #000000;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10;
}

.articlesR {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 4em 3em;
}
.articlesR > a {
  display: block;
  flex: 0 0 calc(25% - 2.25em);
  max-width: calc(25% - 2.25em);
}
.articlesR > a > div:first-child {
  aspect-ratio: 1/1;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
}
.articlesR > a > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s;
}
.articlesR > a > div:last-child {
  margin-top: 1em;
}
.articlesR > a > div:last-child > h3 {
  margin: 0;
  font-weight: 600;
  color: var(--wp--preset--color--text-sombre);
  font-size: 1.5em;
}
.articlesR > a > div:last-child > p:not(.liens) {
  margin: 0.5em 0;
  font-size: 1em;
}
.articlesR > a > div:last-child > .lien {
  color: var(--wp--preset--color--interaction);
  text-transform: lowercase;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  position: relative;
}
.articlesR > a > div:last-child > .lien:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--wp--preset--color--interaction);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: ease-in-out 0.3s;
}
.articlesR > a:hover > div:first-child > img {
  transform: scale(1.1);
}
.articlesR > a:hover > div:last-child > .lien:after {
  width: 0;
}

/* FILTRES */
/* MEDIA QUERIES */
@media screen and (max-width: 1700px) {
  .jinterviens > div {
    gap: 3em;
  }
  .realisations > div {
    gap: 2em 1em;
  }
  .realisations > div > * {
    flex: 0 0 calc(16.67% - 0.84em);
    max-width: calc(16.67% - 0.84em);
  }
  .autres > div {
    gap: 2em 1em;
  }
  .autres > div > * {
    flex: 0 0 calc(14.3% - 0.87em);
    max-width: calc(14.3% - 0.87em);
  }
  .articlesR {
    gap: 4em 2em;
  }
  .articlesR > a {
    flex: 0 0 calc(25% - 1.5em);
    max-width: calc(25% - 1.5em);
  }
}
@media screen and (max-width: 1440px) {
  .remontee_ref > a > div {
    padding: 0 2em 2em;
  }
  .remontee_ref > a > div > h5 {
    font-size: 1.5em;
  }
  .remontee_ref > a > div > i {
    font-size: 2em;
  }
  .jinterviens > div > div:first-child {
    flex: 0 0 450px;
    max-width: 450px;
  }
  .articlesR {
    gap: 2em 1em;
  }
  .articlesR > a {
    flex: 0 0 calc(25% - 0.75em);
    max-width: calc(25% - 0.75em);
  }
}
@media screen and (max-width: 1200px) {
  .remontee_ref > a {
    border-radius: 15px;
  }
  .remontee_ref > a:before {
    border-radius: 15px;
  }
  .remontee_ref > a > div {
    padding: 0 2em 1em;
  }
  .remontee_ref > a > div > h5 {
    font-size: 1.3em;
  }
  .jinterviens > div {
    gap: 2em;
  }
  .jinterviens > div > div:first-child {
    flex: 0 0 350px;
    max-width: 350px;
  }
  .realisations > div > * {
    flex: 0 0 calc(25% - 0.75em);
    max-width: calc(25% - 0.75em);
  }
  .autres > div > * {
    flex: 0 0 calc(20% - 0.8em);
    max-width: calc(20% - 0.8em);
  }
  .articlesR > a {
    flex: 0 0 calc(33.33% - 0.67em);
    max-width: calc(33.33% - 0.67em);
  }
}
@media screen and (max-width: 990px) {
  .remontee_ref {
    gap: 2em 1em;
  }
  .remontee_ref > a {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
  .remontee_ref > a > div {
    padding: 0 0.5em 1em;
  }
  .remontee_ref > a > div > i {
    font-size: 1.5em;
  }
  .jinterviens > div {
    flex-wrap: wrap;
  }
  .jinterviens > div > div:first-child {
    flex: 0 0 450px;
    max-width: 450px;
    order: 2;
    margin: auto;
  }
  .jinterviens > div > div:last-child {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }
  .articlesR > a {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
}
@media screen and (max-width: 768px) {
  .remontee_ref > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .remontee_ref > a > div {
    padding: 0 2em 1.5em;
  }
  .realisations > div > * {
    flex: 0 0 calc(33.33% - 0.67em);
    max-width: calc(33.33% - 0.67em);
  }
  .autres > div > * {
    flex: 0 0 calc(25% - 0.75em);
    max-width: calc(25% - 0.75em);
  }
  .articlesR > a > div:first-child {
    border-radius: 15px 15px 0 0;
  }
  .articlesR > a > div:last-child > h3 {
    font-size: 1.3em;
  }
  .articlesR > a > div:last-child > p:not(.liens) {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 576px) {
  .remontee_ref > a > div {
    padding: 0 0.5em 1em;
  }
  .jinterviens {
    margin-bottom: 6em;
    padding: 3em 0 2em;
  }
  .jinterviens > div > div:first-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .realisations {
    margin-bottom: 6em;
  }
  .realisations > div {
    margin-top: 2em;
  }
  .realisations > div > * {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
  .autres {
    margin-bottom: 6em;
  }
  .autres > div {
    margin-top: 2em;
  }
  .autres > div > * {
    flex: 0 0 calc(33.33% - 0.67em);
    max-width: calc(33.33% - 0.67em);
  }
  .autres > div > * > div:first-child {
    padding: 0.2em;
  }
  .articlesR {
    justify-content: center;
  }
  .articlesR > a {
    flex: 0 0 80%;
    max-width: 80%;
  }
}
@media screen and (max-width: 450px) {
  .realisations > div > * {
    flex: 0 0 90%;
    max-width: 90%;
    margin: auto;
  }
  .autres > div > * {
    flex: 0 0 calc(50% - 0.5em);
    max-width: calc(50% - 0.5em);
  }
  .articlesR > a {
    flex: 0 0 100%;
    max-width: 100%;
  }
}/*# sourceMappingURL=main.css.map */