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

:root {
  --beige: #F3EAD2;
  --blanc: #FFFFFF;
  --bleu: #1F9B94;
  --gris: #747474;
  --jaune: #D29008;
  --marron: #A66115;
  --marron-pale: #AC8349;
  --noir: #000000;
  --orange: #F07E04;
  --rouge: #DF5911;
}

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

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

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

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

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.2;
  margin-bottom: 1em;
}
p > a {
  position: relative;
}
p > a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--noir);
  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.1;
  color: var(--noir);
}

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

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

.container_small {
  max-width: 1140px;
  width: 95%;
  margin: auto;
}

.btn {
  display: flex;
  align-items: center;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  padding: 0.6rem 1rem;
  border: 2px solid var(--marron-pale);
  background-color: var(--marron-pale);
  color: var(--blanc);
  font-weight: 500;
  text-transform: lowercase;
  border-radius: 100px;
  transition: all 0.3s;
}
.btn:hover {
  opacity: 0.6;
}

.content_404 {
  margin: 6em auto 5em;
}

.content_page {
  margin-bottom: 5em;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .container {
    max-width: 1140px;
  }
}
@media screen and (max-width: 1200px) {
  .container, .container_small {
    max-width: 960px;
  }
}
@media screen and (max-width: 990px) {
  .container, .container_small {
    max-width: 720px;
  }
}
@media screen and (max-width: 768px) {
  .container, .container_small {
    max-width: 540px;
  }
  p, ul > li, ol > li {
    font-size: 1em;
  }
}
@media screen and (max-width: 450px) {
  .btn {
    font-size: 0.9em;
  }
}
/********************* SOMMAIRE *********************/
/* HEADER                              ligne :   10 */
/* MENU ORDINATEUR                     ligne :   20 */
/* MENU MOBILE                         ligne :  114 */
/* MEDIA QUERIES                       ligne :  147 */
/* HEADER */
header {
  background-color: #AB8348;
  margin-top: 3em !important;
  border-radius: 30px;
  padding-bottom: 195px;
}

.home header {
  padding-bottom: 575px;
}

/* MENU ORDINATEUR */
header > .menu {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
header > .menu > a {
  display: block;
  flex: 0 0 280px;
  max-width: 280px;
  background-color: var(--blanc);
  border-radius: 10px;
  padding: 0.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  margin-left: -60px;
}
header > .menu > a > img {
  transition: all 0.3s;
}
header > .menu > a:hover > img {
  opacity: 0.6;
}
header > .menu > .ordi {
  flex: 1;
  margin-top: 1em;
}
header > .menu > .ordi > div {
  text-align: right;
  color: var(--blanc);
  padding: 0 55px 0.8em 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
header > .menu > .ordi > div > p {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1em;
  font-size: 0.85em;
  margin: 0;
}
header > .menu > .ordi > div > p > a {
  color: var(--blanc);
}
header > .menu > .ordi > div > p > a:after {
  background-color: var(--blanc);
}
header > .menu > .ordi > nav {
  margin-top: 2em;
  padding-right: 55px;
}
header > .menu > .ordi > nav > ul {
  list-style: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3em;
}
header > .menu > .ordi > nav > ul > li {
  margin: 0;
  font-size: 1em;
}
header > .menu > .ordi > nav > ul > li > a:not(.contact_btn) {
  text-transform: lowercase;
  font-weight: 900;
  color: var(--blanc);
  transition: all 0.3s;
}
header > .menu > .ordi > nav > ul > li > a:not(.contact_btn):hover {
  opacity: 0.6;
}
header > .menu > .ordi > nav > ul > li > .contact_btn {
  text-transform: lowercase;
  color: var(--blanc);
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0.6em 1.2em;
  border: 2px solid var(--blanc);
  border-radius: 100px;
  transition: all 0.3s;
}
header > .menu > .ordi > nav > ul > li > .contact_btn:hover {
  background-color: var(--blanc);
  color: var(--marron-pale);
}

/* MENU MOBILE */
header .mobile {
  display: none;
  align-items: center;
  gap: 0.8em;
  cursor: pointer;
}
header .mobile > p {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.2em;
  margin: 3px 0 0;
  color: var(--blanc);
  transition: all 0.3s;
}
header .mobile .barre {
  width: 35px;
  height: 4px;
  margin-bottom: 5px;
  border-radius: 15px;
  background-color: var(--blanc);
  transition: all 0.3s;
}
header .mobile .barre:last-child {
  margin-bottom: 0;
}
header .mobile:hover .barre01, header .mobile:hover .barre02 {
  margin-bottom: 10px;
}

/* RETOUR HAUT */
.to_top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 5px 0 0 5px;
  background-color: var(--marron-pale);
  color: var(--blanc);
  font-size: 1.4em;
  cursor: pointer;
  position: fixed;
  bottom: 80px;
  right: -80px;
  z-index: 99;
  transition: all 0.3s;
}
.to_top:hover {
  opacity: 0.7;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1700px) {
  header > .menu > a {
    margin-left: -30px;
  }
}
@media screen and (max-width: 1440px) {
  header > .menu > a {
    flex: 0 0 250px;
    max-width: 250px;
  }
  header > .menu > .ordi > nav {
    margin-top: 1em;
  }
  header > .menu > .ordi > nav > ul {
    gap: 1em;
  }
}
@media screen and (max-width: 1200px) {
  header {
    border-radius: 20px;
  }
  header > .menu > a {
    flex: 0 0 200px;
    max-width: 200px;
    margin-left: -20px;
  }
  header > .menu > .ordi > div {
    padding-right: 25px;
  }
  header > .menu > .ordi > div > p {
    font-size: 0.75em;
    gap: 0.5em;
  }
  header > .menu > .ordi > nav {
    padding-right: 25px;
  }
  header > .menu > .ordi > nav > ul > li > a {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 990px) {
  header {
    padding-top: 1em;
  }
  header > .menu {
    align-items: center;
    padding-right: 2em;
  }
  header > .menu > .ordi {
    display: none;
    flex-direction: column;
    background-color: var(--blanc);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
    width: 90%;
    max-width: calc(720px - 5%);
    padding: 2em;
    margin: 0;
    position: absolute;
    top: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
  }
  header > .menu > .ordi > div {
    order: 2;
    color: var(--noir);
    padding: 0;
    margin-top: 2em;
    text-align: center;
  }
  header > .menu > .ordi > div > p {
    flex-wrap: wrap;
    justify-content: center;
  }
  header > .menu > .ordi > div > p > a {
    color: var(--noir);
  }
  header > .menu > .ordi > div > p > a:after {
    background-color: var(--noir);
  }
  header > .menu > .ordi > nav {
    order: 1;
    margin: 0;
    padding: 0;
  }
  header > .menu > .ordi > nav > ul {
    display: block;
  }
  header > .menu > .ordi > nav > ul > li {
    margin-bottom: 1em;
  }
  header > .menu > .ordi > nav > ul > li > a {
    font-size: 1em;
  }
  header > .menu > .ordi > nav > ul > li > a:not(.contact_btn) {
    color: var(--noir);
  }
  header > .menu > .ordi > nav > ul > li > a.contact_btn {
    color: var(--noir);
    border-color: var(--noir);
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
  }
  header > .menu > .ordi > nav > ul > li > a.contact_btn:hover {
    background-color: var(--noir);
    color: var(--blanc);
  }
  header .mobile {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  header > .menu > .ordi {
    max-width: calc(540px - 5%);
  }
  .home header {
    padding-bottom: 505px;
  }
}
@media screen and (max-width: 576px) {
  header > .menu {
    padding-right: 1em;
  }
  header > .menu > a {
    margin-left: 1em;
  }
  header > .menu > .ordi {
    padding: 2em 1em;
  }
  .home header {
    padding-bottom: 415px;
  }
}
@media screen and (max-width: 450px) {
  header {
    margin-top: 1em !important;
  }
  header > .menu > .ordi {
    top: 115px;
  }
}
/********************* SOMMAIRE *********************/
/* FOOTER                              ligne :    9 */
/* FOOTER LÉGAL                        ligne :  136 */
/* MEDIA QUERIES                       ligne :  150 */
/* FOOTER */
.footer {
  background-color: #AB8348;
  border-radius: 30px;
  display: flex;
  align-items: stretch;
  padding: 3em 2em;
}
.footer > div {
  flex: 0 0 calc(25% - 1.13em);
  max-width: calc(25% - 1.13em);
}
.footer > div > h3 {
  margin: 0 0 0.8em;
  color: var(--blanc);
  font-size: 2em;
  text-transform: lowercase;
  font-weight: 700;
}
.footer > div:not(:last-child) {
  border-right: 1px solid var(--blanc);
  padding-right: 1.5em;
}
.footer > div:not(:first-child) {
  padding-left: 1.5em;
}
.footer > div.contactF > figure > a {
  display: block;
  background-color: var(--blanc);
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  margin-bottom: 1em;
  transition: all 0.3s;
}
.footer > div.contactF > figure > a:hover > img {
  opacity: 0.6;
}
.footer > div.contactF > figure > a > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer > div.contactF > p {
  margin: 0;
  color: var(--blanc);
  font-size: 0.9em;
  line-height: 25px;
}
.footer > div.menuF > ul {
  margin: 0;
  list-style: none;
}
.footer > div.menuF > ul > li {
  margin: 0;
  font-size: 1em;
}
.footer > div.menuF > ul > li > a {
  display: block;
  text-transform: lowercase;
  font-weight: 600;
  margin-bottom: 1em;
  color: var(--blanc);
  font-size: 1.1em;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  position: relative;
}
.footer > div.menuF > ul > li > a:after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--blanc);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.footer > div.menuF > ul > li > a:hover:after {
  width: 100%;
}
.footer > div.adresseF > p {
  color: var(--blanc);
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 1em;
}
.footer > div.adresseF > p > a {
  color: var(--blanc);
  font-weight: 700;
}
.footer > div.adresseF > p > a:after {
  width: 0;
  background-color: var(--blanc);
}
.footer > div.adresseF > p > a:hover:after {
  width: 100%;
}
.footer > div.adresseF > p:last-child > a {
  font-size: 1.4em;
  transition: all 0.3s;
}
.footer > div.adresseF > p:last-child > a:after {
  display: none;
}
.footer > div.adresseF > p:last-child > a:hover {
  opacity: 0.6;
}
.footer > div.descriptionF > p {
  margin: 0;
  color: var(--blanc);
  font-size: 0.9em;
  line-height: 25px;
}

/* FOOTER LÉGAL */
.legal {
  text-align: center;
  margin: 1.5em;
  text-transform: lowercase;
  font-weight: 500;
}
.legal > p {
  margin: 0;
  font-size: 0.9em;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .footer {
    flex-wrap: wrap;
  }
  .footer > div {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .footer > div:first-child {
    border-bottom: 1px solid var(--blanc);
    padding-bottom: 1.5em;
    padding-left: 1.5em;
  }
  .footer > div:nth-child(2) {
    border-right: none;
    border-bottom: 1px solid var(--blanc);
    padding-bottom: 1.5em;
  }
  .footer > div:nth-child(3), .footer > div:last-child {
    padding-top: 1.5em;
  }
}
@media screen and (max-width: 1200px) {
  .footer {
    padding: 2em 2em 2em 1em;
    border-radius: 20px;
  }
}
@media screen and (max-width: 990px) {
  .footer > div:not(:last-child) {
    padding-right: 1em;
  }
  .footer > div:not(:first-child) {
    padding-left: 1em;
  }
  .footer > div:nth-child(3), .footer > div:last-child {
    padding-top: 1em;
  }
  .footer > div:nth-child(2) {
    padding-right: 0;
    padding-bottom: 1em;
  }
  .footer > div:first-child {
    padding-bottom: 1em;
    padding-left: 1em;
  }
}
@media screen and (max-width: 768px) {
  .footer > div {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .footer > div:first-child {
    padding-right: 0;
    border-right: 0;
  }
  .footer > div:nth-child(2) {
    padding-top: 1em;
  }
  .footer > div:nth-child(3) {
    border-right: none;
    padding-right: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid var(--blanc);
  }
}
@media screen and (max-width: 576px) {
  .footer {
    padding-left: 1em;
  }
}
/********************* SOMMAIRE *********************/
/* PAGE PAR DÉFAUT                     ligne :   10 */
/* PAGE D'ACCUEIL                      ligne :   52 */
/* FIL D'ARIANE                        ligne :  115 */
/* MEDIA QUERIES                       ligne :  152 */
/* PAGE PAR DÉFAUT */
.entete {
  border-radius: 30px;
  overflow: auto;
  width: 90%;
  max-width: 1320px;
  margin: -165px auto 4em;
  position: relative;
}
.entete > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.entete > div {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
  padding: 10em 2em 2em 5em;
  position: relative;
}
.entete > div > h1 {
  color: var(--blanc);
  text-transform: lowercase;
}
.entete > div > h2 {
  color: var(--blanc);
  text-transform: lowercase;
  font-family: "King";
  font-weight: 400;
  margin: 0;
  font-size: 1.6em;
}

/* PAGE D'ACCUEIL */
.enteteF {
  border-radius: 30px;
  overflow: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 1320px;
  margin: -545px auto 7em;
  position: relative;
}
.enteteF > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
.enteteF > div {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
  text-align: center;
  padding: 7em 1em 4em;
  position: relative;
}
.enteteF > div > img {
  width: 165px;
}
.enteteF > div > h1 {
  text-transform: lowercase;
  color: var(--blanc);
  font-size: 5em;
}
.enteteF > div > h2 {
  font-family: "King";
  text-transform: lowercase;
  margin: 0;
  font-weight: 400;
  color: #EFB257;
}
.enteteF > div > div {
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: auto;
  border: 2px solid var(--blanc);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blanc);
  font-size: 1.4em;
  padding: 1.2em 0.2em;
  margin-top: 4em;
}

/* FIL D'ARIANE */
.ariane {
  margin-top: 1em;
}
.ariane > span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 8px;
  color: var(--blanc);
  text-transform: lowercase;
  font-weight: 700;
}
.ariane > span a {
  color: var(--blanc);
  font-weight: 700;
  position: relative;
}
.ariane > span a:after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--blanc);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.3s;
}
.ariane > span a:hover:after {
  width: 0;
}
.ariane > span .breadcrumb_last {
  font-weight: 700;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .enteteF, .entete {
    max-width: 1030px;
  }
}
@media screen and (max-width: 1200px) {
  .enteteF {
    border-radius: 20px;
    max-width: 850px;
  }
  .entete {
    border-radius: 20px;
    max-width: 850px;
  }
  .entete > div {
    padding: 6em 2em 2em;
  }
}
@media screen and (max-width: 990px) {
  .enteteF {
    max-width: 610px;
  }
  .enteteF > div > img {
    width: 125px;
  }
  .enteteF > div > h1 {
    font-size: 4em;
  }
  .entete {
    max-width: 610px;
  }
  .entete > div > h2 {
    font-size: 1.4em;
  }
}
@media screen and (max-width: 768px) {
  .enteteF {
    margin-top: -485px;
    max-width: 430px;
  }
  .enteteF > div > h1 {
    font-size: 3em;
  }
  .entete {
    max-width: 430px;
  }
  .entete > div {
    padding: 4em 1em 2em;
  }
  .entete > div > h2 {
    font-size: 1.2em;
  }
  .ariane > span {
    gap: 5px 8px;
    font-size: 0.8em;
  }
}
@media screen and (max-width: 576px) {
  .enteteF {
    margin: -395px auto 4em;
  }
  .enteteF > div {
    padding: 5em 1em 3em;
  }
  .enteteF > div > img {
    width: 100px;
  }
  .enteteF > div > h1 {
    font-size: 2.5em;
  }
  .enteteF > div > div {
    margin-top: 2em;
  }
  .entete > div {
    padding: 6em 1em 3em;
  }
  .ariane {
    display: none;
  }
}
/********************* SOMMAIRE *********************/
/* INTRODUCTION                        ligne :   14 */
/* ACTIVITÉS                           ligne :   44 */
/* EXPERTISE NATURE & ANCRAGE          ligne :  142 */
/* FAQ                                 ligne :  194 */
/* AVIS CLIENTS                        ligne :  235 */
/* PARTENAIRES                         ligne :  254 */
/* CONTACT                             ligne :  287 */
/* MEDIA QUERIES                       ligne :  327 */
/* INTRODUCTION */
.intro {
  width: 95%;
  max-width: 950px;
  margin: 0 auto 6em;
  text-align: center;
}
.intro h3 {
  margin: 0 0 0.7em;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.8em;
  padding-bottom: 20px;
  position: relative;
}
.intro h3:after {
  content: "";
  width: 105px;
  height: 10px;
  border-radius: 20px;
  background-color: var(--marron-pale);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* ACTIVITÉS */
.activites > div {
  display: flex;
  align-items: flex-end;
  gap: 3em;
  background-color: var(--beige);
  border-radius: 30px;
  padding: 4em 1.5em 1.5em 4em;
  margin-bottom: 10em;
  position: relative;
}
.activites > div > div:first-child {
  width: 160px;
  height: 100%;
  border-radius: 30px;
  position: absolute;
  top: 0;
  left: 0;
}
.activites > div > div:not(:last-child):not(:first-child) {
  flex: 0 0 575px;
  max-width: 575px;
  margin-bottom: -4em;
  position: relative;
}
.activites > div > div:not(:last-child):not(:first-child) > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 250px;
  padding: 1em 0;
  background-color: var(--blanc);
  border-radius: 30px;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.25);
  position: absolute;
  top: -35px;
  left: -40px;
}
.activites > div > div:not(:last-child):not(:first-child) > div:last-child {
  aspect-ratio: 1/1;
  border-radius: 30px;
  overflow: hidden;
}
.activites > div > div:not(:last-child):not(:first-child) > div:last-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.activites > div > div:last-child > .categories {
  display: flex;
  align-items: center;
  gap: 1em;
  flex-wrap: wrap;
}
.activites > div > div:last-child > .categories > p {
  margin: 0;
  text-transform: lowercase;
  padding: 0.4em 1.4em;
  border: 1px solid;
  border-radius: 50px;
  font-size: 0.9em;
}
.activites > div > div:last-child > .ss_titre {
  margin: 0.6em 0 0;
  font-family: "King";
  font-size: 2em;
  letter-spacing: -3px;
}
.activites > div > div:last-child > h2 {
  text-transform: uppercase;
  margin: 0;
}
.activites > div > div:last-child > span {
  display: block;
  width: 110px;
  height: 10px;
  border-radius: 20px;
  margin: 1.5em 0;
}
.activites > div > div:last-child > div:not(.categories) > p:last-child {
  margin: 0;
}
.activites > div > div:last-child > .btn {
  margin: 3em 0 0 auto;
}

/* EXPERTISE NATURE & ANCRAGE */
.img_txt {
  margin-bottom: 3em;
}
.img_txt > div {
  display: flex;
  align-items: center;
  gap: 3em;
  width: 95%;
  max-width: 950px;
  margin: auto;
}
.img_txt > div > .img {
  flex: 0 0 380px;
  max-width: 380px;
  aspect-ratio: 4/5;
  border-radius: 30px;
  overflow: hidden;
}
.img_txt > div > .img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.img_txt > div > .description {
  flex: 1;
}
.img_txt > div > .description > h2 {
  font-weight: 600;
}
.img_txt > div > .description > h2 > strong {
  display: block;
  font-weight: 900;
}
.img_txt > div > .description > p {
  line-height: 1.5;
}
.img_txt > div > .description > p:last-child {
  margin: 0;
}

.expertise {
  background-color: var(--beige);
  padding: 3em 0;
}

/* FAQ */
.faq {
  width: 95%;
  max-width: 950px;
  margin: 4em auto 5em;
}
.faq > div {
  border-radius: 20px;
  background-color: var(--blanc);
  box-shadow: 0 5px 10px 0 rgba(153, 103, 0, 0.2);
  padding: 1.5em 2em;
  margin-bottom: 1.8em;
  cursor: pointer;
}
.faq > div > h5 {
  color: var(--gris);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-weight: 700;
  margin: 0;
}
.faq > div > h5 > i {
  font-size: 1.4em;
  transition: all 0.3s;
}
.faq > div > div {
  display: none;
  margin-top: 1em;
}
.faq > div > div > p:last-child {
  margin: 0;
}
.faq > div.open > h5 > i {
  transform: rotate(180deg);
}

/* AVIS CLIENTS */
.avis {
  background-color: var(--beige);
  border-radius: 30px;
  padding: 4em 3em;
  margin-bottom: 3em;
}
.avis > h3 {
  margin: 0;
  text-align: center;
  font-weight: 600;
}
.avis > div {
  margin-top: 3em;
}

/* PARTENAIRES */
.partenaires {
  background-color: var(--beige);
  border-radius: 30px;
  padding: 4em 3em;
  margin-bottom: 7em;
}
.partenaires > h3 {
  margin: 0;
  text-align: center;
  font-weight: 600;
}
.partenaires > div {
  margin-top: 3em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
}
.partenaires > div > * {
  height: 80px;
}
.partenaires > div > * > img {
  width: auto;
  max-width: unset;
  height: 100%;
}

/* CONTACT */
.contact {
  max-width: 750px;
  width: 95%;
  margin: 0 auto 8em;
  position: relative;
}
.contact:after {
  content: "";
  width: 100vw;
  height: 600px;
  background-color: var(--blanc);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.contact > div {
  text-align: center;
}
.contact > div > h3 {
  color: #EB8A00;
  font-weight: 600;
  margin: 0 0 0.8em;
}
.contact > div > h3 > strong {
  display: block;
}
.contact > .btn {
  background-color: #EB8A00;
  border-color: #EB8A00;
  margin: 3em auto 0;
  text-transform: uppercase;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1440px) {
  .activites > div {
    padding: 3em 1.5em 1.5em 2em;
  }
  .activites > div > div:first-child {
    width: 130px;
  }
  .activites > div > div:not(:last-child):not(:first-child) {
    flex: 0 0 475px;
    max-width: 475px;
  }
  .activites > div > div:not(:last-child):not(:first-child) > div:first-child {
    width: 200px;
    border-radius: 20px;
    left: -25px;
  }
  .activites > div > div:last-child > .categories {
    gap: 0.5em;
  }
  .activites > div > div:last-child > .ss_titre {
    font-size: 1.6em;
  }
  .activites > div > div:last-child > span {
    margin: 1em 0;
  }
}
@media screen and (max-width: 1200px) {
  .activites > div {
    border-radius: 20px;
    margin-bottom: 6em;
    gap: 1em;
    align-items: center;
  }
  .activites > div > div:first-child {
    border-radius: 20px;
  }
  .activites > div > div:not(:last-child):not(:first-child) {
    flex: 0 0 350px;
    max-width: 350px;
    margin: 0;
  }
  .activites > div > div:not(:last-child):not(:first-child) > div:last-child {
    border-radius: 20px;
  }
  .img_txt > div > .img, .avis {
    border-radius: 20px;
  }
  .partenaires {
    border-radius: 20px;
  }
  .partenaires > div {
    gap: 0.5em;
  }
  .partenaires > div > * {
    height: 66px;
  }
}
@media screen and (max-width: 990px) {
  .intro h3 {
    font-size: 1.6em;
    padding-bottom: 14px;
  }
  .intro h3:after {
    width: 80px;
    height: 6px;
  }
  .activites > div {
    flex-wrap: wrap;
    padding: 2em;
    margin-bottom: 4em;
  }
  .activites > div > div:first-child {
    width: 100%;
    height: 125px;
    top: unset;
    bottom: 0;
  }
  .activites > div > div:not(:last-child):not(:first-child) {
    order: 2;
    flex: 0 0 575px;
    max-width: 575px;
    margin: 2em auto 0;
  }
  .activites > div > div:last-child {
    order: 1;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .img_txt > div {
    gap: 2em;
  }
  .img_txt > div > .img {
    flex: 0 0 300px;
    max-width: 300px;
  }
  .avis {
    padding: 3em 2em;
  }
  .partenaires {
    padding: 3em 2em;
  }
  .partenaires > div {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 768px) {
  .intro h3 {
    font-size: 1.4em;
  }
  .activites > div > div:not(:last-child):not(:first-child) {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .img_txt > div {
    flex-wrap: wrap;
  }
  .img_txt > div > .img {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
    aspect-ratio: 16/9;
  }
  .img_txt > div > .description {
    flex: 0 0 100%;
    max-width: 100%;
    order: 1;
  }
  .avis {
    padding: 3em 2em 1em;
  }
  .avis > div {
    margin-top: 2em;
  }
}
@media screen and (max-width: 576px) {
  .intro h3 {
    font-size: 1.2em;
    padding-bottom: 10px;
  }
  .intro h3:after {
    width: 65px;
  }
  .activites > div {
    padding: 2em 1em 1em;
    border-radius: 10px;
  }
  .activites > div > div:first-child {
    height: 75px;
    border-radius: 10px;
  }
  .activites > div > div:not(:last-child):not(:first-child) {
    flex: 0 0 calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin-left: 20px;
  }
  .activites > div > div:not(:last-child):not(:first-child) > div:first-child {
    border-radius: 10px;
    width: 180px;
    padding: 0.5em 0;
  }
  .activites > div > div:not(:last-child):not(:first-child) > div:last-child {
    border-radius: 10px;
  }
  .activites > div > div:last-child > .ss_itre {
    font-size: 1.4em;
  }
  .activites > div > div:last-child > .btn {
    margin: 1em 0 2em auto;
  }
  .activites > div > div:last-child > .categories > p {
    font-size: 0.8em;
  }
  .expertise {
    padding: 1em 0 2em;
  }
  .img_txt > div > .img, .partenaires {
    border-radius: 10px;
  }
  .faq > div {
    border-radius: 10px;
    padding: 1.5em 1em;
    margin-bottom: 1em;
  }
  .faq > div > h5 > i {
    display: none;
  }
  .avis {
    border-radius: 10px;
    padding: 2em 1em 1em;
  }
  .partenaires {
    padding: 2em 1em;
  }
  .partenaires > div > * {
    height: 60px;
  }
}
@media screen and (max-width: 450px) {
  .intro {
    margin-bottom: 3em;
  }
}
.content_contact .content {
  background-color: var(--blanc);
  border-radius: 40px;
  padding: 4em 8em;
  margin-bottom: 2em;
}
.content_contact .contactC {
  margin-bottom: 5em;
}
.content_contact .contactC > div:first-child {
  display: flex;
  align-items: center;
  gap: 3em;
  background-color: var(--blanc);
  border-radius: 40px;
  padding: 2em 8em;
  margin-bottom: 2em;
}
.content_contact .contactC > div:first-child > div:first-child {
  flex: 0 0 400px;
  max-width: 400px;
}
.content_contact .contactC > div:first-child > div:first-child > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.content_contact .contactC > div:first-child > div:last-child {
  flex: 1;
}
.content_contact .contactC > div:first-child > div:last-child > h3 {
  margin-top: 0;
}
.content_contact .contactC > div:first-child > div:last-child > p:first-of-type {
  line-height: 1.6;
}
.content_contact .contactC > div:first-child > div:last-child > p:last-child {
  margin: 0;
}
.content_contact .contactC > div:first-child > div:last-child > p:not(:first-of-type) {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}
.content_contact .contactC > div:last-of-type {
  background-color: var(--blanc);
  border-radius: 40px;
  padding: 2em 1em;
  margin-bottom: 2em;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui {
  max-width: 750px;
  margin: auto;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-col {
  padding: 0;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row-last {
  margin-bottom: 0 !important;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  border-radius: 30px;
  border: 2px solid var(--marron-pale);
  padding: 1em 1.5em;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field label {
  display: flex;
  align-items: center;
  gap: 5px;
  text-transform: lowercase;
  font-weight: 500 !important;
  font-size: 1.1em !important;
  color: var(--marron-pale);
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field input, .content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field textarea {
  border: none;
  padding: 0;
  flex: 1;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field .forminator-error-message {
  flex: 0 0 100%;
  max-width: 100%;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-field-textarea label {
  align-self: baseline;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-checkbox-box {
  border-color: var(--marron-pale);
  color: var(--marron-pale);
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .btn {
  margin: auto;
  text-transform: uppercase;
  border-radius: 30px;
  font-weight: 900 !important;
  font-size: 1.1em !important;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8em 1.8em;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
}
.content_contact .contactC > div:last-of-type > form.forminator-ui .btn:after {
  content: "\f1d8";
  font-family: "Font Awesome 7 Free";
  font-weight: 900;
}
.content_contact .contactC > iframe {
  width: 100%;
  aspect-ratio: 18/9;
  border: none;
  border-radius: 40px;
}

/* MEDIA QUERIES */
@media screen and (max-width: 1200px) {
  .content_contact .content {
    border-radius: 20px;
    padding: 3em 4em;
  }
  .content_contact .contactC > div:first-child {
    border-radius: 20px;
    padding: 2em 4em;
  }
  .content_contact .contactC > div:first-child > div:first-child {
    flex: 0 0 300px;
    max-width: 300px;
  }
  .content_contact .contactC > div:last-of-type, .content_contact .contactC > iframe {
    border-radius: 20px;
  }
}
@media screen and (max-width: 990px) {
  .content_contact .contactC > div:first-child {
    gap: 1em;
  }
  .content_contact .contactC > div:first-child > div:first-child {
    flex: 0 0 250px;
    max-width: 250px;
  }
}
@media screen and (max-width: 768px) {
  .content_contact .content {
    padding: 2em;
  }
  .content_contact .contactC > div:first-child {
    flex-wrap: wrap;
    justify-content: center;
  }
  .content_contact .contactC > div:first-child > div:first-child {
    order: 2;
    flex: 0 0 300px;
    max-width: 300px;
  }
  .content_contact .contactC > div:first-child > div:last-child {
    order: 1;
  }
  .content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field {
    padding: 0.6em 1em;
    border-radius: 20px;
  }
  .content_contact .contactC > div:last-of-type > form.forminator-ui .forminator-row:not(.forminator-row-last) > div:not(.forminator-field-consent) .forminator-field label {
    font-size: 1em !important;
  }
  .content_contact .contactC > div:last-of-type > form.forminator-ui .btn {
    font-size: 1em !important;
  }
}
@media screen and (max-width: 576px) {
  .content_contact .contactC > div:first-child {
    padding: 2em;
  }
  .content_contact .contactC > iframe {
    aspect-ratio: 14/9;
  }
}
@media screen and (max-width: 450px) {
  .content_contact .contactC > div:last-of-type > form.forminator-ui .btn {
    font-size: 0.9em !important;
  }
}/*# sourceMappingURL=main.css.map */