/******************************/
/*********** Général***********/
/******************************/
html {
  /* --bg-color: black; */
  --title-text-color: #02132b;
  --paragraphe-text-color: #414e60;
  --description-text-color: #02132b;
  --footer-text-color: #fff;
  --bg-img-footer: linear-gradient(to right, #0e3cb7, #235bf5);
  --width-phone-img: clamp(12.5rem, 2.4554rem + 14.881vw, 20.3125rem); /* 200px to 375px */ /* 1080px / 1920px*/

  /***********************************************************************************************************/
  /* 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: 'Open Sans', sans-serif; */

  /* --max-width-body: 1920px; */
  --max-width-bodyContentLeftFrame: 574px;

  /* --margin-b-title: 1.25rem; */
  /* --margin-b-paragraphe: 3rem; */
  /* --margin-b-description: 1rem; */
                                                                              /* 375px to 1920px */
  --width-logo-compagny: clamp(11.875rem, 10.8434rem + 4.4013vw, 16.125rem); /* 190px to 258px */
  /* --width-store-img: clamp(7.5rem, 6.4641rem + 4.4199vw, 10rem); */ /* 120px to 160px */

  --fs-title: clamp(1.625rem, 1.2609rem + 1.5534vw, 3.125rem); /* 26px to 50px */
  /* --fs-paragraphe: clamp(1rem, 0.8786rem + 0.5178vw, 1.5rem); */ /* 16px to 24px */
  /* --fs-description: clamp(1.0625rem, 0.9563rem + 0.4531vw, 1.5rem); */ /* 17px to 24px */
  /* --fs-footer-text: clamp(0.8125rem, 0.7063rem + 0.4531vw, 1.25rem); */ /* 13px to 20px */
}

* {
  padding: 0;
  margin: 0;
}


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

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

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

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

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

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

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

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

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

ul {
  list-style: none;
}

/******************************/
/*********** Header ***********/
/******************************/
header {
  padding: 30px;
}
.logo {
  width: var(
    --width-logo-compagny,
    clamp(5.625rem, 5.107rem + 2.2099vw, 6.875rem)
  );
  /* 90px to 110px */
}

/*******************************/
/*********** Content ***********/
/*******************************/
.bodyContentRightFrame img {
  width: var(--width-phone-img, clamp(20rem, -18.5714rem + 57.1429vw, 50rem));
  /* 320px to 800px */ /* 1080px / 1920px*/
  display: none;
}

.bodyContent {
  height: 100%;
  max-width: var(--max-width-body, 1920px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
  margin: 0 auto;
  gap: 4rem;
}
section {
  position: relative;
  overflow-x: hidden;
}

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

.title {
  color: var(--title-text-color, #ffffff);
  font-size: var(--fs-title, clamp(1.625rem, 1.1092rem + 2.2006vw, 3.75rem));
  /* 26px to 60px */
  font-weight: 600;
  line-height: 1.1em;
  margin-bottom: var(--margin-b-title, 1.25rem);
}

.paragraphe {
  color: var(--paragraphe-text-color, rgba(255, 255, 255, 0.75));
  font-size: var(--fs-paragraphe, clamp(1rem, 0.8786rem + 0.5178vw, 1.5rem));
  /* 16px to 24px */
  font-weight: 500;
  margin-bottom: var(--margin-b-paragraphe, 3rem);
}

.description {
  font-weight: bold;
  color: var(--description-text-color, #ffffff);
  font-size: var(
    --fs-description,
    clamp(1.0625rem, 0.9563rem + 0.4531vw, 1.5rem)
  );
  /* 17px to 24px */
  font-weight: 600;
  margin-bottom: var(--margin-b-description, 1rem);
}

.store {
  display: flex;
  max-width: 28rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.store img {
  height: 100%;
  width: var(--width-store-img, clamp(7.5rem, 6.4641rem + 4.4199vw, 10rem));
  /* 120px to 160px */
}

.bg-img {
  position: absolute;
  width: 60%;
  bottom: 20px;
  right: -30%;
  z-index: -1;
}

/******************************/
/*********** 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.25rem 1.25rem 1.875rem;
  margin-top: 20px;
}

footer ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  max-width: 1280px;
  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 (min-width: 900px) {
  .bodyContent {
    flex-direction: row;
    align-items: center;
  }

  .bodyContentRightFrame img {
    display: block;
  }

  .bg-img {
    position: initial;
    width: 30%;
  }
}
