/******************************/
/*********** Général***********/
/******************************/
html {
  --bg-color: var(--CONFIG-bg-color);
  --title-text-color: var(--CONFIG-title-text-color);
	--paragraphe-text-color: var(--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, #FFFFFF, #F4F5F8, #E8EAF0);

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

.bodyBottomLeftFrame1 {
  position: absolute;
  bottom: 100px;
  right: 16px;
  color: #015CFF;
  font-size: 11px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500 !important;
}


         .navbar {
           display: flex;
           flex-direction: row;
           justify-content: start;
           align-items: center;
           flex-wrap: wrap;
           margin-bottom: 66px;
         }
    
    
         .navbar .icon-container {
           width: 50px;
           height: 50px;
           padding: 10px 10px;
           background-color: white;
           border-radius: 18px;
           box-shadow: 0px 38px 30px rgba(2, 19, 43, 0.03);
           margin-left: 0px;
           margin: 3px;
           display: inline-block;
         }
    
         .navbar .icon-container img {
           display: block;
         }
         

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

.divider {
  border: none;
  width: 105px;
  height: 1px;
  background-color: rgba(2, 19, 43, 0.19);
  margin-top: 8.6px;
  margin-bottom: 18.5px;
}



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

.blue {
  color: #0057FF;
}

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

.bodyContentRightFrame {
  margin-left: 0rem;
}


.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: 600;
  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;
	max-width: 28rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

/******************************/
/*********** 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: 1260px;
  width: 100%;
  margin: 0 auto;
}

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

    .mobile {
      position: absolute;
      left: 60%;
      bottom: 75%;
    }
    


/**********************************/
/*********** MediaQuery ***********/
/**********************************/
@media screen and (min-width: 900px) {

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

  .bodyContentRightFrame img {
    display: block;
  }
  
    .mobile {
    display: none;
  }

  section {
    background-image: none;
  }


   
   


    .bodyBottomLeftFrame1 {
      position: absolute;
      bottom: 120px;
      right: 16px;
      color: #015CFF;
      font-size: 12.5px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400 !important;
    }

        .navbar {
          display: flex;
          flex-direction: row;
          justify-content: start;
          align-items: center;
          flex-wrap: wrap;
          margin-bottom: 66px;
        }
   

         .navbar .icon-container {
          width: 50px;
          height: 50px;
          padding: 10px 10px;
          background-color: white;
          border-radius: 18px;
          box-shadow: 0px 38px 30px rgba(2, 19, 43, 0.03);
          margin-left: 0px;
          margin:3px;
          display: inline-block;
                }
        
          .navbar .icon-container img {
            display: block;
                }
}



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

  section {
      background-image: url("../png/mobile_tel.png");
      background-position: 170px -200px;
      background-size: 478.46px 525.8px;
      background-repeat: no-repeat;
  
    }

  .title {
        padding-top: 100px;
  }
  .store {
      padding-bottom: 63px;
    }

    .mobile {
          display: block;
        position: absolute;
        left: 60%;
        bottom: 70%;
      }
.bodyBottomLeftFrame1 {
  padding-top: 10px !important;
    position: absolute;
    bottom: 280px;
    right: 16px;
    color: #015CFF;
    font-size: 12.5px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400 !important;
  }
  footer ul {
    display: grid;
  }
     
  li {
    text-align: center;
  }
}

/* .mobile {
  display: none;
} */

@media (max-height: 660px), (max-width: 400px) {
  .bodyContentLeftFrame {
    padding: 150px 0 100px 0;
        /* Ajoute un padding de 20px sur tous les côtés */
  }

  

  section {
    background-image:url("../png/mobile_tel.png");
      background-position: 130px -190px;
      background-size: 478.46px 525.8px;
      background-repeat: no-repeat;

  }
  
  

            /* .mobile {
              position: absolute;
              left: 55%;
              bottom: 75%;
            } */
}


@media screen and (min-width: 700px) and (max-width: 900px) {
  /* .bodyContentRightFrameMobile {
    position: relative;
    overflow: hidden;
  } */

     section {
    background-image: none;
  
     }
/* .mobile {
    position: absolute;
    left: 60%;
    bottom: 75%;
  } */
}