/*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 CV */
/*------------------------------------*/

.containerImage{
    position:absolute;
    top:15vh;
    width:96vw;
    height: 83vh;
    margin:1vh 2vw;
    padding-left:0;
    padding-bottom:0;
    overflow-y: scroll;
}

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

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

.Menu{
    display:none;
}

.retourAccueil{
    display:block;
    margin-top:7vh;
    font-size:4.5vw;
}

#title{
    position:fixed;
    top:8vh;
    left:0;
    display:block;
    font-family: 'IBM-Plex-Sans_Regular', sans-serif;
    font-size:4.5vw;
    background-color:white;
    width:96vw;
    padding:1vh 2vw;
    border-bottom:2px solid black;
}

#title strong{
    display:block;
    font-family: 'IBM-Plex-Sans_Regular', sans-serif;
    font-weight:lighter;
}

#title strong em{
    font-size: 60%;
    font-style: normal;
}

.colonnes{
    display:flex;
    flex-direction: column;
    justify-content: flex-start;
    position:fixed;
    top:16vh;
    height:1vh;
    width:100vw;
}

.colonnes div:nth-child(1){
    width:96vw;
    font-size:3vw;
    background-color:white;
    padding:1vh 2vw 1vh 2vw;
    visibility: hidden;
}

.colonnes div:nth-child(2){
    width:96vw;
    font-size:3vw;
    margin-top:-2px;
    padding:2vw;
    background-color:white;
    border-bottom:2px solid black;
    visibility: hidden;
}

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

