@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: "BodoniModa";
  src: url("../fonts/Bodoni_Moda/static/BodoniModa_18pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "BodoniModa";
  src: url("../fonts/Bodoni_Moda/static/BodoniModa_18pt-Bold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
}
/* VARIABLES */
html, body {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

body {
  scroll-behavior: smooth;
  font-family: "Arial", sans-serif;
  background-color: #06080E;
}

ul {
  list-style: none;
}

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

em {
  font-family: "Arial", 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: 700;
}

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

section {
  padding: 3rem 10%;
}

.h-100 {
  height: 100vh;
}

.w-100 {
  width: 100vw;
}

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

.banner {
  width: 100%;
  padding: 3rem 10%;
  background: #1E0731;
  color: #FFFFFF;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 1500px) {
  .banner {
    padding: 4rem 15%;
  }
}
.banner h1 {
  font-size: 2rem;
}
@media (min-width: 1188px) {
  .banner h1 {
    font-size: 2.5rem;
  }
}

/*--------------------------------------------------------------
FOOTER
--------------------------------------------------------------*/
.footer {
  padding: 2rem 10%;
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}
.footer a {
  color: rgba(255, 255, 255, 0.9);
}
.footer a:hover {
  color: #00EAE0;
}

/*--------------------------------------------------------------
PAGE DEFAUT
--------------------------------------------------------------*/
.defaut h2 {
  padding-top: 2rem;
  padding-bottom: 1rem;
}
.defaut a {
  text-decoration: underline;
}
.defaut a:hover {
  color: #F90DFF;
}

/*--------------------------------------------------------------
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);
}

.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: #00EAE0;
    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;
  }
}