/*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:2vh;
    width: 99vw;
    padding:1vh;
    display:flex;
    justify-content: space-between;  
    background-color:white;
    z-index:100;
}

header .onglet{
    width:24%;
}

header .onglet h2{
    border-bottom:1px solid black;
    font-weight:normal;
    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 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:0vh;
    overflow-y: hidden;
    transition: all ease 0.5s;
}

/*SECTION PROJETS --------------------*/
/*------------------------------------*/

.containerImage {
    width: 50%;
    position:absolute;
    margin-top:4vh;
    padding-left:50%;
    height: 96vh;
    overflow-y: scroll;
    z-index: -1;
}

.containerProjet{
    width: 100%;
    display:flex;
    flex-direction: column;
}

.containerProjet img{
    width: 100%;
    margin-bottom: 1vh;
}

.colonnes a:hover{
    text-decoration: underline 1px;
    text-underline-position: under;
}

#title{
    position:fixed;
    top:25vh;
    left:1vh;
}

#title strong{
    display:none;
}

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

.colonnes{
    display:flex;
    justify-content: space-around;
    position:fixed;
    top:30vh;
    width:49%;
    opacity:1;
}

.colonnes div:nth-child(1){
    width:62%;
    font-size:1.64vh;
}

.colonnes div:nth-child(2){
    width:32%;
    font-size:1.64vh;
}

.Menu{
    position:absolute;
    bottom:0;
    padding:1vh;
    font-size:1.64vh;
    line-height: 1.2;
    width:48%;
    z-index:1000;
    z-index:100;
    display:block;
}

.Menu a:hover{
    cursor:pointer;
    text-decoration: underline 1px;
    text-underline-position: under;
}

.retourAccueil{
    display:none;
}

#bouton-infos-mobile{
    display:none;
}

/*ESPACES FINES INSÉCABLES -----------*/
/*------------------------------------*/

em{
  font-size: 40%;
}

/*CHARGEMENT DES IMAGES --------------*/
/*------------------------------------*/

.fade-in {
    opacity: 0;
    filter: brightness(2);
}

.fade-in-active {
    opacity: 1;
    filter: brightness(1);
    transition: opacity 0.5s ease, filter 1s ease;
}
