/* ================================================= Landing Page 2025 ========================================*/

.header-titre,
.titre {
  font-size: 36px;
  font-weight: 600;
  text-transform: unset;

  @media(min-width: 768px) {
    font-size: 42px;
  }
}


.el-design {
  display: none;
}
@media(min-width: 768px) {
  .el-design {
    display: block;

    position: absolute;
    top: 0;
    right: 0;

    width: 100%;
    height: 100%;

    background-color: #001f58;

    clip-path: polygon(40% 0, 100% 0, 100% 41%);
  }
}



/*! TOOLS !*/
/* Spacing */
.py-page {
  padding-top: 120px;
  padding-bottom: 120px;
}
.pt-page {
  padding-top: 120px;
}
.pb-page {
  padding-bottom: 120px;
}

.py-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
.pt-section {
  padding-top: 80px;
}
.pb-section {
  padding-bottom: 80px;
}

.py-components {
  padding-top: 32px;
  padding-bottom: 32px;
}
.pt-components {
  padding-top: 32px;
}
.pb-components {
  padding-bottom: 32px;
}


.stack {
  display: grid;

  grid-template-columns: 100%;
  align-content: start;
  gap: 16px;
}

.stack-inner {
  display: grid;

  grid-template-columns: 100%;
  align-content: start;
  gap: 48px;
}

/*  Flex-box */

.flex-gap-1 {
  gap: 8px;
}
.flex-gap-2 {
  gap: 16px;
}
.flex-gap-3 {
  gap: 24px;
}
.flex-gap-4 {
  gap: 48px;
}
.flex-gap-5 {
  gap: 64px;
}


/* divers */

.fw-600 {
  font-weight: 600 !important
  ;
}

.relative {
  position: relative;
}

.z-10 {
  position: relative;
  z-index: 10;
}

.tt-unset {
  text-transform: unset;
}

.fs-20 {
  font-size: 20px;
}
.fs-32 {
  font-size: 32px;
}

/* ==== Left-right ===*/

.left-right {
  display: grid;

  gap: 0px; /* équivalent de --left-right-gap */

  /* Responsive: deux colonnes à partir de 1024px */
}

@media (min-width: 1024px) {
  .left-right {
    grid-template-columns: repeat(2, minmax(0, 648px)) !important;
    gap: 32px;
  }
}

.left-right__content {
  display: grid;

  padding: 56px;

  background-color: #ffffff; /* équivalent de --left-right-content-bg */

  border-radius: 10px 10px 0 0;

  align-items: center;
}

@media (min-width: 1024px) {
  .left-right__content {
    padding: 132px 56px;

    border-radius: 10px;

    align-content: center;
  }

  @media (max-width: 1023px) {
    .left-right__content {
      order: 2;
    }
  }
}

.left-right__illu {
  width: 100%;

  overflow: hidden;

  margin: auto;
  padding-top: 0;

  border-radius: 0 0 10px 10px;

  object-fit: cover; /* %img-fit remplace souvent par ça */
}

@media (min-width: 1024px) {
  .left-right__illu {
    border-radius: 10px;
  }
}

.left-right--reverse {
  gap: 0px;
}

@media (min-width: 1024px) {
  .left-right--reverse {
    grid-template-columns: repeat(2, minmax(0, 648px)) !important;
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .left-right--reverse .left-right__content {
    padding: 132px 56px;

    background-color: #ffffff;

    border-radius: 10px;

    order: 2;
  }
}

@media (min-width: 1024px) {
  .left-right--reverse .left-right__illu {
    border-radius: 10px;
  }
}

/* @media (max-width: 576px) {
  .left-right--reverse {
    gap: 50px;
  }
} */


/* ==== Container Landing ==== */


.container-landing {
  margin-right: auto;
  margin-left: auto;
  padding-right: 17px;
  padding-left: 17px;
}

/* ==== Card ==== */

.section-card {
  display: flex;

  flex-direction: column;
}

@media (min-width: 1024px) {
  .section-card {
    flex-direction: row;
  }
}

.card-wrapper {
  display: flex;

  width: 100%;

  box-shadow: 5px 5px 15px 1px #00000020;

  border-radius: 10px;

  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .card-wrapper {
    width: 312px;
    height: 90px;

    padding: 24px 18px;

    box-shadow: 5px 5px 15px 1px #00000020;
  }
}


.card-title {
  font-size: 14px;
}

.card-description {
  font-size: 14px;
}

.card-content {
  display: flex
;

  width: 100%;

  padding: 18px 24px;

  background-color: #ffffff;
  box-shadow: 5px 5px 15px 1px #00000020;

  border-radius: 10px;

  justify-content: center;
  align-items: center;
  ;
  ;
  ;
  ;
  ;
}

.card-content > figure {
  width: 60px;
  height: 60px;
}




/* ==== card-product ===*/

.section-product {
  display: flex;

  flex-direction: column;
  gap: 32px;
}

@media (min-width: 1024px) {
  .section-product {
    flex-direction: row;
  }
}

.card-product {
  display: grid;

  width: 100%;

  gap: 0px; /* équivalent de --left-right-gap */

  /* Responsive: deux colonnes à partir de 1024px */
}

@media (min-width: 1024px) {
  .card-product {
    width: 424px;
  }
}

.card-product__content {
  display: grid;

  padding: 56px;

  background-color: #ffffff; /* équivalent de --left-right-content-bg */

  border-radius: 10px 10px 0 0;

  align-items: center;
}

/* @media (min-width: 1024px) {
  .card-product__content {
    padding: 132px 56px;

    border-radius: 10px;

    align-content: center;
  }

  @media (max-width: 1023px) {
    .card-product__content {
      order: 2;
    }
  }
} */

.card-product__illu {
  width: 100%;

  overflow: hidden;

  padding-top: 0;

  border-radius: 0 0 10px 10px ;

  object-fit: cover; /* %img-fit remplace souvent par ça */
}

/* @media (min-width: 1024px) {
  .card-product__illu {
    border-radius: 10px;
  }
} */

.card-product--reverse {
  width: 100%;

  gap: 0px;
}

@media (min-width: 1024px) {
  .card-product--reverse {
    width: 424px;
  }
}

@media (min-width: 1024px) {
  .card-product--reverse .card-product__content {
    padding: 56px;

    background-color: #ffffff;

    border-radius: 0 0 10px 10px;

    order: 2;
  }
}

@media (min-width: 1024px) {
  .card-product--reverse .card-product__illu {
    border-radius: 10px 10px 0 0;
  }
}

/* @media (max-width: 576px) {
  .left-right--reverse {
    gap: 50px;
  }
} */


/* ==== Value ==== */

.valuebox {
  max-width: 652px;

  padding: 20px;

  box-shadow: 5px 5px 15px 1px #00000020;

  border-radius: 10px;
}
