/*PARAMÈTRES DE LA PAGE --------------*/
/*------------------------------------*/

html, body, * {
    margin: 0;
    padding:0;
    font-family: 'IBM-Plex-Sans_Regular', sans-serif;
}

body{
    background-color: white;
    font-family: 'IBM-Plex-Sans_Regular', sans-serif;
    width:100vw;
    overflow-x: hidden;
}

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

/*TYPOGRAPHIES -----------------------*/
/*------------------------------------*/

@font-face { 
    font-family: 'IBM-Plex-Sans_Light';
    src: url('../../Fontes/IBMPlexSans-Light.eot');
    src: url('../../Fontes/IBMPlexSans-Light.eot?#iefix') format('embedded-opentype'),
       url('../../Fontes/IBMPlexSans-Light.woff2') format('woff2'),
       url('../../Fontes/IBMPlexSans-Light.woff') format('woff'),
       url('../../Fontes/IBMPlexSans-Light.ttf') format('truetype'),
       url('../../Fontes/IBMPlexSans-Light.otf') format('opentype');
}

@font-face { 
    font-family: 'IBM-Plex-Sans_Regular';
    src: url('../../Fontes/IBMPlexSans-Regular.eot');
    src: url('../../Fontes/IBMPlexSans-Regular.eot?#iefix') format('embedded-opentype'),
       url('../../Fontes/IBMPlexSans-Regular.woff2') format('woff2'),
       url('../../Fontes/IBMPlexSans-Regular.woff') format('woff'),
       url('../../Fontes/IBMPlexSans-Regular.ttf') format('truetype'),
       url('../../Fontes/IBMPlexSans-Regular.otf') format('opentype');
}

/*PARAMÈTRES DU HEADER ---------------*/
/*------------------------------------*/

#bouton-wrapper-mobile{
    display:block;
    height:3.5vh;
    margin-bottom:0.5vh;
    width:10vw;
    cursor:pointer;
}

.wrapper-up{
    visibility: visible;
}

.wrapper-down{
    visibility: hidden;
}

header {
    position:fixed;
    height:4vh;
    width: 97vw;
    overflow-y: hidden;
    background-color:white;
    padding:2vh 1.5vw;
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    border-bottom:2px solid black;
    z-index:100;
    transition: height 0.5s;
}

header .onglet:nth-child(1){
    width:97%;
    display:flex;
    justify-content: space-between;
    position:absolute;
}

header .onglet h2, header .double-onglet h2{
    border-bottom:2px solid black;
    font-size:2.4vh;
    margin-bottom:0.5vh;
    height:3.5vh;
    width:80vw;    
    cursor:default;
    font-weight:lighter;
}

header .onglet:nth-child(2), header .onglet:nth-child(3), header .double-onglet{
    margin-top:2vh;
    position:relative;
    top:4vh;
}

header .double-onglet{
    width:100%;
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
}

#biographie, #infos-contact{
    height:0vh;
    overflow-y: hidden;
    transition:all ease 0.5s;
}

#titreMentionLegales{
    display:none;
}

/*SECTION CONTENANT LES 4 COLONNES ---*/
/*------------------------------------*/

section{
    position:absolute;
    top:8vh;
    width:96vw;
    margin:1vh 2vw;
    padding-bottom:0;
    display:flex;
    flex-direction:column;
    justify-content: space-between;
}

.colonne{
    width:100%;
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: visible;
    padding:0;
    padding-bottom:3vh;
    margin:0;
}

.colonne p{
    font-size:2.4vh;
}

.colonne .colonne-bloc-infos{
    font-size:2.4vh;
}

.colonne:nth-child(4) p{
    width:100%;
}

