/*=========================================== MAIN ===========================================*/

main {
  margin-top: 96px;
  overflow-x: hidden;
}

@media only screen and (max-width: 768px) {
  main {
    margin-top: 56px;
  }
}

/*=========================================== HEADER NAV ===========================================*/

header {
  color: var(--black);
  background-color: var(--camel);
  border-bottom: 1px solid var(--black);
  height: 96px;
  padding: 0px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  z-index: 99;
}

.nav_logo > img {
  width: auto;
  height: 73px;
}

nav {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.2em;
  /* 21.6px */
  display: flex;
  align-items: center;
  gap: 32px;
  transition: transform 0.3s cubic-bezier(0.73, 0.11, 0.67, 0.84);
  overflow-x: auto;
  scrollbar-width: none;
}

nav::-webkit-scrollbar {
  display: none;
}

header > *,
nav > * {
  flex: none;
}

nav > a.active {
  border-bottom: 2px solid var(--secondary_yellow);
}

nav > div {
  display: flex;
  column-gap: 16px;
  row-gap: 32px;
}

nav > div > button {
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 1.5em;
  /*150% ou 24px */
  padding: 8px 20px;
  border-radius: 2px;
  color: var(--white);
}

nav > div > button:first-of-type {
  background-color: var(--black);
}

nav > div > button:last-of-type {
  background-color: var(--primary_purple);
}

/* Bouton de navigation nav_toggler  */

.nav_toggler {
  position: fixed;
  z-index: 999;
  width: 24px;
  height: 24px;
  right: 24px;
  top: 15.5px;
  display: none;
}

.nav_toggler > .line {
  display: inline-block;
  width: 20px;
  height: 1.5px;
  background: var(--black);
  border-radius: 5px;
  transition: transform 0.3s ease-out;
  opacity: 0.1s ease-out;
}

.l1 {
  transform: translateY(-6px);
}

.l3 {
  transform: translateY(6px);
}

header.active > .nav_toggler > .l1 {
  transform: translateY(1.5px) rotate(135deg);
}

header.active > .nav_toggler > .l2 {
  opacity: 0;
}

header.active > .nav_toggler > .l3 {
  transform: translateY(-1.5px) rotate(-135deg);
}

@media only screen and (max-width: 992px) {
  header {
    padding: 0px 24px;
  }
}

@media only screen and (max-width: 768px) {
  header {
    min-height: 56px;
    height: 56px;
    justify-content: center;
  }

  header.active {
    min-height: 80vh;
    height: fit-content;
  }

  .nav_toggler {
    display: block;
  }

  .nav_logo {
    position: fixed;
    top: 8px;
    left: 24px;
  }

  .nav_logo > img {
    height: 40px;
  }

  nav {
    padding: 32px 0px;
    flex-flow: column nowrap;
    transform: translateY(-100%);
    visibility: hidden;
  }

  header.active > nav {
    transform: translateY(0);
    visibility: visible;
  }

  nav > div {
    flex-flow: column nowrap;
  }
}

/*=========================================== footer ===========================================*/
footer {
  color: var(--black);
  background-color: var(--camel);
  font-family: "Outfit", sans-serif;
}

footer > .wrapper {
  padding: 72px 80px 24px 80px;
}

footer > .wrapper > p:last-of-type {
  font-size: 12px;
  font-weight: 300;
  line-height: 2em;
  /* 24px */
  text-align: center;
  margin-top: 32px;
}

.footer_container {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.footer_logo > img {
  width: 104px;
  height: auto;
}

.footer_logo > p {
  font-size: 20px;
  font-weight: 500;
  line-height: 1em;
  /*20px 100% */
  margin-top: 16px;
}

.footer_links {
  width: 55%;
  display: flex;
  column-gap: 16px;
  row-gap: 56px;
}

.footer_links > div {
  width: 50%;
  flex: none;
}

.footer_links > div:first-of-type > h3 {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
  /*24px  150% */
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer_links > div:first-of-type > a {
  display: flex;
  align-items: center;
}

.footer_links > div:first-of-type > a > div {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  position: relative;
}

.footer_links > div:first-of-type > a > div > img {
  border-radius: 100%;
  overflow: hidden;
}

.footer_links > div:first-of-type > a > div > span {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 13px;
  height: 13px;
  border-radius: 100%;
  background-color: var(--camel);
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_links > div:first-of-type > a > div > span::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--secondary_green);
}

.footer_links > div:first-of-type > a > img {
  width: 40px;
  height: 40px;
  margin-right: 12px;
}

.footer_links > div:first-of-type > a > p {
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
}

.footer_links > div:first-of-type > a > p > span {
  color: var(--secondary_green);
  font-size: 12px;
  font-weight: 400;
}

.footer_links > div:first-of-type > a:first-of-type {
  margin-bottom: 12px;
}

.footer_links > div:last-of-type {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}

.footer_links > div:last-of-type > a {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  /* 150% */
}

@media only screen and (max-width: 768px) {
  footer > .wrapper {
    padding: 72px 32px 32px 32px;
  }

  .footer_container {
    flex-direction: column;
  }

  .footer_links,
  .footer_links > div {
    width: 100%;
  }

  .footer_links {
    flex-direction: column;
  }
}

/*=========================================== section_hero ===========================================*/
.section_hero {
  color: var(--black);
  background-color: var(--camel);
  padding: 88px 0 72px 0;
  /* car contenu dans l'image */
}

.section_hero > .wrapper {
  display: flex;
}

.section_hero_content {
  width: 60%;
  max-width: 704px;
  /* 1280px / 2 car sur figma à 1440px, on est centré */
  padding: 0 32px;
  margin: auto 0 auto auto;
  font-family: "Outfit", sans-serif;
}

.section_hero_content > h1 {
  font-family: "Syne", sans-serif;
}

.section_hero_content > h1 > span {
  position: relative;
  background-image: url("/img/pseudo_elements/moches.svg");
  background-repeat: no-repeat;
  background-position: center 75%;
  background-size: 100%;
  white-space: nowrap;
}

.section_hero_content > p {
  font-size: 24px;
  font-weight: 300;
  line-height: 38px;
  /* 158.333% */
  margin-top: 16px;
}

.section_hero_content > p > strong {
  font-weight: 600;
}

.section_hero_content > a {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  /* 30px */
  padding: 12px 24px;
  border-radius: 2px;
  color: var(--white);
  background: var(--primary_purple);
  margin: 40px 0 64px 0;
  position: relative;
  display: inline-block;
}

.section_hero_content > a::after {
  content: "";
  position: absolute;
  top: -35px;
  right: -55px;
  background-image: url("/img/pseudo_elements/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 37px;
  height: 75px;
}

.section_hero_content_codes {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.section_hero_content_codes > p {
  color: var(--gray_600);
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  /* 114.286% */
  flex: none;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 2px;
}

.section_hero_content_codes > p > span {
  color: var(--white);
  background-color: var(--black);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5em;
  border-radius: 3px;
  display: inline-block;
  width: 32px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}

.section_hero_content_codes > p > span::before {
  content: " ";
  width: 100%;
  height: 2px;
  position: absolute;
  background-color: #8c8c8c;
  z-index: -1;
}

.section_hero_content_codes > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
}

.section_hero_content_codes > div > img {
  width: 63px;
  height: auto;
}

.section_hero_content_codes > p:nth-child(2) {
  margin-left: 1px;
  font-size: 16px;
}

.section_hero_img {
  width: 40%;
}

.section_hero_img > picture {
  width: 720px;
  /* car à 1440px sur le figma, on touche le bord droit */
  margin-right: auto;
}

@media only screen and (max-width: 768px) {
  .section_hero {
    padding: 36px 0 0 0;
  }

  .section_hero > .wrapper {
    flex-direction: column;
  }

  .section_hero_content {
    width: 100%;
    max-width: none;
    padding: 0 16px;
  }

  .section_hero_content > p {
    font-size: 20px;
  }

  .section_hero_content > a {
    width: 100%;
    margin: 32px 0 40px 0;
  }

  .section_hero_content > a::after {
    display: none;
  }

  .section_hero_content_codes {
    justify-content: center;
  }

  .section_hero_content_codes > p {
    display: none;
  }

  .section_hero_img {
    width: 100%;
    margin-top: 48px;
  }
}

/*=========================================== section_presentation ===========================================*/

.section_presentation {
  color: var(--white);
  background-color: var(--camel);
  padding: 32px 0;
  overflow: hidden;
}

.section_presentation_content {
  background-color: var(--black);
  border-radius: 0px 2px 2px 0px;
  padding: 56px 0;
  width: 75%;
  min-height: 430px;
  margin-right: auto;
  display: flex;
  position: relative;
}

.section_presentation_content > div:first-of-type {
  margin: auto auto auto 25%;
  width: 50%;
}

.section_presentation_content > div:first-of-type > h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2em;
  /* 48px */
  margin-bottom: 24px;
}

.section_presentation_content > div:first-of-type > h2 > span {
  color: var(--secondary_green);
}

.section_presentation_content > div:first-of-type > p {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.5em;
}

.section_presentation_content > div:first-of-type > p > strong {
  font-weight: 700;
}

.section_presentation_content > picture:first-of-type {
  position: absolute;
  left: 0;
  top: 0;
  width: 25%;
  height: auto;
}

.qrCodeRounded {
  border-radius: 9999px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.bigQrCode {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  width: 30%;
  max-width: 300px;
  height: auto;
}

.bgWhite {
  background-color: white;
}

.madeInFrance {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 13px;
}

@media (max-width: 768px) {
  .madeInFrance {
    flex-direction: column;
  }
}

@media only screen and (max-width: 768px) {
  .section_presentation {
    padding: 0;
  }

  .section_presentation_content {
    width: 100%;
    padding: 56px 16px 72px 16px;
    flex-direction: column;
    align-items: center;
  }

  .section_presentation_content > div:first-of-type {
    width: 100%;
    margin: 0;
    min-height: none;
  }

  .section_presentation_content > div:first-of-type > h2 {
    font-size: 28px;
  }

  .section_presentation_content > div:first-of-type > p {
    font-size: 20px;
  }

  .section_presentation_content > picture:first-of-type {
    position: absolute;
    top: unset;
    left: 0;
    bottom: 0;
    width: 100%;
    transform: translateY(75%);
  }

  .section_presentation_content > img:last-of-type {
    position: static;
    transform: none;
    width: 350px;
    margin: 32px 0;
  }
}

/*=========================================== section_features ===========================================*/
.section_features {
  color: var(--gray_900);
  background-color: var(--camel);
}

.section_features > div {
  color: var(--black);
  background-color: var(--camel);
  padding-top: 96px;
  padding-bottom: 96px;
  display: flex;
  flex-flow: column nowrap;
  row-gap: 96px;
}

.section_features h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
  /* 57.6px */
  text-align: center;
  max-width: 768px;
  margin: 0 auto;
}

.section_features h2 span {
  background-image: url("/img/pseudo_elements/section_features_background.svg");
  background-repeat: no-repeat;
  background-position: center 70%;
  background-size: 110% auto;
  position: relative;
}

.section_features h2 span::before {
  content: "";
  background-image: url("/img/pseudo_elements/section_features_star_left.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 54px;
  height: 54px;
  position: absolute;
  bottom: -45px;
  left: -40px;
}

.section_features h2 span::after {
  content: "";
  background-image: url("/img/pseudo_elements/section_features_star_right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 33px;
  height: 33px;
  position: absolute;
  top: -20px;
  right: -28px;
}

.section_features_feature {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  row-gap: 40px;
  column-gap: 32px;
}

.section_features_feature > div {
  width: calc(50% - 16px);
  max-width: 560px;
}

.section_features_feature_img picture {
  display: block;
}

.section_features > div > :nth-child(2) .section_features_feature_img img {
  width: 105%;
  max-width: 105%;
  margin: -2.5%;
}

.section_features > div > :nth-child(3) .section_features_feature_img img {
  width: 110%;
  max-width: 110%;
  margin: -10% -5% 0% -5%;
}

.section_features > div > :nth-child(4) .section_features_feature_img img {
  width: 105%;
  max-width: 105%;
  margin: -2.5%;
}

.section_features_feature_content {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}

.section_features_feature_content h3 {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  /* 118.75% */
}

.section_features_feature_content h4 {
  font-size: 24px;
  font-weight: 600;
  line-height: 38px;
  /* 158.333% */
  margin: 8px 0 32px 0;
}

.section_features_feature_content ul {
  margin-left: 16px;
}

.section_features_feature_content ul li {
  color: var(--gray_600);
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 30px;
  /* 136.364% */
  margin-bottom: 20px;
  list-style-type: none;
  display: flex;
}

.section_features_feature_content ul li::before {
  content: "";
  background-image: url("/img/pseudo_elements/section_features_check_circle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  flex: none;
}

.section_features_feature_content ul li:last-of-type {
  margin-bottom: 0;
}

@media only screen and (max-width: 768px) {
  .section_features > div {
    padding: 64px 16px;
    row-gap: 48px;
  }

  .section_features h2 {
    font-size: 30px;
    line-height: 38px;
    /* 126.667% */
  }

  .section_features h2 span::before {
    bottom: -45px;
    left: -75px;
  }

  .section_features h2 span::after {
    top: -25px;
    right: -28px;
  }

  .section_features_feature {
    flex-flow: column nowrap;
  }

  .section_features > div > :nth-child(3) {
    flex-flow: column-reverse nowrap;
  }

  .section_features_feature > div {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .section_features_feature_content h3 {
    font-size: 24px;
    line-height: 32px;
    /* 133.333% */
  }

  .section_features_feature_content h4 {
    font-size: 18px;
    line-height: 24px;
    /* 133.333% */
  }

  .section_features_feature_content ul {
    margin-left: 8px;
  }

  .section_features_feature_content ul li {
    font-size: 16px;
    line-height: 24px;
    /* 150% */
    margin-bottom: 32px;
  }
}

/*=========================================== section_cta ===========================================*/
.section_cta {
  color: var(--white);
  background-color: var(--camel);
}

.section_cta > div {
  padding-top: 96px;
  padding-bottom: 136px;
}

.section_cta_container {
  background-color: var(--black);
  padding: 64px;
  border-radius: 16px;
  /* Shadows/shadow-xl */
  box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03),
    0px 20px 24px -4px rgba(16, 24, 40, 0.08);
  position: relative;
  background-image: url("/img/pseudo_elements/section_cta_pattern_right.svg"),
    url("/img/pseudo_elements/section_cta_pattern_left.svg");
  background-repeat: no-repeat;
  background-position: top -21px right -8px, top 21px left -47px;
  background-size: auto 114%;
}

.section_cta_container > img:first-of-type {
  width: 206px;
  height: auto;
  position: absolute;
  top: 20px;
  left: -66px;
}

.section_cta_container > img:last-of-type {
  width: 215px;
  height: auto;
  position: absolute;
  bottom: -40px;
  right: -60px;
}

.section_cta_content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.section_cta_content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  /* 115% */
  margin-bottom: 16px;
}

.section_cta_content h2 strong {
  font-weight: 700;
  color: var(--secondary_yellow);
}

.section_cta_content h2 span {
  color: var(--black);
  background-color: var(--secondary_green);
  display: inline-block;
  width: fit-content;
  height: auto;
  transform: rotate(-0.553deg);
}

.section_cta_content p {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  /* 30px 150% */
}

.section_cta_content p span {
  font-weight: 300;
}

@media only screen and (max-width: 992px) {
  .section_cta_container > img:first-of-type {
    display: none;
  }

  .section_cta_container > img:last-of-type {
    width: 167px;
    bottom: -30px;
    right: -13px;
  }
}

@media only screen and (max-width: 768px) {
  .section_cta > div {
    padding: 64px 16px 64px 16px;
  }

  .section_cta_container {
    padding: 72px 24px;
    background-position: top 6px right -70px, bottom 0px left -25px;
    background-size: 110% auto;
  }

  .section_cta_content h2 {
    font-size: 26px;
    line-height: 32px;
    /* 123.077% */
    margin-bottom: 32px;
  }

  .section_cta_content p {
    line-height: 1.2em;
    /* 30px 150% */
  }
}

/*=========================================== section_title ===========================================*/
.section_title {
  color: var(--black);
  background-color: var(--camel);
}

.section_title > div {
  padding: 40px 64px 112px 64px;
}

.section_title > div > h2 {
  color: var(--black);
  text-align: center;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
  /* 57.6px */
  margin-bottom: 112px;
}

.section_title > div > h2 > span {
  color: var(--camel);
  background-color: var(--primary_purple);
  display: inline-block;
  transform: rotate(-0.55deg);
}

.section_title_cta {
  margin-top: 32px;
  text-align: center;
}

.section_title_cta > a {
  color: var(--white);
  background-color: var(--secondary_green);
  display: inline-block;
  padding: 12px 24px;
  border-radius: 2px;
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5em;
  /* 36px */
  position: relative;
}

.section_title_cta > a::before {
  content: "";
  background-image: url("/img/pseudo_elements/section_title_star.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 54px;
  height: 54px;
  position: absolute;
  top: -35px;
  left: -54px;
}

.section_title_cta > a::after {
  content: "";
  background-image: url("/img/pseudo_elements/section_title_star.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 30px;
  height: 30px;
  transform: rotate(-150deg);
  position: absolute;
  bottom: -30px;
  right: -20px;
}

.section_title_step {
  display: flex;
  justify-content: space-between;
}

.section_title_step_img {
  width: 43%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_title_container
  > .section_title_step:nth-child(1)
  > .section_title_step_img
  > img {
  width: 424px;
  height: auto;
  margin: 32px 8px;
}

.section_title_container
  > .section_title_step:nth-child(2)
  > .section_title_step_img
  > img {
  width: 522px;
  height: auto;
  margin: 64px 8px;
}

.section_title_container
  > .section_title_step:nth-child(3)
  > .section_title_step_img
  > img {
  width: 544px;
  height: auto;
  margin: 64px 8px;
}

.section_title_container
  > .section_title_step:nth-child(4)
  > .section_title_step_img
  > img {
  width: 459px;
  height: auto;
  margin: 64px 8px;
}

.section_title_step_divider {
  width: 15px;
  margin: 0 12.5%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: center;
}

.section_title_step_divider > span:first-of-type {
  display: inline-block;
  width: 3px;
  height: 64px;
  background-color: var(--black);
}

.section_title_container
  > .section_title_step:first-of-type
  .section_title_step_divider
  > span:first-of-type {
  background: linear-gradient(180deg, rgba(179, 179, 179, 0) 0%, #b3b3b3 100%);
}

.section_title_step_divider > span:nth-child(2) {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 100%;
  margin: 16px 0;
  background-color: var(--primary_purple);
}

.section_title_container
  > .section_title_step:nth-child(2)
  .section_title_step_divider
  > span:nth-child(2) {
  background-color: var(--secondary_green);
}

.section_title_container
  > .section_title_step:nth-child(3)
  .section_title_step_divider
  > span:nth-child(2) {
  background-color: var(--secondary_yellow);
}

.section_title_step_divider > span:last-of-type {
  display: inline-block;
  width: 3px;
  height: calc(100% - 111px);
  background-color: var(--black);
}

.section_title_container
  > .section_title_step:last-of-type
  .section_title_step_divider
  > span:last-of-type {
  background: linear-gradient(180deg, #000 69.07%, rgba(0, 0, 0, 0) 100%);
}

.section_title_step_content {
  display: flex;
  width: 57%;
  flex: none;
}

.section_title_step_content > div:last-of-type {
  margin-top: 64px;
}

.section_title_step_content h3 {
  font-size: 72px;
  font-weight: 700;
  line-height: 1.2em;
  /* 86.4px */
  color: var(--primary_purple);
}

.section_title_container > .section_title_step:nth-child(2) h3 {
  color: var(--secondary_green);
}

.section_title_container > .section_title_step:nth-child(3) h3 {
  color: var(--secondary_yellow);
}

.section_title_step_content p {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3em;
  /* 41.6px */
}

.section_title_step_content img {
  display: none;
  width: 300px;
  margin: 40px 0 24px 0;
}

@media only screen and (max-width: 768px) {
  .section_title > div {
    padding: 64px 20px;
  }

  .section_title > div > h2 {
    font-size: 30px;
    line-height: 38px;
    /* 126.667% */
    margin-bottom: 32px;
  }

  .section_title_cta > a {
    padding: 9px 24px;
    font-size: 18px;
  }

  .section_title_step_img {
    display: none;
  }

  .section_title_step_content {
    width: 100%;
  }

  .section_title_step_content h3 {
    font-size: 40px;
    margin-bottom: 8px;
  }

  .section_title_step_content p {
    font-size: 18px;
  }

  .section_title_step_content img {
    display: block;
  }

  .section_title_step_divider {
    margin: 0 32px 0 0;
  }
}

/*=========================================== section_gallery ===========================================*/
.section_gallery {
  color: var(--white);
  background-color: var(--black);
}

.section_gallery > div {
  padding: 112px 0;
}

.section_gallery_title_mobile,
.section_gallery_title_desktop {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section_gallery_title_mobile {
  min-height: 300px;
  padding: 16px;
  display: none;
}

.section_gallery_title_mobile > h2,
.section_gallery_title_desktop > h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.1em;
  /* 33px */
}

.section_gallery_title_desktop > h2 {
  font-size: 40px;
}

.section_gallery_title_mobile > h2 > span,
.section_gallery_title_desktop > h2 > span {
  color: var(--black);
  background-color: var(--secondary_yellow);
  display: inline-block;
  width: fit-content;
  height: auto;
}

.section_gallery_title_mobile > p,
.section_gallery_title_desktop > p {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 28px;
  /* 140% */
  margin: 24px 0;
}

.section_gallery_title_mobile > img,
.section_gallery_title_mobile > img {
  width: 201px;
  height: auto;
}

.section_gallery_slider {
  padding: 0px 24px;
  max-width: 1360px;
  margin: 0 auto;
  height: 864px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-rows: auto;
  grid-gap: 40px;
  grid-template-areas:
    "a c f"
    "a d g"
    "b d g"
    "b e g";
}

.section_gallery_slider > :nth-child(1) {
  grid-area: a;
}

.section_gallery_slider > :nth-child(2) {
  grid-area: b;
}

.section_gallery_slider > :nth-child(3) {
  grid-area: c;
}

.section_gallery_slider > :nth-child(4) {
  grid-area: d;
}

.section_gallery_slider > :nth-child(5) {
  grid-area: e;
}

.section_gallery_slider > :nth-child(6) {
  grid-area: f;
}

.section_gallery_slider > :nth-child(7) {
  grid-area: g;
}

.section_gallery_slide {
  border-radius: 16px;
  background-color: var(--gray_200);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_gallery_slide > img {
  object-fit: cover;
  min-width: 100%;
  max-width: unset;
  min-height: 100%;
}

@media only screen and (max-width: 768px) {
  .section_gallery_title_mobile {
    display: flex;
  }

  .section_gallery_title_desktop {
    display: none;
  }

  .section_gallery_slider {
    height: auto;
    display: flex;
    overflow-x: auto;
    flex-flow: row nowrap;
    column-gap: 16px;
  }

  .section_gallery_slide {
    width: 200px;
    height: 200px;
    flex: none;
  }
}

/*=========================================== section_testimony ===========================================*/
.section_testimony {
  color: var(--black);
  background-color: var(--camel);
  overflow: hidden;
}

.section_testimony > div {
  padding: 104px 0;
}

.section_testimony > div {
  padding: 104px 0;
  background-image: url("/img/pseudo_elements/section_testimony_pattern.svg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 43% auto;
  /* 1er valeur largeur, 2eme hauteur */
  position: relative;
  z-index: 0;
}

.section_testimony > div > img:first-of-type {
  position: absolute;
  top: 0;
  left: 0;
  width: 35%;
  max-width: 100%;
  height: auto;
  z-index: -1;
}

.section_testimony > div > h2 {
  color: var(--gray_900);
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  /* 126.667% */
  padding: 0 16px;
  display: none;
  margin-bottom: 8px;
}

.section_testimony > div > h4 {
  color: var(--secondary_green);
  text-align: center;
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 28px;
  display: none;
  /* 87.5% */
}

.section_testimony_slide {
  background-color: var(--white);
  color: var(--black);
  font-family: "Outfit", sans-serif;
  text-align: left;
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0px 0px 10px 10px rgba(85, 61, 16, 0.08);
  /* valeur remplacée ici */
  position: relative;
  z-index: 99;
}

.section_testimony_slide > h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5em;
  /* 36px */
}

.section_testimony_slide > p {
  font-weight: 300;
  line-height: 1.5em;
  /* 36px */
}

.section_testimony_slide > p:first-of-type {
  font-size: 20px;
  margin: 16px 0 40px 0;
}

.section_testimony_slide > div > p {
  font-size: 16px;
  /*     white-space: nowrap;
 */
}

.section_testimony_slide > div > p > strong {
  font-size: 18px;
  font-weight: 600;
}

.section_testimony_slide > div {
  display: flex;
  align-items: center;
}

.section_testimony_slide > div img {
  object-fit: cover;
  display: inline-block;
  width: 64px;
  height: 64px;
  margin-right: 16px;
  flex: none;
  border-radius: 8px;
}

.section_testimony_slider_title h2 {
  color: var(--gray_900);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2em;
  /* 57.6px */
  margin-bottom: 8px;
}

.section_testimony_slider_title h4 {
  color: var(--secondary_green);
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 28px;
  /* 87.5% */
}

.section_testimony_slider {
  max-width: 1072px;
  /* 1040px + 2*16px */
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: calc(40% - 20px) calc(60% - 20px);
  grid-auto-rows: auto;
  grid-gap: 32px 40px;
  align-items: flex-start;
}

.section_testimony_slide {
  height: fit-content;
}

.section_testimony_slider > :nth-child(1),
.section_testimony_slider > :nth-child(2) {
  grid-column: 1 / 1;
}

.section_testimony_slider > :nth-child(3),
.section_testimony_slider > :nth-child(4) {
  grid-column: 2 / 2;
}

.section_testimony_slider_title {
  grid-row: 1 / 3;
  align-self: center;
  margin: auto;
  padding: 32px;
}

.section_testimony_slider > :nth-child(2) {
  grid-row: 3 / 5;
}

.section_testimony_slider > :nth-child(3) {
  grid-row: 1 / 4;
}

.section_testimony_slider > :nth-child(4) {
  grid-row: 4 / 5;
}

@media only screen and (max-width: 768px) {
  .section_testimony > div {
    padding: 96px 0 0 0;
    background-position: bottom 80px left;
    background-size: 350px auto;
    /* 1er valeur largeur, 2eme hauteur */
  }

  .section_testimony > div > img:first-of-type {
    width: 60%;
  }

  .section_testimony > div > h2,
  .section_testimony > div > h4 {
    display: block;
  }

  .section_testimony_slide > h3 {
    font-size: 20px;
  }

  .section_testimony_slide > p:first-of-type {
    font-size: 14px;
  }

  .section_testimony_slider {
    display: flex;
    overflow-x: auto;
    flex-flow: row nowrap;
    column-gap: 16px;
    padding: 32px 16px 64px 16px;
  }

  .section_testimony_slider_title {
    display: none;
  }

  .section_testimony_slider > div:nth-child(1),
  .section_testimony_slider > div:nth-child(2),
  .section_testimony_slider > div:nth-child(3),
  .section_testimony_slider > div:nth-child(4) {
    flex: none;
    width: 295px;
    max-width: 100%;
  }
}

/*=========================================== section_faq ===========================================*/
.section_faq {
  color: var(--black);
  background-color: var(--camel);
}

.section_faq > .wrapper_1440 {
  padding: 96px 0;
  background-image: url("/img/pseudo_elements/section_faq_background.svg");
  background-repeat: no-repeat;
  background-position: center;
}

.section_faq h2,
.section_faq h3 {
  color: var(--gray_900);
  text-align: center;
  font-weight: 700;
  line-height: 44px;
}

.section_faq h3 span {
  color: var(--primary_purple);
}

.section_faq h2 {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
}

.section_faq h3 {
  font-size: 40px;
  letter-spacing: -0.8px;
  margin: 8px 0 64px 0;
}

.section_faq_container {
  padding: 0px 32px;
  max-width: 864px;
  /* 800px + 2*32px de padding horizontal */
  margin: 0 auto;
}

.section_faq_accordion {
  border-radius: 4px;
  background-color: var(--white);
  box-shadow: 0px 0px 10px 10px rgba(85, 61, 16, 0.08);
  /*     box-shadow: 0px 0px 132px 32px rgba(85, 61, 16, 0.08); */
  padding: 32px;
  margin-bottom: 16px;
}

.section_faq_accordion:last-of-type {
  margin-bottom: 0px;
}

.section_faq_accordion {
  font-family: "Outfit", sans-serif;
  overflow: hidden;
}

.section_faq_accordion h4 {
  color: var(--primary_purple);
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  /* 155.556% */
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}

.section_faq_accordion:last-of-type h4 {
  color: var(--black);
}

.section_faq_accordion h4:after {
  content: url("/img/pseudo_elements/section_faq_plus_circle.svg");
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 2px 0 0 24px;
}

.section_faq_accordion h4.active:after {
  content: url("/img/pseudo_elements/section_faq_minus_circle.svg");
}

.section_faq_accordion p {
  color: var(--black);
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  /* 150% */
  padding: 8px 48px 0 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.section_faq_accordion a {
  color: var(--primary_purple);
  font-weight: 600;
  text-decoration-line: underline;
}

@media only screen and (max-width: 768px) {
  .section_faq > .wrapper_1440 {
    padding-top: 48px;
  }

  .section_faq h3 {
    font-size: 30px;
    line-height: 120%;
    letter-spacing: -0.6px;
  }

  .section_faq_container {
    padding: 0px 16px;
  }
}

/*=========================================== section_cta_footer ===========================================*/
.section_cta_footer {
  color: var(--white);
  background-color: var(--black);
  padding: 88px 0;
  text-align: center;
}

.section_cta_footer_content {
  position: relative;
  z-index: 0;
}

.section_cta_footer_content > img {
  position: absolute;
  height: auto;
  z-index: -1;
}

.section_cta_footer_content > img:first-of-type {
  top: -161px;
  left: 12%;
  transform: translateX(-50%);
  width: 220px;
  display: none;
}

.section_cta_footer_content > img:nth-child(2) {
  top: 17px;
  right: -80px;
  width: 230px;
  display: none;
}

.section_cta_footer_content > img:last-of-type {
  bottom: -88px;
  left: 50%;
  transform: translateX(-50%);
  width: 442px;
  max-width: calc(100% - 32px);
}

.section_cta_footer_content h2 {
  font-size: 24px;
  line-height: 56px;
}

.section_cta_footer_content h2 strong {
  font-weight: 700;
  font-size: 40px;
  display: inline-block;
  margin-bottom: 20px;
}

.section_cta_footer_content h2 span,
.section_cta_footer_content p span {
  color: var(--secondary_yellow);
}

.section_cta_footer_content p {
  font-size: 24px;
  font-weight: 500;
  line-height: 38px;
  /* 158.333% */
  margin-bottom: 40px;
}

.section_cta_footer_content_logos {
  max-width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
}

.section_cta_footer_content_logos > img {
  height: 40px;
  width: auto;
}

.section_cta_footer_content > a {
  color: var(--black);
  background-color: var(--secondary_yellow);
  padding: 12px 24px;
  border-radius: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  /* 30px */
  display: inline-block;
  margin-top: 136px;
  position: relative;
}

.section_cta_footer_content > a::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url("/img/pseudo_elements/button_shine.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 209px;
  max-width: 100%;
  height: 68px;
  pointer-events: none;
}

@media only screen and (min-width: 1280px) {
  .section_cta_footer_content > img:first-of-type {
    display: block;
  }

  .section_cta_footer_content > img:nth-child(2) {
    display: block;
  }
}

@media only screen and (max-width: 768px) {
  .section_cta_footer_content h2 {
    font-size: 20px;
    line-height: 24px;
  }

  .section_cta_footer_content h2 strong {
    font-size: 30px;
    line-height: 36px;
    margin-top: 20px;
  }

  .section_cta_footer_content p {
    font-size: 20px;
  }

  .section_cta_footer_content_logos > img {
    height: 32px;
  }

  .section_cta_footer_content > a {
    margin-top: 144px;
    font-size: 16px;
  }
}

/*=========================================== section_blog_post ===========================================*/

.section_blog_post_header {
  color: var(--gray_600);
  background-color: var(--camel);
}

.section_blog_post_header > div {
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_blog_post_header > div > div {
  width: 50%;
}

.section_blog_post_header_content {
  padding: 96px 32px;
  max-width: 640px;
  margin-left: auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  text-align: left;
}

.section_blog_post_header_content h3 {
  /* Text md/Semibold */
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  /*24px 150% */
}

.section_blog_post_header_content h1 {
  color: var(--gray_900);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.25em;
  /* 60px 125% */
  letter-spacing: -0.96px;
  margin: 16px 0 24px 0;
}

.section_blog_post_header_content p {
  /* Text xl/Regular */
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
  /*30px 150% */
}

.section_blog_post_header_img {
  padding: 32px;
  /*     background-color: var(--gray_300); */
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_blog_post_header_img > img {
  object-fit: cover;
  min-width: 100%;
  max-width: unset;
  min-height: 100%;
}

@media only screen and (max-width: 768px) {
  .section_blog_post_header_content h1 {
    font-size: 30px;
  }

  .section_blog_post_header > div {
    flex-flow: column nowrap;
  }

  .section_blog_post_header > div > div {
    width: 100%;
  }

  .section_blog_post_header_content {
    padding: 64px 32px;
    max-width: unset;
  }
}

/*=========================================== section_blog_post_content ===========================================*/

.section_blog_post_content {
  color: var(--gray_600);
  background-color: var(--camel);
}

.section_blog_post_content a {
  color: var(--primary_purple);
  text-decoration: underline;
}

.section_blog_post_content > .wrapper {
  max-width: 784px;
  /* 720px + 2*32px */
  margin: 0 auto;
  padding: 96px 32px;
}

.section_blog_post_content h2 {
  color: var(--gray_900);
  font-size: 30px;
  font-weight: 700;
  line-height: 38px;
  /* 126.667% */
  padding-top: 16px;
  padding-bottom: 20px;
}

.section_blog_post_content p,
.section_blog_post_content ol,
.section_blog_post_content li {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
  /* 155.556% */
}

.section_blog_post_content h3 {
  color: var(--gray_900);
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  /* 133.333% */
  padding: 16px 0 16px 0;
}

.section_blog_post_content ol {
  list-style-position: outside;
  padding-left: 20px;
}

.section_blog_post_content ol li::marker {
  display: block;
}

.section_blog_post_content_img {
  padding: 24px 0;
}

.section_blog_post_content_img div {
  border-radius: 12px;
  /*     background-color: var(--gray_300); */
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_blog_post_content_img img {
  object-fit: cover;
  min-width: 100%;
  max-width: unset;
  min-height: 100%;
}

.section_blog_post_content_img p {
  /* Text sm/Regular */
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  /* 142.857% */
  padding-top: 16px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
}

.section_blog_post_content_img p::before {
  content: "";
  background-image: url("/img/pseudo_elements/link.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 6px;
}

@media only screen and (max-width: 768px) {
  .section_blog_post_header > div {
    padding: 64px 32px;
  }
}

/*=========================================== section_blog_post_others ===========================================*/
.section_blog_post_others {
  color: var(--gray_600);
  background-color: var(--camel);
}

.section_blog_post_others > div {
  padding: 80px 32px 120px 32px;
}

.section_blog_post_others h2 {
  color: var(--gray_900);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  /* 122.222% */
  letter-spacing: -0.72px;
  text-align: center;
  margin-bottom: 64px;
}

.section_blog_post_others_container {
  display: flex;
  flex-flow: row wrap;
  gap: 32px;
}

.section_blog_post_others_article {
  display: block;
  width: calc(33.33% - 21.33px);
}

.section_blog_post_others_article_img {
  border-radius: 16px;
  /*     background-color: var(--gray_300); */
  margin-bottom: 24px;
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_blog_post_others_article_img img {
  object-fit: cover;
  min-width: 100%;
  max-width: unset;
  min-height: 100%;
}

.section_blog_post_others_article p:first-of-type {
  color: var(--gray_700);
  /* Text sm/Semibold */
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  /* 142.857% */
}

.section_blog_post_others_article h3 {
  color: var(--gray_900);
  /* Display xs/Semibold */
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  /* 133.333% */
  padding: 8px 0;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.section_blog_post_others_article h3::after {
  content: "";
  background-image: url("/img/pseudo_elements/arrow_up_right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 16px;
}

.section_blog_post_others_article p:last-of-type {
  color: var(--gray_600);
  /* Text sm/Semibold */
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

@media only screen and (max-width: 768px) {
  .section_blog_post_others_container {
    flex-flow: column nowrap;
  }

  .section_blog_post_others_article {
    width: 100%;
  }
}

/*=========================================== section_blog_recent ===========================================*/
.section_blog_header {
  color: var(--gray_900);
  background-color: var(--secondary_yellow);
  text-align: center;
}

.section_blog_header > div {
  background-image: url("/img/pseudo_elements/section_blog_header_pattern_left.svg"),
    url("/img/pseudo_elements/section_blog_header_pattern_right.svg");
  background-repeat: no-repeat;
  background-position: bottom -23px left -42px, bottom 23px right -42px;
  background-size: auto 114%;
}

.section_blog_header > div > div {
  padding: 96px 0 96px 32px;
  position: relative;
}

.section_blog_header_content img {
  position: absolute;
}

.section_blog_header_content > img:first-of-type {
  left: 0;
  bottom: 0;
  height: auto;
  width: 158px;
}

.section_blog_header_content > img:last-of-type {
  right: 0;
  top: 0;
  height: auto;
  width: 181px;
}

.section_blog_header_content h2 {
  font-size: 18px;
  font-weight: 700;
  line-height: 44px;
  /* 244.444% */
  text-transform: uppercase;
}

.section_blog_header_content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 60px;
  /* 93.75% */
  letter-spacing: -1.28px;
  padding: 12px 0 24px 0;
}

.section_blog_header_content p {
  color: var(--black);
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5em;
  /* 30px 150% */
  max-width: 768px;
  margin: 0 auto;
}

@media only screen and (max-width: 992px) {
  .section_blog_header_content > img:first-of-type {
    left: 16px;
    width: 10%;
  }

  .section_blog_header_content > img:last-of-type {
    right: 16px;
    width: 10%;
  }
}

@media only screen and (max-width: 768px) {
  .section_blog_header_content h1 {
    font-size: 36px;
    line-height: 44px;
  }
}

/*=========================================== section_blog_recent ===========================================*/
.section_blog_recent {
  color: var(--gray_600);
  background-color: var(--camel);
}

.section_blog_recent > div {
  padding: 40px 32px 96px 32px;
}

.section_blog_recent h2 {
  color: var(--gray_900);
  /* Display xs/Semibold */
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  /* 133.333% */
  padding-bottom: 32px;
}

.section_blog_recent_container {
  display: flex;
  flex-flow: row nowrap;
  gap: 32px;
}

.section_blog_recent_container > * {
  display: block;
  width: calc(50% - 16px);
}

.section_blog_recent_main_article_img {
  border-radius: 16px;
  /* background-color: var(--gray_300); */
  width: 100%;
  overflow: hidden;
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_blog_recent_main_article_img img {
  object-fit: cover;
  min-width: 100%;
  max-width: unset;
  min-height: 100%;
}

.section_blog_recent_main_article > h3,
.section_blog_recent_second_article_content > h3 {
  color: var(--gray_900);
  /* Display xs/Semibold */
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  /* 133.333% */
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.section_blog_recent_main_article > h3::after {
  content: "";
  background-image: url("/img/pseudo_elements/arrow_up_right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 16px;
}

.section_blog_recent_main_article > p:first-of-type,
.section_blog_recent_second_article_content > p:first-of-type {
  color: var(--gray_700);
  /* Text sm/Semibold */
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  /* 142.857% */
}

.section_blog_recent_main_article > p:last-of-type,
.section_blog_recent_second_article_content > p:last-of-type {
  color: var(--gray_600);
  /* Text md/Regular */
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.section_blog_recent_second_article_container {
  display: flex;
  flex-flow: column nowrap;
  gap: 32px;
}

.section_blog_recent_second_article {
  display: flex;
  flex-flow: row nowrap;
  column-gap: 24px;
  row-gap: 32px;
}

.section_blog_recent_second_article_img {
  border-radius: 16px;
  /*     background-color: var(--gray_300); */
  overflow: hidden;
  width: calc(54% - 12px);
  height: 200px;
  flex: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_blog_recent_second_article_img img {
  object-fit: cover;
  min-width: 100%;
  max-width: unset;
  min-height: 100%;
}

.section_blog_recent_second_article_content {
  width: calc(46% - 12px);
}

@media only screen and (max-width: 768px) {
  .section_blog_recent_container {
    flex-flow: column nowrap;
  }

  .section_blog_recent_container > * {
    width: 100%;
  }

  .section_blog_recent_second_article {
    flex-flow: column nowrap;
  }

  .section_blog_recent_second_article > div {
    width: 100%;
  }

  .section_blog_recent_second_article_img {
    height: 240px;
  }
}

/*=========================================== section_blog_all ===========================================*/
.section_blog_all {
  color: var(--gray_600);
  background-color: var(--camel);
}

.section_blog_all > div {
  padding: 40px 32px 136px 32px;
}

.section_blog_all h2 {
  color: var(--gray_900);
  /* Display xs/Semibold */
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  /* 133.333% */
  padding-bottom: 32px;
}

.section_blog_all_container {
  display: flex;
  flex-flow: row wrap;
  row-gap: 40px;
  column-gap: 32px;
}

.section_blog_all_article {
  display: block;
  width: calc(33.33% - 21.33px);
}

.section_blog_all_article_img {
  border-radius: 16px;
  /*     background-color: var(--gray_300); */
  width: 100%;
  height: 240px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_blog_all_article_img img {
  object-fit: cover;
  min-width: 100%;
  max-width: unset;
  min-height: 100%;
}

.section_blog_all_article h3 {
  color: var(--gray_900);
  /* Display xs/Semibold */
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  /* 133.333% */
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0 8px 0;
}

.section_blog_all_article h3::after {
  content: "";
  background-image: url("/img/pseudo_elements/arrow_up_right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 16px;
}

.section_blog_all_article p {
  color: var(--gray_600);
  /* Text sm/Semibold */
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

@media only screen and (max-width: 768px) {
  .section_blog_all_container {
    flex-flow: column nowrap;
  }

  .section_blog_all_article {
    width: 100%;
  }
}

/*=========================================== section_tarifs_header ===========================================*/
.section_tarifs_header {
  color: var(--white);
  background-color: var(--secondary_green);
}

.section_tarifs_header > div {
  position: relative;
}

.section_tarifs_header > div > img {
  position: absolute;
  height: auto;
}

.section_tarifs_header > div > img:first-of-type {
  left: 0;
  top: 69px;
  width: 240px;
}

.section_tarifs_header > div > img:last-of-type {
  right: 0;
  top: 265px;
  width: 273px;
}

.section_tarifs_header > div > div {
  padding: 104px 32px 192px 32px;
  text-align: center;
}

.section_tarifs_header_content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 60px;
  /* 93.75% */
  letter-spacing: -1.28px;
}

.section_tarifs_header_content p {
  color: var(--gray_200);
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25em;
  /*30px 125% */
  max-width: 768px;
  margin: 24px auto 40px auto;
}

.section_tarifs_header_cta {
  display: flex;
  flex-flow: row nowrap;
  column-gap: 8px;
  padding: 6px;
  border-radius: 8px;
  border: 1px solid var(--primary-100, #f2f4f7);
  width: fit-content;
  margin: 0 auto;
}

.section_tarifs_header_cta button {
  padding: 10px 14px;
  border-radius: 6px;
  color: var(white);
  background-color: transparent;
  /* Shadow/sm */
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5em;
  /* 24px 150% */
}

.section_tarifs_header_cta button.active {
  background-color: var(--white);
  color: var(--primary_purple);
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.06),
    0px 1px 3px 0px rgba(16, 24, 40, 0.1);
}

@media only screen and (max-width: 768px) {
  .section_tarifs_header > div > img {
    display: none;
  }

  .section_tarifs_header_content h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .section_tarifs_header_content p {
    font-size: 20px;
  }
}

/*=========================================== section_tarifs_prices ===========================================*/
.section_tarifs_prices {
  color: var(--gray_600);
  background-color: transparent;
  margin-top: -96px;
}

.section_tarifs_prices > div {
  padding: 0 32px 96px 32px;
}

.section_tarifs_prices_container {
  display: flex;
  flex-flow: row nowrap;
  gap: 32px;
}

.section_tarifs_prices_card {
  width: calc(33.33% - 21.33px);
  border-radius: 12px;
  border: 1px solid var(--gray_200);
  background: var(--white);
  /* Shadow/lg */
  box-shadow: 0px 4px 6px -2px rgba(16, 24, 40, 0.03),
    0px 12px 16px -4px rgba(16, 24, 40, 0.08);
  padding: 32px;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-between;
}

.section_tarifs_prices_card h4 {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  /*28px 140% */
}

.section_tarifs_prices_card h2 {
  color: var(--gray_900);
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.5em;
  /* 60px 150% */
  letter-spacing: -0.8px;
  margin: 24px 0 32px 0;
}

.section_tarifs_prices_card h2 span {
  font-size: 24px;
  letter-spacing: -0.48px;
}

.section_tarifs_prices_card ul {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--gray_200);
}

.section_tarifs_prices_card ul li {
  color: var(--gray_600);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  margin-bottom: 16px;
  list-style-type: none;
  display: flex;
}

.section_tarifs_prices_card ul li::before {
  content: "";
  background-image: url("/img/pseudo_elements/section_tarifs_prices_check_circle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-right: 12px;
  flex: none;
}

.section_tarifs_prices_card ul li:last-of-type {
  margin-bottom: 0;
}

.section_tarifs_prices_card a {
  text-align: center;
  display: block;
  padding: 12px 20px;
  margin-top: 32px;
  border-radius: 4px;
  border: 1px solid var(--black);
  color: var(--white);
  background: var(--primary_purple);
  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  /* 133.333% */
}

.section_tarifs_prices_card p {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  /* 133.333% */
  margin-top: 56px;
  text-align: center;
}

@media only screen and (max-width: 992px) {
  .section_tarifs_prices > div {
    padding: 0 16px 96px 16px;
  }

  .section_tarifs_prices_container {
    flex-flow: column nowrap;
  }

  .section_tarifs_prices_card {
    width: 100%;
  }
}

/*=========================================== section_tarifs_cta ===========================================*/
.section_tarifs_cta {
  color: var(--white);
  background-color: var(--camel);
}

.section_tarifs_cta > div {
  padding-top: 96px;
  padding-bottom: 136px;
}

.section_tarifs_cta_container {
  background-color: var(--black);
  padding: 64px;
  border-radius: 16px;
  /* Shadows/shadow-xl */
  box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03),
    0px 20px 24px -4px rgba(16, 24, 40, 0.08);
  position: relative;
  background-image: url("/img/pseudo_elements/section_tarifs_cta_container_pattern_left.svg"),
    url("/img/pseudo_elements/section_tarifs_cta_container_pattern_right.svg");
  background-repeat: no-repeat;
  background-position: top 0 left 0, top 0 right 0;
  background-size: auto 100%;
}

.section_tarifs_cta_container > img:first-of-type {
  width: 206px;
  height: auto;
  position: absolute;
  top: 20px;
  left: -66px;
}

.section_tarifs_cta_container > img:last-of-type {
  width: 215px;
  height: auto;
  position: absolute;
  bottom: -40px;
  right: -60px;
}

.section_tarifs_cta_content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.section_tarifs_cta_content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15em;
  /*46px 115% */
  margin-bottom: 16px;
}

.section_tarifs_cta_content h2 span {
  border-radius: 2px;
  color: var(--black);
  background-color: var(--secondary_yellow);
  display: inline-block;
  transform: rotate(-0.553deg);
  padding: 0 4px;
}

.section_tarifs_cta_content p {
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.25em;
  /* 30px 125% */
}

.section_tarifs_cta_content p a {
  color: var(--secondary_yellow);
  text-decoration-line: underline;
}

@media only screen and (max-width: 992px) {
  .section_tarifs_cta_container > img:first-of-type {
    display: none;
  }

  .section_tarifs_cta_container > img:last-of-type {
    width: 167px;
    bottom: -30px;
    right: -13px;
  }
}

@media only screen and (max-width: 768px) {
  .section_tarifs_cta > div {
    padding: 64px 16px 64px 16px;
  }

  .section_tarifs_cta_container {
    padding: 72px 24px;
    background-size: 50% auto;
    background-position: bottom 0 left 0, top 0 right 0;
  }

  .section_tarifs_cta_content h2 {
    font-size: 26px;
    line-height: 32px;
    /* 123.077% */
    margin-bottom: 32px;
  }

  .section_tarifs_cta_content p {
    line-height: 1.2em;
    /* 30px 150% */
  }
}

/*=========================================== section_tarifs_features ===========================================*/
.section_tarifs_features {
  color: var(--gray_600);
  background-color: var(--camel);
}

.section_tarifs_features > div {
  padding: 96px 32px 136px 32px;
}

.section_tarifs_features_container {
  display: flex;
  flex-flow: row nowrap;
  gap: 32px;
}

.section_tarifs_feature {
  width: calc(33.33% - 21.33px);
  font-family: "Outfit", sans-serif;
  text-align: center;
}

.section_tarifs_feature h3 {
  color: var(--gray_900);
  /* Text xl/Semibold */
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  /* 30px 150% */
}

.section_tarifs_feature p {
  /* Text md/Regular */
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
  /* 24px 150% */
  margin-top: 8px;
}

.section_tarifs_feature h3::before {
  content: "";
  background-image: url("/img/icons/section_tarifs_features/section_tarifs_features_1.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  width: 48px;
  height: 48px;
  margin: 0 auto 20px auto;
}

.section_tarifs_feature:nth-child(2) h3::before {
  background-image: url("/img/icons/section_tarifs_features/section_tarifs_features_2.svg");
}

.section_tarifs_feature:nth-child(3) h3::before {
  background-image: url("/img/icons/section_tarifs_features/section_tarifs_features_3.svg");
}

@media only screen and (max-width: 768px) {
  .section_tarifs_features_container {
    flex-flow: column nowrap;
  }

  .section_tarifs_feature {
    width: 100%;
  }
}

/*=========================================== section_tarifs_features ===========================================*/
.section_contact_form {
  color: var(--gray_600);
  background-color: var(--camel);
}

.section_contact_form > div {
  padding: 64px 32px 96px 32px;
  display: flex;
  flex-flow: row nowrap;
  gap: 64px;
}

.section_contact_form_img {
  display: flex;
  flex-flow: column nowrap;
  width: calc(40% - 32px);
  gap: 24px;
}

.section_contact_form_content {
  width: calc(60% - 32px);
}

.section_contact_form_img > div {
  border-radius: 8px;
}

.section_contact_form_img > div:first-of-type {
  background-color: #191919;
  text-align: center;
  padding: 32px 56px 0px 56px;
}

.section_contact_form_img > div:first-of-type > img {
  display: inline-block;
  width: 157px;
  height: auto;
}

.section_contact_form_img_container {
  background-color: #f6eee4;
  padding: 24px;
  font-family: "Outfit", sans-serif;
}

.section_contact_form_img_container > a {
  background-color: var(--primary_purple);
  display: inline-block;
  padding: 12px;
  border-radius: 10px;
}

.section_contact_form_img_container > a > img {
  width: 24px;
  height: auto;
}

.section_contact_form_img_container > h3 {
  color: var(--gray_900);
  /* Text lg/Semibold */
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
  /* 155.556% */
  margin: 48px 0 16px 0;
}
.section_contact_form_img_container:not(:has(a[href^="tel:"])) > h3 {
  margin: 0px 0 16px 0;
}

.section_contact_form_img_container > p:first-of-type {
  color: var(--primary_purple);
  /* Text md/Semibold */
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
}

.section_contact_form_img_container > p:last-of-type {
  color: var(--black);
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  /* 166.667% */
}

.section_contact_form_content > h2 {
  color: var(--gray_900);
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  /* 122.222% */
  letter-spacing: -0.72px;
}

.section_contact_form_content > p {
  font-family: "Outfit", sans-serif;
  /* Text xl/Regular */
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  /* 150% */
  margin: 20px 0 48px 0;
}

.section_contact_form_content > form {
  font-family: "Outfit", sans-serif;
  display: flex;
  flex-flow: row wrap;
  column-gap: 16px;
  row-gap: 24px;
}

.section_contact_form_content > form > div {
  display: flex;
  flex-flow: column nowrap;
  row-gap: 6px;
  width: calc(50% - 8px);
}

.section_contact_form_content > form > div:last-of-type,
.section_contact_form_content > form > div:nth-child(5) {
  width: 100%;
}

.section_contact_form_content > form > div > label {
  color: var(--gray_700);
  /* Text sm/Medium */
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
}

.section_contact_form_content > form > div > input,
.section_contact_form_content > form > div > textarea {
  color: var(--gray_500);
  /* Text md/Regular */
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 2px;
  border: 1px solid var(--gray_300);
  background-color: var(--white);
  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 10px 14px;
}

.section_contact_form_content > form > div > textarea {
  padding: 12px 14px;
  resize: vertical;
  max-height: 500px;
}

.section_contact_form_content > form > button {
  text-align: center;
  display: block;
  width: 100%;
  padding: 12px 18px;
  margin-top: 8px;
  border-radius: 4px;
  color: var(--white);
  background: var(--primary_purple);
  /* Shadows/shadow-xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  /* Text md/Semibold */
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  /* 150% */
}

@media only screen and (max-width: 768px) {
  .section_contact_form > div {
    flex-flow: column-reverse nowrap;
  }

  .section_contact_form_img,
  .section_contact_form_content {
    width: 100%;
  }

  .section_contact_form_img {
    flex-direction: column-reverse;
  }
}

/*=========================================== section_generateur ===========================================*/

.section_generateur {
  color: var(--black);
  background-color: var(--camel);
}

.section_generateur > div {
  padding: 40px 56px 72px 56px;
  max-width: 1440px;
  margin: 0 auto;
  border-bottom: solid 1px var(--black);
}

.section_generateur_container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-flow: row nowrap;
  column-gap: 32px;
  row-gap: 22px;
}

.section_generateur_content {
  width: calc(65% - 16px);
  display: flex;
  flex-flow: column nowrap;
  gap: 22px;
}

.section_generateur_content > div {
  padding: 24px;
  border-radius: 4px;
  border: 1px solid var(--black);
  background-color: var(--white);
}

.section_generateur_content_url {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section_generateur_content_url > h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  /* 133.333% */
  display: inline-flex;
  align-items: center;
}

.section_generateur_content_url > h2 > img {
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 8px;
}

.section_generateur_content_url > a {
  border-radius: 4px;
  border: 1px solid var(--black);
  background: var(--camel);
  padding: 8px;
}

.section_generateur_content_url > a > img {
  width: 24px;
  height: 24px;
}

.section_generateur_content_form > h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  /* 150% */
  margin-bottom: 8px;
}

.section_generateur_content_form > form > div {
  display: flex;
  flex-flow: column nowrap;
  gap: 12px;
  font-family: "Outfit", sans-serif;
}

.section_generateur_content_form label {
  color: var(--gray_700);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.section_generateur_content_form input {
  color: var(--black);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  border-radius: 2px;
  border: 1px solid var(--gray-300, #d0d5dd);
  background: var(--base-white, #fff);

  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  padding: 10px 14px;
}

.section_generateur_content_personalization > h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 30px;
  /* 150% */
}

.section_generateur_content_personalization_container {
  padding: 16px 0;
  background-color: #f9fafb;
  margin: 16px 0;
  font-family: "Outfit", sans-serif;
}

.section_generateur_content_personalization_container > p {
  color: var(--black);
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
  /* 133.333% */
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.section_generateur_content_personalization_container > p > img {
  width: 24px;
  height: 24px;
  margin-left: 8px;
}

.section_generateur_content_personalization_import {
  margin: 0 40px;
  padding: 16px 24px;
  border-radius: 12px;
  border: 1px solid var(--gray_200);
  background-color: var(--white);
  text-align: center;
  cursor: pointer;
  display: block;
}

.section_generateur_content_personalization_import > img {
  background: var(--white);
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 10px;
  border-radius: 8px;
  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  margin-bottom: 12px;
}

.section_generateur_content_personalization_import > input {
  display: none;
}

.section_generateur_content_personalization_import > p:first-of-type {
  color: var(--gray_600);
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  /* 125% */
}

.section_generateur_content_personalization_import > p:first-of-type > span {
  color: var(--primary_purple);
}

.section_generateur_content_personalization_import > p:last-of-type {
  color: var(--gray_600);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  /* 128.571% */
  margin-top: 4px;
}

.section_generateur_content_cta_container {
  position: relative;
  z-index: 0;
}

.section_generateur_content_cta_container > img {
  position: absolute;
  width: 120px;
  height: auto;
  z-index: -1;
}

.section_generateur_content_cta_container > img:first-of-type {
  transform: rotate(-15deg);
  left: -60px;
  top: 40px;
}

.section_generateur_content_cta_container > img:last-of-type {
  transform: rotate(15deg);
  right: -65px;
  bottom: 10px;
}

.section_generateur_content_cta_content {
  max-width: 656px;
  margin: 0 auto;
  padding: 48px 64px;
  text-align: center;
  border-radius: 4px;
  background: var(--black);
  /* Shadows/shadow-xl */
  box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03),
    0px 20px 24px -4px rgba(16, 24, 40, 0.08);
  background-image: url("/img/pseudo_elements/section_generateur_pattern_left.svg"),
    url("/img/pseudo_elements/section_generateur_pattern_right.svg");
  background-repeat: no-repeat;
  background-position: bottom 0 left 0, top 0 right 0;
  background-size: 60% auto;
}

.section_generateur_content_cta_content > h2 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  line-height: 150%;
  /* 36px */
  margin-bottom: 40px;
}

.section_generateur_content_cta_content > h2 > span {
  color: var(--secondary_green);
}

.section_generateur_content_cta_content > a {
  color: var(--black);
  background-color: var(--secondary_yellow);
  padding: 12px 24px;
  border-radius: 4px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5em;
  display: inline-block;
}

.section_generateur_img {
  width: calc(35% - 16px);
  height: 496px;
  border-radius: 4px;
  border: 1px solid var(--black);
  background-color: var(--white);
  padding: 8px 48px;
  display: flex;
  flex-flow: column nowrap;
  gap: 48px;
  justify-content: center;
  align-items: center;
}

.section_generateur_img > div {
  width: 213px;
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 0;
}

.section_generateur_img > div::after {
  content: "";
  position: absolute;
  bottom: -45px;
  right: -101px;
  background-image: url("/img/pseudo_elements/section_generateur_arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 40%;
  height: 70px;
  z-index: -1;
}

.section_generateur_img > button {
  width: 100%;
  padding: 12px 24px;
  border-radius: 2px;
  color: var(--white);
  background: var(--primary_purple);
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 150%;
  /* 27px */
  display: flex;
  justify-content: center;
  align-items: center;
}

.section_generateur_img > button::before {
  content: "";
  background-image: url("/img/icons/section_generateur_download.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

@media only screen and (max-width: 992px) {
  .section_generateur_img {
    padding: 8px 24px;
  }

  .section_generateur_img > div::after {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .section_generateur > div {
    padding: 40px 32px 72px 32px;
  }

  .section_generateur_container {
    flex-flow: column nowrap;
  }

  .section_generateur_content,
  .section_generateur_img {
    width: 100%;
  }

  .section_generateur_content_cta_content {
    padding: 24px 32px;
  }
}

/*=========================================== popin_inscription ===========================================*/

.popin_inscription {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 105px 32px 74px 32px;
  overflow-y: scroll;
}

.popin_inscription.active {
  display: block;
}

.popin_inscription_container {
  margin: 0 auto;
  max-width: 1042px;
  display: flex;
  flex-flow: row nowrap;
}

.popin_inscription_img {
  background: linear-gradient(180deg, #2a2a2a 0%, #000 100%);
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.popin_inscription_img > img:nth-child(2) {
  width: 200px;
  height: auto;
}

.popin_inscription_img > img:first-of-type,
.popin_inscription_img > img:last-of-type {
  position: absolute;
  height: auto;
}

.popin_inscription_img > img:first-of-type {
  top: -77px;
  left: 0;
  width: 208px;
}

.popin_inscription_img > img:last-of-type {
  bottom: 0;
  left: 10%;
  width: 361px;
}

.popin_inscription_content {
  width: 55%;
  background-color: var(--white);
  color: var(--black);
  padding: 80px 48px;
  text-align: center;
  position: relative;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.popin_inscription_content > button:first-of-type {
  position: absolute;
  top: 40px;
  right: 40px;
}

.popin_inscription_content > button:first-of-type > img {
  width: 24px;
  height: 24px;
}

.popin_inscription_content h3 {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 120%;
  /* 16.8px */
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.popin_inscription_content h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 120%;
  /* 38.4px */
  margin: 12px 0 20px 0;
}

.popin_inscription_content p {
  color: var(--gray_500);
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
  /* 22.4px */
}

.popin_inscription_content form {
  margin-top: 40px;
}

.popin_inscription_content form > div {
  display: flex;
  flex-flow: column nowrap;
  text-align: left;
  gap: 6px;
}

.popin_inscription_content form > div:nth-child(2) {
  margin: 24px 0 40px 0;
}

.popin_inscription_content form label {
  color: var(--gray_700);
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
}

.popin_inscription_content form input {
  padding: 10px 14px;
  border-radius: 2px;
  border: 1px solid var(--gray_300);
  background-color: var(--white);
  color: var(--gray_500);
  /* Shadow/xs */
  box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.popin_inscription_content form > div:nth-child(3) {
  flex-flow: row nowrap;
  align-items: flex-start;
  color: var(--gray_700);
  gap: 12px;
}

.popin_inscription_content form > div:nth-child(3) > input {
  cursor: pointer;
  width: 20px;
  height: 20px;
  flex: none;
}

.popin_inscription_content form > div:nth-child(3) > label {
  font-family: "Outfit", sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 21px;
  /* 150% */
  cursor: pointer;
}

.popin_inscription_content form button {
  text-align: center;
  display: block;
  width: 100%;
  padding: 12px 24px;
  margin-top: 8px;
  border-radius: 2px;
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

.popin_inscription_content form button:first-of-type {
  color: var(--white);
  background-color: var(--primary_purple);
  margin: 24px 0;
}

.popin_inscription_content form div:last-child {
  color: var(--black);
  background-color: var(--white);
  font-weight: 400;
  text-align: center;
  cursor: pointer;
}

.success_message {
  text-align: center;
  width: 100%;
  background: #24b366;
  color: white;
  max-width: 1216px;
  margin: auto;
  margin-top: 40px;
  padding: 10px;
  border-radius: 4px;
  font-weight: 500;
}

@media only screen and (max-width: 992px) {
  .popin_inscription_img > img:first-of-type,
  .popin_inscription_img > img:last-of-type {
    display: none;
  }
}

@media only screen and (max-width: 768px) {
  .popin_inscription {
    padding: 64px 24px 64px 24px;
  }

  .popin_inscription_container {
    flex-flow: column nowrap;
  }

  .popin_inscription_img {
    display: none;
  }

  .popin_inscription_content {
    width: 100%;
    border-radius: 8px;
    padding: 40px 24px;
  }

  .popin_inscription_content > button:first-of-type {
    top: 20px;
    right: 20px;
  }
}

/*=========================================== generateur_selecteur ===========================================*/

/* Grid that is 3 rows and 2 cols row height has a maximum of 96px
   grid is centered
*/

.generateur_selecteur {
  min-height: 75vh;
  padding: 3rem;
}

.generateur_selecteur_grid {
  display: grid;
  font-family: "Inter", sans-serif;
  align-self: center;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  grid-auto-rows: minmax(0, 96px);
  gap: 16px;
  margin: 32px 0;
  padding: 16px 0px;
  border-radius: 8px;
}

.generateur_selecteur_grid > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--gray_200);
  background-color: var(--white);
}

.generateur_selecteur_grid > a:hover {
  border-color: var(--secondary_yellow);
  cursor: pointer;
}

.generateur_selecteur_grid > .coming_soon {
  display: flex;
  position: relative;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border-radius: 8px;
  border: 1px solid var(--gray_200);
  background-color: var(--gray_100);
}

.generateur_selecteur_grid > .coming_soon:hover {
  border-color: var(--gray_200);
  cursor: not-allowed;
}

.generateur_selecteur_grid > .coming_soon > p {
  position: absolute;
  right: -32px;
  bottom: 0;
  transform: translate(-50%, -50%);
  color: var(--gray_500);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  /* 142.857% */
}

.generateur_selecteur_grid_image_content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #f4f3ff;
  width: 36px;
  height: 36px;
  border-radius: 4px;
}

.generateur_selecteur_grid_image_content > img {
  height: 20px;
  width: 20px;
}

@media (max-width: 768px) {
  .generateur_selecteur_grid {
    grid-template-columns: 1fr;
  }
}

#vCardForm {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#addPhoneButton {
  gap: 8px;
  padding: 8px 32px;
  background-color: var(--white);
  border: 2px solid var(--primary_purple);
  color: var(--primary_purple);
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

#addPhoneButton:hover {
  background-color: var(--primary_purple);
  color: var(--white);
}

#phoneFieldsContainer > div > div > select {
  padding: 12px;
  border-radius: 4px;
  border: 1px solid var(--gray_300);
}

.vcard_viewer_section {
  display: flex;
  flex-direction: column;
  padding: 48px 32px;
  min-height: calc(100svh - 56px);
  max-width: fit-content;
  margin: 0 auto;
  gap: 16px;
}

.vcard_viewer_section_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  flex: 1;
  gap: 16px;
}

.vcard_viewer_section_buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.vcard_viewer_section_wrapper > h2 {
  text-align: center;
}

.vcard_viewer_section_wrapper > h3 {
  text-align: center;
  margin-bottom: 32px;
}

.vcard_viewer_section_buttons > a {
  text-align: center;
}

.vcard_viewer_section_buttons > .button_1 {
  padding: 12px 32px;
  background-color: var(--primary_purple);
  color: var(--white);
  border: none;
  cursor: pointer;
}

.vcard_viewer_section_buttons > .button_1:hover {
  background-color: var(--secondary_yellow);
  color: var(--black);
}

.vcard_viewer_section_buttons > .button_2 {
  padding: 12px 32px;
  background-color: var(--white);
  color: var(--primary_purple);
  border: 2px solid var(--primary_purple);
  cursor: pointer;
}

.vcard_viewer_section_buttons > .button_2:hover {
  background-color: var(--primary_purple);
  color: var(--white);
}

.vcard_viewer_section_wrapper_link {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.vcard_viewer_section_wrapper_link > img {
  color: var(--primary_purple);
}

/*------------------------------------------------- API PAGE -------------------------------------------*/

.section_api_hero {
  color: var(--white);
  background-color: var(--camel);
}

.section_api_hero > div {
  padding-top: 96px;
  padding-bottom: 136px;
}

.section_api_header {
  background-color: var(--black);
  /* Shadows/shadow-xl */
  box-shadow: 0px 8px 8px -4px rgba(16, 24, 40, 0.03),
    0px 20px 24px -4px rgba(16, 24, 40, 0.08);
  position: relative;
  background-image: url("/img/pseudo_elements/section_cta_pattern_right.svg"),
    url("/img/pseudo_elements/section_cta_pattern_left.svg");
  background-repeat: no-repeat;
  background-position: top -30px right -12px, top 30px left -60px;
  background-size: auto 100%;

  margin-bottom: 92px;
}

.section_api_header > div > img:last-of-type {
  right: 0;
  top: 0;
  width: 240px;
}

.section_api_header > div > img:first-of-type {
  left: 0;
  top: 357px;
  width: 240px;
}

.section_api_header_content h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  /* 93.75% */
  letter-spacing: -1.28px;
}

.section_api_header_content strong {
  color: var(--secondary_yellow);
  font-family: "Syne", sans-serif;
  font-weight: 700;
}

.section_api_header_content p {
  color: var(--gray_200);
  font-family: "Outfit", sans-serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25em;
  /*30px 125% */
  max-width: 768px;
  margin: 24px auto 40px auto;
}

.section_api_features {
  color: var(--gray_900);
  background-color: var(--camel);
}

.section_api_features > div {
  color: var(--black);
  background-color: var(--camel);
  padding-top: 44px;
  padding-bottom: 44px;
  display: flex;
  flex-flow: column nowrap;
  row-gap: 20px;
}

.section_api_features h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 38px;
  /* 57.6px */
  text-align: left;
  max-width: 768px;
}

.section_api_features h2 span {
  position: relative;
  z-index: 1;
}

.section_api_features h2 span::before {
  content: "";
  position: absolute;
  background-color: var(--secondary_yellow);
  width: 100%;
  height: 75%;
  top: 50%;
  left: 50%;
  border-radius: 2px;
  rotate: -2deg;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.section_api_features p {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  color: var(--gray_500);
  font-family: "Inter", sans-serif;
}

.section_api_features p > strong {
  position: relative;
  font-weight: 700;
  color: var(--gray_600);
}

.section_api_features_feature {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  row-gap: 40px;
  column-gap: 32px;
  margin-bottom: 12px;
  margin-top: 12px;
}

.section_api_features_feature_content {
  width: 100%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  row-gap: 20px;
}

.section_api_features_feature_content h3 {
  font-size: 24px;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  line-height: 32px;
  color: var(--gray_900);
  /* 118.75% */
}

.section_api_features_feature_content ul {
  margin-left: 16px;
}

.section_api_features_feature_content ul li {
  color: var(--gray_600);
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  /* 136.364% */
  list-style-type: none;
  display: flex;
  margin-bottom: 16px;
}

.section_api_features_feature_content ul li > div {
  flex: 1;
}
.section_api_features_feature_content ul li > strong {
  color: var(--gray_600);
  position: relative;
  display: inline;
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
}

.section_api_features_feature_content ul li::before {
  content: "";
  background-image: url("/img/pseudo_elements/section_features_check_circle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  flex-shrink: 0;
  align-self: flex-start;
}

.section_api_features_feature_content ul .arrow::before {
  content: "";
  background-image: url("/icons/ArrowRightPurple.svg");
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  flex-shrink: 0;
  align-self: flex-start;
}

.section_api_features_feature_content ul li:last-of-type {
  margin-bottom: 0;
}

.section_api_features_code_block {
  border-radius: 6px;
  background-color: white;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--gray_200);
  width: 100%;
  margin-bottom: 32px;
}

.section_api_features_code_block_header {
  padding: 24px;
}

.section_api_features_code_block h4 {
  font-size: 18px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 28px;
  color: var(--gray_700);
  margin-bottom: 8px;
}

.section_api_features_code_block h4 span {
  font-size: 18px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  line-height: 28px;
  color: white;
  background-color: var(--primary_purple);
  border-radius: 6px;
  padding: 6px;
  margin-right: 6px;
}

.section_api_features_code_block p {
  font-size: 16px;
  line-height: 26px;
  color: var(--primary_700);
}

.section_api_features_code_block pre {
  background-color: #1e2030;
  color: white;
  padding: 32px;
  overflow-x: auto;
}

.json_key {
  color: #c6a0f6;
}

.json_val {
  color: #a6d189;
}

.json_normal {
  color: #c6d0f5;
}

.section_api_features_feature table {
  background-color: white;
  width: 100%;
  padding: 0px 24px;
  border: solid 1px var(--gray_200);
  border-collapse: collapse;
}

.section_api_features_feature table th {
  text-align: left;
  font-size: 16px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray_200);
  color: var(--gray_600);
}

.section_api_features_feature table td {
  text-align: left;
  font-size: 18px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  line-height: 28px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--gray_200);
  color: var(--gray_600);
  border-top: 1px solid var(--gray_200);
}

.section_api_features_feature table span {
  background-color: var(--primary_green);
}

@media only screen and (max-width: 768px) {
  .section_api_features > div {
    padding: 64px 16px;
    row-gap: 48px;
  }

  .section_api_features h2 {
    font-size: 30px;
    line-height: 38px;
    /* 126.667% */
  }

  .section_api_features h2 span::after {
    top: -25px;
    right: -28px;
  }

  .section_api_features_feature {
    flex-flow: column nowrap;
  }

  .section_api_features > div > :nth-child(3) {
    flex-flow: column-reverse nowrap;
  }

  .section_api_features_feature > div {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .section_api_features_feature_content h3 {
    font-size: 24px;
    line-height: 32px;
    /* 133.333% */
  }

  .section_api_features_feature_content h4 {
    font-size: 18px;
    line-height: 24px;
    /* 133.333% */
  }

  .section_api_features_feature_content ul {
    margin-left: 8px;
  }

  .section_api_features_feature_content ul li {
    font-size: 16px;
    line-height: 24px;
    /* 150% */
    margin-bottom: 32px;
  }

  .section_api_header {
    background-size: 100% 100%;
    background-position: top -300px right -12px, top 300px right 12px;
  }
}

.section_cta_footer_content .api_cta_footer_title {
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 56px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.api_cta_footer_content > img:first-of-type {
  top: -181px;
}

.section_cta_footer_content .api_cta_footer_text {
  font-family: "Syne", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 38px;
}

.section_api_features_cta {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
}

.section_api_features_cta a {
  padding: 12px 24px;
  background-color: var(--primary_purple);
  color: white;
  width: fit-content;
  border-radius: 4px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}

.section_api_header_cta a {
  padding: 12px 24px;
  background-color: var(--primary_purple);
  color: white;
  width: fit-content;
  border-radius: 4px;
  font-family: "Outfit", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}

.gutter {
  max-width: 886px;
  padding: 0 16px;
}

.qrCodeSquareRounded {
  border-radius: 14.58px;
  border: 2px solid #000000;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.bigQrCode {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  width: 50%;
  max-width: 300px;
  height: auto;
}

.transition_arrow {
  position: absolute;
  right: -175px;
  top: -275px;
  width: 75px;
  rotate: -12deg;
}

.api_section_cuphand {
  position: absolute;
  left: 980px;
  bottom: -150px;
}

.api_section_hand_heart {
  position: absolute;
  top: -1250px;
  left: -310px;
  min-width: 1440px;
  z-index: -1;
}

.section_api_presentation {
  padding: 32px 0;
  margin: 44px 0;
}

.reset_pass_container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 48px;
}

.reset_pass {
  margin: auto;
  max-width: 32rem;
}

/* WhatsApp Button Styles */
.whatsapp-button {
  display: inline-block;
  text-decoration: none;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  border-radius: 25px;
  padding: 8px 16px;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  width: 200px;
}

.whatsapp-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

.whatsapp-content {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
}

.whatsapp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.whatsapp-text {
  display: flex;
  flex-direction: column;
  color: white;
  font-family: "Outfit", sans-serif;
}

.whatsapp-text span {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.whatsapp-text small {
  font-size: 12px;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.2;
}
