/******************************/
/*********** Général***********/
/******************************/
html {
  --bg-color: var(--CONFIG-bg-color);
  --title-text-color: var(--CONFIG-title-text-color);
	--paragraphe-text-color: var(rgba(255, 255, 255, .65), --CONFIG-paragraphe-text-color);
	--description-text-color: var(--CONFIG-description-text-color);
  --footer-text-color: var(--CONFIG-footer-text-color);
	--bg-img-footer: var(--CONFIG-bg-img-footer);
  --width-phone-img: var(--CONFIG-width-phone-img);
  
  /***********************************************************************************************************/
  /* 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: 1920px; */
  /* --max-width-bodyContentLeftFrame: 780px; */

  /* --margin-b-title: 1.25rem; */
  /* --margin-b-paragraphe: 3rem; */
  /* --margin-b-description: 1rem; */

  /* --width-logo-compagny: clamp(5.625rem, 5.107rem + 2.2099vw, 6.875rem); */     /* 90px to 110px */
  /* --width-store-img: clamp(7.5rem, 6.4641rem + 4.4199vw, 10rem); */             /* 120px to 160px */

  /* --fs-title: clamp(1.625rem, 1.1092rem + 2.2006vw, 3.75rem); */                /* 26px to 60px */
  /* --fs-paragraphe: clamp(1rem, 0.8786rem + 0.5178vw, 1.5rem); */                /* 16px to 24px */ /* 375px / 1280px*/
  /* --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, 'Poppins', sans-serif);
	overflow-x: hidden;
	display: grid;
	grid-template-rows: 1fr auto;
	grid-template-columns: 100%;
  position: relative;
}

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

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

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

ul {
  list-style: none;
}

/******************************/
/*********** Header ***********/
/******************************/
header {
  padding: 30px 30px 0;
  position: absolute;
}
.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, -0.8929rem + 30.9524vw, 36.25rem));
  /* 320px to 580px */ /* 1080px / 1920px*/
  display: none;
  /* transform: translateX(-20%); */
}

.bodyContent {
  height: 100%;
  max-width: var(--max-width-body, 1920px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 30px;
  margin: 0 auto;
}

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

.bodyContentRightFrame {
  margin-left: 10rem;
}

.title {
  color: var(--title-text-color,#ffffff);
  /* 26px to 47px */ /* 375px / 1920px*/
  font-size: var(--fs-title, clamp(1.625rem, 1.3064rem + 1.3592vw, 2.9375rem));
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: var(--margin-b-title, 1.25rem);
}

.paragraphe {
  color: var(--paragraphe-text-color,rgba(255, 255, 255, 0.75));
  /* 16px to 20px */ /* 375px / 1920px*/
  font-size: var(--fs-paragraphe, clamp(1rem, 0.9393rem + 0.2589vw, 1.25rem));
  font-weight: 400;
  margin-bottom: var(--margin-b-paragraphe, 2rem);
  line-height: 1.5;
  width: 80%;
}

.description {
  font-weight: 600;
  color: var(--description-text-color,#ffffff);
  /* 16px to 21px */ /* 375px / 1920px*/
  font-size: var(--fs-description, clamp(1rem, 0.9242rem + 0.3236vw, 1.3125rem));
  margin-bottom: var(--margin-b-description, 1rem);
}

.store {
	display: flex;
  /* align-items: center; */   /* decomment this for pro links */
	max-width: 28rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.store .img_store {
  height: 100%;
  width: var(--width-store-img, clamp(9.375rem, 8.5981rem + 3.3149vw, 11.25rem));
    /* 150px to 180px */ /* 375px / 1280px*/
} 

/* decomment this for pro links */
/* .store .img_app {
  width: 30px;
  height: 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 10px;
}

.pro {
  margin-top: 1rem;
} */

/******************************/
/*********** 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 (min-width: 900px) {

  .bodyContent {
    flex-direction: row;
    align-items: center;
  }

  .bodyContentRightFrame img {
    display: block;
  }

  /* decomment this for pro links */
  /* .store {
    gap: 1.5rem;
  }

  .store .img_app {
    width: 40px;
    height: 40px;
  } */
}

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

  footer ul {
    display: grid;
  }

  li {
    text-align: center;
  }
}

@media (max-height: 660px), (max-width: 400px) {
  .bodyContentLeftFrame {
    padding: 150px 0 100px 0;
  }
}