/*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;
}

::-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:none;
}

header{
    position:fixed;
    height:28vh;
    width: 99vw;
    padding:1vh;
    display:flex;
    justify-content: space-between;  
    background-color:white;
    border-bottom:1px solid black;
    z-index:100;
}

header .onglet{
    width:24%;
}

header .onglet h2{
    border-bottom:1px solid black;
    font-weight:lighter;
    font-size:1.64vh;
    margin-bottom:0.5vh;
    height:20px;
    width:100%;
    cursor:pointer;
}

header .onglet p{
    font-weight:normal;
    font-size:1.64vh;
    margin-bottom:0.5vh;
    width:100%;
}

header .double-onglet{
    width:24%;
    display:flex;
    justify-content: space-between;
}

header .double-onglet h2{ 
    border-bottom:1px solid black;
    font-size:1.64vh;
    height:20px;    
    font-weight:normal;
    cursor:pointer;
    margin-bottom:0.5vh;
}

header .double-onglet div:nth-child(1){ 
    width:75%;  
}

header .double-onglet h2:nth-child(2){ 
    cursor:pointer;
}

header .double-onglet p{
    font-weight:normal;
    font-size:1.64vh;
    margin-bottom:0.5vh;
    width:75%;    
}

a {
    color:inherit;
    text-decoration: none;
}

a:hover {
    color:red;
    text-decoration: none;
}

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

#infos-contact a {
    text-decoration: underline;
}

#titreMentionLegales{
    position:absolute;
    bottom:1%;
}

h1{
    font-weight: lighter;
    font-size:3.75vh;
    font-family: 'IBM-Plex-Sans_Light', sans-serif;
}

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

section{
    position:absolute;
    top:30vh;
    width:99vw;
    margin:1vh 0.5vw;
    padding-bottom:3vh;
    display:flex;
    justify-content: space-between;
}

.colonne{
    width:24%;
    background-color: white;
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: visible;
    padding:0;
    margin:0;
}

.colonne:nth-child(4){
    justify-content: space-between;
}

.colonne:nth-child(2), .colonne:nth-child(3){
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    font-size:1.64vh;
}

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

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

