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

html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
}

img {
  max-width: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden],
template {
  display: none;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b,
strong {
  font-weight: bold;
}

dfn {
  font-style: italic;
}

h1 {
  margin: 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

hr {
  box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* FONT FACE */
/* Imports des fonts */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/static/Manrope-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/static/Manrope-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/static/Manrope-Medium.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/static/Manrope-Bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Amaranth";
  src: url("../fonts/Amaranth/Amaranth-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Amaranth";
  src: url("../fonts/Amaranth/Amaranth-Bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Amaranth";
  src: url("../fonts/Amaranth/Amaranth-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Amaranth";
  src: url("../fonts/Amaranth/Amaranth-BoldItalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
}
/* VARIABLES */
html, body {
  padding: 0;
  margin: 0;
  list-style: none;
}

/*--------------------------------------------------------------
GLOBAL
--------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
  font-family: "Manrope", sans-serif;
  color: #1E1E1E;
  overflow-x: hidden;
}

body {
  scroll-behavior: smooth;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  background-color: #FAF7F2;
}
@media (min-width: 768px) {
  body {
    font-size: 20px;
  }
}
@media (min-width: 1024px) {
  body {
    font-size: 24px;
  }
}
@media (min-width: 1188px) {
  body {
    font-size: 26px;
  }
}
@media (min-width: 1500px) {
  body {
    font-size: 28px;
  }
}

ul {
  list-style: none;
}

a {
  color: #1E1E1E;
  text-decoration: none;
  transition: 0.3s;
}

em {
  font-family: "Amaranth", sans-serif;
  font-style: italic;
  font-size: 18px;
}
@media (min-width: 768px) {
  em {
    font-size: 22px;
  }
}
@media (min-width: 1024px) {
  em {
    font-size: 26px;
  }
}
@media (min-width: 1188px) {
  em {
    font-size: 28px;
  }
}
@media (min-width: 1500px) {
  em {
    font-size: 30px;
  }
}

strong {
  font-weight: 800;
}

::-webkit-scrollbar-thumb {
  background: #E95900;
  border-radius: 10px;
}

h1, h2 {
  font-family: "Amaranth", sans-serif;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
}

h2 {
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
}

.titre {
  padding-left: 2rem;
  position: relative;
}
.titre::before {
  content: "";
  width: 7px;
  height: 100%;
  border-radius: 100px;
  background-color: #E95900;
  position: absolute;
  left: 0;
  top: 0;
}
@media (min-width: 1188px) {
  .titre::before {
    width: 10px;
  }
}
@media (min-width: 1188px) {
  .titre {
    padding-left: 3rem;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1188px) {
  h1 {
    font-size: 3.75rem;
  }
  h2 {
    font-size: 3.75rem;
    margin-bottom: 3rem;
  }
}
@media (min-width: 1500px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 4rem;
  }
}
.fill-primary {
  fill: #E95900;
}

.fill-secondary {
  fill: #D80000;
}

.fill-tertiary {
  fill: #FFC800;
}

.fill-black {
  fill: #1E1E1E;
}

.fill-white {
  fill: #FFFFFF;
}

.bg-white {
  background-color: #FFFFFF;
}

.btn {
  background-color: transparent;
  color: #1E1E1E;
  padding: 0.5rem 1.5rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  border: 1px solid #1E1E1E;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn--white {
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
}

section {
  padding: 3rem 10%;
}
@media (min-width: 1024px) {
  section {
    padding: 4rem 10%;
  }
}
@media (min-width: 1188px) {
  section {
    padding: 5rem 12%;
  }
}
@media (min-width: 1500px) {
  section {
    padding: 6rem 15%;
  }
}

.h-100 {
  height: 100vh;
}

.w-100 {
  width: 100vw;
}

p:not(:last-of-type) {
  margin-bottom: 0.5rem;
}

.flex {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1188px) {
  .flex {
    flex-direction: row;
    justify-content: space-between;
    gap: 7rem;
  }
  .flex .container {
    width: 50%;
  }
  .flex--reverse {
    flex-direction: row-reverse;
  }
}

.banner {
  width: 100%;
  padding: 3rem 10%;
  background: #1E1E1E;
  color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1500px) {
  .banner {
    padding: 4rem 15%;
    padding-top: 8rem;
  }
}

/*--------------------------------------------------------------
HEADER
--------------------------------------------------------------*/
.header {
  width: 100vw;
  position: fixed;
  z-index: 5;
  margin-top: 0;
  top: 0;
  display: flex;
  /* Burger style */
  /* Transformer le burger en croix */
}
.header .menu {
  min-height: 100vh;
  width: 100%;
  padding: 4rem 10%;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: flex-start;
  gap: 2rem;
  position: absolute;
  top: 0;
  right: 0;
  clip-path: circle(0% at calc(100% - 1.5rem) 1.5rem);
  background: linear-gradient(135deg, #D80000, #FFC800);
  transition: clip-path 0.6s ease-in-out;
}
.header .menu > a {
  text-align: center;
}
.header .menu li:not(.contact) a {
  color: #FFFFFF;
  font-weight: 800;
  font-family: "Amaranth", sans-serif;
  font-size: 2rem;
  transition: color 0.3s ease;
  position: relative;
  text-shadow: 0 3px 4px rgba(30, 30, 30, 0.3);
}
@media (min-width: 1188px) {
  .header .menu li:not(.contact) a {
    font-size: 3rem;
  }
}
.header .menu li:not(.contact) a::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 0.2rem;
  height: 0.3em;
  background-color: #FFC800;
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  z-index: -1;
}
.header .menu li:not(.contact) a:hover::after {
  transform: scaleX(1);
}
.header .menu .contact {
  margin-top: 1rem;
}
.header .menu .contact a {
  color: #E95900;
  font-weight: 800;
  font-family: "Amaranth", sans-serif;
  font-size: 2rem;
  transition: color 0.3s ease;
  background-color: #FFFFFF;
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: 0 3px 4px rgba(30, 30, 30, 0.3);
  transition: all 0.3s ease;
}
@media (min-width: 1188px) {
  .header .menu .contact a {
    font-size: 3rem;
  }
}
.header .menu .contact a:hover {
  background-color: rgb(255, 209.8841201717, 182);
}
.header .menu__logo {
  width: 100%;
  max-width: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: brightness(0) invert(1);
}
.header .menu__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
}
.header .checkbox {
  display: block;
  width: 45px;
  height: 45px;
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}
.header .burger {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  background: #1E1E1E;
  padding: 0.5rem;
  border-radius: 50%;
  height: 45px;
  width: 45px;
  border: 1px solid #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-items: center;
}
.header .burger span {
  display: block;
  width: 100%;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #FFFFFF;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}
.header .burger span:last-child {
  margin-bottom: 0;
}
.header .burger span:first-child {
  transform-origin: 0% 0%;
}
.header .burger span:nth-last-child(1) {
  transform-origin: 0% 100%;
}
.header .checkbox:checked ~ .burger span {
  opacity: 1;
  transform: rotate(45deg) translate(2.5px, -4.5px);
  background: #FFFFFF;
}
.header .checkbox:checked ~ .burger span:nth-last-child(2) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
.header .checkbox:checked ~ .burger span:nth-last-child(1) {
  transform: rotate(-45deg) translate(4px, 3px);
}
.header .checkbox:checked ~ .menu {
  clip-path: circle(150% at 90% 5%);
}
.header .switch-lang {
  position: fixed;
  top: 1rem;
  right: 5rem;
  display: flex;
  gap: 0.6rem;
  z-index: 999;
}
.header .switch-lang__btn {
  font-size: 18px;
  font-weight: 600;
  padding: 0.5rem;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #1E1E1E;
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  transition: 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.header .switch-lang__btn:hover, .header .switch-lang__btn--active {
  background-color: #FFFFFF;
  color: #1E1E1E;
  border: 1px solid #1E1E1E;
}

/*--------------------------------------------------------------
FOOTER
--------------------------------------------------------------*/
.footer {
  background-color: #1E1E1E;
  padding: 2rem 10%;
  text-align: center;
  color: #FFFFFF;
  font-size: 16px;
}
@media (min-width: 768px) {
  .footer {
    font-size: 18px;
  }
}
@media (min-width: 1188px) {
  .footer {
    font-size: 20px;
  }
}
.footer a {
  color: #FFFFFF;
  font-weight: 700;
}
.footer a:hover {
  color: #FFC800;
}

/*--------------------------------------------------------------
PAGE DEFAUT
--------------------------------------------------------------*/
.defaut h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.defaut a {
  text-decoration: underline;
}
.defaut a:hover {
  color: #E95900;
}
@media (min-width: 1188px) {
  .defaut {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
ANIMATIONS
--------------------------------------------------------------*/
/* Liste des animations */
/* Animation section apparaît au scroll */
.animation-from-bottom {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 1s, transform 1s;
}

.animation-from-top {
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 1s, transform 1s;
}

.animation-from-left {
  opacity: 0;
  transform: translateX(-150px);
  transition: opacity 1s, transform 1s;
}

.animation-from-right {
  opacity: 0;
  transform: translateX(150px);
  transition: opacity 1s, transform 1s;
}

.hidden {
  opacity: 0;
}

.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Animation liste venant d'en haut*/
.animation-list > * {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animation-list > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Animation liste venant de la gauche */
.animation-list-2 > * {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animation-list-2 > *.visible {
  opacity: 1;
  transform: translateX(0);
}

/* animation du menu venant de la gauche */
.menu-animate-left > * {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.menu-animate-left > *.animate {
  opacity: 1;
  transform: translateX(0);
}

.cursor-circle {
  display: none;
}
@media (min-width: 1188px) {
  .cursor-circle {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #E95900;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease-out, background-color 0.3s ease;
    z-index: 9999;
  }
}

/* Retirer le badge ReCaptcha */
.grecaptcha-badge {
  display: none;
}

/* Badge ecoindex */
#ecoindex-badge {
  display: none;
}

/* Responsive desktop */
@media screen and (min-width: 1170px) {
  #ecoindex-badge {
    display: block;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
  }
}
/* Flèche back-to-up */
.back-to-up {
  opacity: 0;
  position: fixed;
  bottom: 1.25rem;
  right: 1rem;
  width: 70px;
  height: 70px;
  text-align: center;
  border-radius: 50%;
  z-index: 3;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}
.back-to-up svg {
  width: 100%;
  height: auto;
  display: block;
}
.back-to-up:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
}

@media screen and (max-width: 650px) {
  .back-to-up {
    width: 50px;
    height: 50px;
  }
}
.btn-contact {
  position: fixed;
  opacity: 0;
  right: 1rem;
  bottom: 8rem;
  z-index: 3;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #1E1E1E;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.5s ease-in-out;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  animation: pulse 2.6s infinite ease-in-out;
}
.btn-contact:hover {
  transform: scale(1.07);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  animation: none;
}
.btn-contact__icone {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-contact__icone img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
  }
}
@media (max-width: 650px) {
  .btn-contact {
    width: 50px;
    height: 50px;
    bottom: 6rem;
  }
  .btn-contact__icone {
    width: 30px;
    height: 30px;
  }
}