*{
    margin: 0;
    padding: 0;
    outline: 0 !important;
}

button:focus { outline:0 !important; }

button:focus { outline:0 !important; }

body{
    background: #ffffff;
    font-family: 'Roboto';
    box-sizing: border-box;
    overflow-x: hidden;
}

header{
    position: fixed;
    width: 600px;
    height: 100vh;
    box-sizing: border-box;
    background-color: rgba(0,0,0,1);
    left: -520px;
    border-right: 1px solid #000000;
    transition: all .3s ease-in-out;
    z-index: 10000;
}

header.active{
    left: 0px;

    transition: all .3s ease-in-out;
}

i{
    font-family: 'fontawesome';
    font-style: normal;
}

header div#btnHeader{
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 100%;
    position: absolute;
    right: 25px;
    top: 25px;
}

header div#btnHeader i.fa-bars.active, header div#btnHeader i.fa-times.active{
    color: #ffffff;
    font-size: 35px;
    width: 35px;
    height: 35px;
    text-align: center;
    opacity: 1;
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(0deg);
    transition: all .3 ease-in-out;
}

header div#btnHeader i.fa-bars, header div#btnHeader i.fa-times{
    opacity: 0;
    transform: rotate(180deg);
    transition: all .3 ease-in-out;
}

a.link-logo{
    border-bottom: 0px !important;
}

header a.link-logo:hover{
    border-bottom: 0px dashed #000000 !important;
    padding: 0;
}

header img{
    width: 250px;
    margin-top: 75px;
    margin-left: 50%;
    transform: translateX(-50%);
}

ul{
    list-style: none;
    list-style-type: none;
}

header ul{
    width: 100%;
    text-align: center;
    margin-top: 50px;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
}

header ul li{
    color: #ffffff;
    margin-bottom: 50px;
    letter-spacing: 4px;
}

header div#contact{
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 30px;
    box-sizing: border-box;
    padding: 35px 0 20px;
}

header h1{
    color: #ffffff;
    font-size: 30px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

header h2{
    margin-bottom: 15px;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 4px;
    font-weight: 400;
}

div.ligne{
    width: 125px;
    height: 4px;

    /*background-color: rgb(155,0,0);*/

    background-color: rgb(186,132,51);

    /*border-radius: 100px;*/
    margin-bottom: 15px;
    margin-left: 50%;
    transform: translateX(-50%);
}

div#contact ul{
    font-size: 12px;
    margin-top: 0px;
}

div#contact ul li{
    margin-bottom: 15px;
}

header a{
    text-decoration: none;
    color: #ffffff;
    padding-bottom: 4px;
    border-bottom: 2px dashed #000000;
    transition: all .3s ease;
}

header a.linkActive, header a:hover{
    color: rgb(186,132,51);
    border-bottom: 2px dashed rgb(186,132,51);
    transition: all .3s ease;
}

a.linkText{
    text-decoration: none;
    color: #000000;
    font-weight: 900;
    border-bottom: 2px dashed #000000;
    padding-bottom: 4px;
    transition: all .3s ease;
}

a.linkText:hover{
    color: rgb(186,132,51);
    border-bottom: 2px dashed rgb(186,132,51);
    transition: all .3s ease;
}

section{
    width: 100%;
}

/*PAGE ACCUEIL*/
    section#blocLogo{
        background: url('../img/bg-website.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;

        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    section#blocLogo div img.logoBig{
        width: 100%;
        opacity: 0;
        margin-bottom: 25px;
        animation-name: topToBottom;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-out;
    }

    @keyframes topToBottom{
        from{
            margin-top: -100px;
            opacity: 0;
        }

        to{
            margin-top: 0px;
            opacity: 1;
        }
    }

    section#blocLogo div h1{
        width: 100%;
        opacity: 0;
        margin: 0;
        color: #ffffff;
        text-transform: uppercase;
        font-weight: 400;
        font-size: 35px;
        letter-spacing: 5px;
        text-align: center;
        animation-name: opacityAnim;
        animation-duration: 1s;
        animation-delay: 0.75s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-out;
    }

    section#blocLogo div.ligne{
        margin-top: 25px;
        width: 100%;
        height: 6px;
        opacity: 0;

        /*background: rgb(231,0,0);
        background: -moz-linear-gradient(90deg, rgba(231,0,0,1) 0%, rgba(155,0,0,1) 100%);
        background: -webkit-linear-gradient(90deg, rgba(231,0,0,1) 0%, rgba(155,0,0,1) 100%);
        background: linear-gradient(90deg, rgba(231,0,0,1) 0%, rgba(155,0,0,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#e70000",endColorstr="#9b0000",GradientType=1);
        border: 0px solid rgb(155,0,0);*/

        background: rgba(255,211,97,1);
        background: -moz-linear-gradient(left, rgba(255,211,97,1) 0%, rgba(186,132,51,1) 100%);
        background: -webkit-gradient(left top, right top, color-stop(0%, rgba(255,211,97,1)), color-stop(100%, rgba(186,132,51,1)));
        background: -webkit-linear-gradient(left, rgba(255,211,97,1) 0%, rgba(186,132,51,1) 100%);
        background: -o-linear-gradient(left, rgba(255,211,97,1) 0%, rgba(186,132,51,1) 100%);
        background: -ms-linear-gradient(left, rgba(255,211,97,1) 0%, rgba(186,132,51,1) 100%);
        background: linear-gradient(to right, rgba(255,211,97,1) 0%, rgba(186,132,51,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3e3c8', endColorstr='#e9d5b4', GradientType=1 );
        border: 0px solid rgb(155,0,0);

        /*border-radius: 100px;*/


        animation-name: opacityAnim;
        animation-duration: 1s;
        animation-delay: 0.75s;
        animation-fill-mode: forwards;
        animation-timing-function: ease-out;
    }

    section#blocLogo a{
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        color: #ffffff;
        text-decoration: none;
        font-size: 40px;
        animation-name: chevronDown;
        animation-duration: 1s;
        animation-iteration-count: infinite;
        animation-timing-function: ease-in-out;
    }

    @keyframes chevronDown{
        0%{
            bottom: 20px;
        }

        50%{
            bottom: 10px;
        }

        100%{
            bottom: 20px;
        }
    }

    section#blocLogo svg{
        width: 25px;
    }

    section#blocWorks{
        width: 100%;
        padding: 50px 15% 70px;
        box-sizing: border-box;
    }

    section#blocWorks h2{
        width: 100%;
        font-size: 35px;
        text-transform: uppercase;
    }

    section#blocWorks div.ligne{
        margin-left: 0;
        transform: translateX(0);
        margin: 15px 0 40px;
    }

    section#blocWorks div.blocDivWorks{
        display: inline-flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: 100%;
    }

    section#blocWorks div.divWork{
        width: 300px;
        height: 300px;
        margin-bottom: 50px;
        border-radius: 15px;
        box-shadow: 5px 20px 28px #ccc;
        box-sizing: border-box;
        cursor: pointer;
        transition: all .3s ease;
    }

    section#blocWorks div.divWork:hover{
        box-shadow: -5px -10px 28px #ccc;
        transition: all .3s ease;
    }

    section#blocWorks div.divWork img{
        position: absolute;
        width: 300px;
        height: 300px;
        border-radius: 15px;
    }

    div.divWork div.blocHover{
        position: relative;
        background-color: rgba(0,0,0,0.6);
        width: 100%;
        height: 100%;
        border-radius: 15px;
        opacity: 0;
        transition: all .3s ease;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    div.divWork:hover div.blocHover{
        opacity: 1;
        transition: all .3s ease;
     }

    div.divWork div.blocHover p{
        text-decoration: none;
        color: #ffffff;
        font-weight: 900;
        border-bottom: 2px dashed #ffffff;
        padding-bottom: 4px;
        font-size: 25px;
        text-transform: uppercase;
        margin-top: 30px;
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
        transition: all .6s ease;
    }

    div.divWork:hover div.blocHover p{
        margin-top: 0;
        transition: all .6s ease;
    }

    a.linkOverlay{
        width: 100%;
        height: 100%;
        position: absolute;
        margin-top: 0;
    }

    div.btnAllWorks{
        width: 100%;
        text-align: center;
        margin-top: 30px;
     }

     div.btnAllWorks a{
        font-size: 20px;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 400;
        line-height: 45px;
        border-bottom: 2px dashed #000000;
     }
/*FIN PAGE ACCUEIL*/

/*PAGE CURRICULUM*/
    #section-curriculum{
        margin-top: 0px;
        width: 70%;
        margin-left: 200px;
        padding: 30px 0;
    }

    #section-curriculum h1{   
        font-size: 45px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin: 0;
        opacity: 0;
        animation-name: opacityAnim;
        animation-duration: 2s;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
    }

    #section-curriculum h2{
        margin-bottom: 5px;
        text-transform: uppercase;
        font-size: 25px;
        letter-spacing: 4.7px;
        font-weight: 700;
        opacity: 0;
        animation-name: opacityAnim;
        animation-duration: 2s;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
    }

    p.miniBio{
        font-size: 15px;
        width: 650px;
        opacity: 0;
        animation-name: opacityAnim;
        animation-duration: 2s;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
    }

    @keyframes opacityAnim{
        from{
            opacity: 0;
        }

        to{
            opacity: 1;
        }
    }

    h3.title-curriculum{
        background-color: #000000;
        color: #ffffff;
        width: max-content;
        padding: 10px 30px;
        font-size: 22px;
        margin: 40px 0 25px;
        border-radius: 7px;
    }

    img.portrait-01{
        width: 200px;
        position: absolute;
        top: 25px;
        left: 890px;
    }

    div.bloc-cv{
        width: 100%;
    }

    div ul:not(.ulContact){
        width: 600px;
    }

    div ul:not(.programs) li{
        margin-bottom: 10px;
    }

    div#competences{
        margin-left: 0;
        opacity: 0;
        animation-name: slideLtoR;
        animation-iteration-count: 1;
        animation-delay: .3s;
        animation-duration: 1s;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
    }

    @keyframes slideLtoR{
        from{
            opacity: 0;
            margin-left: -100px;
        }

        to{
            opacity: 1;
            margin-left: 0px;
        }
    }

    div#competences ul.programs{
        display: inline-flex;
        justify-content: space-between;
        list-style-type: none;
        list-style: none;
        margin-bottom: 20px;
    }

    div#competences ul.programs li{
        width: 50px;
        height: 50px;
        color: #ffffff;
        display: inline-flex;
        align-items: center;
        box-sizing: border-box;
        cursor: default;
        border-radius: 10px;
        transition: .15s transform ease-in-out;
        cursor: pointer;
    }

    div#competences ul.programs li:hover{
        transform: scale(1.1);
        transition: .15s transform ease-in-out;
    }

    div#competences ul li p{
        width: 100%;
        text-align: center;
        font-size: 25px;
        font-weight: 700;
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
    }

    div#competences ul li.ps{
        background: rgb(0,67,153);
        background: -moz-linear-gradient(-45deg, rgba(0,67,153,1) 0%, rgba(0,113,240,1) 100%);
        background: -webkit-linear-gradient(-45deg, rgba(0,67,153,1) 0%, rgba(0,113,240,1) 100%);
        background: linear-gradient(-45deg, rgba(0,67,153,1) 0%, rgba(0,113,240,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#004399",endColorstr="#0071f0",GradientType=1);
        border: 3px solid rgb(0,67,153);
    }

    div#competences ul li.ai{
        background: rgb(235,133,0);
        background: -moz-linear-gradient(-45deg, rgba(235,133,0,1) 0%, rgba(255,201,0,1) 100%);
        background: -webkit-linear-gradient(-45deg, rgba(235,133,0,1) 0%, rgba(255,201,0,1) 100%);
        background: linear-gradient(-45deg, rgba(235,133,0,1) 0%, rgba(255,201,0,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#eb8500",endColorstr="#ffc900",GradientType=1);
        border: 3px solid rgb(235,133,0);
    }

    div#competences ul li.id{
        background: rgb(157,0,111);
        background: -moz-linear-gradient(-45deg, rgba(157,0,111,1) 0%, rgba(230,0,147,1) 100%);
        background: -webkit-linear-gradient(-45deg, rgba(157,0,111,1) 0%, rgba(230,0,147,1) 100%);
        background: linear-gradient(-45deg, rgba(157,0,111,1) 0%, rgba(230,0,147,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9d006f",endColorstr="#e60093",GradientType=1);
        border: 3px solid rgb(157,0,111);
    }

    div#competences ul li img{
        width: 100%;
        height: 100%;
    }

    div#competences ul.paragraph-text{
        line-height: 22px;
    }

    ul.lang{
        position: absolute;
        top: 275px;
        left: 850px;
        box-sizing: border-box;
        padding: 0px 50px;
        font-size: 14px;
        letter-spacing: 1px;
        font-weight: 700;
        text-transform: uppercase;
        animation-name: slideRtoL;
        animation-iteration-count: 1;
        animation-duration: 1s;
        animation-delay: .3s;
    }

    @keyframes slideRtoL{
        from{
            opacity: 0;
            left: 950px;
        }

        to{
            opacity: 1;
            left: 850px;
        }
    }

    div.percentageLang{
        display: inline-flex;
        margin: 5px 0 15px;
    }

    div.percentageLang div.active{
        width: 12px;
        height: 12px;
        transform: rotate(45deg);
        background: rgb(2,102,0);
        background: -moz-linear-gradient(0deg, rgba(2,102,0,1) 0%, rgba(4,184,0,1) 100%);
        background: -webkit-linear-gradient(0deg, rgba(2,102,0,1) 0%, rgba(4,184,0,1) 100%);
        background: linear-gradient(0deg, rgba(2,102,0,1) 0%, rgba(4,184,0,1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#026600",endColorstr="#04b800",GradientType=1);
        margin-left: 5px;
        box-shadow: 1px 1px 3px rgba(55,55,55,0.10);
    }

    div.percentageLang div.inactive{
        width: 15px;
        height: 15px;
        transform: rotate(45deg);
        background-color: #f1f1f1;
        margin-left: 5px;
    }

    li strong i{
        font-size: 15px;
        margin: 3px;
    }

    div#experiences{
        opacity: 0;
        animation-name: slideLtoR;
        animation-delay: .6s;
        animation-duration: .8s;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
    }

    div#formation{
        opacity: 0;
        animation-name: slideLtoR;
        animation-delay: .9s;
        animation-duration: .8s;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
    }

    div#interests{
        opacity: 0;
        animation-name: slideLtoR;
        animation-delay: 1.2s;
        animation-duration: .8s;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
    }

    div#experiences li, div#formation li{
        margin-bottom: 25px;
    }

    div#experiences li strong, div#formation li strong{
        color: #757575;
        font-size: 14px;
        text-transform: uppercase;
    }

    div#experiences li p, div#formation li p{
        margin-top: 5px;
        font-size: 18px;
        font-weight: 700;
    }

    div#experiences li p span, div#formation li p span{
        font-style: italic;
        font-size: 15px;
        font-weight: 400;
    }
/*FIN PAGE CURRICULUM*/

/*PAGE WORKS*/
    section#sectionWorks{
        padding-left: 80px;
        width: 100%;
        box-sizing: border-box;
        display: inline-flex;
        flex-wrap: wrap;
    }

    section#sectionWorks div.blocWork{
        width: 33.33%;
        box-sizing: border-box;
    }

    section#sectionWorks div.blocWork img{
        height: 100%;
        width: 100%;
    }

    section#sectionWorks div.blocWork .workOverlay{
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.6);
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        top: -101.1%;
        opacity: 0;
        transition: all .3s ease;
    }

    section#sectionWorks div.blocWork:hover .workOverlay{
        opacity: 1;
        transition: all .3s ease;
    }

    section#sectionWorks div.blocWork .workOverlay a{
        width: 100%;
        height: 100%;
        position: absolute;
    }

    section#sectionWorks div.blocWork .workOverlay p{
        position: absolute;
        text-decoration: none;
        color: #ffffff;
        font-weight: 900;
        border-bottom: 2px dashed #ffffff;
        padding-bottom: 4px;
        font-size: 25px;
        text-transform: uppercase;
        margin-top: 30px;
        -webkit-touch-callout: none; /* iOS Safari */
        -webkit-user-select: none; /* Safari */
        -khtml-user-select: none; /* Konqueror HTML */
        -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
        user-select: none; /* Non-prefixed version, currently supported by Chrome, Opera and Firefox */
        transition: all .6s ease;
    }

    section#sectionWorks div.blocWork:hover .workOverlay p{
        margin-top: 0;
        transition: all .6s ease;
    }
/*FIN PAGE WORKS*/

/*PAGE WORK GENERAL*/
    section#sectionWorks-02{
        width: 100%;
        box-sizing: border-box;
        display: inline-flex;
        flex-wrap: wrap;
    }

    section div.headerWork{
        width: 100%;
        height: 500px;

        box-sizing: border-box;

        text-align: center;
    }

    section.nature div.headerWork{
        background: url('../img/works/nature/headerWork.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    section.fadwa-caftan div.headerWork{
        background: url('../img/works/fadwa-caftan-elegance/headerWork.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    section.ffp div.headerWork{
        background: url('../img/works/ffp/headerWork.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    section.reciprocity div.headerWork{
        background: url('../img/works/reciprocity/headerWork.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    section.vie-nocturne div.headerWork{
        background: url('../img/works/vie-nocturne/headerWork.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    section.workshop-xm div.headerWork{
        background: url('../img/works/workshop-xm/headerWork.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    section.tension-mediatique div.headerWork{
        background: url('../img/works/tension-mediatique/headerWork.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    section.art-generatif div.headerWork{
        background: url('../img/works/art-generatif/headerWork.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    section.hannah-arendt div.headerWork{
        background: url('../img/works/hannah-arendt/headerWork.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    section.niquitin div.headerWork{
        background: url('../img/works/niquitin/headerWork.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    section.la-vieille div.headerWork{
        background: url('../img/works/la-vieille/headerWork.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    section.materiel div.headerWork{
        background: url('../img/works/materiel/headerWork.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    section.pizzapp div.headerWork{
        background: url('../img/works/pizzapp/headerWork.jpg');
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    /*section div.headerWork div.overlay{
        width: 100%;
        height: 500px;
        background-color: rgba(0,0,0,0.1);
        position: absolute;
    }*/

    section div.headerWork h1, section div.headerWork h2{
        width: 100%;
        text-align: center;
        color: #ffffff;
        text-transform: uppercase;
        text-shadow: 0px 3px 5px rgba(0,0,0,0.4);
    }

    section div.headerWork h2{
        margin: 175px 0 0;
        font-size: 25px;
        font-weight: 400;
        letter-spacing: 0.5px;
    }

    section div.headerWork h1{
        margin: 5px 0 50px;
        font-size: 65px;
        letter-spacing: 2px;
    }

    a#btnScrollDownWork{
        padding: 15px 30px;
        box-sizing: border-box;
        background-color: #ffffff;
        color: rgb(186,132,51);
        text-decoration: none;
        font-weight: 700;
        text-transform: uppercase;
        border-radius: 100px;
        letter-spacing: 0.8px;
        box-shadow: 0px 3px 10px rgba(0,0,0,0.4);
        transition: all .3s ease;
    }

    a#btnScrollDownWork:hover{
        background-color: rgb(186,132,51);
        color: #ffffff;
        transition: all .3s ease;
    }

    div#blocPageWork{
        width: 100%;
        padding: 20px 20px 50px 100px;
        box-sizing: border-box;
    }

    div#blocPageWork ul{
        display: inline-flex;
        font-size: 12px;
        text-transform: uppercase;
    }

    div#blocPageWork a.linkText{
        font-weight: 400;
        border: 0px;
    }

    div#blocPageWork a.linkText:hover{
        border: 0px;
    }

    div.firstWorkBloc{
        width: 100%;
        margin-top: 50px;
        display: inline-flex;
    }

    div.workDescription{
        font-size: 22px;
        font-weight: 400;
        padding: 5% 6%;
        width: 50%;
        box-sizing: border-box;
        line-height: 35px;
        letter-spacing: 1px;
        background-color: #e5e5e5;
        color: #333333;
        display: block;
        justify-content: center;
        align-items: center;
    }

    div.workDescription div{
        margin-top: 50%;
        transform: translateY(-50%);
    }

    div.workDescription i{
        margin-left: -35px;
        font-size: 55px;
        color: #c5c5c5;
    }

    div.workDescription p{
        margin-top: -30px;
    }

    div.firstWorkBloc img{
        width: 50%;
    }

    div.secondWorkBloc{
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    div.secondWorkBloc img{
        width: 50%;
    }

    section.ffp div.secondWorkBloc img:nth-child(1){
        box-sizing: border-box;
        border-top: 10px solid #000000;
        border-bottom: 10px solid #000000;
        border-left: 10px solid #000000;
    }

    section.ffp div.secondWorkBloc img:nth-child(2){
        box-sizing: border-box;
        border-top: 10px solid #000000;
        border-bottom: 10px solid #000000;
        border-right: 10px solid #000000;
    }

    div.thirdWorkBloc{
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 50px 0 0;
    }

    div.thirdWorkBloc img{
        box-shadow: 7px 7px 40px rgba(0,0,0,0.3)
    }

    section.vie-nocturne .workDescription{
        width: 100%;
        margin-top: 50px;
        border-left: 4px solid #ffffff;
        border-right: 4px solid #ffffff;
    }

    .row {
        display: flex;
        flex-wrap: wrap;
        padding: 0 0;
        max-width: 100%;
        margin: 0 auto;
    }

    .row img {
      width: 100%;
    }

    /* Create four equal columns that sits next to each other */
    .column {
        box-sizing: border-box;
        flex: 25%;
        max-width: 25%;
        padding: 0 4px;
    }

    .column img {
        margin-top: 8px;
        vertical-align: middle;
    }

    .art-generatif .column {
        flex: 33.33%;
        max-width: 33.33%;
    }

    /* Responsive layout - makes a two column-layout instead of four columns */
    @media (max-width: 800px) {
        .column {
            flex: 50%;
            max-width: 50%;
        }

        section.vie-nocturne .workDescription{
            border-left: 0px solid #ffffff;
            border-right: 0px solid #ffffff;
        }
    }

    /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
    @media (max-width: 600px) {
        .column, .art-generatif .column {
            padding: 0 0;
            flex: 100%;
            max-width: 100%;
        }
    }
/*FIN WORK GENERAL*/

/*CONTAINER GALLERY*/
    .container-gallery, .gallery{
        max-width: 100%;
        box-sizing: border-box;
    }

    .gallery{
        display: inline-flex;
        flex-wrap: wrap;
    }

    .gallery a{
        max-width: 33.33%;
    }

    .gallery a img{
        width: 100%;
        height: 100%;
    }

    .la-vieille .container-gallery{
        margin-top: 25px;
    }
/*FIN CONTAINER GALLERY*/

/*IFRAM PIZZAPP*/
    iframe {
        border: 2px solid #eee;
        border-radius: 35px;
        margin-left: 5%;
    }
/*FIN IFRAM PIZZAPP*/

/*FOOTER*/
    footer{
        width: 100%;
        text-align: center;
        border-top: 2px solid #e5e5e5;
        padding: 20px 0;
    }

    footer ul li{
        padding: 5px 0;
    }

    footer .linkText{
        font-weight: 400;
    }
/*FIN FOOTER*/

/*MEDIA QUERIES*/
    @media only screen and (max-width: 1750px){
        section#blocWorks div.blocDivWorks{
            justify-content: space-evenly;
        }
    }

    @media only screen and (max-width: 1450px){
        header ul{
            margin-top: 40px;
            font-size: 18px;
        }

        div.workDescription div{
            margin-top: 0%;
            transform: translateY(0%);
        }
    }

    @media only screen and (max-width: 1024px){
        header{
            width: 100%;
            left: -100%;
            top: 0%;
        }

        header.active{
            width: 100%;
            height: 100%;
            border-right: 0px solid black;
            transition: all .3s ease-in-out;
        }

        header img{
            width: 200px;
            margin-top: 50px;
        }

        header div#btnHeader{
            z-index: 1000;
            top: 13px;
        }

        header div#btnHeader i.fa-bars{
            background-color: rgba(0,0,0,0.97);
            box-shadow: 3px 0px 15px rgba(0,0,0,0.2);
            padding: 15px 20px;
            font-size: 35px;
            color: #ffffff;
            position: initial;
            margin-top: -45px;
            margin-left: 60px;
            opacity: 1;
            transition: all .1s ease-in-out;
        }

        header div#btnHeader i.fa-bars.active{
            background-color: rgba(0,0,0,0.97);
            box-shadow: 3px 0px 15px rgba(0,0,0,0.2);
            padding: 15px 20px;
            font-size: 35px;
            color: #ffffff;
            position: initial;
            margin-top: -45px;
            margin-left: 60px;
            opacity: 1;
            transition: all .1s ease-in-out;
        }

        div#blocPageWork ul{
            padding-left: 20px;
            width: 80%;
            box-sizing: border-box;
        }

        div#blocPageWork{
            padding: 20px 0 50px 0;
        }

        div.firstWorkBloc{
            display: block;
            margin-top: 20px;
        }

        div.thirdWorkBloc img{
            width: 90%;
        }

        .vie-nocturne div.workDescription{
            margin-top: 20px;
        }

        div.workDescription{
            width: 100%;
        }

        div.workDescription div{
            margin-top: 0;
            transform: translateY(0);
        }

        div.firstWorkBloc img{
            width: 100%;
        }

        iframe {
            margin-top: 50px;
            margin-left: 50%;
            transform: translateX(-50%);
        }

        #section-curriculum{
            margin-top: 85px;
            margin-left: 0;
            width: 100%;
            padding: 0 30px 30px;
            box-sizing: border-box;
        }

        #section-curriculum h1{
            font-size: 25px;
            letter-spacing: 4px;
        }

        #section-curriculum h2{
            font-size: 16px;
            letter-spacing: 3px;
            margin-bottom: 15px;
        }

        p.miniBio{
            line-height: 22px;
            width: 300px;
        }

        img.portrait-01{
            left: 450px;
            top: 75px;
        }

        div ul{
            width: 100% !important;
        }

        h3.title-curriculum{
            /*max-width: 65%;*/
            font-size: 20px;
        }

        div#competences ul.programs{
            width: 50% !important;
        }

        div#competences ul.programs li{
            width: 40px;
            height: 40px;
            border-radius: 7px;
        }

        div#competences ul li.ps{
            border: 3px solid rgb(0,67,153);
        }

        div#competences ul li.ai{
            border: 3px solid rgb(235,133,0);
        }

        div#competences ul li.id{
            border: 3px solid rgb(157,0,111);
        }

        div#competences ul li p{
            font-size: 20px;
        }

        div.percentageLang{
            margin-top: 10px;
        }

        ul.lang{
            width: 100%;
            position: initial;
            padding: 0;
            margin-top: 20px;
            font-size: 15px;
        }

        div.percentageLang div{
            width: 15px !important;
            height: 15px !important;
            margin-left: 6px !important;
        }

        section#sectionWorks{
            padding-left: 0;
        }
    }

    @media only screen and (max-width: 768px){
        section#blocLogo{
            display: block;
        }

        section#blocLogo div.containerLogo{
            width: 90%;
            padding-top: 150px;
            margin-left: 50%;
            transform: translateX(-50%);
        }

        section#blocLogo div h1{
            font-size: 20px;
            letter-spacing: 2.8px;
        }

        section#blocLogo a{
            top: 85%;
        }

        @keyframes chevronDown{
            0%{
                top: 85%;
            }

            50%{
                top: 87%;
            }

            100%{
                top: 85%;
            }
        }

        section#blocWorks{
            padding: 90px 0 70px;
        }

        section#blocWorks h2{
            text-align: center;
        }

        section#blocWorks div.ligne{
            margin-left: 50%;
            transform: translateX(-50%);
        }

        section#blocWorks div.blocDivWorks{
            justify-content: space-around;
        }

        div.btnAllWorks a{
            font-size: 18px;
        }

        section#sectionWorks{
            padding: 0 0 0;
        }

        section#sectionWorks div.blocWork{
            width: 50%;
        }

        section.nature div.headerWork{
            background: url('../img/works/nature/headerWork-mobile.jpg');
        }

        section.ffp div.headerWork{
            background: url('../img/works/ffp/headerWork-mobile.jpg');
        }

        section.reciprocity div.headerWork{
            background: url('../img/works/reciprocity/headerWork-mobile.jpg');
        }

        section.vie-nocturne div.headerWork{
            background: url('../img/works/vie-nocturne/headerWork-mobile.jpg');
        }

        section.tension-mediatique div.headerWork{
            background: url('../img/works/tension-mediatique/headerWork-mobile.jpg');
        }

        section.pizzapp div.headerWork{
            background: url('../img/works/pizzapp/headerWork-mobile.jpg');
        }

        a#btnScrollDownWork:hover{
            background-color: #ffffff;
            color: rgb(186,132,51);
        }

        div#blocPageWork ul{
            padding: 20px;
            width: 100%;
            box-sizing: border-box;
            justify-content: flex-end;
        }

        div#blocPageWork{
            padding: 0 0 50px;
        }

        div.workDescription{
            padding: 5% 15%;
        }

        div.thirdWorkBloc img{
            width: 90%;
        }

        /*DELETE HOVER TABLET/MOBILE*/
            section#blocWorks div.divWork:hover{
                box-shadow: 5px 20px 28px #ccc;
            }

            div.divWork div.blocHover{
                opacity: 1;
                background-color: transparent;
            }

            div.divWork div.blocHover p{
                display: none;
            }

            section#sectionWorks div.blocWork .workOverlay{
                opacity: 1;
                background-color: transparent;
            }

            section#sectionWorks div.blocWork .workOverlay p{
                display: none;
            }
        /*FIN DELETE HOVER TABLET/MOBILE*/
    }

    @media only screen and (max-width: 500px){
        section#blocWorks div.blocDivWorks{
            display: flex;
            justify-content: center;
        }

        section#sectionWorks div.blocWork{
            width: 100%;
        }

        section.fadwa-caftan div.headerWork h2, section.ffp div.headerWork h2{
            margin-top: 110px;
        }

        section.fadwa-caftan div.headerWork h1, section.ffp div.headerWork h1{
            font-size: 55px;
        }

        section.reciprocity div.headerWork h1, section.vie-nocturne div.headerWork h1, section.workshop-xm div.headerWork h1, section.tension-mediatique div.headerWork h1{
            font-size: 45px;
        }

        #section-curriculum h1{
            margin-top: 210px;
        }

        #section-curriculum h2{
            margin-bottom: 5px;
        }

        p.miniBio{
            width: 100%;
        }

        img.portrait-01{
            left: 50%;
            transform: translateX(-50%);
            top: 30px;
            width: 150px;
        }

        div#competences ul.programs{
            width: 100% !important;
            flex-wrap: wrap;
            margin-bottom: 0px;
        }

        div#competences ul.programs li{
            margin-right: 30px;
            margin-bottom: 20px;
        }

        section.nature div.headerWork{
            background-position: -25px;
        }

        div.workDescription{
            padding: 8% 15%;
        }

        div.workDescription p{
            font-size: 18px;
            margin-top: -32px;
            line-height: 25px;
        }

        div.secondWorkBloc{
            display: block;
            width: 100%;
        }

        div.secondWorkBloc img{
            width: 100%;
        }

        div.secondWorkBloc img.firstImg{
            margin-top: 20px;
        }

        div.secondWorkBloc img.secondImg{
            margin-top: -10px;
        }

        section.ffp div.secondWorkBloc img.firstImg{
            margin-top: -5px;
        }

        iframe {
            border: 0px solid transparent !important;
            margin-left: 0% !important;
            transform: translateX(0%) !important;
        }
        
        section.ffp div.secondWorkBloc img:nth-child(1){
            box-sizing: border-box;
            border-top: 7px solid #000000;
            border-bottom: 0px solid #000000;
            border-left: 7px solid #000000;
            border-right: 7px solid #000000;
        }

        section.ffp div.secondWorkBloc img:nth-child(2){
            box-sizing: border-box;
            border-top: 7px solid #000000;
            border-bottom: 7px solid #000000;
            border-left: 7px solid #000000;
            border-right: 7px solid #000000;
        }

        section.art-generatif div.secondWorkBloc img:nth-child(1){
            box-sizing: border-box;
            border-top: 7px solid #d0d0d0;
            border-bottom: 0px solid #d0d0d0;
            border-left: 7px solid #d0d0d0;
            border-right: 7px solid #d0d0d0;
        }

        section.art-generatif div.secondWorkBloc img:nth-child(2){
            box-sizing: border-box;
            border-top: 7px solid #d0d0d0;
            border-bottom: 7px solid #d0d0d0;
            border-left: 7px solid #d0d0d0;
            border-right: 7px solid #d0d0d0;
        }

        .container-gallery, .gallery{
            max-width: 100%;
            box-sizing: border-box;
        }

        .gallery{
            display: inline-flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin-top: 10px;
        }

        .gallery a{
            max-width: 100%;
        }

        .gallery a img{
            width: 100%;
            margin-bottom: 10px;
        }

        .gallery a:last-child img{
            margin-bottom: 0px;
        }

        .la-vieille .container-gallery{
            margin-top: 0px;
        }
    }