
.presentation{
    margin-top: calc(0.5*var(--margesectiontop));
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: relative;
}
.texte_presentation{
    background-color: var(--gris1);
    box-shadow: var(--ombre2);
    width: 70%;
    padding: 2vw;
  
}
.lien_menu{
position: absolute;
top: 85%;
left: 70%;
}

.fonctionnement{
    margin-top: calc(0.5*var(--margesectiontop));
}
.container_fonctionnement{
    display: flex;
    flex-direction: row;
}
.sample_fonctionnement{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.texte_fonctionnement{
    border: var(--cadrejaune);
    padding: 3vw;
    width: 90%;
    height: fit-content;
}
.tarif{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}
.texte_fonctionnement ul{
    padding: 1vw;
    color: var(--gris3);
    font-family: var(--typo2);
    line-height: var(--hauteurligne);
    font-weight: bolder;
}
.texte_fonctionnement ul li{
    font-weight: 100;
    padding: 0 0.5vw ;
}
.mot_chef{
    margin-top: calc(0.5*var(--margesectiontop));
    position: relative;
}
.mot_chef i{
    height: 10vh;
    color: var(--bleu);
    font-size: 12vmin;
    position: absolute;
    top: -20%;
}
.titre_mot_chef{
    color: var(--bleu);
    font-family: var(--typo1);
    font-size: calc(40*var(--res));
}
.texte_chef{
    border: var(--cadrebleu);
    padding: 3vw;
    width: 90%;
}
.nom_temoin{
    font-family: var(--typo1);
    font-size: calc(20*var(--res));
}
.cadre_ideal{
    margin-top: calc(0.5*var(--margesectiontop));
}
.container_cadre{
    display: flex;
    flex-direction: row;
}
.sample_cadre{
    display: flex;
    flex-direction: row;
}
.visuel_cadre{
    width: 60%;
}
.texte_cadre{
    width: 40%;
    background-color: var(--gris1);
    box-shadow: var(--ombre2);
    padding: 3vw;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.temoin{
    display: flex;
    flex-direction: row;
}
#chef_img{
    width: 20%;
}
#chef_img img{
    width: 100%;
}
#chef_texte{
    padding: 3vmin;
}
  @media screen and (max-width: 840px){
      .texte_presentation{
          width: 100%;
      }
      .lien_menu{
          position: relative;
          left: unset;
          top: unset;
      }
      .texte_fonctionnement{
          width: 100%;
      }
      .texte_chef{
          width: 100%;
      }
      .sample_cadre{
          flex-direction: column-reverse;
      }
      .texte_cadre{
          width: 100%;
      }
      .visuel_cadre{
          width: 100%;
      }
      .tarif{
        flex-direction: column;
      }
      .temoin{
        flex-direction: column;
        align-items: center;
      }
      #chef_img{
        width: 85%;
      }
      #chef_texte{
        padding: 0;
      }
      .mot_chef i{
        top: -8%;
      }
  }
  @media screen and (max-width: 500px){
    .nom_temoin{
    font-size: calc(30*var(--res));
    }
  }