@charset "UTF-8";
/*
* Feuille de style global, réunissant l'ensemble des appels
* 
*/
/*
* Définitions des variables
*/
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
:root,
body,
html {
  --background-body: #fff;
}

@media only screen and (min-width: 1024px) {
  :root,
  body,
  html {
    --background-body: #faf7fa;
  }
}
/*
* Remise à zéro des styles
*/
* {
  padding: 0;
  box-sizing: border-box;
  z-index: 1;
  font-size: 1em;
}

:root {
  font-size: 18px;
}

body {
  background-color: var(--background-body);
  z-index: 0;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-flow: column nowrap;
}

main {
  width: 100%;
  overflow-x: hidden;
}

@media only screen and (min-width: 1024px) {
  :root {
    font-size: 26px;
  }
}
/*
* Définitions des Mixins
*/
/*
  Utiliser comme ca : 
  @include responsive-only(portable) {
    grid-template-columns: 1fr;
  }
*/
/*
* Définitions des fonctions
*/
/*
* Gestion des styles 
*/
@font-face {
  font-family: "Comic";
  src: url("/fonts/Comic_CAT.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Ramona";
  src: url("/fonts/Ramona-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Ramona";
  src: url("/fonts/Ramona-Light.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
body {
  font-family: "Ubuntu", sans-serif;
}

/*
* Définitions des règles générales pour les élements flex
*/
.flex {
  display: flex;
  flex-flow: row wrap;
  justify-content: stretch;
  align-items: center;
}
.flex--g1 {
  gap: 1em;
}
.flex--gp1 {
  gap: 1em;
  padding: 1em;
}
.flex--g2 {
  gap: 2em;
}
.flex--gp2 {
  gap: 2em;
  padding: 2em;
}
.flex--g3 {
  gap: 3em;
}
.flex--gp3 {
  gap: 3em;
  padding: 3em;
}
.flex--g4 {
  gap: 4em;
}
.flex--gp4 {
  gap: 4em;
  padding: 4em;
}
.flex--spar {
  justify-content: space-around;
}
.flex--center {
  justify-content: center;
}
.flex--spab {
  justify-content: space-between;
}
.flex--start {
  justify-content: flex-start;
}
.flex--end {
  justify-content: flex-end;
}
.flex--col {
  flex-direction: column;
}
.flex--nw {
  flex-wrap: nowrap;
}
.flex--aliStart {
  align-items: flex-start;
}
.flex--aliCenter {
  align-items: center;
}
.flex--aliStretch {
  align-items: stretch;
}
.flex--aliEnd {
  align-items: flex-end;
}

.fl--1 {
  flex: 1;
}
.fl--2 {
  flex: 2;
}
.fl--3 {
  flex: 3;
}
.fl--4 {
  flex: 4;
}
.fl--5 {
  flex: 5;
}
.fl--6 {
  flex: 6;
}
.fl--7 {
  flex: 7;
}
.fl--8 {
  flex: 8;
}
.fl--9 {
  flex: 9;
}
.fl--10 {
  flex: 10;
}
.fl--11 {
  flex: 11;
}
.fl--12 {
  flex: 12;
}
.fl--13 {
  flex: 13;
}
.fl--14 {
  flex: 14;
}
.fl--15 {
  flex: 15;
}
.fl--full {
  min-width: 100%;
}

/*
* Définitions des règles générales pour les sections
*/
.fullH {
  height: 100vh;
}

.minFullH {
  min-height: 100vh;
}

section {
  --grid-marge: 1rem;
  margin: 0 auto;
  width: calc(100% - 2 * var(--grid-marge));
}

@media only screen and (min-width: 768px) {
  section {
    --grid-marge: 1rem;
  }
}
@media only screen and (min-width: 1024px) {
  section {
    --grid-marge: 1.5rem;
  }
}
@media only screen and (min-width: 1280px) {
  section {
    --grid-marge: 2rem;
  }
}
@media only screen and (min-width: 1440px) {
  section {
    --grid-marge: 3rem;
  }
}
@media only screen and (min-width: 1920px) {
  section {
    --grid-marge: 140px;
  }
}
/*
* Définitions des règles générales pour les espacements entre éléments
*/
.pad--1 {
  padding: 1em;
}
.pad--t1 {
  padding-top: 1em;
}
.pad--r1 {
  padding-right: 1em;
}
.pad--l1 {
  padding-left: 1em;
}
.pad--b1 {
  padding-bottom: 1em;
}
.pad--vert1 {
  padding-bottom: 1em;
  padding-top: 1em;
}
.pad--horiz1 {
  padding-left: 1em;
  padding-right: 1em;
}
.pad--2 {
  padding: 2em;
}
.pad--t2 {
  padding-top: 2em;
}
.pad--r2 {
  padding-right: 2em;
}
.pad--l2 {
  padding-left: 2em;
}
.pad--b2 {
  padding-bottom: 2em;
}
.pad--vert2 {
  padding-bottom: 2em;
  padding-top: 2em;
}
.pad--horiz2 {
  padding-left: 2em;
  padding-right: 2em;
}
.pad--3 {
  padding: 3em;
}
.pad--t3 {
  padding-top: 3em;
}
.pad--r3 {
  padding-right: 3em;
}
.pad--l3 {
  padding-left: 3em;
}
.pad--b3 {
  padding-bottom: 3em;
}
.pad--vert3 {
  padding-bottom: 3em;
  padding-top: 3em;
}
.pad--horiz3 {
  padding-left: 3em;
  padding-right: 3em;
}
.pad--4 {
  padding: 4em;
}
.pad--t4 {
  padding-top: 4em;
}
.pad--r4 {
  padding-right: 4em;
}
.pad--l4 {
  padding-left: 4em;
}
.pad--b4 {
  padding-bottom: 4em;
}
.pad--vert4 {
  padding-bottom: 4em;
  padding-top: 4em;
}
.pad--horiz4 {
  padding-left: 4em;
  padding-right: 4em;
}
.pad--5 {
  padding: 5em;
}
.pad--t5 {
  padding-top: 5em;
}
.pad--r5 {
  padding-right: 5em;
}
.pad--l5 {
  padding-left: 5em;
}
.pad--b5 {
  padding-bottom: 5em;
}
.pad--vert5 {
  padding-bottom: 5em;
  padding-top: 5em;
}
.pad--horiz5 {
  padding-left: 5em;
  padding-right: 5em;
}
.pad--6 {
  padding: 6em;
}
.pad--t6 {
  padding-top: 6em;
}
.pad--r6 {
  padding-right: 6em;
}
.pad--l6 {
  padding-left: 6em;
}
.pad--b6 {
  padding-bottom: 6em;
}
.pad--vert6 {
  padding-bottom: 6em;
  padding-top: 6em;
}
.pad--horiz6 {
  padding-left: 6em;
  padding-right: 6em;
}
.pad--7 {
  padding: 7em;
}
.pad--t7 {
  padding-top: 7em;
}
.pad--r7 {
  padding-right: 7em;
}
.pad--l7 {
  padding-left: 7em;
}
.pad--b7 {
  padding-bottom: 7em;
}
.pad--vert7 {
  padding-bottom: 7em;
  padding-top: 7em;
}
.pad--horiz7 {
  padding-left: 7em;
  padding-right: 7em;
}
.pad--8 {
  padding: 8em;
}
.pad--t8 {
  padding-top: 8em;
}
.pad--r8 {
  padding-right: 8em;
}
.pad--l8 {
  padding-left: 8em;
}
.pad--b8 {
  padding-bottom: 8em;
}
.pad--vert8 {
  padding-bottom: 8em;
  padding-top: 8em;
}
.pad--horiz8 {
  padding-left: 8em;
  padding-right: 8em;
}
.pad--9 {
  padding: 9em;
}
.pad--t9 {
  padding-top: 9em;
}
.pad--r9 {
  padding-right: 9em;
}
.pad--l9 {
  padding-left: 9em;
}
.pad--b9 {
  padding-bottom: 9em;
}
.pad--vert9 {
  padding-bottom: 9em;
  padding-top: 9em;
}
.pad--horiz9 {
  padding-left: 9em;
  padding-right: 9em;
}

.marge--1 {
  margin: 1em;
}
.marge--t1 {
  margin-top: 1em;
}
.marge--r1 {
  margin-right: 1em;
}
.marge--l1 {
  margin-left: 1em;
}
.marge--b1 {
  margin-bottom: 1em;
}
.marge--vert1 {
  margin-bottom: 1em;
  margin-top: 1em;
}
.marge--horiz1 {
  margin-left: 1em;
  margin-right: 1em;
}
.marge--2 {
  margin: 2em;
}
.marge--t2 {
  margin-top: 2em;
}
.marge--r2 {
  margin-right: 2em;
}
.marge--l2 {
  margin-left: 2em;
}
.marge--b2 {
  margin-bottom: 2em;
}
.marge--vert2 {
  margin-bottom: 2em;
  margin-top: 2em;
}
.marge--horiz2 {
  margin-left: 2em;
  margin-right: 2em;
}
.marge--3 {
  margin: 3em;
}
.marge--t3 {
  margin-top: 3em;
}
.marge--r3 {
  margin-right: 3em;
}
.marge--l3 {
  margin-left: 3em;
}
.marge--b3 {
  margin-bottom: 3em;
}
.marge--vert3 {
  margin-bottom: 3em;
  margin-top: 3em;
}
.marge--horiz3 {
  margin-left: 3em;
  margin-right: 3em;
}
.marge--4 {
  margin: 4em;
}
.marge--t4 {
  margin-top: 4em;
}
.marge--r4 {
  margin-right: 4em;
}
.marge--l4 {
  margin-left: 4em;
}
.marge--b4 {
  margin-bottom: 4em;
}
.marge--vert4 {
  margin-bottom: 4em;
  margin-top: 4em;
}
.marge--horiz4 {
  margin-left: 4em;
  margin-right: 4em;
}
.marge--5 {
  margin: 5em;
}
.marge--t5 {
  margin-top: 5em;
}
.marge--r5 {
  margin-right: 5em;
}
.marge--l5 {
  margin-left: 5em;
}
.marge--b5 {
  margin-bottom: 5em;
}
.marge--vert5 {
  margin-bottom: 5em;
  margin-top: 5em;
}
.marge--horiz5 {
  margin-left: 5em;
  margin-right: 5em;
}
.marge--6 {
  margin: 6em;
}
.marge--t6 {
  margin-top: 6em;
}
.marge--r6 {
  margin-right: 6em;
}
.marge--l6 {
  margin-left: 6em;
}
.marge--b6 {
  margin-bottom: 6em;
}
.marge--vert6 {
  margin-bottom: 6em;
  margin-top: 6em;
}
.marge--horiz6 {
  margin-left: 6em;
  margin-right: 6em;
}
.marge--7 {
  margin: 7em;
}
.marge--t7 {
  margin-top: 7em;
}
.marge--r7 {
  margin-right: 7em;
}
.marge--l7 {
  margin-left: 7em;
}
.marge--b7 {
  margin-bottom: 7em;
}
.marge--vert7 {
  margin-bottom: 7em;
  margin-top: 7em;
}
.marge--horiz7 {
  margin-left: 7em;
  margin-right: 7em;
}
.marge--8 {
  margin: 8em;
}
.marge--t8 {
  margin-top: 8em;
}
.marge--r8 {
  margin-right: 8em;
}
.marge--l8 {
  margin-left: 8em;
}
.marge--b8 {
  margin-bottom: 8em;
}
.marge--vert8 {
  margin-bottom: 8em;
  margin-top: 8em;
}
.marge--horiz8 {
  margin-left: 8em;
  margin-right: 8em;
}
.marge--9 {
  margin: 9em;
}
.marge--t9 {
  margin-top: 9em;
}
.marge--r9 {
  margin-right: 9em;
}
.marge--l9 {
  margin-left: 9em;
}
.marge--b9 {
  margin-bottom: 9em;
}
.marge--vert9 {
  margin-bottom: 9em;
  margin-top: 9em;
}
.marge--horiz9 {
  margin-left: 9em;
  margin-right: 9em;
}

/*
* Définitions des règles générales pour les cartes
*/
.projetCard {
  --highlight-color:#ea8356;
  margin-bottom: 16px;
  display: block;
  height: auto;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.projetCard-liste {
  --navBarHeight: 326px;
  width: 100%;
  margin: 2rem 0 4rem;
  padding: 0px 16px;
}
.projetCard-img img {
  width: auto;
  display: block;
}
.projetCard-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--highlight-color);
  color: #fff;
  clip-path: polygon(0% 43%, 100% 70%, 100% 100%, 0% 100%);
  transform: translateY(0%);
  transition: clip-path 0.6s ease-out, transform 0.6s ease-out;
  padding: 0 0.8em 0.65em;
}
.projetCard-text::before {
  content: "";
  float: left;
  height: 100%;
  width: 100%;
  shape-outside: polygon(0% 0%, 100% 0%, 100% 70%, 0% 43%);
  shape-margin: 7%;
  display: block;
}
.projetCard::after {
  content: "+";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--highlight-color);
  background-color: #fff;
  text-align: center;
  font-size: 35px;
  width: 90px;
  line-height: 90px;
  pointer-events: all;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: 0.6s ease-out;
  z-index: 100;
}

@media only screen and (min-width: 768px) {
  .projetCard {
    display: inline-block;
    height: unset;
    width: unset;
    margin-bottom: unset;
    max-width: calc(50% - 20px);
  }
  .projetCard-liste {
    max-width: 1640px;
    margin: 0 auto;
    width: calc(100% - 2 * var(--grid-marge));
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
  }
  .projetCard-img img {
    max-height: 250px;
  }
  .projetCard .projetCard-text {
    transform: translateY(100%);
    clip-path: polygon(0% 20%, 100% 20%, 100% 100%, 0% 100%);
  }
  .projetCard::after {
    pointer-events: none;
    clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  .projetCard:hover .projetCard-text {
    transform: translateY(0%);
    transition: clip-path 0.45s 0.15s ease-out, transform 0.6s ease-out;
    clip-path: polygon(0% 43%, 100% 70%, 100% 100%, 0% 100%);
  }
  .projetCard:hover::after {
    pointer-events: all;
    transition: clip-path 0.3s 0.3s ease-out;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
@media only screen and (min-width: 1440px) {
  .projetCard-img-liste {
    gap: 38px;
  }
  .projetCard-img img {
    max-height: 320px;
  }
}
.expertiseIcon {
  width: 170px;
  min-height: 140px;
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  color: inherit;
  text-decoration: none;
}
.expertiseIcon-container {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 16px;
  position: relative;
}
.expertiseIcon-wrapper {
  grid-area: 1/2/2/12;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  gap: 2em;
}
.expertiseIcon::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/medias/front/brush/expertise-liste.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 100%;
  height: 100%;
}
.expertiseIcon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.expertiseIcon-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  color: #fff;
  text-shadow: 0 3px 6px #664ff2;
}

/*
* Définitions des règles générales pour les textes
*/
.tac, .tac .text-block, .tac table td, table .tac td,
.tac table th,
table .tac th, .tac ul,
.tac ol, .tac p, .tac h4, .tac h3, .tac h2, .tac h1 {
  text-align: center;
}
.taj, .taj .text-block, .taj table td, table .taj td,
.taj table th,
table .taj th, .taj ul,
.taj ol, .taj p, .taj h4, .taj h3, .taj h2, .taj h1 {
  text-align: justify;
}
.tal, .tal .text-block, .tal table td, table .tal td,
.tal table th,
table .tal th, .tal ul,
.tal ol, .tal p, .tal h4, .tal h3, .tal h2, .tal h1 {
  text-align: left;
}
.tar, .tar .text-block, .tar table td, table .tar td,
.tar table th,
table .tar th, .tar ul,
.tar ol, .tar p, .tar h4, .tar h3, .tar h2, .tar h1 {
  text-align: right;
}
.taBoth {
  text-align: left;
  text-align-last: right;
  margin-right: auto;
  width: fit-content;
}

.content-block {
  width: 90%;
  margin: 1em auto;
}

.text-block, table td,
table th, ul,
ol, p, h4, h3, h2, h1 {
  line-height: 1.5;
}

h1 {
  font-size: 34px;
  line-height: 38px;
  font-weight: 400;
  --elem-color: #664ff2;
  color: var(--elem-color);
  text-shadow: 0 3px 6px var(--elem-color);
  text-transform: uppercase;
  font-family: "Comic", serif;
}

h2 {
  font-size: 42px;
  line-height: 38px;
  font-weight: bold;
  color: #34221f;
  font-family: "Ramona", serif;
}

h3 {
  font-size: 25px;
  line-height: 28px;
  font-weight: 500;
  font-family: "Ubuntu", sans-serif;
}

h4 {
  text-decoration: underline;
  --elem-color: #664ff2;
  color: var(--elem-color);
}
h4--secondary {
  --elem-color: #ea8356;
}
h4--tercary {
  --elem-color: #eef22a;
}
h4--white {
  --elem-color: #fff;
}

h5 {
  font-size: 0.8em;
}

ul,
ol {
  padding-left: 1em;
}

small {
  font-size: 0.75em;
}

.c-primary {
  color: #664ff2;
}

.c-secondary {
  color: #ea8356;
}

.c-tercary {
  color: #eef22a;
}

.c-white {
  color: #fff;
}

.c-black {
  color: #34221f;
}

@media only screen and (min-width: 1024px) {
  h1 {
    line-height: 80px;
    font-size: 86px;
  }
  h2 {
    line-height: 80px;
    font-size: 86px;
  }
  h3 {
    font-size: 2rem;
    line-height: 80px;
  }
}
/*
* Définitions des règles générales pour les formulaires
*/
form input {
  font-family: inherit;
  font-size: inherit;
}
form input[type=radio], form input[type=checkbox] {
  -moz-appearance: none;
  -webkit-appearance: none;
  -o-appearance: none;
  margin: 0;
  border: solid 0.125em #664ff2;
  height: 1em;
  width: 1em;
  vertical-align: middle;
  margin: 0.25em 0.5em 0.25em 0;
  transition: 0.3s ease-in-out;
}
form input[type=radio] {
  border-radius: 50%;
}
form input[type=radio]:checked {
  background-color: #664ff2;
  box-shadow: 0 0 0 0.1em inset #fff;
}
form input[type=checkbox] {
  font-weight: 400;
  font-style: italic;
}
form input[type=checkbox]::before {
  content: "✓";
  color: transparent;
  position: relative;
  top: -0.4em;
}
form input[type=checkbox]:checked {
  background-color: #664ff2;
}
form input[type=checkbox]:checked::before {
  color: #fff;
}
form input[type=text],
form input[type=email],
form input[type=number],
form input[type=tel],
form input[type=password],
form textarea,
form select {
  padding: 0.25em;
  border-radius: 0;
  border: none;
  border-bottom: solid 2px #664ff2;
  outline: none;
  transition: box-shadow 0.15s ease-in-out, background-color 0.15s ease-in-out;
  background-color: var(--background-body);
}
form input[type=text]:focus, form input[type=text]:active,
form input[type=email]:focus,
form input[type=email]:active,
form input[type=number]:focus,
form input[type=number]:active,
form input[type=tel]:focus,
form input[type=tel]:active,
form input[type=password]:focus,
form input[type=password]:active,
form textarea:focus,
form textarea:active,
form select:focus,
form select:active {
  box-shadow: 0 -2em inset rgba(102, 79, 242, 0.25);
}
form textarea:focus {
  box-shadow: none;
  background-color: rgba(102, 79, 242, 0.25);
}
form .fieldBlock {
  padding: 1em 0;
  display: flex;
  flex-flow: row nowrap;
  min-width: 300px;
  align-items: center;
  gap: 0.5em;
}
form .fieldBlock textarea {
  width: 100%;
  flex: 1;
}
form .fieldBlock > input, form .fieldBlock > select {
  flex: 1;
}
form .fieldBlock > input.btn {
  flex: 0;
  margin: 0 auto;
}
form .fieldBlock--labelOver {
  display: block;
}
form .fieldBlock--labelOver label {
  display: block;
}
form .fieldBlock--labelOver > input, form .fieldBlock--labelOver > select {
  width: 100%;
}
form .fieldBlock.fieldBlock--large {
  width: 100%;
}
form .fieldBlock--placeholderOver {
  display: block;
  position: relative;
  padding-top: 2em;
}
form .fieldBlock--placeholderOver > input, form .fieldBlock--placeholderOver > select {
  width: 100%;
}
form .fieldBlock--placeholderOver > input, form .fieldBlock--placeholderOver > select {
  transition: color 0.3s ease-in-out, box-shadow 0.15s ease-in-out;
  color: transparent;
}
form .fieldBlock--placeholderOver > input::placeholder, form .fieldBlock--placeholderOver > select::placeholder {
  color: transparent;
  pointer-events: none;
  opacity: 0;
}
form .fieldBlock--placeholderOver > input:-ms-input-placeholder, form .fieldBlock--placeholderOver > select:-ms-input-placeholder {
  color: transparent;
  pointer-events: none;
  opacity: 0;
}
form .fieldBlock--placeholderOver > input::-ms-input-placeholder, form .fieldBlock--placeholderOver > select::-ms-input-placeholder {
  color: transparent;
  pointer-events: none;
  opacity: 0;
}
form .fieldBlock--placeholderOver > input ~ label, form .fieldBlock--placeholderOver > select ~ label {
  display: block;
  position: absolute;
  top: 2.25em;
  left: 0.25em;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0.5;
  transform: skewX(-10deg);
}
form .fieldBlock--placeholderOver > input:focus, form .fieldBlock--placeholderOver > input:active, form .fieldBlock--placeholderOver > select:focus, form .fieldBlock--placeholderOver > select:active {
  color: inherit;
}
form .fieldBlock--placeholderOver > input:focus ~ label, form .fieldBlock--placeholderOver > input:active ~ label, form .fieldBlock--placeholderOver > select:focus ~ label, form .fieldBlock--placeholderOver > select:active ~ label {
  opacity: 1;
  transform: translate(-0.5em, -1.5em);
}
form .fieldBlock--placeholderOver > input:not(:placeholder-shown), form .fieldBlock--placeholderOver > select:not(:placeholder-shown) {
  color: inherit;
}
form .fieldBlock--placeholderOver > input:not(:placeholder-shown) ~ label, form .fieldBlock--placeholderOver > select:not(:placeholder-shown) ~ label {
  opacity: 0;
  pointer-events: none;
}
form .fieldset {
  padding: 1em 0;
  display: block;
  border: none;
}
form .fieldset legend {
  display: block;
  position: relative;
  top: 1em;
  padding: 0.25em;
}
form .fieldset label {
  cursor: pointer;
}
form .fieldset--column .fieldBlock-check {
  display: block;
}

.form-feedback {
  list-style-type: none;
}
.form-feedback--good {
  color: #7ff5b6;
}
.form-feedback--warning {
  color: #ffc65c;
}
.form-feedback--error {
  color: #f06449;
}

/*
* Définitions des règles générales pour les élements structurels
*/
hr {
  display: block;
  width: 80%;
  height: 0.125em;
  background-image: linear-gradient(to right, rgba(102, 79, 242, 0), #664ff2, rgba(102, 79, 242, 0));
  border-radius: 50%;
  border: none;
  margin: 2em auto;
  position: relative;
  overflow: visible;
  background-color: inherit;
}
hr::before {
  content: "§";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: 1.5em;
  width: 1.5em;
  font-weight: 900;
  font-family: sans-serif;
  line-height: 1.5em;
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(60deg);
  text-align: center;
  color: #664ff2;
  border-radius: 50%;
  background-color: var(--background-body);
  box-shadow: 0 0 1em 1em var(--background-body);
}
hr::after {
  content: ". .";
  display: block;
  position: absolute;
  top: calc(50% - 0.22em);
  left: calc(50% - 0.02em);
  width: auto;
  font-weight: 300;
  line-height: 1.5em;
  transform-origin: center center;
  transform: translate(-50%, -50%) rotate(15deg);
  text-align: center;
  color: #664ff2;
  height: 1.5em;
  word-spacing: 0.085em;
  font-family: serif;
  background-color: rgba(0, 0, 0, 0);
}

/*
* Définitions des règles générales pour les img
*/
img {
  height: 100%;
  width: 100%;
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/*
* Définitions des règles générales pour les boutons & CTAs
*/
.btn {
  --elem-color: #664ff2;
  --elem-sec-color: #fff;
  display: inline-block;
  margin: 1em 2em;
  background-color: var(--elem-color);
  padding: 0.75em 2em;
  font-weight: bold;
  color: var(--elem-sec-color);
  border: solid 0.2em var(--elem-color);
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
  cursor: pointer;
  text-decoration: none;
}
.btn--secondary {
  --elem-color: #ea8356;
}
.btn--tercary {
  --elem-color: #eef22a;
}
.btn--white {
  --elem-color: #fff;
}
.btn:hover, .btn:focus, .btn:active {
  background-color: var(--elem-sec-color);
  color: var(--elem-color);
}
.btn--round {
  border-radius: 1em;
}
.btn--shadow {
  box-shadow: 0 1em 2em var(--elem-color);
  transition: box-shadow 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
  text-shadow: 0 0 0 var(--elem-sec-color);
}
.btn--shadow:hover, .btn--shadow:focus, .btn--shadow:active {
  text-shadow: 0 0 1.5em var(--elem-sec-color);
  background-color: var(--elem-color);
  color: var(--elem-sec-color);
  box-shadow: 0 0.5em 2em var(--elem-color);
}
.btn--stroke {
  color: var(--elem-color);
  transition: box-shadow 0.3s ease-in-out;
  background-color: transparent;
  box-shadow: 0 0 inset var(--elem-color), 0 0 inset var(--elem-color), 0 0 inset var(--elem-color), 0 0 inset var(--elem-color);
}
.btn--stroke:hover, .btn--stroke:focus, .btn--stroke:active {
  box-shadow: 0.2em 0 inset var(--elem-color), -0.2em 0 inset var(--elem-color), 0 0.2em inset var(--elem-color), 0 -0.2em inset var(--elem-color);
  background-color: transparent;
}
.btn--door {
  width: 12em;
  box-shadow: 6.25em 0 inset var(--elem-color), -6.25em 0 inset var(--elem-color);
  background-color: transparent;
  transition: color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.btn--door:hover, .btn--door:focus, .btn--door:active {
  background-color: transparent;
  box-shadow: 0 0 inset var(--elem-color), 0 0 inset var(--elem-color);
  color: var(--elem-color);
}

/*
* Définitions des règles générales pour les liens
*/
.link {
  --elem-color: #664ff2;
  --gradient-pos: 0%;
  display: inline-block;
  font-family: "Ramona", serif;
  font-weight: bold;
  color: var(--elem-color);
  transform: skewX(0deg);
  text-decoration: none;
  position: relative;
  height: 1.5em;
  box-shadow: 0 -0.125em inset var(--elem-color);
  padding: 0 0.15em;
  transition: box-shadow 0.15s ease-out, opacity 0.15s ease-out, color 0.15s ease-out;
}
.link--secondary {
  --elem-color: #ea8356;
}
.link--tercary {
  --elem-color: #eef22a;
}
.link--white {
  --elem-color: #fff;
}
.link:hover {
  opacity: 0.75;
  box-shadow: 0 -1.5em inset var(--elem-color);
  color: var(--background-body);
}
.link--fade {
  transition: opacity 0.3s ease-in-out;
  box-shadow: unset;
}
.link--fade::before, .link--fade::after {
  background-color: transparent;
  content: "";
  display: block;
  position: absolute;
  top: 1.25em;
  height: 0.125em;
  z-index: -1;
  left: 0;
  width: 100%;
  transition: inherit;
}
.link--fade::before {
  background-image: linear-gradient(to right, var(--elem-color) 0%, transparent 100%);
}
.link--fade::after {
  transition-delay: 0.075s;
  background-image: linear-gradient(to left, var(--elem-color) 0%, transparent 100%);
  opacity: 0;
}
.link--fade:hover {
  color: var(--elem-color);
  opacity: 1;
  box-shadow: unset;
}
.link--fade:hover::before {
  opacity: 0;
  transition-delay: 0.075s;
}
.link--fade:hover::after {
  transition-delay: 0s;
  opacity: 1;
}
.link--shadow {
  display: inline;
  transition: text-shadow 0.3s ease-in-out;
  box-shadow: unset;
  text-shadow: 0 0 0 var(--elem-color);
}
.link--shadow:hover {
  opacity: 1;
  color: var(--elem-color);
  box-shadow: unset;
  text-shadow: 0 0 2em var(--elem-color);
}
.link--invisible {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  box-shadow: none;
  transition: none;
}
.link--invisible:hover {
  opacity: 1;
  box-shadow: none;
  color: var(--elem-color);
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  padding: 4em;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #664ff2;
  z-index: 10000000000;
  transition: top 0.3s ease-in-out, color 0.15s ease-in-out;
  color: white;
}
.loader p {
  font-size: 2em;
}
.loader--hide {
  color: #664ff2;
  top: -200%;
}

/*
* Définitions des règles générales pour le footer
*/
footer {
  margin-top: 2em;
}

.footer {
  --fz-title: 24px;
}
.footer section {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(3, auto);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
}
.footer section::before {
  content: "";
  grid-area: 2/1/4/5;
  display: block;
  background-image: url("/medias/front/footer_brush.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: left top;
}
.footer-nav {
  padding-left: calc(2 * var(--grid-marge));
  grid-area: 2/1/3/5;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: flex-start;
}
.footer-nav a {
  font-family: "Ramona", serif;
  font-weight: 700;
  text-decoration: none;
  color: white;
  display: block;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}
.footer-contact, .footer-reseau {
  padding-right: var(--grid-marge);
  color: #664ff2;
  text-align: right;
}
.footer-contact a, .footer-reseau a {
  text-decoration: none;
  color: inherit;
}
.footer-contact p, .footer-reseau p {
  font-family: "Ramona", serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: bold;
}
.footer-contact {
  grid-area: 1/3/2/6;
}
.footer-reseau {
  grid-area: 2/5/3/6;
  position: relative;
  padding-top: calc(1.5 * var(--fz-title));
}
.footer-reseau .footer-title {
  display: none;
}
.footer-reseau a {
  font-size: 0;
}
.footer-reseau a img {
  height: 45px;
  width: 45px;
  vertical-align: middle;
}
.footer-copyright {
  padding-left: var(--grid-marge);
  grid-area: 3/1/4/5;
  font-size: 16px;
  font-weight: 300;
  text-align: center;
  padding-bottom: 1em;
}
.footer-title {
  font-size: var(--fz-title);
  font-family: "Comic", serif;
}

@media only screen and (min-width: 768px) {
  footer {
    background-image: url("/medias/front/footer_brush.png");
    background-repeat: no-repeat;
    background-size: 50% 100%;
    background-position: left top;
    padding: 2em;
    padding-top: 200px;
  }
  .footer section {
    grid-template-columns: repeat(24, 1fr);
    grid-template-rows: repeat(2, auto);
    grid-column-gap: 16px;
    position: relative;
  }
  .footer section::before {
    display: none;
  }
  .footer-nav {
    padding-left: unset;
    grid-area: 1/3/2/11;
  }
  .footer-contact, .footer-reseau {
    padding-right: unset;
  }
  .footer-contact {
    grid-area: 1/11/2/18;
  }
  .footer-reseau {
    grid-area: 1/19/2/25;
    padding-top: unset;
  }
  .footer-reseau .footer-title {
    display: initial;
    position: relative;
  }
  .footer-copyright {
    padding-left: unset;
    margin-top: 100px;
    grid-area: 2/1/3/25;
    text-align: right;
  }
}
@media only screen and (min-width: 1024px) {
  .footer {
    --fz-title: 32px;
  }
  .footer-nav a {
    font-size: 32px;
    margin-bottom: 60px;
  }
  .footer-reseau a {
    font-size: inherit;
  }
  .footer-reseau a img {
    margin-left: 2em;
    vertical-align: middle;
  }
  .footer-copyright {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1440px) {
  footer {
    background-image: url("/medias/front/footer_brush.png");
    background-repeat: no-repeat;
    background-size: 50% 100%;
    background-position: left top;
    padding: 2em;
    padding-top: 200px;
  }
  .footer {
    --fz-title: 50px;
  }
  .footer-nav a {
    font-size: 32px;
    margin-bottom: 60px;
  }
  .footer-contact p, .footer-reseau p {
    font-size: 34px;
    line-height: 45px;
  }
  .footer-reseau a {
    font-size: inherit;
  }
  .footer-reseau a img {
    height: 60px;
    width: 60px;
    margin-left: 2em;
    vertical-align: middle;
  }
  .footer-copyright {
    margin-top: 200px;
    font-size: 20px;
  }
}
.notificationCenter {
  position: fixed;
  z-index: 150;
  top: 3em;
  right: 3em;
  max-width: min(35em, 50vw);
}
.notificationCenter .notification {
  background-color: #fff;
  color: #34221f;
  padding: 0.5em;
  list-style-type: none;
  font-weight: bold;
  max-width: 100%;
  box-shadow: -1.5px 2.8px 2.2px rgba(0, 0, 0, 0.07), -3.7px 6.7px 5.3px rgba(0, 0, 0, 0.05), -6.9px 12.5px 10px rgba(0, 0, 0, 0.042), -12.3px 22.3px 17.9px rgba(0, 0, 0, 0.035), -23px 41.8px 33.4px rgba(0, 0, 0, 0.028), -55px 100px 80px rgba(0, 0, 0, 0.02);
  cursor: pointer;
}
.notificationCenter .notification--error {
  background-color: #f06449;
  color: #fff;
}
.notificationCenter .notification--success {
  background-color: #7ff5b6;
  color: rgba(52, 34, 31, 0.75);
}
.notificationCenter .notification--warning {
  background-color: #ffc65c;
  color: #34221f;
}
.notificationCenter .notification--info {
  background-color: #34221f;
  color: #fff;
}
.notificationCenter .notification--off {
  transition: 0.3s ease-in-out;
  pointer-events: none;
  opacity: 0;
}

/*
* Définitions des règles générales pour les scrollBars
*/
* {
  /* Track */
  /* Handle */
}
*::-webkit-scrollbar {
  width: 0.5rem;
  height: 0.5rem;
}
*::-webkit-scrollbar-track {
  background: --background-body;
  border-radius: 0.5rem;
}
*::-webkit-scrollbar-thumb {
  border-top-right-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  background: rgba(0, 0, 0, 0.6);
}
*::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.6);
}

.fileUploader {
  display: block;
  background-color: rgba(102, 79, 242, 0.2);
  padding: 1em;
}
.fileUploader input {
  margin: 1em 0;
}
.fileUploader-previewLink a {
  color: #664ff2;
  text-decoration: none;
  font-weight: 600;
}
.fileUploader-remover {
  font-size: 1rem;
  --elem-color: #ffc65c;
  --elem-sec-color: #fff;
  margin-left: auto;
  margin-right: 0;
}

/*
* Définitions des règles générales pour les tables
*/
table {
  display: inline-block;
  border-collapse: collapse;
}
table caption {
  font-style: italic;
}
table thead {
  --cel-border-color: transparent;
  background-color: rgba(102, 79, 242, 0.75);
  color: #fff;
}
table tbody {
  --cel-border-color: rgba(52, 34, 31, 0.25);
}
table tbody tr:nth-of-type(2n) {
  background-color: rgba(52, 34, 31, 0.15);
}
table tfoot {
  --cel-border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  font-weight: bold;
  background-color: rgba(52, 34, 31, 0.35);
}
table td,
table th {
  padding: 0.5em 1em;
  position: relative;
  overflow: hidden;
}
table td::after,
table th::after {
  content: "";
  position: absolute;
  top: 10%;
  right: -0.5px;
  height: 80%;
  width: 1px;
  background-color: var(--cel-border-color);
}
table td:last-of-type::after,
table th:last-of-type::after {
  display: none;
}

.respImage img {
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .respImage img {
    display: block;
    width: auto;
    height: unset !important;
    float: none;
  }
}

/*
* Définitions des règles initial pour les HTMLelements <mb-details>
*/
mb-details {
  box-sizing: content-box;
  display: block;
}
mb-details summary {
  position: relative;
  cursor: pointer;
}
mb-details .mb-details-content {
  animation-duration: 0.5s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  animation-name: MB_Details_Anim_Close;
}
mb-details .mb-details-content img {
  max-height: 300em;
}
mb-details[open] > summary::before {
  transform: translate(-50%, -50%) rotate(90deg);
}
mb-details[open] > .mb-details-content {
  animation-name: MB_Details_Anim_Open !important;
}
mb-details[opening] * {
  pointer-events: none !important;
  transition: 0s !important;
}

@keyframes MB_Details_Anim_Open {
  0% {
    opacity: 0;
    font-size: 0;
    transform: scale(0.5);
  }
  50% {
    transform: scale(0.5);
    opacity: 0;
    font-size: 1em;
  }
  100% {
    transform: scale(1);
    font-size: 1em;
    opacity: 1;
  }
}
@keyframes MB_Details_Anim_Close {
  0% {
    opacity: 1;
    font-size: 1em;
  }
  20% {
    font-size: 1em;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    font-size: 0;
  }
}
/*
* Définitions des règles initial pour les HTMLelements <mb-navbar>
*/
mb-navbar {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  align-self: flex-start;
  z-index: 100;
  width: 100%;
  max-width: calc(100vw - 0.5rem);
}

.mb-navbar {
  display: flex;
  justify-content: stretch;
  align-items: flex-start;
  background-color: var(--background-body);
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, padding-top 0.3s ease-in-out;
  padding-top: 1em;
  color: #34221f;
  width: 100vw;
  max-width: 100%;
}
.mb-navbar .link {
  --elem-color: #34221f;
  --background-body: #fff;
}
.mb-navbar-part {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1em;
  padding: 1em;
  max-height: 3.5em;
  transition: max-height 0.3s ease-in-out;
}
.mb-navbar-part--right {
  justify-content: flex-end;
}
.mb-navbar-part--right svg {
  max-height: inherit;
  height: 100%;
  width: auto;
}
.mb-navbar-logo {
  padding-top: 1em;
  width: auto;
  transition: padding-top 0.3s ease-in-out;
}
.mb-navbar-logo img,
.mb-navbar-logo svg {
  height: 7em;
  width: auto;
  object-fit: contain;
  transition: 0.3s ease-in-out;
}
.mb-navbar-logo-link {
  color: inherit;
  text-decoration: none;
  text-align: center;
  display: block;
  text-transform: uppercase;
}
.mb-navbar-logo-link svg {
  display: block;
  margin-bottom: 2.35em;
}
.mb-navbar-logo span {
  display: block;
  opacity: 1;
  font-size: 1em;
  transition: opacity 0.3s ease-in-out, font-size 0.3s ease-in-out;
}
.mb-navbar-toggler {
  display: none;
  height: 1em;
  width: 1em;
  font-size: 2em;
  margin: 0px auto;
  cursor: pointer;
}
.mb-navbar-toggler div {
  background-color: #34221f;
  font-size: 4px;
  height: 1em;
  left: 0;
  transition: 0.3s ease-in-out;
  margin-bottom: 3px;
}
.mb-navbar-toggler div:nth-of-type(1) {
  width: 80%;
  border-top-right-radius: 1em;
}
.mb-navbar-toggler div:nth-of-type(2) {
  margin-left: 0%;
  border-top-right-radius: 1em;
  border-bottom-left-radius: 1em;
  width: 50%;
}
.mb-navbar-toggler div:nth-of-type(3) {
  border-top-right-radius: 1em;
  border-top-left-radius: 1em;
  width: 100%;
}
.mb-navbar-toggler:hover div:nth-of-type(1) {
  width: 100%;
}
.mb-navbar-toggler:hover div:nth-of-type(2) {
  width: 80%;
}
.mb-navbar-toggler:hover div:nth-of-type(3) {
  width: 50%;
}
.mb-navbar-toggler--cross div:nth-of-type(1) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 1em;
  border-bottom-left-radius: 1em;
}
.mb-navbar-toggler--cross div:nth-of-type(1),
.mb-navbar-toggler--cross div:nth-of-type(3) {
  width: 100% !important;
}
.mb-navbar-toggler--cross div:nth-of-type(2) {
  width: 80%;
  margin-left: 10%;
  height: 18px;
}
.mb-navbar--scrolled, .mb-navbar--home {
  padding-top: 0.5em;
  background-color: var(--background-body);
}
.mb-navbar--scrolled .mb-navbar-logo, .mb-navbar--home .mb-navbar-logo {
  padding-top: 0;
}
.mb-navbar--scrolled .mb-navbar-logo svg, .mb-navbar--home .mb-navbar-logo svg {
  height: 3.5em;
  margin-bottom: 0.5em;
}
.mb-navbar--scrolled .mb-navbar-logo span, .mb-navbar--home .mb-navbar-logo span {
  font-size: 0;
  opacity: 0;
}
.mb-navbar--scrolled .mb-navbar-part, .mb-navbar--home .mb-navbar-part {
  max-height: 3.5em;
}
.mb-navbar--placeHolder {
  z-index: -10;
  opacity: 0 !important;
  pointer-events: none;
  position: fixed;
  top: -100vh;
  width: auto;
  max-width: unset;
}
.mb-navbar--placeHolder,
.mb-navbar--placeHolder * {
  flex-shrink: 0;
  white-space: nowrap;
}
.mb-navbar--small {
  position: sticky;
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  overflow: hidden;
  max-height: 6em;
  transition: max-height 0.3s ease-in-out, padding-bottom 0.3s ease-in-out;
}
.mb-navbar--small .mb-navbar-logo {
  width: 100%;
  max-height: 5em;
  grid-area: 1/2/2/3;
  padding-top: 0;
}
.mb-navbar--small .mb-navbar-logo svg {
  display: block;
  max-height: 3em;
  margin: 0 auto;
}
.mb-navbar--small .mb-navbar-part {
  order: 2;
  flex-direction: column;
}
.mb-navbar--small .mb-navbar-part--right {
  grid-area: 1/3/2/4;
  padding-top: 0;
}
.mb-navbar--small .mb-navbar-part--right svg {
  display: block;
  max-height: 2em;
  margin: 0 auto;
}
.mb-navbar--small .mb-navbar-part--left {
  grid-area: 2/1/3/4;
}
.mb-navbar--small .mb-navbar-toggler {
  grid-area: 1/1/2/2;
  display: block;
}
.mb-navbar--small.mb-navbar--opened {
  max-height: 100vh;
  padding-bottom: 2em;
}
.mb-navbar--small.mb-navbar--scrolled, .mb-navbar--small.mb-navbar--home {
  max-height: 4.5em;
}

#ubu_home {
  --navBarHeight: 326px;
}
#ubu_home .landing {
  width: 100%;
  max-width: unset;
  padding: 2em;
  height: calc(100vh - var(--navBarHeight));
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
}
#ubu_home .landing-wrapper {
  overflow: hidden;
}
#ubu_home .landing-text {
  font-size: 1.5rem;
  font-family: "Comic", serif;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  width: fit-content;
  margin: 0 auto;
}
#ubu_home .landing-text-line {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
}
#ubu_home .landing-text-line-spacer {
  width: 0;
  flex-shrink: 2;
  flex-grow: 0;
}
#ubu_home .landing-text-line-words {
  flex-shrink: 0;
  width: fit-content;
}
#ubu_home .landing-text-line:nth-of-type(2) .landing-text-line-spacer {
  width: 1em;
}
#ubu_home .landing-text-line:nth-of-type(3) .landing-text-line-spacer {
  width: 2em;
}
#ubu_home .landing-right {
  padding-bottom: 1em;
  flex: 1;
  position: relative;
}
#ubu_home .landing-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: 5%;
}
#ubu_home .landing-images-item {
  display: block;
  position: relative;
  --centerObj: center center;
  transform-origin: var(--centerObj);
  transform: scale(1);
  transition: transform 0.3s;
}
#ubu_home .landing-images-item img {
  display: block;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.3));
  object-position: var(--centerObj);
}
#ubu_home .landing-images-item:nth-of-type(1) {
  grid-area: 1/1/3/4;
  z-index: 3;
  --centerObj: right bottom;
}
#ubu_home .landing-images-item:nth-of-type(2) {
  grid-area: 2/3/4/6;
  z-index: 2;
  --centerObj: center left;
}
#ubu_home .landing-images-item:nth-of-type(3) {
  z-index: 1;
  grid-area: 3/1/5/4;
  --centerObj: right top;
}
#ubu_home .landing-images-item:hover {
  transform: scale(1.2);
  z-index: 5;
}
#ubu_home .landing-plante {
  display: none;
}
#ubu_home .ubudescription {
  display: flex;
  flex-flow: column nowrap;
}
#ubu_home .ubudescription .homeTitle {
  order: 1;
}
#ubu_home .ubudescription-texte {
  display: contents;
}
#ubu_home .ubudescription-texte > * {
  order: 4;
}
#ubu_home .ubudescription-texte > *:first-child {
  order: 2;
}
#ubu_home .ubudescription-illustration {
  order: 3;
}
#ubu_home .ubudescription-illustration img {
  max-height: 200px;
}
#ubu_home .ubudescription-ender {
  padding-left: 65%;
  order: 5;
}
#ubu_home .homeTitle {
  font-family: "Ramona", serif;
  color: rgba(174, 168, 186, 0.75);
  font-weight: bold;
  font-size: 56px;
}
#ubu_home .poleExpertise {
  overflow: hidden;
  margin-top: 25px;
  --translation-factor: 1;
}
#ubu_home .poleExpertise-wrapper {
  max-width: unset;
  width: 100%;
}
#ubu_home .poleExpertise-texte {
  text-align: center;
}
#ubu_home .poleExpertise-texte svg {
  width: 90%;
  display: inline-block;
}
#ubu_home .poleExpertise-corner {
  width: fit-content;
  pointer-events: none;
}
#ubu_home .poleExpertise-corner a {
  pointer-events: all;
}
#ubu_home .poleExpertise-corner img {
  max-height: 50vh;
  height: auto;
  width: auto;
}
#ubu_home .poleExpertise-corner--rt {
  display: none;
}
#ubu_home .poleExpertise-corner--rt, #ubu_home .poleExpertise-corner--rb {
  margin-left: auto;
  transform: translateX(15%);
}
#ubu_home .poleExpertise-corner--lt, #ubu_home .poleExpertise-corner--lb {
  margin-right: auto;
  transform: translateX(-15%);
}
#ubu_home .creeonceSmall {
  width: 100%;
  max-width: unset;
  height: 200vh;
  position: relative;
  overflow-y: visible;
  --ratio: 0;
}
#ubu_home .creeonceSmall-content {
  top: 0;
  position: sticky;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto 90px;
}
#ubu_home .creeonceSmall-title {
  padding: calc(var(--navBarHeight) + 0.5em) 16px 0;
  text-align: center;
  font-family: "Ramona", serif;
  color: #664ff2;
  font-weight: bold;
  font-size: 56px;
}
#ubu_home .creeonceSmall-background {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
#ubu_home .creeonceSmall-background span {
  color: white;
  font-family: "Ramona", serif;
  font-weight: bold;
  font-size: 32px;
  width: min-content;
  text-align: left;
  position: absolute;
  left: calc(var(--grid-marge) * 2);
  top: 50%;
  transform: translateY(-50%);
}
#ubu_home .creeonceSmall-projets {
  padding: 2em;
  flex: 1;
  width: 200%;
  display: flex;
  flex-flow: row nowrap;
  transform: translateX(calc(-50% * var(--ratio)));
  gap: 40px;
}
#ubu_home .creeonceSmall-projets-item {
  text-align: center;
  width: 50%;
}
#ubu_home .creeonceSmall-projets-item .creeonce-project {
  max-width: 80vw;
  width: fit-content;
  margin: 0 auto;
}
#ubu_home .creeonceSmall-btn {
  border-radius: 25px 75px 45px 35px;
  display: inline-block;
  background-color: #ea8356;
  color: white;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 13px 16px;
  transition: 0.15s ease-in-out;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
#ubu_home .creeonceSmall-btn:hover {
  border-radius: 35px 25px 75px 45px;
}
#ubu_home .creeonceSmall-btn svg {
  margin-right: 50px;
}
#ubu_home .creeonce {
  display: none;
  width: 100%;
  max-width: unset;
  padding-bottom: 140px;
}
#ubu_home .creeonce-wrapper {
  width: 100%;
  max-width: unset;
  height: 200vh;
  position: relative;
  overflow-y: visible;
  --ratio: 0;
}
#ubu_home .creeonce-content {
  max-width: calc(1640px + var(--grid-marge));
  margin: 0 0 0 auto;
  width: calc(100% - var(--grid-marge));
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
}
#ubu_home .creeonce-content-wrapper {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 40px;
}
#ubu_home .creeonce-content * {
  transition: 0.15s;
}
#ubu_home .creeonce-background {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  transform-origin: center right;
  transform: scaleX(calc(0.6 + 0.4 * var(--ratio)));
}
#ubu_home .creeonce-tasse {
  font-family: "Ramona", serif;
  color: #664ff2;
  font-weight: bold;
  font-size: 86px;
  width: min-content;
  position: relative;
}
#ubu_home .creeonce-tasse span {
  display: block;
  transform: translateY(calc(-1 * (100% + var(--navBarHeight)) * var(--ratio)));
}
#ubu_home .creeonce-tasse img {
  position: absolute;
  top: calc(100% - (100% + var(--navBarHeight)) * var(--ratio));
  left: 0;
  width: 100%;
  height: auto;
  max-height: unset;
}
#ubu_home .creeonce-project {
  flex: 1;
  text-align: center;
  max-width: 100%;
  width: auto;
  display: block;
  text-decoration: none;
  color: inherit;
}
#ubu_home .creeonce-project img {
  margin: 0 auto;
  display: block;
  max-width: 560px;
  max-height: 480px;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.16));
}
#ubu_home .creeonce-project-content {
  padding: 20px 0;
  color: #34221f;
  font-weight: bold;
}
#ubu_home .creeonce-btn {
  border-radius: 25px 75px 45px 35px;
  margin-top: 0px;
  display: inline-block;
  background-color: #ea8356;
  color: white;
  font-weight: 500;
  font-size: 26px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 60px 45px;
  transition: 0.15s ease-in-out;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
#ubu_home .creeonce-btn:hover {
  border-radius: 35px 25px 75px 45px;
}
#ubu_home .creeonce-btn svg {
  margin-right: 50px;
}
#ubu_home .quiestce {
  position: relative;
  width: 100%;
}
#ubu_home .quiestce-headline {
  margin-top: 0.75em;
  font-size: 44px;
  font-family: "Comic", serif;
  text-transform: uppercase;
  text-align: center;
}
#ubu_home .quiestce-headline-sublined {
  position: relative;
  display: inline-block;
}
#ubu_home .quiestce-headline-sublined::after {
  content: "_";
  position: absolute;
  display: inline-block;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 10%);
}
#ubu_home .quiestce-depliable {
  margin-top: 1.5em;
}
#ubu_home .quiestce-depliable-item {
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
  background-color: var(--ubuiste-color);
}
#ubu_home .quiestce-depliable-item-img {
  background: var(--background-body);
  width: 100%;
  height: auto;
  padding: 35px 35px 40px;
  position: relative;
}
#ubu_home .quiestce-depliable-item-photoUp {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}
#ubu_home .quiestce-depliable-item-down {
  content: "";
  display: block;
  background-color: var(--background-body);
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
}
#ubu_home .quiestce-depliable-item-photoDown {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: -1;
}
#ubu_home .quiestce-depliable-item summary {
  overflow: hidden;
  position: relative;
  transition: 0.3s ease-out;
}
#ubu_home .quiestce-depliable-item summary p {
  padding: 0 1em;
}
#ubu_home .quiestce-depliable-item .mb-details-content {
  padding: 0 1em;
  line-height: 32px;
  animation-name: MB_Details_Anim_Open;
}

@media only screen and (min-width: 768px) {
  #ubu_home .landing-text {
    font-size: 2.5rem;
  }
  #ubu_home .quiestce {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 16px;
    position: relative;
    width: calc(100% - 2 * var(--grid-marge));
  }
  #ubu_home .quiestce .homeTitle {
    grid-area: 1/2/2/12;
    position: relative;
    text-align: left;
  }
  #ubu_home .quiestce .homeTitle img {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: auto;
    transform: translate(1em, -0.5em);
  }
  #ubu_home .quiestce-headline {
    grid-area: 2/1/3/13;
    justify-content: space-around;
  }
  #ubu_home .quiestce-depliable {
    grid-area: 3/1/3/13;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 1em;
  }
  #ubu_home .quiestce-depliable-item {
    width: unset;
    flex: 1;
    min-width: 300px;
  }
  #ubu_home .quiestce-depliable-item-img {
    padding: 35px 25px 40px;
  }
  #ubu_home .quiestce-depliable-item .mb-details-content {
    line-height: unset;
    animation-name: MB_Details_Anim_Close;
  }
  #ubu_home .quiestce-depliable-item:hover summary {
    padding-bottom: 26px;
  }
  #ubu_home .quiestce-depliable-item:hover[open] summary {
    padding-bottom: 0px;
  }
  #ubu_home .ubudescription {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, auto);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
  }
  #ubu_home .ubudescription .homeTitle {
    grid-area: 1/1/2/5;
  }
  #ubu_home .ubudescription-texte {
    display: block;
    grid-area: 2/3/3/5;
  }
  #ubu_home .ubudescription-illustration {
    grid-area: 2/1/3/3;
  }
  #ubu_home .ubudescription-illustration img {
    max-height: unset;
    max-width: 500px;
    display: block;
    margin: 0 auto;
  }
  #ubu_home .ubudescription-ender {
    grid-area: 3/4/4/5;
    padding-left: unset;
  }
}
@media only screen and (min-width: 1024px) {
  #ubu_home .landing {
    flex-direction: row;
  }
  #ubu_home .landing-left {
    flex: 1;
  }
  #ubu_home .landing-text {
    font-size: 2rem;
  }
  #ubu_home .landing-plante {
    display: block;
    width: 80%;
    transform: translate(-25%, 20%);
  }
  #ubu_home .landing-right {
    padding: 1em;
  }
  #ubu_home .landing-images {
    grid-template-rows: repeat(6, 1fr);
  }
  #ubu_home .landing-images-item:nth-of-type(1) {
    grid-area: 1/1/4/5;
  }
  #ubu_home .landing-images-item:nth-of-type(2) {
    grid-area: 3/3/6/6;
  }
  #ubu_home .landing-images-item:nth-of-type(3) {
    --centerObj: right center;
    grid-area: 3/1/7/4;
  }
  #ubu_home .poleExpertise {
    position: sticky;
    top: var(--navBarHeight);
    width: 100%;
    min-height: 150vh;
    aspect-ratio: 12/9;
    --displayH: calc(1vh - var(--navBarHeight) / 100);
    --translation-factor: 1;
  }
  #ubu_home .poleExpertise-wrapper {
    height: 300vh;
    position: relative;
    overflow-y: visible;
  }
  #ubu_home .poleExpertise-texte {
    position: sticky;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100 * var(--displayH));
    width: 100%;
  }
  #ubu_home .poleExpertise-texte svg {
    width: 80%;
  }
  #ubu_home .poleExpertise-corner {
    width: unset;
    position: absolute;
    --translation-factor-courbe: calc(
      var(--translation-factor) * var(--translation-factor)
    );
  }
  #ubu_home .poleExpertise-corner img {
    height: unset;
    position: absolute;
    width: unset;
  }
  #ubu_home .poleExpertise-corner--lt {
    transform: translate(calc(-100% * var(--translation-factor)), calc(-100% * var(--translation-factor-courbe)));
    transform: translate(calc(-100% * var(--translation-factor)), calc(-100% * var(--translation-factor-courbe)));
    left: 0;
    top: 0;
    height: calc(100 * var(--displayH) * 2 / 3);
    width: 50%;
  }
  #ubu_home .poleExpertise-corner--lt img {
    top: 0;
    left: 0;
    transform: translate(0%, -25%);
    object-position: top left;
  }
  #ubu_home .poleExpertise-corner--rt {
    display: block;
    transform: translate(calc(100% * var(--translation-factor)), calc(-100% * var(--translation-factor-courbe)));
    height: calc(50 * var(--displayH));
    width: 50vw;
    right: 0;
    top: 0;
  }
  #ubu_home .poleExpertise-corner--rt img {
    top: 0;
    right: 0;
    object-position: top right;
    transform: translate(0%, -10%);
  }
  #ubu_home .poleExpertise-corner--lb {
    transform: translateY(-100%) translate(calc(-100% * var(--translation-factor)), calc(100% * var(--translation-factor-courbe)));
    width: 62%;
    height: calc(92 * var(--displayH));
    left: 0%;
    top: calc(100 * var(--displayH));
  }
  #ubu_home .poleExpertise-corner--lb img {
    bottom: 0;
    left: 0;
    object-position: bottom left;
    transform: translate(-11%, 36%);
  }
  #ubu_home .poleExpertise-corner--rb {
    transform: translateY(-100%) translate(calc(100% * var(--translation-factor)), calc(100% * var(--translation-factor-courbe)));
    width: 50%;
    height: calc(50 * var(--displayH) * 100 / 44);
    right: 0%;
    top: calc(100 * var(--displayH));
  }
  #ubu_home .poleExpertise-corner--rb img {
    bottom: 0;
    right: 0;
    object-position: bottom right;
    transform: translate(0%, 56%);
  }
  #ubu_home .quiestce-headline {
    font-size: 68px;
  }
  #ubu_home .homeTitle {
    font-size: 64px;
  }
  #ubu_home .creeonceSmall {
    display: none;
  }
  #ubu_home .creeonce {
    display: block;
  }
}
@media only screen and (min-width: 1280px) {
  #ubu_home .homeTitle {
    font-size: 80px;
  }
}
@media only screen and (min-width: 1440px) {
  #ubu_home .homeTitle {
    font-size: 92px;
  }
}
@media only screen and (min-width: 1920px) {
  #ubu_home .homeTitle {
    font-size: 100px;
  }
}
.projet {
  position: relative;
  padding-top: 2em;
}
.projet-wrapper {
  max-width: 100vw;
  overflow: hidden;
}
.projet-title {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}
.projet-title h1 {
  --elem-color: black;
  width: fit-content;
  z-index: 2;
  position: relative;
  margin: 2em 0;
}
.projet-title h1::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  height: calc(100% + 4em);
  width: calc(100% + 4em);
  background-image: url(/medias/front/brush/projet_title.png);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.projet-title-bcg {
  display: none;
}
.projet-mainImg {
  padding: 1rem 1.8rem;
}
.projet-mainImg img {
  height: auto;
  max-height: 50vh;
}
.projet-specs {
  margin-left: 0.8rem;
  font-size: 22px;
  line-height: 1.5em;
}
.projet-specs p {
  margin: 0;
}
.projet-specs-intitule {
  font-family: "Ramona", serif;
  color: #664ff2;
}
.projet-desc {
  font-family: "Ubuntu", sans-serif;
  font-size: 1rem;
}
.projet-video {
  padding-top: 2em;
}
.projet-video iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.projetFooter {
  padding-top: 4em;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
}
.projetFooter a {
  display: block;
  width: min-content;
  padding-bottom: 0.15em;
  color: #ea8356;
  border-bottom: solid 0.15em #ea8356;
  text-decoration: none;
  font-family: "Ubuntu", sans-serif;
  font-size: 18px;
}

@media only screen and (min-width: 400px) {
  .projetFooter a {
    width: fit-content;
  }
}
@media only screen and (min-width: 1024px) {
  .projet {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 16px;
    position: relative;
  }
  .projet-title {
    grid-area: 1/2/2/7;
  }
  .projet-title h1 {
    --elem-color: black;
    width: fit-content;
    z-index: 2;
    position: relative;
    margin: unset;
  }
  .projet-title h1::before {
    display: none;
  }
  .projet-title-bcg {
    grid-area: 1/1/2/7;
    display: block;
    height: 100%;
    width: 100%;
    background-image: url(/medias/front/brush/projet_title.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
    transform-origin: center;
    transform: scale(1.25, 1.5);
  }
  .projet-mainImg {
    grid-area: 1/8/2/12;
    padding: 0;
  }
  .projet-specs {
    margin-top: 1em;
    grid-area: 2/3/3/11;
    font-size: 33px;
    line-height: 2em;
  }
  .projet-specs p {
    margin: 1em 0;
  }
  .projet-content {
    grid-area: 3/2/4/12;
  }
  .projet-video {
    padding-top: 4em;
    grid-area: 4/3/5/11;
  }
  .projetFooter a {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1440px) {
  .projet-mainImg {
    grid-area: 1/8/3/12;
  }
  .projet-specs {
    margin-top: 0;
    grid-area: 2/2/3/7;
    font-size: 44px;
  }
  .projetFooter a {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1920px) {
  .projetFooter a {
    font-size: 40px;
  }
}
.expertise-intro {
  z-index: 2;
  position: relative;
  overflow: hidden;
}
.expertise-intro .mb-navbar {
  overflow: hidden;
}
.expertise-intro .mb-navbar:first-of-type {
  width: 100%;
  position: absolute;
  background-color: transparent;
}
.expertise-intro .mb-navbar.mb-navbar--scrolled {
  position: fixed;
  top: 0;
  background-color: var(--background-body);
}
.expertise-intro .mb-navbar--placeHolder2 {
  position: relative;
  top: unset;
}
.expertise-intro-brush {
  position: absolute;
  top: 0;
  right: 10%;
  height: 100%;
}
.expertise-intro-brush img {
  object-fit: unset;
}
.expertise-intro section {
  position: relative;
}
.expertise-intro-img {
  grid-area: 1/1/2/6;
}
.expertise-intro-desc {
  grid-area: 1/7/2/11;
}
.expertise-titre {
  mix-blend-mode: difference;
  display: block;
}
.expertise-content {
  display: flex;
  flex-flow: column-reverse nowrap;
}
.expertise-subtitle {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.expertise-projet {
  width: fit-content;
  border: solid thin #aea8ba;
  color: inherit;
  text-decoration: none;
  font-size: 30px;
  font-weight: bold;
  padding: 18px 18px 27px 18px;
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 72px;
}
.expertise-projet-liste {
  width: calc(100% - 2 * var(--grid-marge));
  cursor: ew-resize;
  text-align: center;
}
.expertise-projet-cta {
  height: 90px;
  width: 90px;
  border: solid 4px #ea8356;
  position: absolute;
  bottom: -35px;
  left: 18px;
  line-height: 70px;
  text-align: center;
  color: #ea8356;
  font-size: 50px;
  font-weight: 100;
  transition: 0.3s ease-in-out;
}
.expertise-projet-titre {
  padding-left: 108px;
}
.expertise-projet-img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 18px;
  max-height: 320px;
  width: auto;
  max-width: 80vw;
}
.expertise-projet-img img {
  display: block;
  max-height: inherit;
}
.expertise-projet:hover .expertise-projet-cta {
  box-shadow: 0 -90px inset #ea8356;
  color: #fff;
}

@media only screen and (min-width: 1024px) {
  .expertise-intro-brush {
    height: unset;
    width: 65%;
  }
  .expertise-titre {
    mix-blend-mode: difference;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 16px;
  }
  .expertise-titre h1 {
    grid-area: 1/2/2/12;
  }
  .expertise-content {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 16px;
  }
}