@font-face {
  font-family: "LTWave";
  src: url("../fonts/LTWave-Light.ttf") format("truetype");
}
@font-face {
  font-family: "Quantify";
  src: url("../fonts/Quantify.ttf") format("truetype");
}
* {
  margin: 0;
  padding: 0;
  font-family: "LTWave";
  font-size: 18px;
  font-weight: normal;
  scroll-behavior: smooth;
}

:root {
  --header-font-color: #ffffff;
  --font-color: #ffffff9c;
  --mon-color: #c49a6b;
  --mon-color-light: #c49b6bb0;
  --kameleon-color: #231f20;
}

::-webkit-scrollbar {
  display: none;
}

textarea {
  resize: vertical;
}

a {
  color: #0098db;
  text-decoration: none;
}

span {
  font-family: inherit;
  font-size: inherit;
  color: var(--kameleon-color);
}

.body {
  display: flex;
  flex-direction: column;
}

.fond {
  background-image: url(../images/font.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom right;
  position: fixed;
  top: 0;
  left: 0;
  height: 100svh;
  width: 100svw;
  z-index: -1;
  overflow-y: hidden;
}

.header {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background-color: var(--header-font-color);
}
.header_close {
  height: 100%;
  aspect-ratio: 1;
}
.header_close img {
  height: 50%;
  margin: 25%;
}
.header_menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10svh;
  min-height: 60px;
  max-height: 100px;
}
.header_logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
}
.header_logo_logo {
  max-height: calc(100% - 10px);
  padding: 5px;
  max-width: calc(90% - 10px);
}
.header_logo_texte {
  height: 20px;
  margin: 0 5px;
  font-size: 1.2rem;
  font-family: "Quantify";
  color: var(--kameleon-color);
}
.header_logo_texte_texte {
  font-size: 1.2rem;
  font-family: "Quantify";
  color: var(--mon-color);
}

.carousel {
  width: 100%;
  position: relative;
}

.carousel.pointer-event {
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}
.carousel-item-next, .carousel-item-prev, .carousel-item.active {
  display: block;
}

.active.carousel-item-end, .carousel-item-next:not(.carousel-item-start) {
  transform: translateX(100%);
}

.active.carousel-item-start, .carousel-item-prev:not(.carousel-item-end) {
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none;
}

.carousel-fade .carousel-item-next.carousel-item-start, .carousel-fade .carousel-item-prev.carousel-item-end, .carousel-fade .carousel-item.active {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-end, .carousel-fade .active.carousel-item-start {
    transition: none;
  }
}
.active {
  display: block;
}

.accueil {
  width: 100%;
  display: flex;
  flex-direction: column;
  margin-top: 10svh;
}
.accueil h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-align: center;
  font-size: min(50px, 1.8svw + 20px);
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
}
.accueil h1 span {
  font-size: min(50px, 1.8svw + 20px);
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
  margin-right: 10px;
}
.accueil h1 a {
  display: flex;
  align-items: center;
}
.accueil h1 a svg {
  height: calc(1svw + 10px);
  fill: var(--mon-color);
  margin: 0 10px;
}
.accueil_encart {
  width: 100%;
  min-height: 33svw;
  margin-top: 20px;
}
.accueil_encart_texte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  width: calc(50% - 100px);
  height: calc(100% - 20px);
  position: absolute;
  top: 0;
  left: 50%;
  padding: 10px 50px;
  background-color: var(--font-color);
  font-size: max(16px, min(25px, 1.5svw - 5px));
}
.accueil_encart_texte b {
  font-size: inherit;
}
.accueil_encart_photos {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.accueil_encart_photo {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.accueil_univers {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1500px;
}
.accueil_univers_univer {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(20% - 40px);
  aspect-ratio: 1;
  margin-top: 20px;
  border-radius: 10px;
}
.accueil_univers_univer p {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: calc(100% - 20px);
  width: calc(100% - 20px);
  background-color: var(--font-color);
  color: black;
  font-weight: bold;
  border-radius: 10px;
  padding: 10px;
}
.accueil_univers_univer p:hover {
  background-color: transparent;
  color: var(--font-color);
  font-weight: normal;
}
.accueil_marques {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1500px;
}
.accueil_marques_marque {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(12.5% - 20px);
  aspect-ratio: 2/1;
  margin-top: 20px;
}
.accueil_marques_marque p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-color: transparent;
  color: var(--font-color);
  font-weight: normal;
}

.actualite {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10svh;
}
.actualite_titre {
  width: calc(100% - 40px);
  max-width: 1500px;
  margin: 0 20px;
  text-align: left;
  font-size: min(50px, 1.8svw + 20px);
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
}
.actualite_titre span {
  font-size: min(50px, 1.8svw + 20px);
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
}
.actualite_zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  padding-top: 8px;
  margin-top: 2px;
}
.actualite_zone_entete {
  display: flex;
  width: 100%;
  margin: 10px 0;
}
.actualite_zone_entete_textes {
  display: flex;
  flex-direction: column;
  width: 60%;
  margin: 10px;
}
.actualite_zone_entete_textes_titre {
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: max(20px, min(35px, 1.8svw - 5px));
  color: var(--mon-color);
}
.actualite_zone_entete_textes_texte {
  display: flex;
  flex-direction: column;
  text-align: justify;
  justify-content: center;
  align-items: flex-end;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  margin: 0 10px;
  padding-bottom: 20px;
  color: var(--mon-color);
  font-size: max(20px, min(35px, 1.8svw - 5px));
  margin-left: 10px;
}
.actualite_zone_entete_image {
  display: flex;
  align-items: center;
  width: 40%;
}
.actualite_zone_entete_image img {
  width: 100%;
  border-radius: 10px;
}
.actualite_zone_ligne {
  width: 25%;
  border: solid 1px var(--mon-color);
  margin: 10px 0;
}
.actualite_zone_ligne2 {
  width: 100%;
  border: solid 2px var(--mon-color);
  border-radius: 50%;
  margin: 10px 0;
}
.actualite_zone_detail {
  display: flex;
  width: 100%;
  margin: 10px 0;
}
.actualite_zone_detail_textes {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 10px;
}
.actualite_zone_detail_textes_titre {
  width: calc(100% - 20px);
  margin: 0 10px;
  font-size: max(20px, min(35px, 1.8svw - 5px));
  color: var(--mon-color);
}
.actualite_zone_detail_textes_texte {
  display: flex;
  flex-direction: column;
  text-align: justify;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  margin: 10px;
  color: var(--kameleon-color);
  font-size: max(14px, min(25px, 1.3svw - 5px));
}
.actualite_zone_detail_image {
  display: flex;
  align-items: center;
  width: 50%;
}
.actualite_zone_detail_image img {
  width: 100%;
  border-radius: 10px;
}

.actualites {
  margin-top: 10svh;
}
.actualites_titre {
  width: calc(100% - 40px);
  margin: 0 20px;
  text-align: left;
  font-size: min(50px, 1.8svw + 20px);
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
}
.actualites_titre span {
  font-size: min(50px, 1.8svw + 20px);
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
}
.actualites_texte {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  margin-top: 20px;
  background-color: #f3f3f3;
}
.actualites_texte_texte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  width: calc(100% - 20px);
  max-width: 1500px;
  padding: 10px;
  font-size: max(16px, min(25px, 1.5svw - 5px));
}
.actualites_texte_texte b {
  font-size: inherit;
}
.actualites_zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  margin-top: 20px;
}
.actualites_zone_articles {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1500px;
  border-radius: 10px;
}
.actualites_zone_articles_images {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 40px);
  margin: 10px;
}
.actualites_zone_articles_images_image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}
.actualites_zone_articles_article {
  display: flex;
  flex-direction: column;
  width: calc(50% - 40px);
  margin: 10px;
  padding: 10px;
  border-radius: 5px;
  background-color: white;
}
.actualites_zone_articles_article_titre {
  font-size: max(20px, min(35px, 1.8svw - 5px));
  margin-bottom: 10px;
  color: var(--mon-color);
}
.actualites_zone_articles_article_texte {
  font-size: max(16px, min(25px, 1.5svw - 5px));
  text-align: justify;
  color: var(--kameleon-color);
}

.ariane {
  width: calc(100% - 20px);
  margin: 10px;
  color: var(--kameleon-color);
  font-size: max(14px, min(25px, 1.3svw - 5px));
}
.ariane a {
  color: var(--mon-color);
  font-size: max(14px, min(25px, 1.3svw - 5px));
}

.bouton_connection {
  font-size: 15px;
  border: 1px solid var(--mon-color);
  color: white;
  border-radius: 3px;
  background-color: var(--mon-color);
  padding: 5px;
}
.bouton_connection:hover {
  background-color: white;
  color: black;
}
.bouton_connection:active {
  box-shadow: inset -2px -2px 3px rgba(255, 255, 255, 0.6), inset 2px 2px 3px rgba(255, 255, 255, 0.6);
}

.chargement {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  height: 100%;
  width: 100svw;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}

.compte {
  max-height: calc(100svh - 50px - 40px);
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  margin-top: 10svh;
}
.compte_connection {
  width: calc(100% - 10px);
  max-width: 500px;
  height: auto !important;
  padding: 10px;
  margin-top: 20px;
  background-color: white;
  display: flex;
  flex-direction: column;
}
.compte_connection input {
  margin-bottom: 10px;
}
.compte_connection button {
  margin-bottom: 10px;
}

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10svh;
}
.contact_titre {
  width: calc(100% - 40px);
  margin: 0 20px;
  text-align: left;
  font-size: min(50px, 1.8svw + 20px);
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
}
.contact_titre span {
  font-size: min(50px, 1.8svw + 20px);
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
}
.contact_zone {
  display: flex;
  flex-direction: column;
  width: calc(100% - 20px);
  max-width: 500px;
  padding: 10px;
}
.contact_zone_input {
  display: flex;
  flex-direction: column;
}
.contact_zone_input input {
  margin: 5px 0;
  padding: 5px;
}
.contact_zone_bouton {
  padding: 5px 10px;
  border: solid 1px var(--mon-color);
  border-radius: 2px;
  background-color: var(--mon-color);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100svw;
  height: 40px;
  margin-top: 20px;
  background: linear-gradient(to right, var(--mon-color), var(--kameleon-color));
}
.footer_col {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.footer_col_sociale {
  display: none;
  flex-direction: row;
  justify-content: center;
  width: 100%;
}
.footer_col_sociale a {
  display: flex;
  align-items: center;
  font-size: calc(0.6svw + 10px);
  color: white;
  margin: 5px 10px;
}
.footer_col_sociale a svg {
  height: 25px;
  fill: white;
}
.footer_col_footer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}
.footer_col_footer a {
  display: flex;
  align-items: center;
  font-size: calc(0.6svw + 10px);
  color: white;
  margin: 5px;
}
.footer_col_footer_sociale {
  display: flex;
  flex-direction: row;
}
.footer_col_footer_sociale a {
  display: flex;
  align-items: center;
  font-size: calc(0.6svw + 10px);
  color: white;
  margin: 5px 10px;
}
.footer_col_footer_sociale a svg {
  height: 25px;
  fill: white;
}

.fournisseurs {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10svh;
}
.fournisseurs_titre {
  width: calc(100% - 40px);
  margin: 0 20px;
  text-align: left;
  font-size: min(50px, 1.8svw + 20px);
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
}
.fournisseurs_titre span {
  font-size: min(50px, 1.8svw + 20px);
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
}
.fournisseurs_sommaire {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
}
.fournisseurs_sommaire_lien {
  text-decoration: none;
  font-size: small;
  cursor: pointer;
}
.fournisseurs_sommaire_lien img {
  width: 100px;
}
.fournisseurs_zone {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  max-width: 1500px;
}
.fournisseurs_zone_fournisseur {
  display: flex;
  flex-direction: column;
  width: calc(33.3333333333% - 40px);
  padding: 90px 0 0 0;
  margin: 0 20px 20px 20px;
}
.fournisseurs_zone_fournisseur_titre {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-top: solid 3px var(--mon-color);
}
.fournisseurs_zone_fournisseur_titre img {
  max-width: 175px;
}
.fournisseurs_zone_fournisseur_titre p {
  margin: 10px;
  text-align: justify;
}
.fournisseurs_zone_fournisseur_catalogue {
  display: flex;
  flex-direction: column;
  margin: 2px;
  padding: 7px;
}
.fournisseurs_zone_fournisseur_catalogue a {
  color: var(--mon-color);
}
.fournisseurs_zone_fournisseur_catalogue a i {
  margin: 5px;
}

.mentions {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10svh;
}
.mentions_titre {
  width: calc(100% - 40px);
  margin: 0 20px;
  text-align: left;
  font-size: min(50px, 1.8svw + 20px);
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
}
.mentions_titre span {
  font-size: min(50px, 1.8svw + 20px);
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
}
.mentions_zone {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
}
.mentions_zone_texte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  padding: 10px;
  color: var(--kameleon-color);
  font-size: max(16px, min(25px, 1.5svw - 5px));
}

.menu {
  display: flex;
  position: fixed;
  top: 0;
  left: -300px;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  opacity: 0.5;
  transition: all 500ms ease-out;
}
.menu_visible {
  left: 0;
  width: 100svw;
  opacity: 1;
}
.menu_menu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 90%;
  max-width: 400px;
  z-index: 100;
  background-color: white;
}
.menu_menu_zone {
  display: flex;
  flex-direction: column;
}
.menu_menu_zone_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 10svh;
  min-height: 60px;
  max-height: 100px;
}
.menu_menu_zone_header_close {
  height: 100%;
  aspect-ratio: 1;
}
.menu_menu_zone_header_close img {
  height: 50%;
  margin: 25%;
}
.menu_menu_zone a {
  font-size: max(20px, min(35px, 1.8svw - 5px));
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
  padding: 10px;
  text-decoration: none;
  white-space: nowrap;
}
.menu_menu_zone a span {
  font-size: max(20px, min(35px, 1.8svw - 5px));
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
}
.menu_menu_zone a:hover {
  color: var(--mon-color);
}
.menu_menu_zone a:hover span {
  color: var(--kameleon-color);
}
.menu_menu_deco {
  position: relative;
  height: 100%;
}
.menu_menu_deco_1 {
  position: absolute;
  width: 25%;
  height: 100%;
  top: 5%;
  left: -40%;
  transform: rotateZ(-115deg);
  background-color: var(--kameleon-color);
}
.menu_menu_deco_2 {
  position: absolute;
  width: 25%;
  height: 100%;
  top: 20%;
  left: -40%;
  transform: rotateZ(-115deg);
  background-color: var(--mon-color);
}
.menu_menu_copyright {
  position: absolute;
  bottom: 10px;
  right: -5px;
  transform: rotateZ(-25deg);
  transform-origin: bottom left;
}

.nous {
  margin-top: 10svh;
}
.nous_titre {
  width: calc(100% - 40px);
  margin: 0 20px;
  text-align: left;
  font-size: min(50px, 1.8svw + 20px);
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
}
.nous_titre span {
  font-size: min(50px, 1.8svw + 20px);
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
}
.nous_titre2 {
  width: calc(100% - 40px);
  margin: 0 20px;
  text-align: center;
  font-size: min(30px, 1.1svw + 20px);
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
}
.nous_titre2 span {
  font-size: min(30px, 1.1svw + 20px);
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
}
.nous_texte {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  margin-top: 20px;
  background-color: #f3f3f3;
}
.nous_texte_texte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  width: calc(100% - 20px);
  max-width: 1500px;
  padding: 10px;
  font-size: max(16px, min(25px, 1.5svw - 5px));
}
.nous_texte_texte b {
  font-size: inherit;
}
.nous_zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  margin-top: 20px;
}
.nous_zone_zone {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1500px;
}

.post {
  display: flex;
  flex-direction: row;
  width: 100%;
  margin-top: 20px;
  background-color: var(--mon-color);
}
.post_image {
  width: 50%;
}
.post_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(50% - 100px);
  padding: 10px 50px;
}
.post_card_titre {
  margin-bottom: 20px;
  font-size: max(20px, min(35px, 1.8svw - 5px));
  font-weight: bold;
}
.post_card_texte {
  font-size: max(16px, min(25px, 1.5svw - 5px));
  text-align: justify;
}
.post_card_lien {
  height: 30px;
  width: 30px;
  padding: 10px;
  margin-top: 10px;
  background-color: var(--kameleon-color);
  border-radius: 50%;
}
.post_card_lien svg {
  height: 100%;
  width: 100%;
  fill: var(--mon-color);
}

.projet {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10svh;
}
.projet_titre {
  width: calc(100% - 40px);
  max-width: 1500px;
  margin: 0 20px;
  text-align: left;
  font-size: min(50px, 1.8svw + 20px);
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
}
.projet_titre span {
  font-size: min(50px, 1.8svw + 20px);
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
}
.projet_zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1500px;
  padding-top: 8px;
  margin-top: 2px;
}
.projet_zone_detail {
  display: flex;
  width: 100%;
}
.projet_zone_detail_textes {
  display: flex;
  flex-direction: column;
  width: 60%;
}
.projet_zone_detail_textes_titre {
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: max(20px, min(35px, 1.8svw - 5px));
  color: var(--mon-color);
}
.projet_zone_detail_textes_texte {
  display: flex;
  flex-direction: column;
  text-align: justify;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  margin: 0 10px;
  padding-bottom: 20px;
  color: var(--kameleon-color);
  font-size: max(14px, min(25px, 1.3svw - 5px));
  margin-left: 10px;
  border-bottom: solid 1px var(--mon-color);
}
.projet_zone_detail_textes_fournisseurs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 10px;
  padding-bottom: 20px;
  border-bottom: solid 1px var(--mon-color);
}
.projet_zone_detail_textes_fournisseurs_lien {
  text-decoration: none;
  font-size: small;
  cursor: pointer;
}
.projet_zone_detail_textes_fournisseurs_lien img {
  width: 100%;
}
.projet_zone_detail_image {
  width: 40%;
}
.projet_zone_detail_image img {
  width: 100%;
}
.projet_zone_photos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1500px;
}
.projet_zone_photos_titre {
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: max(20px, min(35px, 1.8svw - 5px));
  color: var(--mon-color);
}
.projet_zone_photos_photo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
}
.projet_zone_photos_photo img {
  max-width: min(480px, 100svw - 20px);
  margin: 10px;
}

.projets {
  margin-top: 10svh;
}
.projets_titre {
  width: calc(100% - 40px);
  margin: 0 20px;
  text-align: left;
  font-size: min(50px, 1.8svw + 20px);
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
}
.projets_titre span {
  font-size: min(50px, 1.8svw + 20px);
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
}
.projets_texte {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  margin-top: 20px;
  background-color: #f3f3f3;
}
.projets_texte_texte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  width: calc(100% - 20px);
  max-width: 1500px;
  padding: 10px;
  font-size: max(16px, min(25px, 1.5svw - 5px));
}
.projets_texte_texte b {
  font-size: inherit;
}
.projets_sommaire {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.projets_sommaire_lien {
  padding: 10px;
  margin: 0 10px;
  font-size: max(20px, min(35px, 1.8svw - 5px));
  border-bottom: solid 1px transparent;
  color: var(--mon-color);
}
.projets_sommaire_lien:hover {
  border-bottom: solid 1px var(--mon-color);
}
.projets_zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  margin-top: 20px;
}
.projets_zone_projets {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  max-width: 1500px;
}
.projets_zone_projets_projet {
  width: calc(25% - 40px);
  margin-top: 20px;
}
.projets_zone_projets_projet_titre {
  width: 100%;
  text-align: center;
  margin: 0;
  font-size: max(20px, min(35px, 1.8svw - 5px));
  color: var(--mon-color);
}
.projets_zone_projets_projet img {
  width: 100%;
  border-radius: 1000px;
}

.services {
  margin-top: 10svh;
}
.services_titre {
  width: calc(100% - 40px);
  margin: 0 20px;
  text-align: left;
  font-size: min(50px, 1.8svw + 20px);
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
}
.services_titre span {
  font-size: min(50px, 1.8svw + 20px);
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
}
.services_texte {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  margin-top: 20px;
  background-color: #f3f3f3;
}
.services_texte_texte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  width: calc(100% - 20px);
  max-width: 1500px;
  padding: 10px;
  font-size: max(16px, min(25px, 1.5svw - 5px));
}
.services_texte_texte b {
  font-size: inherit;
}
.services_zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  margin-top: 20px;
}
.services_zone_articles {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1500px;
}
.services_zone_articles_images {
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(50% - 40px);
  margin: 20px;
}
.services_zone_articles_images_image {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
}
.services_zone_articles_article {
  display: flex;
  flex-direction: column;
  width: calc(50% - 40px);
  margin: 20px;
}
.services_zone_articles_article_titre {
  font-size: max(20px, min(35px, 1.8svw - 5px));
  margin-bottom: 10px;
  color: var(--mon-color);
}
.services_zone_articles_article_texte {
  font-size: max(16px, min(25px, 1.5svw - 5px));
  text-align: justify;
}

.top {
  position: fixed;
  bottom: 50px;
  right: 30px;
  width: 30px;
  fill: var(--mon-color);
}
.top:hover {
  fill: var(--kameleon-color);
}

.univer {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10svh;
}
.univer_titre {
  width: calc(100% - 40px);
  margin: 0 20px;
  text-align: left;
  font-size: min(50px, 1.8svw + 20px);
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
}
.univer_titre span {
  font-size: min(50px, 1.8svw + 20px);
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
}
.univer_titre2 {
  width: 100%;
  text-align: center;
  font-size: calc(1.5svw + 20px);
  color: var(--kameleon-color);
  margin: 20px 0;
}
.univer_zone {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  border-top: solid 1px var(--mon-color);
  border-bottom: solid 1px var(--mon-color);
}
.univer_zone img {
  width: 30%;
}
.univer_zone_texte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  width: calc(70% - 100px);
  height: calc(100% - 20px);
  padding: 10px 50px;
  background-color: var(--header-font-color);
  color: var(--mon-color);
  font-size: max(16px, min(25px, 1.5svw - 5px));
}

.univers {
  margin-top: 10svh;
}
.univers_titre {
  width: calc(100% - 40px);
  margin: 0 20px;
  text-align: left;
  font-size: min(50px, 1.8svw + 20px);
  font-family: "LTWave";
  letter-spacing: 0px;
  color: var(--kameleon-color);
}
.univers_titre span {
  font-size: min(50px, 1.8svw + 20px);
  font-family: "Quantify";
  letter-spacing: 0px;
  color: var(--mon-color);
}
.univers_texte {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  margin-top: 20px;
  background-color: #f3f3f3;
}
.univers_texte_texte {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: justify;
  width: calc(100% - 20px);
  max-width: 1500px;
  padding: 10px;
  font-size: max(16px, min(25px, 1.5svw - 5px));
}
.univers_texte_texte b {
  font-size: inherit;
}
.univers_zone {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  margin-top: 20px;
}
.univers_zone_univers {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1500px;
}
.univers_zone_univers_univer {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: calc(20% - 40px);
  aspect-ratio: 1;
  margin-top: 20px;
  border-radius: 10px;
}
.univers_zone_univers_univer p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-color: var(--font-color);
  color: black;
  font-weight: bold;
}
.univers_zone_univers_univer p:hover {
  background-color: transparent;
  color: var(--font-color);
  font-weight: normal;
}

@media screen and (max-width: 1100px) {
  .accueil_univers_univer {
    width: calc(50% - 40px);
  }
  .accueil_marques_marque {
    width: calc(25% - 20px);
  }
  .actualite_zone_entete {
    flex-direction: column-reverse;
  }
  .actualite_zone_entete_textes {
    width: 100%;
  }
  .actualite_zone_entete_textes_fournisseurs_lien img {
    width: 100px;
  }
  .actualite_zone_entete_image {
    width: calc(100% - 20px);
    margin: 10px;
  }
  .actualite_zone_detail {
    flex-direction: column-reverse;
  }
  .actualite_zone_detail_textes {
    width: 100%;
  }
  .actualite_zone_detail_textes_fournisseurs_lien img {
    width: 100px;
  }
  .actualite_zone_detail_image {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin: 10px;
  }
  .actualite_zone_photos_photo img {
    max-height: 75svh;
  }
  .actualites_zone {
    margin: 0;
    padding: 0;
  }
  .actualites_zone_articles {
    display: flex;
    flex-direction: column-reverse;
  }
  .actualites_zone_articles_images {
    width: 100%;
    margin-bottom: 0;
  }
  .actualites_zone_articles_images_image {
    max-height: 30svh;
  }
  .actualites_zone_articles_article {
    width: 100%;
  }
  .fournisseurs_zone_fournisseur {
    width: calc(50% - 40px);
  }
  .univers_zone_univers_univer {
    width: calc(50% - 40px);
  }
  .projet_zone_detail {
    flex-direction: column-reverse;
  }
  .projet_zone_detail_textes {
    width: 100%;
  }
  .projet_zone_detail_textes_fournisseurs_lien img {
    width: 100px;
  }
  .projet_zone_detail_image {
    width: 100%;
  }
  .projet_zone_photos_photo img {
    max-height: 75svh;
  }
  .projets_zone_projets_projet {
    width: calc(33.3333333333% - 40px);
  }
  .services_zone {
    margin: 0;
    padding: 0;
  }
  .services_zone_articles {
    display: flex;
    flex-direction: column-reverse;
  }
  .services_zone_articles_images {
    width: 100%;
    margin-bottom: 0;
  }
  .services_zone_articles_images_image {
    max-height: 30svh;
  }
  .services_zone_articles_article {
    width: 100%;
  }
  .fond {
    background-image: url(../images/font.jpg);
  }
}
@media screen and (max-width: 900px) {
  .accueil_marques_marque {
    width: calc(50% - 20px);
  }
  .projets_zone_projets_projet {
    width: calc(50% - 40px);
  }
}
@media screen and (max-width: 700px) {
  .accueil_encart_texte {
    position: initial;
    width: calc(100% - 40px);
    padding: 20px;
  }
  .accueil_univers_univer {
    width: calc(100% - 40px);
  }
  .accueil_marques_marque {
    width: calc(33.3333333333% - 20px);
  }
  .footer {
    height: 60px;
  }
  .footer_col_sociale {
    display: flex;
  }
  .footer_col_footer_sociale {
    display: none;
  }
  .fournisseurs_zone_fournisseur {
    width: calc(100% - 40px);
  }
  .post {
    flex-direction: column-reverse;
  }
  .post_card {
    width: calc(100% - 40px);
    padding: 20px;
  }
  .post_card_lien {
    height: 20px;
    width: 20px;
  }
  .post_image {
    width: 100%;
  }
  .projets_zone_projets_projet {
    width: calc(100% - 40px);
  }
  .univer_zone {
    flex-direction: column;
  }
  .univer_zone_texte {
    width: calc(100% - 20px);
    font-size: 0.8rem;
  }
  .univers_texte_texte {
    font-size: 0.8rem;
  }
  .univers_zone_univers_univer {
    width: calc(100% - 40px);
  }
}
@media screen and (max-height: 500px) {
  .menu_menu_deco_1 {
    display: none;
  }
  .menu_menu_deco_2 {
    display: none;
  }
}/*# sourceMappingURL=menu.css.map */