/******************************/
/*********** Général***********/
/******************************/
html {
  --bg-color: #fff;
  --fs-title: clamp(1.625rem, 1.4126rem + 0.9061vw, 2.5rem); /* 26px to 40px */
  --footer-text-color: var(--CONFIG-footer-text-color);
  --bg-img-footer: var(--CONFIG-bg-img-footer);
  
  /***********************************************************************************************************/
  /* Ces variable sont déja prédéfinies (pas besoin de les décommenter), mais vous pouvez les customiser ici */
  /***********************************************************************************************************/
  /* --bg-img-body: linear-gradient(to right, blue, orange); */
  
  /* --ff-global: 'Poppins', sans-serif; */
  
  /* --max-width-body: 1280px; */
  /* --max-width-bodyContentLeftFrame: 780px; */
  
  /* --title-text-color: black; */
  /* --paragraphe-text-color: #c3c3c3; */

  /* --fs-paragraphe: clamp(1rem, 0.8786rem + 0.5178vw, 1.5rem); */ /* 16px to 24px */
  /* --fs-footer-text: clamp(0.8125rem, 0.7063rem + 0.4531vw, 1.25rem); */ /* 13px to 20px */
}

* {
  padding: 0;
  margin: 0;
}

body,
html {
  font-size: 16px;
  height: 100%;
}

body {
  width: 100%;
  height: 100%;
  background-color: var(--bg-color, #fff);
  background-image: var(--bg-img-body);
  font-family: var(--ff-global, "Poppins", sans-serif);
  overflow-x: hidden;
  min-height: 100%;
  display: grid;
  grid-template-rows: 1fr auto;
  grid-template-columns: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
button,
input,
select,
textarea {
  font-family: var(--ff-global, "Poppins", sans-serif);
}

::-webkit-input-placeholder {
  font-family: var(--ff-global, "Poppins", sans-serif);
}

:-moz-placeholder {
  font-family: var(--ff-global, "Poppins", sans-serif);
}

::-moz-placeholder {
  font-family: var(--ff-global, "Poppins", sans-serif);
}

:-ms-input-placeholder {
  font-family: var(--ff-global, "Poppins", sans-serif);
}

h1 {
  font-size: var(--fs-title);
  color: var(--title-text-color);
}

p {
  font-size: var(--fs-paragraphe);
  color: var(--paragraphe-text-color);
}

img {
  display: block;
  width: 100%;
}

a {
  color: var(--footer-text-color, #fff);
}

ul {
  list-style: none;
}

/******************************/
/*********** Header ***********/
/******************************/
.arrowBlack {
  width: 20px;
  height: 20px;
  padding: 40px;
  transform: translateX(-40px);
}

/*******************************/
/*********** Content ***********/
/*******************************/
.bodyContent {
  height: 100%;
  max-width: var(--max-width-body, 1280px);
  padding: 0 30px;
  margin: 0 auto;
}

.bodyContentLeftFrame {
  max-width: var(--max-width-bodyContentLeftFrame, 780px);
  padding-bottom: 30px;
}

/******************************/
/*********** Footer ***********/
/******************************/
footer {
  background-image: var(
    --bg-img-footer,
    linear-gradient(to right, rgb(0, 0, 0), rgb(0, 0, 0))
  );
  color: var(--footer-text-color, #fff);
  padding: 1.15rem 1.875rem 1.15rem;
  margin-top: 20px;
}

footer ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  max-width: 1050px;
  width: 100%;
  margin: 0 auto;
}

footer li {
  font-size: var(--fs-footer-text, clamp(0.6875rem, 0.558rem + 0.5525vw, 1rem));
  /* 11px to 16px */
}


/**********************************/
/*********** MediaQuery ***********/
/**********************************/

@media screen and (max-width: 700px) {

  footer ul {
    display: grid;
  }

  li {
    text-align: center;
  }
}