*{
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
}
section{
    /*padding: 6rem auto;
    margin: 5rem 0;*/
}

.icon_infos{
    margin-top: 2rem;
}
.icon_infos a img{
    width: 2rem;
    height: 2rem;
    background: var(--color-belge);
    border-radius: 3em;
}
.icon_infos a{
    color: #FFFFFF;
    font-size: 2rem;
}

:root{
    --color-primary : #6B6AE6;
    --color-second : #121212;
    --color-blanc : #F6F6F6;
    --color-black : black;
    --color-jaune : #f5c542;

    --container-width-lg : 90%;
    --container-width-md : 90%;
    --container-width-sm : 92%;

    --transition:all 400ms ease;
}

html{
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Montserrat';
    src: url(../Montserrat-VariableFont_wght.ttf);
}

@font-face {
    font-family: 'Playfair Display';
    src: url('../PlayfairDisplay-VariableFont_wght.ttf');
}



body{
    font-family: 'Montserrat';
    color: var(--color-bg-1);
    line-height: 1.7;
    background-color: var(--color-blanc);
    background-image: 
        linear-gradient(to right, rgba(0,0,0,0.01) .6px, transparent .1px),
        linear-gradient(to bottom, rgba(0,0,0,0.01) .6px, transparent .1px);
    background-size: 10px 10px; /* taille des carrés */
    
}

h3{
    font-family: 'Playfair Display', serif;
    line-height: 1.1;
    font-weight: 400;
    font-size: 2rem;
}

h2{
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 900;
    line-height: 146%;
}

h1{
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 900;
    line-height: 146%;
}

h5{
    font-family: 'Playfair Display', serif;
    font-size: 23px;
    font-weight: 900;
    line-height: 146%;
}



.container{
    width: var(--container-width-lg);
    max-width: 1200px;
    margin: 0 auto;
}


img{
    display: block;
    object-fit: cover;
    width: 100%;
}

/*=====================================================*/

nav{
    height: 5rem;
    width: 100%;
    display: grid;
    place-items: center;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
}

nav button{
    display: none;
}

.window-scrolled{
    margin-top: 20px;
    width: 70%;
    margin-left: 15%;
    background-color: rgba(246, 246, 246, 0.7);
    font-size: 13px;
    height: 4rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 0px 4px rgba(0,0,0,0.2);
    border-radius: 10px;
}

.nav_logo{
    width: 90px;
    height: 29px;
}

.nav_container{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav_menu{
    display: flex;
    gap: 2rem;
    font-size: 14;
}
.nav_menu li a{
    color: #000;
}
.menu li:hover{
    color: var(--color-second);
}

.bouton_contact{
    background-color: var(--color-primary);
    color: var(--color-blanc);
    display: flex;
    align-items: center;
    padding: 12px 20px 12px 20px;
    border-radius: 10px;
    gap: 8px;
}
.bouton_contact img{
    width: 24px;
    height: 24px;
}

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

header{
    width: 100%;
}

.jaune{
    color: var(--color-jaune);
}

.header_container{
    padding-top: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.header_message{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    box-shadow: 0 0px 4px rgba(0,0,0,0.2);
    padding: 6px 20px 6px 20px;
    border-radius: 50px;
}
.header_message .icone_true{
    width: 24px;
    height: 24px;
}
.header_message .profil_message{
    width: 69px;
    height: 28px;
}
.message_des{
    font-size: 11px;
}

.grand_titre{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.grand_titre h1{
    width: 954px;
    text-align: center;
}
.color_header{
    color: var(--color-primary);
}
.header_des{
    opacity: .5;
    width: 604px;
    text-align: center;
    padding: 23px 0px 23px 0px;
}
.statis{
    display: flex;
    gap: 10px;
}
.livraison{
    display: flex;
    gap: 7px;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0px 4px rgba(0,0,0,0.2);
    padding: 8px 20px 8px 20px;
    border-radius: 50px;
}
.livraison img{
    width: 24px;
    height: 24px;
}
.livraison p{
    font-size: 11px;
}

.bouton_header{
    display: flex;
    gap: 23px;
    padding: 51px 0px 51px 0px;
}
.bouton_header img{
    width: 24px;
    height: 24px;
}
.bouton_tarifs{
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    color: var(--color-blanc);
    padding: 8px 20px 8px 20px;
    background-color: var(--color-primary);
    border-radius: 10px;
}
.bouton_gratuit{
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    color: var(--color-blanc);
    padding: 8px 20px 8px 20px;
    background-color: var(--color-second);
    border-radius: 10px;
}

.header_image img{
    
    width: 100%;
}

/*================== SECTION 1 : PARTENAIRES ===================*/
#logo_partenaires{
    padding: 52px 0px 0px 0px;
}
:root{
  --gap: 2rem;
  --speed: 20s;          /* durée d'un cycle (plus petit = plus rapide) */
  --item-pad: .8rem 1.2rem;
  --item-radius: 999px;  /* pilule */
  --bg: #0f172a;
  --card: #111827;
  --text: #e5e7eb;
}
.scroller{
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  padding-block: 18px;
}

.scroller__inner{
  display: flex;
  gap: var(--gap);
  width: max-content;         /* largeur s’adapte au contenu */
  animation: scroll var(--speed) linear infinite;
}

.scroller:hover .scroller__inner{
  animation-play-state: paused; /* pause au survol */
}

.item{
  padding: var(--item-pad);
  background: var(--color-blanc);
  box-shadow: 0 0px 4px rgba(0,0,0,0.2);
  border-radius: 50px;
  white-space: nowrap;         /* empêche le retour à la ligne */
  font-weight: 600;
}

/* Animation : on translate la moitié (car on a dupliqué la liste) */
@keyframes scroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Accessibilité : réduit/stoppe l’anim si l’utilisateur préfère moins d’animations */
@media (prefers-reduced-motion: reduce){
  .scroller__inner{ animation: none; }
}

/*================== SECTION 2 : VIDEO DEMO ===================*/
video{
    border-radius: 10px;
    border: 10px solid var(--color-blanc);
    box-shadow: 0 0px 4px rgba(0,0,0,0.2);
}
/*================== SECTION 3 : BENEFICE ===================*/
#benefice{
    padding: 151px 0px 0px 0px;
}
.benefice_container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.benefice_container h2{
    text-align: center;
    width: 954px;
}

.benefices{
    padding-top: 57px;
    display: flex;
    gap: 20px;
}
.benefice1{
    width: 100%;
    border-radius: 20px;
    text-align: center;
    padding: 1rem;
    background-color: rgba(90,129,138,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.benefice1 img{
    width: 109px;
    height: 109px;
}
.title2{
    font-weight: bold;
    font-size: 16;
}
.des_benefice{
    font-size: 13px;
    opacity: .8;
}

.benefice2{
    width: 100%;
    border-radius: 20px;
    text-align: center;
    padding: 1rem;
    background-color: rgba(253,195,0,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.benefice2 img{
    width: 201px;
    height: 115px;
}

.benefice3{
    width: 100%;
    border-radius: 20px;
    text-align: center;
    padding: 1rem;
    background-color: rgba(116,116,116,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.benefice3 img{
    width: 123px;
    height: 121px;
}

.benefice4{
    width: 100%;
    border-radius: 20px;
    text-align: center;
    padding: 1rem;
    background-color: rgba(243,203,143,0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.benefice4 img{
    width: 87px;
    height: 122px;
}
.benefice1 .title2{
    padding: 22px 0px 22px 0px;
}
.benefice2 .title2{
    padding: 22px 0px 22px 0px;
}
.benefice3 .title2{
    padding: 22px 0px 22px 0px;
}
.benefice4 .title2{
    padding: 22px 0px 22px 0px;
}

/*================== SECTION 4 : REALISATIONS ===================*/
#realisation{
    padding: 151px 0px 0px 0px;
}
.realisation_container h2{
    width: 954px;
    text-align: center;
}
.realisation_entete{
    display: flex;
    gap: 22px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.realisation_entete .realisation_des{
    opacity: .8;
    text-align: center;
    width: 604px;
}

.realisation_message{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    background-color: var(--color-primary);
    padding: 3px 10px 3px 10px;
    border-radius: 50px;
}
.realisation_message img{
    width: 24px;
    height: 24px;
}
.realisation_message p{
    font-size: 11px;
    color: var(--color-blanc);
}

.realisations{
    padding-top: 57px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(2,1fr);
}

.realisation_description{
    background-color: #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 0px 0px 10px 10px;
}

.clic_realisation{
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    width: 76px;
    height: 76px;
    border-radius: 50px;

}
.clic_realisation img{
    width: 47px;
    height: 47px;
}
.realisation1{
    box-shadow: 0 0px 4px rgba(0,0,0,0.2);
    border-radius: 10px;
}
.realisation_image img{
    border-radius: 10px 10px 0px 0px;
}

.names_app{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.statut{
    width: 50%;
    text-align: center;
    padding: 4px 10px 4px 10px;
    color: var(--color-blanc);
    font-size: 11px;
    background-color: rgba(107,106,230,0.8);
    border-radius: 50px;
}
.name_app{
    font-weight: bold;
}
.behance{
    opacity: .8;
}
.bouton_tarif{
    padding-top: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.bouton_tarif a{
    padding: 10px 20px 10px 20px;
    background-color: var(--color-jaune);
    color: var(--color-second);
    border-radius : 10px;
}

/*================== SECTION 4 : ETAPES ===================*/
#etapes{
    padding-top: 151px;
}

.etape_titre{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}
.etape_titre h2{
    width: 956px;
    text-align: center;
}

.card_etape{
    padding-top: 75px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.image_card_etape{
    width: 100%;
}

.card_etapes{
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}
.etape1{
    background-color: #FFFFFF;
    box-shadow: 0 0px 4px rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 1rem;
}
.etape_number{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 13px;
    padding-bottom: 11px;
}
.number1{
    font-size: 28px;
    font-weight: bold;
    color: var(--color-blanc);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background-color: var(--color-primary);
    border-radius: 50px;
}
.titre_etape{
    font-size: 16px;
    font-weight: bold;
}

.etape2{
    background-color: var(--color-primary);
    border-radius: 10px;
    padding: 1rem;
    color: var(--color-blanc);
}

.number2{
    font-size: 28px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background-color: var(--color-blanc);
    color: var(--color-second);
    border-radius: 50px;
}

.etape3{
    background-color: #FFFFFF;
    box-shadow: 0 0px 4px rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 1rem;
}

.number3{
    font-size: 28px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background-color: var(--color-primary);
    color: var(--color-blanc);
    border-radius: 50px;
}

.etape4{
    background-color: var(--color-primary);
    border-radius: 10px;
    padding: 1rem;
    color: var(--color-blanc);
}

.number4{
    font-size: 28px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 65px;
    height: 65px;
    background-color: var(--color-blanc);
    color: var(--color-second);
    border-radius: 50px;
}
/*================== SECTION 5 : TEMOIGNAGES ===================*/
#termoignage{
    padding-top: 151px;
}
.termoignage_container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.termoignage_container h2{
    padding-bottom: 52px;
}
.etiquette_temoignage{
    padding: 3px 10px 3px 10px;
    font-size: 11px;
    background-color: var(--color-blanc);
    box-shadow: 0 0px 3px rgba(0,0,0,0.2);
    border-radius: 50px;
}
.scroller__innerr{
  display: flex;
  gap: var(--gap);
  width: max-content;         /* largeur s’adapte au contenu */
  animation: scroll var(--speed) linear infinite;
}

.itemm{
  width: 369px;
  color: var(--color-second);
  padding: 1rem;
  background: var(--color-blanc);
  box-shadow: 0 0px 3px rgba(0,0,0,0.2);
  border-radius: 10px;
}
.temoi_des{
    padding-bottom: 30px;
}
.profil_temoignage{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
}
.profil_temoignage img{
    width: 56px;
    height: 56px;
}
.name_temoigange{
    display: flex;
    flex-direction: column;
    font-size: 13px;
}
.name_temoi{
    font-weight: bold;
}
.poste_temoi{
    opacity: .7;
}

/*================== SECTION 6 : TARIFS ===================*/
#tarifs{
    padding-top: 151px;
}
.titre_tarif{
    display: flex;
    text-align: center;
    justify-content: center;
}
.titre_tarif h2{
    width: 954px;
}
.tarif_container h2{
    padding-bottom: 65px;
}
.tarif{
    display: flex;
    gap: 20px;
}
.s_titre_tarif{
    font-family: 'Playfair Display';
    font-weight: 900;
    font-size: 23px;
    display: flex;
    gap: 10px;
    justify-content: start; 
    align-items: center;
    padding-bottom: 30px;
}
.s_titre_tarif img{
    height: 30px;
    width: 30px;
}

.s2_titre_tarif{
    font-family: 'Playfair Display';
    font-weight: 900;
    font-size: 23px;
    display: flex;
    gap: 10px;
    justify-content: start; 
    align-items: center;
    padding: 100px 0px 30px 0px;
}
.s2_titre_tarif img{
    height: 30px;
    width: 30px;
}
.basique{
    background-color: #FFFFFF;
    box-shadow: 0 0px 3px rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.standard{
    background-color: #FFFFFF;
    box-shadow: 0 0px 3px rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.premium{
    background-color: #FFFFFF;
    box-shadow: 0 0px 3px rgba(0,0,0,0.2);
    border-radius: 10px;
    padding: 1rem;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.check_true{
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 6px;
}
.check_flase{
    display: flex;
    justify-content: start;
    align-items: center;
    color: #ED1440;
    gap: 6px;
}
.check_true img{
    width: 24px;
    height: 24px;
}
.check_flase img{
    width: 24px;
    height: 24px;
}

.populaire{
    display: flex;
    gap: 6px;
}
.populaire img{
    width: 15px;
    height: 15px;
}
.plus_populaire{
    padding: 2px 4px 2px 4px;
    font-size: 11px;
    display: flex;
    gap: 3px;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    background-color: var(--color-primary);
    color: var(--color-blanc);
}
.liste_pack{
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 13px;
    padding-bottom: 50px;
}

.bouton_pack1{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--color-second);
    padding: 10px 0px 10px 0px;
    border-radius: 10px;
    
}
.bouton_pack1 a{
    color: var(--color-blanc);
}

.bouton_pack2{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: var(--color-primary);
    padding: 10px 0px 10px 0px;
    border-radius: 10px;
    
}
.bouton_pack2 a{
    color: var(--color-blanc);
}

.entete_basique{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.entete_standard{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.entete_premium{
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.statut_pack{
    font-size: 16px;
    font-weight: bold;
}
.price_pack{
    font-size: 28px;
    font-weight: bold;
}
.des_pack{
    opacity: .7;
    padding-bottom: 25px;
}


/*================== SECTION 7 : POURQUOI ===================*/
.pourquoi_container h2{
    padding-top: 151px;
    text-align: center;
}
.titre_pourquoi{
    display: flex;
    justify-content: center;
}
.titre_pourquoi h2{
    width: 954px;
}

.pourquois{
    padding-top: 69px;
    display: flex;
    gap: 20px;
    
}

.ne_faisons_pas{
    width: 100%;
    padding: 1rem;
    background-color: rgba(237,20,64,0.1);
    border: 1px solid #ED1440;
    display: flex;
    flex-direction: column;
    gap: 36px;
    justify-content: start;
    border-radius: 10px;
}
.liste_faisons{
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.faisons1 img{
    width: 24px;
    height: 24px;
}
.faisons1{
    display: flex;
    gap: 6px;
    justify-content: start;
    align-items: center;
}

.faisons_parfait{
    width: 100%;
    padding: 1rem;
    background-color: rgba(3,210,107,0.1);
    border: 1px solid #03D26B;
    display: flex;
    flex-direction: column;
    gap: 36px;
    justify-content: start;
    border-radius: 10px;
}
.text_no{
    font-weight: bold;
}
.text_parfait{
    font-weight: bold;
}
/*================== SECTION 8 : OBTIENDREZ ===================*/
#obtients{
    padding-top: 151px;
}
.obtients_container h2{
    text-align: center;
    padding-bottom: 103px;
}
.ligne_obtient1{
    display: flex;
    gap: 20px;
    padding-bottom: 20px;
}
.ligne_obtient1 img{
    height: 306px;
    border-radius: 10px;
}

.ligne_obtient2{
    display: flex;
    gap: 20px;
}
.s2_obtient2{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.s1_obtient2 img{
    height: 100%;
    border-radius: 10px;
}

/*================== SECTION 9 : FAQ ===================*/
#faq{
    padding-top: 151px;
}
.titre_FAQ{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-bottom: 88px;
}
.titre_FAQ p{
    padding-top: 24px;
    width: 604px;
    text-align: center;
    opacity: .7;
}
.faq-container {
      width: 100%;
}
.faq-question img{
    width: 24px;
    height: 24px;
}

    .faq-item {
      background: #fff;
      border-radius: 8px;
      margin-bottom: 10px;
      box-shadow: 0 0px 3px rgba(0,0,0,0.2);
      overflow: hidden;
      transition: all 0.3s ease;
      width: 100%;
    }

    .faq-question {
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: bold;
      font-size: 16px;
    }

    .faq-question:hover {
      background: #f0f0f0;
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, padding 0.3s ease;
      padding: 0 20px;
      font-size: 15px;
      color: #555;
    }

    .faq-answer.open {
      padding: 15px 20px;
      max-height: 200px; /* Ajuste si besoin */
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    .arrow.rotate {
      transform: rotate(180deg);
    }
/*================== SECTION 10 : CONTACT ===================*/
#contact{
    padding: 151px 0px 151px 0px;
}

.contact_container{
    display: flex;
    justify-content: center;
}


.contact_container .card_contact{
    padding: 2rem;
    display: flex;
    gap: 17px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 0px 3px rgba(0,0,0,0.2);
    
}
.card_image{
    width: 210px;
    height: 100px;
}
.card_contact p{
    text-align: center;
}
.card_contact a{
    display: flex;
    background-color: var(--color-primary);
    color: var(--color-blanc);
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 8px 20px 8px 20px;
    border-radius: 10px;

}
.card_contact a img{
    width: 24px;
    height: 24px;
}

/*================== SECTION 11 : FOOTER ===================*/
.footer_container{
    color: var(--color-blanc);
    background-color: var(--color-second);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 50px;
    font-size: 11px;
}
.reseaux{
    display: flex;
    gap: 20px;
}
.reseaux a{
    color: var(--color-blanc);
}



/*=========== media tablle ===========*/
@media screen and (max-width: 1024px) {
    .container{
        width: var(--container-width-md);
    }
    
    nav button{
        display: inline-block;
        color: var(--color-primary);
        cursor: pointer;
        font-size: 2.4rem;
        background: transparent;
    }
    .nav_container{
        position: relative;
    }
    .nav_menu{
        position: fixed;
        top: 5rem;
        right: 0;
        height: fit-content;
        width: 18rem;
        flex-direction: column;
        gap: 0;
        z-index: 3;
        display: none; 
    }
    .bouton_contact{
        display: none;
    }
    .nav_menu li{
        width: 100%;
        height: 5.4rem;
        animation: flipNav 200ms ease forwards;
        transform-origin: top;
    }
    /* .nav_menu li:nth-child(2){
        animation-delay: 100ms;
    }
    .nav_menu li:nth-child(3){
        animation-delay: 200ms;
    }
    .nav_menu li:nth-child(4){
        animation-delay: 300ms;
    }
    .nav_menu li:nth-child(5){
        animation-delay: 400ms;
    } */
    
    .nav_menu li a{
        background: var(--color-second);
        color: white;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: -2rem 2rem 2rem rgba(0,0,0,0.2);
    }
    .nav_menu li a:hover{
        background: var(--color-primary);
        color: var(--color-blanc);
    }
   
    
    nav button#close-menu-btn{
        display: none;
    }

/*======================HEADER===============================*/
.header_container{
    padding-top: 15%;
}

.grand_titre h1{
    width: 654px;
}
.statis{
    display: flex;
    flex-direction: column;
}



/*================== SECTION 3 : BENEFICE ===================*/
.benefice_container h2{
    width: 654px;
}
.benefices{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
/*================== SECTION 4 : REALISATIONS ===================*/
.realisation_container h2{
    width: 654px;
    text-align: center;
}
/*================== SECTION 4 : ETAPES ===================*/
.etape_titre h2{
    width: 654px;
}
.image_card_etape{
    display: none;
}
/*================== SECTION 5 : TEMOIGNAGES ===================*/
.termoignage_container h2{
    width: 654px;
    text-align: center;
}
/*================== SECTION 6 : TARIFS ===================*/
.titre_tarif h2{
    width: 654px;
    text-align: center;
}
.titre_tarif{
    display: flex;
    justify-content: center;
}
.tarif{
    display: flex;
    flex-direction: column;
}
/*================== SECTION 7 : POURQUOI ===================*/
.titre_pourquoi h2{
    width: 654px;
}
/*================== SECTION 8 : OBTIENDREZ ===================*/
.ligne_obtient1{
    display: flex;
    flex-direction: column;
}
.ligne_obtient1 img{
    height: 100%;
}
}
/*============ PHONE ==============*/

@media screen and (max-width: 600px) {
    .header_message{
        display: none;
    }
    .nav_container{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .container{
        width: var(--container-width-sm);
    }
    .nav_logo{
        display: flex;
        align-items: center;
        width: 4rem;
    }
    .nav_container button{
        font-size: 2rem;
        
    }
    .window-scrolled{
        margin-top: 20px;
        width: 90%;
        margin-left: 5%;
        background-color: rgba(246, 246, 246, 0.7);
        font-size: 13px;
        height: 4rem;
        backdrop-filter: blur(4px);
        box-shadow: 0 0px 4px rgba(0,0,0,0.2);
        border-radius: 10px;
    }
    /*=====================================================*/
    /*==================Header mobile======================*/
    .header_container{
        padding-top: 25%;
    }
    .header_message .profil_message{
        width: 50px;
        height: 20px;
    }
    .message_des{
        font-size: 8px;
    }
    .grand_titre h1{
        font-size: 23px;
        width: 100%;
    }
    .header_des{
        width: 100%;
    }
    .header_message{
        padding-bottom: 10px;
    }
    .bouton_header{
        display: flex;
        flex-direction: column;
    }
    .header_image img{
        height: 230px;
        width: 100%;
    }
    /*================== SECTION 2 : VIDEO DEMO ===================*/
    video{
        height: 246px;
        width: 100%;
    }
    /*================== SECTION 3 : BENEFICE ===================*/
    .benefice_container h2{
        font-size: 23px;
        width: 100%;
    }
    .benefices{
        display: grid;
        grid-template-columns: repeat(1,1fr);
    }
    /*================== SECTION 4 : REALISATIONS ===================*/
    .realisation_message p{
        font-size: 8px;
    }
    .realisation_entete h2{
        font-size: 23px;
        width: 100%;
    }
    .realisation_entete  .realisation_des{
        width: 100%;
    }
    .realisations{
        grid-template-columns: repeat(1,1fr);
    }
    /*================== SECTION 4 : ETAPES ===================*/
    .etape_titre h2{
        width: 100%;
        font-size: 23px;
    }
    .image_card_etape{
        display: none;
    }
    /*================== SECTION 5 : TEMOIGNAGES ===================*/
    .termoignage_container h2{
        width: 100%;
        font-size: 23px;
    }
    /*================== SECTION 6 : TARIFS ===================*/
    .titre_tarif h2{
        width: 100%;
        font-size: 23px;
    }
    .tarif{
        display: flex;
        flex-direction: column;
    }
    /*================== SECTION 7 : POURQUOI ===================*/
    .pourquoi_container h2{
        width: 100%;
        font-size: 23px;
    }
    .pourquois{
        display: flex;
        flex-direction: column;
    }
    /*================== SECTION 8 : OBTIENDREZ ===================*/
    .obtients_container h2{
        width: 100%;
        font-size: 23px;
    }
    .ligne_obtient2{
        display: flex;
        flex-direction: column;
    }
    /*================== SECTION 9 : FAQ ===================*/
    .titre_FAQ h2{
        text-align: center;
        font-size: 23px;
        width: 100%;
    }
    .titre_FAQ p{
        width: 100%;
    }
    .faq-question{
        font-size: 13px;
    }
    /*================== SECTION 10 : CONTACT ===================*/
    .contact_container .card_contact{
        width: 100%;
    }
    .card_contact h5{
        text-align: center;
    }

    /*================== SECTION 11 : FOOTER ===================*/
    .footer_container{
        display: flex;
        gap: 10px;
        flex-direction: column;
    }
}
