:root {
  --blanc: #ffffff;
  --beige: #fff9ee;
  --orange: #c48b2b;
  --noir: #101213;
  --gris: #f1f0f0;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Regular.woff2") format('woff2'), url("/fonts/Poppins-Regular.woff") format('woff');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Medium.woff2") format('woff2'), url("/fonts/Poppins-Medium.woff") format('woff');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-SemiBold.woff2") format('woff2'), url("/fonts/Poppins-SemiBold.woff") format('woff');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  src: url("/fonts/Poppins-Bold.woff2") format('woff2'), url("/fonts/Poppins-Bold.woff") format('woff');
  font-weight: 700;
  font-display: swap;
}
.cookies-action-wrapper {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  /* margin-top: 1rem; */
  gap: 1rem;
  flex-shrink: 0;
}
.cookies_popup p {
  text-align: left;
  color: black;
}
.cookies_popup li {
  font-size: 1rem;
}
.cookies-container {
  flex-direction: column;
  color: var(--black);
}
.cookies-modal {
  position: relative;
  z-index: 999999999999;
  background-color: #fff;
  padding: 32px;
  width: 100%;
  height: auto;
  max-width: 700px;
  box-shadow: 1px 2px 10px 3px rgba(0, 0, 0, 0.2);
  text-align: left;
}
.cookies-modal > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookies-modal > div h1 {
  margin: 0;
  font-size: 1.3rem;
}
#cookies-modal-close-button {
  background-color: transparent;
  border: none;
  width: auto;
  cursor: pointer;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
#cookies-modal-configuration-list {
  margin-top: 30px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
  color: black;
  height: 80%;
}
.cookies-modal-list-item {
  width: 100%;
  position: relative;
  column-gap: 20px;
  display: grid;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}
.cookies-modal-list-item:last-of-type {
  border-bottom: 0;
}
.cookies-toggle-heading {
  display: block;
  font-weight: bold;
  margin-bottom: 0.5em;
  color: var(--black);
}
.cookies-modal-list-item-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookies-toggle-checkbox {
  display: none;
}
.cookies-toggle-label {
  flex-shrink: 0;
  width: 60px;
  height: 34px;
  background-color: #ccc;
  border-radius: 34px;
  display: block;
  cursor: pointer;
  position: relative;
  transition: background-color 0.4s;
  margin: 0 auto;
}
.cookies-toggle-checkbox:disabled ~ .cookies-toggle-label {
  cursor: not-allowed;
}
.cookies-toggle-checkbox:checked ~ .cookies-toggle-label {
  background-color: #c48b2b;
}
.cookies-toggle-label::before {
  border-radius: 50%;
  content: "";
  position: absolute;
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: transform 0.4s;
}
.cookies-toggle-checkbox:checked ~ .cookies-toggle-label::before {
  transform: translateX(26px);
}
.cookies-toggle-text {
  display: block;
  color: black;
}
.cookies-modal > button {
  margin: 25px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: black;
  border-radius: 24px;
  border: none;
  color: #fff;
}
.cookies-banner-close {
  transition: transform 500ms ease-in-out;
  transform: translateY(100%);
}
.cookies-configuration-modal {
  transition: opacity 500ms ease-in-out;
  position: fixed;
  display: none;
  justify-content: center;
  align-items: center;
  width: 100vw;
  opacity: 1;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: 9999999999;
}
.cookies-modal-animate-open {
  transition: opacity 500ms ease-in-out;
  opacity: 1;
}
.cookies-modal-animate-close {
  transition: opacity 500ms ease-in-out;
  opacity: 0;
}
#cookies-consent-banner {
  display: none;
  padding: 1rem 2rem;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-box-shadow: 1px 2px 10px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 1px 2px 10px 3px rgba(0, 0, 0, 0.2);
  background-color: #fff9ee;
  box-sizing: border-box;
  z-index: 999999999;
}
.cookies-container {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 20px;
}
@media (min-width: 1024px) {
  .cookies-action-wrapper {
    flex-direction: row;
    align-items: center;
  }
  .cookies-container {
    align-items: center;
    flex-direction: row;
  }
}
@media (min-width: 640px) {
  .cookies_popup .cookies-modal {
    width: 70%;
  }
}
@media (min-width: 420px) {
  .cookies_popup .cookies-modal {
    width: 100%;
  }
}
@media (max-width: 470px) {
  .cookies_popup li {
    font-size: 90%;
  }
}
.cookies_popup button {
  border-radius: 20px;
}
#cookies-configuration-button {
  box-sizing: border-box;
  cursor: pointer;
  color: black;
  background-color: #fff;
  border: 2px solid black;
  padding: 12px 32px;
  min-width: 165px;
}
#cookies-decline-button {
  box-sizing: border-box;
  cursor: pointer;
  color: #ca0b0f;
  background-color: #fff;
  border: 2px solid #ca0b0f;
  padding: 12px 32px;
  min-width: 165px;
}
#cookies-accept-button {
  box-sizing: border-box;
  cursor: pointer;
  color: #fff;
  /* Text-color */
  background-color: #c48b2b;
  padding: 12px 32px;
  min-width: 165px;
  border: 1px solid white;
}
input[name="name"] {
  display: none;
}
input[type="file"] {
  display: none;
}
.form-error {
  color: red;
  font-weight: bold;
  margin-bottom: 12px;
}
.input-error {
  border: 3px solid red !important;
}
.fields-error {
  color: red;
  font-weight: bold;
}
.message-success {
  display: block;
  padding: 10px 12px;
  background-color: #ddfad9;
  border: 1px solid #288d1b;
  color: #288d1b;
}
.anim-opacity {
  opacity: 0;
  transform: translateY(-50px);
  transition: all 0.4s ease-in;
  transition-delay: var(--delay, 0s);
}
.anim-opacity.actif {
  opacity: 1;
  transform: translateY(0);
}
.anim-translate {
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.3s ease-in;
  transition-delay: var(--delay, 0s);
}
.anim-translate.actif {
  opacity: 1;
  transform: translateX(0);
}
.anim-only-opacity {
  opacity: 0;
  transition: all 0.4s ease-in;
  transition-delay: var(--delay, 0s);
}
.anim-only-opacity.actif {
  opacity: 1;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body,
html {
  position: relative;
  width: 100%;
  font-size: 16px;
  overflow-x: hidden !important;
}
html.disable-scroll {
  overflow-y: hidden;
}
body {
  font-family: Poppins;
}
p,
h1,
h2,
h3,
h4,
a,
b,
span,
.button {
  color: black;
}
h1 {
  font-weight: 500;
  font-size: 2em;
}
h2 {
  font-weight: 400;
}
h3 {
  font-weight: 400;
}
a {
  text-decoration: unset;
  display: inline-block;
  max-width: fit-content;
}
a,
button,
.btn {
  transition: all 400ms;
  cursor: pointer;
}
.btn {
  background-color: var(--orange);
  color: var(--noir);
  padding: 12px 40px;
  display: block;
  width: max-content;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: 10px;
}
.btn:hover {
  background-color: transparent;
  border: 1px solid var(--orange);
}
.btn-2 {
  background-color: var(--orange);
  color: var(--blanc);
  padding: 10px 12px;
  display: block;
  width: max-content;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid transparent;
  border-radius: 10px;
}
.btn-2:hover {
  background-color: transparent;
  color: var(--noir);
  border: 1px solid var(--orange);
}
img {
  width: 100%;
  height: auto;
  max-width: max-content;
  display: block;
}
main {
  position: relative;
}
.container-90 {
  width: 90%;
  margin: 0 auto;
}
.container-80 {
  width: 80%;
  margin: 0 auto;
}
.container-full {
  width: 100%;
}
.container-mobile {
  width: 90%;
}
.margin-mobile {
  margin-top: 26px;
}
.flex-row {
  display: flex;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-switch {
  display: flex;
  flex-direction: column;
}
.wrap {
  flex-wrap: wrap;
}
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(284px, 1fr));
}
header {
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 3;
}
header ul li {
  transition: background-color 0.3s linear, color 0.2s linear;
}
.header-mobile {
  width: 100%;
  position: fixed;
  padding: 8px 0;
  background-color: var(--noir);
}
.header-mobile .container-90 {
  align-items: center;
  justify-content: space-between;
}
.header-mobile .container-90 .logo {
  max-width: 200px;
}
.header-screen {
  display: none;
}
#burger .line {
  width: 33px;
  height: 3px;
  background-color: white;
  margin: 8px 0;
  transform-origin: 3% 0%;
  border-radius: 13px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
#burger.actif .line:nth-child(1) {
  transform: translate3d(0, 0, 0) rotate(45deg);
}
#burger.actif .line:nth-child(2) {
  opacity: 0;
}
#burger.actif .line:nth-child(3) {
  transform: translate3d(0, 0, 0) rotate(-45deg);
}
.menu-mobile {
  width: 100%;
  height: 100vh;
  margin: auto;
  position: fixed;
  top: -200vh;
  padding-top: 110px;
  background-color: var(--beige);
  z-index: 2;
  padding-left: 22px;
  transition: top 0.5s ease;
}
.menu-mobile li {
  font-size: 1.3em;
}
.menu-mobile li:not(.reseau) {
  margin-top: 12px;
}
.menu-mobile hr {
  margin-top: 12px;
}
.menu-mobile .reseau {
  display: inline-block;
  margin-top: 25px;
}
.menu-mobile.actif {
  top: 0;
}
.banner {
  position: relative;
}
.banner .background {
  height: 420px;
  max-width: unset;
  object-fit: cover;
}
.banner-content {
  position: absolute;
}
hr {
  max-width: 230px;
  background-color: var(--orange);
  color: var(--orange);
  border: 1px solid var(--orange);
}
.hr-container {
  display: flex;
  align-items: center;
}
.hr-container span {
  font-size: 1.2em;
  font-weight: 600;
}
.elm-absolute {
  position: absolute;
}
ul {
  list-style: none;
}
.bold {
  font-weight: bold;
}
.break {
  display: block;
}
.relatif {
  position: relative;
}
.absolute {
  position: absolute;
}
.bloc {
  background-color: var(--beige);
}
input,
textarea {
  font-family: Poppins;
  font-size: 16px;
}
input[type="text"],
textarea {
  width: 100%;
  padding: 9px 9px;
  border: 1px solid var(--orange);
}
.checkbox-container {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.checkbox-container label {
  display: flex;
  column-gap: 5px;
}
form .row {
  display: flex;
  flex-direction: column;
}
.input-container {
  width: 100%;
  margin-bottom: 10px;
}
input:not([type="submit"]),
textarea {
  width: 100%;
  padding: 13px 12px;
}
input::placeholder,
textarea::placeholder {
  font-weight: 400;
  color: black;
}
input[type="submit"] {
  border: 0;
}
select {
  background-color: var(--blanc);
  padding: 4px 6px;
  min-width: 205px;
  cursor: pointer;
}
.uploaded-files {
  margin-top: 10px;
}
footer {
  background-color: var(--noir);
  padding-bottom: 30px;
}
footer a,
footer p {
  color: var(--blanc);
}
footer a:hover {
  color: var(--orange);
}
footer .container-90 .row-1 {
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
footer .container-90 .row-1 .col-3 a {
  font-weight: 700;
}
footer .container-90 .row-2 {
  margin-top: 30px;
  margin-bottom: 40px;
}
footer .container-90 .row-3 {
  margin-top: 20px;
}
footer .container-90 .row-3 p,
footer .container-90 .row-3 a {
  font-size: 0.9em;
}
footer .container-90 .row-3 .liens {
  margin-top: 20px;
}
footer .container-90 .row-3 .liens .policy-temoins {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
  column-gap: 30px;
}
.section-intro-secondaire {
  margin-top: 100px;
  position: relative;
}
.section-intro-secondaire h1 {
  font-weight: 400;
}
.section-intro-secondaire .bloc {
  background-color: var(--beige);
  width: 100%;
  height: 39%;
  position: absolute;
  top: 63%;
  left: 0%;
}
.section-intro-secondaire .container-90 {
  position: relative;
}
.section-intro-secondaire .container-90 > .flex-switch {
  flex-direction: column-reverse;
}
.section-intro-secondaire .container-90 > .flex-switch > .col-1 {
  margin-top: 18px;
  display: flex;
  column-gap: 30px;
}
.section-intro-secondaire .container-90 > .flex-switch > .col-1 .bloc-txt {
  position: relative;
  width: 80%;
}
.section-intro-secondaire .container-90 > .flex-switch > .col-1 h1 {
  margin-top: 5px;
}
.section-intro-secondaire .container-90 > .flex-switch > .col-1 .slogan {
  font-size: 1.4em;
  margin-top: 30px;
}
.section-intro-secondaire .container-90 > .flex-switch > .col-1 > .reseaux-social {
  width: 10%;
  row-gap: 10px;
  display: flex;
  flex-direction: column;
}
.section-intro-secondaire .container-90 > .flex-switch > .col-1 .p-container {
  margin-top: 40px;
  row-gap: 30px;
}
.section-intro-secondaire .container-90 > .flex-switch > .col-1 .row-3 {
  column-gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.section-intro-secondaire .container-90 > .flex-switch > .col-1 .row-3 a {
  font-weight: 700;
}
.section-intro-secondaire .container-90 > .flex-switch > .col-1 .row-3 a:hover {
  color: var(--orange);
}
.section-intro-secondaire .container-90 > .flex-switch > .col-1 .elm-absolute {
  position: absolute;
  top: 20%;
  right: 0%;
  z-index: -1;
}
.section-intro-secondaire .container-90 > .flex-switch > .col-2 {
  margin: auto;
  margin-top: 30px;
}
.section-intro-secondaire .container-90 > .flex-switch > .col-2 img {
  max-width: 280px;
}
.section-services h2 {
  text-align: center;
}
.section-services .grid-container {
  row-gap: 40px;
  margin-top: 70px;
  column-gap: 30px;
  grid-template-columns: 1fr;
}
.section-services .grid-container .service .col-2 h2 {
  font-size: 1.2em;
  font-weight: 600;
}
.section-services .grid-container .service .col-2 p {
  margin-top: 15px;
}
.section-services .container-90 .col-1 img {
  margin: auto;
}
.section-organisation .container .col-1 {
  background-color: var(--beige);
  margin-top: 50px;
  padding: 30px 0 40px 0;
}
.section-organisation .container .col-1 p {
  margin-top: 12px;
}
.section-organisation .container .col-1 .btn {
  margin-top: 30px;
}
.section-organisation .container .col-1 > div {
  width: 90%;
  margin: auto;
}
.section-organisation .container .col-2 img {
  height: 400px;
  object-fit: cover;
}
@media only screen and (min-width: 768px) {
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.7em;
  }
  form .row {
    flex-direction: row;
  }
  .section-services .grid-container {
    margin-top: 120px;
    grid-template-columns: repeat(auto-fit, minmax(344px, 1fr));
  }
  .section-services .grid-container .service {
    display: grid;
    grid-template-columns: 0.2fr 1fr;
    column-gap: 18px;
  }
  .section-services .grid-container .service .col-1 {
    min-width: 86px;
  }
  .section-services .grid-container .service .col-2 h2 {
    text-align: left;
  }
  .section-organisation .container .col-2 img {
    height: unset;
  }
}
@media only screen and (min-width: 1024px) and (orientation: landscape) {
  h2 {
    font-size: 2em;
  }
  .flex-switch {
    flex-direction: row;
    justify-content: space-between;
  }
  hr {
    width: 100%;
  }
  .header-mobile {
    display: none;
  }
  .header-screen {
    display: flex;
    flex-direction: column;
  }
  .header-screen .container {
    justify-content: space-between;
    align-items: center;
  }
  .header-screen .container .col-1 {
    width: 28%;
    background-image: url("/images/hachure-header.png");
    background-repeat: no-repeat;
    background-color: var(--noir);
    padding: 15px 30px;
  }
  .header-screen .container .col-1 .logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .header-screen .container .col-2 {
    width: 68%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 12px;
    margin-left: auto;
    margin-right: auto;
  }
  .header-screen .container .col-2 .btn-2 {
    margin-left: auto;
  }
  .header-screen .container .col-2 hr {
    width: 3px;
    height: 20px;
    flex: unset;
  }
  .header-screen .container .col-2 .politique {
    display: none;
  }
  .header-screen .container .col-2 > .flex-row a:hover {
    text-shadow: 0px 0px 0.85px #000, 1px 0px .85px #000;
  }
  .section-services .grid-container {
    margin-top: 66px;
    grid-template-columns: repeat(2, 1fr);
  }
  footer {
    padding-bottom: 116px;
    background-image: url("/images/hachure-footer.jpg");
    background-repeat: no-repeat;
    background-position: right;
  }
  footer .container-90 .row-1 {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 50px;
    padding-top: 45px;
  }
  footer .container-90 .row-1 .col-2 .reseaux-social {
    display: flex;
    column-gap: 14px;
  }
  footer .container-90 .row-1 .col-3 {
    display: flex;
    column-gap: 15px;
  }
  footer .container-90 .row-2 {
    margin-top: 30px;
  }
  footer .container-90 .row-2 p {
    max-width: 475px;
  }
  footer .container-90 .row-3 {
    margin-top: 60px;
  }
  footer .container-90 .row-3 .liens {
    display: flex;
    column-gap: 30px;
    margin-top: 14px;
  }
  footer .container-90 .row-3 .liens .policy-temoins {
    margin-top: 0;
  }
  .checkbox-container {
    row-gap: 18px;
    column-gap: 18px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .banner .background {
    height: auto;
    object-fit: unset;
  }
  .section-intro-secondaire {
    margin-top: 224px;
  }
  .section-intro-secondaire .bloc {
    width: 48%;
    height: 100%;
    top: 1%;
  }
  .section-intro-secondaire .container-90 > .flex-switch {
    flex-direction: row;
  }
  .section-intro-secondaire .container-90 > .flex-switch .col-1 {
    width: 60%;
    margin: -30px unset -92px unset;
  }
  .section-intro-secondaire .container-90 > .flex-switch .col-1 h1 {
    font-size: 2.2em;
  }
  .section-intro-secondaire .container-90 > .flex-switch .col-1 .elm-absolute {
    right: 34%;
  }
  .section-intro-secondaire .container-90 > .flex-switch .col-2 {
    width: 38%;
    margin-top: 0;
  }
  .section-intro-secondaire .container-90 > .flex-switch .col-2 img {
    margin-left: auto;
    margin-right: auto;
    max-width: fit-content;
  }
  .section-organisation .container .col-1 {
    display: flex;
    align-items: center;
    margin-top: 0;
    padding: 30px 0 20px 5%;
  }
  .section-organisation .container .col-1 > div {
    margin: unset;
  }
}
/* Laptop */
@media only screen and (min-width: 1280px) and (orientation: landscape) {
  .header-screen .container .col-2 .btn-2 {
    margin-left: unset;
  }
}
@media only screen and (min-width: 1536px) and (orientation: landscape) {
  .header-screen .container .col-1 {
    padding: 32px 0;
  }
  .header-screen .container .col-2 {
    width: 58%;
  }
  input[type="submit"] {
    font-size: 1.4em;
    padding: 4px 43px;
  }
  .section-intro-secondaire .container-90 {
    width: 70%;
  }
  .section-intro-secondaire .container-90 .reseaux-social {
    top: 6%;
    left: -8%;
  }
  .section-intro-secondaire .container-90 > .flex-switch .col-1 h1 {
    font-size: 2.8em;
    line-height: 54px;
    margin-top: 14px;
    margin-bottom: 30px;
  }
  .section-intro-secondaire .container-90 > .flex-switch .col-1 .slogan {
    font-size: 1.8em;
    line-height: 36px;
  }
  .section-intro-secondaire .container-90 > .flex-switch .col-1 .p-container {
    margin-top: 50px;
    row-gap: 20px;
  }
  .section-intro-secondaire .container-90 > .flex-switch .col-1 .row-3 {
    margin-top: 50px;
  }
  .section-intro-secondaire .container-90 > .flex-switch .col-1 .elm-absolute {
    top: 17%;
    right: 35%;
  }
  .section-services .container-90 {
    width: 70%;
  }
  .section-organisation .container .col-1 {
    padding: 130px 0 8% 10%;
  }
}
@media only print {
  h1,
  h2,
  h3,
  h4,
  p,
  a,
  li {
    color: #000 !important;
  }
  nav {
    display: none;
  }
}
