html, body{
    padding : 0;
    margin : 0;
    font-family: "freight-text-pro", "Georgia", sans-serif !important;
    overflow: hidden;
    line-height: 1.15 !important;
}

body .h3{
    font-size: 1.6rem;
}
html body{
    background:url("/img/backgroundTest.jpg") no-repeat center fixed;
    -webkit-background-size:cover;
    background-size:cover;
    background-size: 0px;
}



#home{
    overflow: hidden;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}


/* tablette */
section#tablette{
    background:url("/img/Encran_tablette_detour.png") no-repeat;
    width : 900px;
    height : 700px;
    -webkit-background-size : cover;
    background-size : cover;
    opacity : 0;
}

/* #tablette img{
    position : absolute;
    height: inherit;
    width: inherit;
} */

/* fin tablette */


/* user/mdp */

#inputNamePassword{
    font-size : 1.6em;
    position : relative;
    -webkit-transition: opacity 0.5s ease;
    -moz-transition: opacity 0.5s ease;
    -ms-transition: opacity 0.5s ease;
    -o-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    margin: auto;
    max-width: 404px;
    margin-top: 120px;
    z-index: 99;
    z-index: 99;
}

#inputNamePassword #mdp{
    margin-top : 35px;
}

#inputNamePassword div{
    border : 2px solid white;
    height : 50px;
    width : 100%;
    border-radius : 6px;
    -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.2), 0 0 1.2em rgba(255, 255, 255, 0.2);
    -moz-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.2), 0 0 1.2em rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.2), 0 0 1.2em rgba(255, 255, 255, 0.2);
    color : darkorange;
    background-color: rgba(255,255,255,0.3);
}

#inputNamePassword p{
    margin-bottom : 3px;
}

/* fin user/mdp */


/*button login home*/

#loginButton{
    margin: auto;
    max-width: 404px;
    z-index: 99;
    position: relative;
}

#buttonHomeNext{
    cursor: not-allowed;
    pointer-events: none;

    position: relative;
    color: white;
    background-color : rgba(0,0,0,0.6);
    border-radius: 4PX;
    padding: 1em 4em;
    letter-spacing: 0.35em;
    font-size: 0.8em;
    -webkit-transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
    transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
    margin: 1em;
    -webkit-box-shadow: inset 0 0 0.8em rgba(255, 255, 255, 1), 0 0 0.8em rgba(255, 255, 255, 1);
    -moz-box-shadow: inset 0 0 0.8em rgba(255, 255, 255, 1), 0 0 0.8em rgba(255, 255, 255, 1);
    box-shadow: inset 0 0 0.8em rgba(255, 255, 255, 1), 0 0 0.8em rgba(255, 255, 255, 1);
    border: #fff solid 2px;
    float: right;
    margin-right: 0;
    width: 100%;
    height: 45px;
    border-radius: 6px;
}

#buttonHomeNext:hover{
    color: rgba(0, 0, 0, 0.8);
    background-color: rgba(255,255,255,0.5);
    -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.3), 0 0 1.2em rgba(255, 255, 255, 0.5);
    -moz-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.3), 0 0 1.2em rgba(255, 255, 255, 0.5);
    box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.3), 0 0 1.2em rgba(255, 255, 255, 0.5);
    cursor : pointer;
}

/* fin button login home */



/* animation username password letter by letter */

#inputNamePassword  .contentAnim p{
    width : 230px;
    margin-left : 10px;
    margin-top : 12px;
    border-right: 0.4em solid darkorange;
    overflow: hidden;
    white-space: nowrap;
    -webkit-animation : homeAnim 1.5s steps(60, end), blinkHome .7s 3 forwards;
    -o-animation : homeAnim 1.5s steps(60, end), blinkHome .7s 3 forwards;
    animation : homeAnim 1.5s steps(60, end), blinkHome .7s 3 forwards;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

#inputNamePassword .contentAnim:last-of-type p{
    border-right: 0.4em solid darkorange;
    -webkit-animation : homeAnim2 1.5s steps(60, end), blinkHome .7s infinite forwards;
    -o-animation : homeAnim2 1.5s steps(60, end), blinkHome .7s infinite forwards;
    animation : homeAnim2 1.5s steps(60, end), blinkHome .7s infinite forwards;
    -webkit-animation-delay: 2s;
    -moz-animation-delay: 2s;
    -o-animation-delay: 2s;
    animation-delay: 2s;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -webkit-animation-play-state: paused;
    -moz-animation-play-state: paused;
    -o-animation-play-state: paused;
    animation-play-state: paused;
}

@keyframes homeAnim{
    0%{
        width : 0;
    }
    100%{
        width : 230px;
    }
}
@-moz-keyframes homeAnim{
    0%{
        width : 0;
    }
    100%{
        width : 230px;
    }
}
@-ms-keyframes homeAnim{
    0%{
        width : 0;
    }
    100%{
        width : 230px;
    }
}
@-webkit-keyframes homeAnim{
    0%{
        width : 0;
    }
    100%{
        width : 230px;
    }
}
@-o-keyframes homeAnim{
    0%{
        width : 0;
    }
    100%{
        width : 230px;
    }
}
@-khtml-keyframes homeAnim{
    0%{
        width : 0;
    }
    100%{
        width : 230px;
    }
}

@keyframes homeAnim2{
    0%{
        width : 0;
        visibility: visible;
    }
    100%{
        width : 230px;
        visibility: visible;
    }
}
@-o-keyframes homeAnim2{
    0%{
        width : 0;
        visibility: visible;
    }
    100%{
        width : 230px;
        visibility: visible;
    }
}
@-webkit-keyframes homeAnim2{
    0%{
        width : 0;
        visibility: visible;
    }
    100%{
        width : 230px;
        visibility: visible;
    }
}
@-ms-keyframes homeAnim2{
    0%{
        width : 0;
        visibility: visible;
    }
    100%{
        width : 230px;
        visibility: visible;
    }
}
@-moz-keyframes homeAnim2{
    0%{
        width : 0;
        visibility: visible;
    }
    100%{
        width : 230px;
        visibility: visible;
    }
}
@-khtml-keyframes homeAnim2{
    0%{
        width : 0;
        visibility: visible;
    }
    100%{
        width : 230px;
        visibility: visible;
    }
}

@keyframes blinkHome{
    from, to{ border-color: transparent }
    50%{ border-color: darkorange }
}

@-moz-keyframes blinkHome{
    from, to{ border-color: transparent }
    50%{ border-color: darkorange }
}

@-ms-keyframes blinkHome{
    from, to{ border-color: transparent }
    50%{ border-color: darkorange }
}

@-webkit-keyframes blinkHome{
    from, to{ border-color: transparent }
    50%{ border-color: darkorange }
}

@-o-keyframes blinkHome{
    from, to{ border-color: transparent }
    50%{ border-color: darkorange }
}

@-khtml-keyframes blinkHome{
    from, to{ border-color: transparent }
    50%{ border-color: darkorange }
}

/*fin animation username password*/



/* container */

#container{
    width: 707px;
    margin-top: 86px;
    height: 533px;
    margin-left: 96px;
    position: absolute;
    background: url("/img/neige.jpg");
    -webkit-background-size : cover;
    background-size : cover;
    z-index: 1;
    background-repeat: no-repeat;
    overflow-y: hidden;
}

.background_presentation:before,
.background_competences:before,
.background_experiences:before,
.background_contact:before{
    content: "";
    opacity: 0.4;
    position: absolute;
    width: 707px;
    height: 533px;
    z-index: 2;
}

.background_presentation:before{
    background: no-repeat url("/img/background_presentation.jpg") center / cover;
}
.background_competences:before{
    background: no-repeat url("/img/background_competences.jpg") center / cover;
}
.background_experiences:before{
    background: no-repeat url("/img/background_competences.jpg") center / cover;
}
.background_contact:before{
    background: no-repeat url("/img/background_contact.jpg") center / cover;
    opacity: 0.2;
}

/* fin container */



/* container scrollbar */

#scrollbar_container::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	background-color: rgba(255,140,0,0.3);
}

#scrollbar_container::-webkit-scrollbar
{
	width: 10px;
	background-color: #F5F5F5;
}

#scrollbar_container::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: lightslategray;
}

#scrollbar_container{
    z-index: 3;
    opacity: 1;
    position: relative;
    width: 100%;
    height: inherit;
}

/* fin container scrollbar */



/* menu home */
#menuHome{
    transform:translateY(1000px);
    width: 470px;
}

#menuHome, 
#presentation, 
#competences, 
#experiences, 
#contact{
    font-size : 1.5em;
    position: absolute;
    margin-left: 118px;
    margin-top: 90px;
    opacity : 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    -webkit-transition-delay: 0.3s;
    -moz-transition-delay: 0.3s;
    -ms-transition-delay: 0.3s;
    -o-transition-delay: 0.3s;
    transition-delay: 0.3s;
    z-index: 99;
}

.divMenu span{
    color: darkorange;
    text-transform: uppercase;
}

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

.divMenu p{
    opacity : 0.3;
    font-size : 0.8em;
    margin: 0;
    padding: 5px 0;
}

.divMenu:hover{
    border-bottom: 1px solid rgba(255,140,0,0);
}

.divMenu{
    width : 100%;
    cursor : pointer;
    float: left;
    clear: both;
    border-bottom: 1px solid rgba(255,140,0,0.3);
    margin-bottom : 36px;
}

#menuHome .divMenu:hover p{
    overflow: hidden;
    width: 400px; /*largeur animation letter by letter*/
    white-space: nowrap;
    -webkit-animation: type 0.9s steps(30, end);
    -o-animation: type 0.9s steps(30, end);
    animation: type 0.9s steps(30, end);
    opacity: 0.7;
}

@keyframes type{
    from{ width: 0; }
}

/* fin menu home */


/* menuWeb */

#menuWeb div{
    float : left;
    position : absolute;
}

/* fin menu Web */


/* loading progress bar */

#loading{
    width: 24em; /* width loading bar */
    text-align: center;
    letter-spacing : 4px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#loading p{
    font-size: 1.5em;
    background-color: #565656;
    color: transparent;
    text-shadow: 2px 2px 3px rgba(255,255,255,0.5);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    font-weight: bold;
}

.chart{
    font-size: 1em;
    -webkit-perspective: 1000px;
    perspective: 1000px;
    -webkit-perspective-origin: 50% 50%;
    perspective-origin: 50% 50%;
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
}

.bar{
    font-size: 1em;
    position: relative;
    height: 10em;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-transform: rotateX(60deg) rotateY(0deg);
    transform: rotateX(60deg) rotateY(0deg);
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.bar .face{
    font-size: 2em;
    position: relative;
    width: 100%;
    height: 2em;
    background-color: rgba(254, 254, 254, 0.3);
}

.bar .face.side-a, .bar .face.side-b{
    width: 2em;
}

.bar .side-a{
    -webkit-transform: rotateX(90deg) rotateY(-90deg) translateX(2em) translateY(1em) translateZ(1em);
    transform: rotateX(90deg) rotateY(-90deg) translateX(2em) translateY(1em) translateZ(1em);
}

.bar .side-b{
    -webkit-transform: rotateX(90deg) rotateY(-90deg) translateX(4em) translateY(1em) translateZ(-1em);
    transform: rotateX(90deg) rotateY(-90deg) translateX(4em) translateY(1em) translateZ(-1em);
    position: absolute;
    right: 0;
}

.bar .side-0{
    -webkit-transform: rotateX(90deg) rotateY(0) translateX(0) translateY(1em) translateZ(-1em);
    transform: rotateX(90deg) rotateY(0) translateX(0) translateY(1em) translateZ(-1em);
}

.bar .side-1{
    -webkit-transform: rotateX(90deg) rotateY(0) translateX(0) translateY(1em) translateZ(3em);
    transform: rotateX(90deg) rotateY(0) translateX(0) translateY(1em) translateZ(3em);
}

.bar .top{
    -webkit-transform: rotateX(0deg) rotateY(0) translateX(0em) translateY(4em) translateZ(2em);
    transform: rotateX(0deg) rotateY(0) translateX(0em) translateY(4em) translateZ(2em);
    -webkit-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.3), 0 0 1.2em rgba(255, 255, 255, 0.1);
    -moz-box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.3), 0 0 1.2em rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 0 0 rgba(255, 255, 255, 0.3), 0 0 1.2em rgba(255, 255, 255, 0.1);
}

.bar .floor{
    box-shadow: 0 0.1em 0.6em rgba(0, 0, 0, 0.3), 0.6em -0.5em 3em rgba(0, 0, 0, 0.3), 1em -1em 8em #fefefe;
}

.growing-bar{
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: rgba(0,115,255, 0.6); /*color loading bar*/

    height: 2em;
}

/* loading progress bar */


/*color bar loading*/
.bar.white .side-a,
.bar.white .growing-bar{
    background-color: rgba(0,115,255, 0.6)
}
.bar.white .side-0 .growing-bar{
    box-shadow: -0.5em -1.5em 4em #0073FF;
}
.bar.white .floor .growing-bar{
    box-shadow: 0em 0em 2em #0073FF;
}
/*fin color bar loading*/

.widthBar .growing-bar{
    -webkit-animation : loadingBar 3s linear;
    -o-animation : loadingBar 3s linear;
    animation : loadingBar 3s linear;
    -webkit-animation-play-state : paused;
    -moz-animation-play-state : paused;
    -o-animation-play-state : paused;
    animation-play-state : paused;
}

@keyframes loadingBar{
    from{ width: 0; }
    to{ width: 100%; }
}

@-khtml-keyframes loadingBar{
    from{ width: 0; }
    to{ width: 100%; }
}

@-o-keyframes loadingBar{
    from{ width: 0; }
    to{ width: 100%; }
}

@-moz-keyframes loadingBar{
    from{ width: 0; }
    to{ width: 100%; }
}

@-ms-keyframes loadingBar{
    from{ width: 0; }
    to{ width: 100%; }
}

@-webkit-keyframes loadingBar{
    from{ width: 0; }
    to{ width: 100%; }
}

/*fin loading progress bar*/


/* presentation */

#presentation, 
#competences,
#experiences,
#contact{
    max-width: 540px;
    height: auto;
    margin: auto;
    margin-top: 100px;
    position: relative;
    transform: translateY(1000px);
    opacity: 0;
    font-size: 1.4em;
    z-index: 99;
    height: 433px;
    display: none;
}

#presentation{
    height: auto;
}

#presentation p{
    font-size: 1.3rem;
}

#presentation h1{
    margin-bottom: 30px;
}


#presentation h1, 
#competences h1{
    font-size: 1.5em;
    margin-top: 0;
    color: #0073ff;
}

#presentation span{
    color: #0073FF;
}

/* fin presentation */



/* competences */

.bar_competences{
    margin: 30px 40px 0 40px;
}

.bar_competences:last-of-type{
    padding-bottom: 50px;
}

.bar_competences .progress-bar.text{
    background-color: #ffa83c;
}

.bar_competences .progress-bar{
    background-color: darkorange;
    letter-spacing: 1px;
}

.bar_competences .progress{
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 1rem;
    height: 2rem;
    border: 1px solid #ffffffc9;
    background-color: #77889994;
}

#competences .card.bg-dark.text-white{
    width: 100%;
    height: 136px;
    border: 1px solid #fff;
}
#competences #udemy .row{
    margin: 0;
    margin-bottom: 15px;
}

#competences .card.bg-dark.text-white:hover .card-img-overlay{
    opacity: 1;
    transition: opacity 0.5s;
    padding: 5px 10px 5px 10px;
}

#competences .card-img-overlay li{
    font-size: 14px;
    margin-top: 2px;
}

#competences .card.bg-dark.text-white:hover img{
    opacity: 0;
}

#competences img.card-img{
    transition: opacity 0.5s;
}

#competences .card-img-overlay{
    opacity: 0;
}

#competences .row{
    margin-bottom: 15px;
}

#competences .separation{
    margin-top: 50px;
}

#competences .card-text:last-child{
    margin-bottom: 0;
    font-size: 15px;
}

#udemy > h1{
    margin-bottom: 30px;
    color: #0073FF;
}

#udemy{
    margin-top: 50px;
    padding-bottom: 25px;
    position: relative;
}

#udemy button.btn.btn-primary{
    box-shadow: none;
    bottom: 18px;
    left: 0;
    position: absolute;
    right: 0;
    border: 2px solid darkorange;
    font-size: 13pt;
    margin: 0 auto;
    padding: 7px 0;
    width: 170px;
    background-color: #343a40;
    border-radius: 0;
}

#udemy .card-title{
    margin: auto;
    position: relative;
    width: fit-content;
    margin-top: 18px;
}

.modal-body{
    color: #343a40;
}

.modal-title{
    color: darkorange;
}

.modal-body li{
    line-height: 22px;
}

#udemy .card-title.verticalAlign{
    color: darkorange;
    position: absolute;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: fit-content;
    height: fit-content;  
}


/* fin competences */



/* css menu top left */

.button_container{
    display: none;
    position: sticky;
    top: 3%;
    left: 2%;
    height: 27px;
    width: 40px;
    cursor: pointer;
    z-index: 100;
    transition: opacity 0.25s ease;
}
.button_container:hover{
    opacity: 0.7;
}
.button_container.active .top{
    transform: translateY(10px) translateX(0) rotate(45deg);
    background: black;
}
.button_container.active .middle{
    opacity: 0;
    background: black;
}
.button_container.active .bottom{
    transform: translateY(-10px) translateX(0) rotate(-45deg);
    background: black;
    top: 20px;
}
.button_container span{
    background: darkorange;
    border: none;
    height: 7px;
    width: 100%;
    position: absolute;
    top: 0px;
    left: 0;
    transition: all 0.35s ease;
    cursor: pointer;
}
.button_container span:nth-of-type(2){
    top: 12px;
}
.button_container span:nth-of-type(3){
    top: 24px;
}
.overlay{
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    visibility: hidden;
    transition: opacity 0.35s, visibility 0.35s, width 0.35s;
    z-index: 50;
}
.overlay:before{
    content: "";
    background: #ffffffe0;
    left: -55%;
    top: 0;
    width: 50%;
    height: 100%;
    position: absolute;
    transition: left 0.35s ease;
}
.overlay:after{
    content: "";
    background: #ffffffe0;
    right: -55%;
    top: 0;
    width: 50%;
    height: 100%;
    position: absolute;
    transition: all 0.35s ease;
}
.overlay.open{
    opacity: 0.9;
    visibility: visible;
    height: 100%;
}
.overlay.open:before{
    left: 0;
}
.overlay.open:after{
    right: 0;
}
.overlay.open li{
    animation: fadeInRight 0.5s ease forwards;
    animation-delay: 0.35s;
}
.overlay.open li:nth-of-type(2){
    animation-delay: 0.45s;
}
.overlay.open li:nth-of-type(3){
    animation-delay: 0.55s;
}
.overlay.open li:nth-of-type(4){
    animation-delay: 0.65s;
}
.overlay nav{
    position: relative;
    height: 70%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 50px;
    font-family: "Vollkorn", serif;
    font-weight: 400;
    text-align: center;
    z-index: 100;
}
.overlay ul{
    list-style: none;
    padding: 0;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    height: 100%;
}
.overlay ul li{
    display: block;
    height: 25%;
    height: calc(100% / 4);
    min-height: 50px;
    position: relative;
    opacity: 0;
}
.overlay ul li a{
    display: block;
    position: relative;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}
.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after{
    width: 100%;
}
.overlay ul li a:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0%;
    transform: translateX(-50%);
    height: 3px;
    background: #fff;
    transition: 0.35s;
}
@keyframes fadeInRight{
    0%{
        opacity: 0;
        left: 20%;
    }
    100%{
        opacity: 1;
        left: 0;
    }
}

/* button CV */
 #downloadCV{
    position: absolute;
    bottom: 3%;
    left: 2%;
    z-index: 53;
    transition: 0.3s ease;
}
#downloadCV .button.black-single{
    --background: #242836;
    --rectangle: #1C212E;
    --arrow: #F5F9FF;
    --text: #F5F9FF;
    --success: #0073FF;
    cursor: pointer;
}

#downloadCV .button{
    --background: #0073FF;
    --rectangle: #0073FF;
    --success: #0073FF;
    --text: #fff;
    --arrow: #fff;
    --checkmark: #fff;
    --shadow: rgba(10, 22, 50, .24);
    display: flex;
    overflow: hidden;
    text-decoration: none;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    background: var(--background);
    border-radius: 8px;
    box-shadow: 0 2px 8px -1px var(--shadow);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#downloadCV .button:active{
    transform: scale(0.95);
    box-shadow: 0 1px 4px -1px var(--shadow);
}
#downloadCV .button ul{
    margin: 0;
    padding: 16px 40px;
    list-style: none;
    text-align: center;
    position: relative;
    backface-visibility: hidden;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    color: var(--text);
}
#downloadCV .button ul li:not(:first-child){
    top: 16px;
    left: 0;
    right: 0;
    position: absolute;
}
#downloadCV .button ul li:nth-child(2){
    top: 76px;
}
#downloadCV .button ul li:nth-child(3){
    top: 136px;
}
#downloadCV .button > div{
    position: relative;
    width: 40px;
    height: 40px;
    background: var(--rectangle);
}
#downloadCV .button > div:before, .button > div:after{
    content: '';
    display: block;
    position: absolute;
}
#downloadCV .button > div:before{
    border-radius: 1px;
    width: 2px;
    top: 50%;
    left: 50%;
    height: 17px;
    margin: -9px 0 0 -1px;
    background: var(--arrow);
}
#downloadCV .button > div:after{
    width: 60px;
    height: 60px;
    transform-origin: 50% 0;
    border-radius: 0 0 80% 80%;
    background: var(--success);
    top: 0;
    left: 0;
    transform: scaleY(0);
}
#downloadCV .button > div svg{
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
    margin: -9px 0 0 -10px;
    fill: none;
    z-index: 1;
    stroke-width: 2px;
    stroke: var(--arrow);
    stroke-linecap: round;
    stroke-linejoin: round;
}
.button.loading ul{
    animation: text calc(var(--duration) * 1ms) linear forwards calc(var(--duration) * .065ms);
}
#downloadCV .button.loading > div:before{
    animation: line calc(var(--duration) * 1ms) linear forwards calc(var(--duration) * .065ms);
}
#downloadCV .button.loading > div:after{
    animation: background calc(var(--duration) * 1ms) linear forwards calc(var(--duration) * .065ms);
}
#downloadCV .button.loading > div svg{
    animation: svg calc(var(--duration) * 1ms) linear forwards calc(var(--duration) * .065ms);
}
@keyframes text{
    10%, 85%{
        transform: translateY(-100%);
   }
    95%, 100%{
        transform: translateY(-200%);
   }
}
@keyframes line{
    5%, 10%{
        transform: translateY(-30px);
   }
    40%{
        transform: translateY(-20px);
   }
    65%{
        transform: translateY(0);
   }
    75%, 100%{
        transform: translateY(30px);
   }
}
@keyframes svg{
    0%, 20%{
        stroke-dasharray: 0;
        stroke-dashoffset: 0;
   }
    21%, 89%{
        stroke-dasharray: 26px;
        stroke-dashoffset: 26px;
        stroke-width: 3px;
        margin: -10px 0 0 -10px;
        stroke: var(--checkmark);
   }
    100%{
        stroke-dasharray: 26px;
        stroke-dashoffset: 0;
        margin: -10px 0 0 -10px;
        stroke: var(--checkmark);
   }
    12%{
        opacity: 1;
   }
    20%, 89%{
        opacity: 0;
   }
    90%, 100%{
        opacity: 1;
   }
}
@keyframes background{
    10%{
        transform: scaleY(0);
   }
    40%{
        transform: scaleY(0.15);
   }
    65%{
        transform: scaleY(0.5);
        border-radius: 0 0 50% 50%;
   }
    75%{
        border-radius: 0 0 50% 50%;
   }
    90%, 100%{
        border-radius: 0;
   }
    75%, 100%{
        transform: scaleY(1);
   }
}
html{
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}
*{
    box-sizing: inherit;
}
*:before, *:after{
    box-sizing: inherit;
}
body{
    min-height: 100vh;
    display: flex;
    font-family: 'Roboto', Arial;
    justify-content: center;
    align-items: center;
    background: #0f172a;
}
body .container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
body .container > div{
    flex-basis: 100%;
    width: 0;
}
body .container .button{
    margin: 16px;
}
@media (max-width: 400px){
    body .container .button{
        margin: 12px;
   }
}
/* fin button CV */

/* fin css menu top left */




/* sectionFormation */

.certification{
    width: 55px;
    height: auto;
    vertical-align: top;
}
#sectionFormation h1{
    display: inline-block;
    margin-bottom: 30px;
    line-height: 55px;
    margin-right: 5px;
}
article{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    position: relative;
}
main{
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.timeline{
    list-style: none;
    margin-left: 0;
    padding-left: 0;
    padding-bottom: 40px;
}
.timeline li{
    align-items: start;
    margin: 2em 0;
}
.timeline .year p{
    font-size: 18px;
    line-height: 12px;
}
.timeline li [class^="col"]:first-child .year{
    margin-left: 0.7em;
}
.timeline li [class^="col"]:nth-child(2) > span{
    margin-bottom: 0.75em;
}
.timeline li .year{
    align-items: center;
    background-color: lightslategray;
    border-radius: 1000px;
    color: #fff;
    display: flex;
    height: 3.2em;
    justify-content: center;
    position: relative;
    z-index: 10;
    width: 67px;
    text-align: center;
    font-size: 25px;
    line-height: 13px;
    font-weight: 500;
    flex-direction: column;
}
.timeline li.both{
    align-items: stretch;
}
.timeline li.both .year{
    height: 100%;
}
.timeline li > [class^="col"] > span:last-child{
    margin-bottom: 0;
}
.timeline h4{
    color: #0073FF;
    cursor: default;
    margin: 0.15em 0 0;
}
.timeline h4 span{
    position: relative;
    font-size: 22px;
}
.timeline h4 span::after{
    background: darkorange;
    border-radius: 10px;
    bottom: 0;
    content: "   ";
    display: block;
    height: 2px;
    left: -15px;
    position: absolute;
    width: 0;
    transition: width 0.12s cubic-bezier(.01,-0.01,.11,1);
}
.timeline .col .right h4 span::after{
    left: inherit;
    right: -15px;
}
.timeline p{
    margin: 0;
    font-size: 15px;
    line-height: 24px;
}


@media (min-width: 992px){
    article{    
        height: auto;
   }
}
@media not all and (pointer: coarse){
    .timeline li .year{
        cursor: default;
        transition: all linear 0.15s;
   }
    .timeline li:hover .year{
        background-color: darkorange;
   }
    .timeline li:hover h4 span::after{
        width: calc(100% + 15px);
   }
}
@media (min-width: 768px){
    .right-md{
        text-align: right;
   }
    h1{
        font-size: 4.42em;
   }
    h2{
        font-size: 1.4em;
   }
    h2 .bullets{
        position: relative;
        z-index: 1;
   }
    h2 .bullets span{
        display: inline-block;
        left: -0.05em;
        position: absolute;
        text-align: center;
        width: 0.5em;
        white-space: wrap;
        top: 0.9em;
        line-height: 0.6;
   }
    h2.recenter{
        margin-left: -1.65em;
   }    
    .timeline li{
        align-items: center;
        margin: 0.7em 0;
   }
    .timeline li:nth-child(odd):not(.both):not(.even) h4 span::after, 
    .timeline li:nth-child(odd).both .right h4 span::after, 
    .timeline li:nth-child(even).both .right-md h4 span::after, 
    .timeline li.odd:nth-child(even) h4 span::after{
        left: inherit;
        right: -15px;
   }
    .timeline li:nth-child(odd):not(.both) [class^="col"]:not(:first-child), 
    .timeline li:nth-child(even):not(.both).odd [class^="col"]:not(:first-child){
        text-align: right;
        margin-left: -40px;
   }
    .timeline li:nth-child(odd):not(.both) .year, 
    .timeline li:nth-child(even):not(.both).odd .year{
        margin-left: 0;
   }
    .timeline li:nth-child(even):not(.both) .year, 
    .timeline li:nth-child(odd):not(.both).even .year{
        margin-left: -1.6em;
   }
    .timeline li:nth-child(even):not(.both) [class^="col"]:not(:first-child), 
    .timeline li:nth-child(odd):not(.both).even [class^="col"]:not(:first-child){
        text-align: left;
        margin-left: 0;
   }
    .timeline li.both > [class^="col"]:first-child{
        margin-left: 0;
        align-self: stretch;
   }
    .timeline li.both > [class^="col"]:first-child .year{
        align-items: start;
        height: 100%;
        margin-left: 0;
        padding-top: 1.1em;
   }
    .timeline li.both .vertical-top-offset{
        margin-top: 3.2em;
   }
}

.separation{
    border: 1px solid #EE3665;
    width: 200px;
    margin: auto;
}

/* fin sectionFormation */



/* sectionExperiences */

#sectionExperiences{
    margin-top: 50px;
    padding-bottom: 30px;
}
#sectionExperiences h1{
    line-height: 40px;
    display: inline-block;
    margin-right: 10px;
}
#sectionExperiences .certification{
    width: 40px;
}
#sectionExperiences table{
    width: 100%;
    margin-top: 30px;
}
#sectionExperiences table .left{
    font-weight: 500;
    width: 10%;
    font-size: 20px;
    color: darkorange;
    vertical-align: baseline;
}
#sectionExperiences .left p{
    margin: 0;
    line-height: 13px;
    font-size: 18px;
    text-align: center;
}
#sectionExperiences table .right{
    padding-left: 27px;
}
#sectionExperiences table h4{
    font-size: 16px;
    font-weight: 600;
    color: #0073FF;
}
#sectionExperiences tr p{
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
}

/* fin sectionExperiences*/



/* contact */

#contact{
    margin-top: 50px;
    height: auto;
}
#contact h1{
    color: #0073FF;
}

#containerFormContact{
    margin: 30px 60px 50px 60px;
}

#contact .inputBox{
    width: 100%;
    position: relative;
    margin-bottom: 22px;
}
#contact .inputBox input,
#contact .inputBox textarea{
    width:100%;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: #1d2b3a;
    border-radius: 5px;
    outline: none;
    color: #fff;
    font-size: 15px;
    transition: 0.5s;
}
#contact .inputBox label{
    position: absolute;
    left: 0;
    top: 0;
    padding: 10px;
    pointer-events: none;
    font-size: 1em;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    transition: 0.5s;
    font-size: 18px;
}
#contact .form-control:valid,
#contact .form-control:focus{
    background-color: #1d2b3a !important;
    box-shadow: none !important;
    border-color: #fff !important;
    color: #FFF !important;
    box-shadow: 0 0 0px 1000px #1d2b3a inset !important;
}
#contact .inputBox input:valid ~label,
#contact .inputBox input:focus ~label,
#contact .inputBox textarea:valid ~label,
#contact .inputBox textarea:focus ~label{
    color: darkorange;
    transform: translateX(10px) translateY(-10px);
    font-size: 0.6em;
    padding: 3px 10px 0 10px;
    background-color: #1d2b3a;
    border-left: 1px solid darkorange;
    border-right: 1px solid darkorange;
    letter-spacing: 0.2em;;
}
#contact .inputBox input:valid,
#contact .inputBox input:focus,
#contact .inputBox textarea:valid,
#contact .inputBox textarea:focus{
    border: 1px solid darkorange !important;
}
#contact .inputBox:last-of-type textarea:valid ~label,
#contact .inputBox:last-of-type textarea:focus ~label{
    background: darkorange;
    color: #1d2b3a;
}

#contact .inputBox.containerTextArea{
    width: calc(100% + 140px);
    margin-left: -65px;
}
#contact .inputBox.containerTextArea textarea{
    height: 97px;
}

#contact .inputBox .text-muted{
    font-size: 12px;
}

#contact input:-webkit-autofill, 
#contact input:-webkit-autofill:hover, 
#contact input:-webkit-autofill:focus, textarea:-webkit-autofill, 
#contact textarea:-webkit-autofill:hover, 
#contact textarea:-webkit-autofill:focus, 
#contact select:-webkit-autofill, 
#contact select:-webkit-autofill:hover, 
#contact select:-webkit-autofill:focus{
    -webkit-text-fill-color: #fff;
}

#contact button.btn.btn-primary{
    background-color: #1d2b3a;
    border: 0;
    position: absolute;
    right: 70px;
    width: 100px;
}

#contact button.btn.btn-primary:focus{
    box-shadow: 0 0 0 0.2rem #ffffffc2;
}

#contact .btn-primary:not(:disabled):not(.disabled).active:focus, 
#contact .btn-primary:not(:disabled):not(.disabled):active:focus, 
#contact .show>.btn-primary.dropdown-toggle:focus{
    box-shadow: 0 0 0 0.2rem #fff;
}

#contact .btn-primary:not(:disabled):not(.disabled).active, 
#contact .btn-primary:not(:disabled):not(.disabled):active, 
#contact .show>.btn-primary.dropdown-toggle{
    background-color: darkorange;
    color: #fff;
    border: 0;
}

#contact button.btn.btn-primary:hover{
    background-color: darkorange;
    color: #fff;
}

.text-danger{
    font-size: 13px;
}

.formError .formErrorArrowBottom{
    margin: 15px 0 0 40px !important;
}
.formError .formErrorContent{
    margin-left: 30px;
}

#contact .emailformError.parentFormcontainerFormContact.formError{
    top: 8px !important;
    left: 180px !important;
}
#contact .formErrorArrow{
    display: none;
}
#contact .formErrorContent{
    background: none;
    color: coral;
    margin: 0;
}
#contact .messageformError.parentFormcontainerFormContact.formError{
    top: 60px !important;
    left: 6px !important;
    margin: 0 !important;
}
#contact .usernameformError.parentFormcontainerFormContact.formError{
    top: 7px !important;
    left: auto !important;
    right: 0px !important;
    margin-top: 0 !important;
}
#contact .text-danger{
    color: tomato !important;
}

#contact .alert.alert-success, 
#contact .alert.alert-danger{
    width: 100%;
    background-color: #778899e6;
    color: white;
    margin-top: calc(100%/4);
}
#contact .alert.alert-success p:last-of-type{
    font-size: 18px;
}
#contact #captcha{
    width: 50%;
    margin-right: 10px;
}

/* fin contact */

/* rotate your phone */
#rotatePhone{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000000c4;
    z-index: 99;
}
#rotatePhone #insideRotatePhone{
    position: absolute;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
}
#rotatePhone .phone{
    height: 80px;
    width: 140px;
    border: 3px solid darkorange;
    border-radius: 10px;
    animation: rotate 1.5s ease-in-out infinite alternate;
}
#rotatePhone  .message{
    color: darkorange;
    font-size: 2.5em;
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
}
#rotatePhone  .message p{
    transform: rotate(270deg);
    width: 460px;
    margin-left: 200px;
}
  
@keyframes rotate{
    0%{
		transform: rotate(0deg)
	}
	50%{
		transform: rotate(0deg)
	}
	100%{
		transform: rotate(-90deg)
	}
}
/* fin de rotate your phone */




/* on force la vue en 'landscape' */
@media (orientation: portrait){
    body{
        height: 100%;
        width: 100%;
        overflow: hidden;
        display: grid;
    }
    #home{
        transform: rotate(90deg);
        width: 100%;
        height: 100%;
    }
    #container #rotatePhone{
        display: block;
    } 
}
/* fin de : on force la vue en 'landscape' */


/* responsive */
@media (max-height: 768px) and (orientation: landscape){
    section#tablette{
        width: 657px;
        height: 500px;  
    }
    section#tablette #container{
        width: 518px;
        margin-top: 63px;
        height: 389px;
        margin-left: 69px;
    }
    #inputNamePassword{
        width: 250px;
        font-size: 1.2em;
        margin-top: 90px;
    }
    #inputNamePassword div{
        font-size: 0.9em;
        height: 35px;
    }
    #inputNamePassword #mdp{
        margin-top : 20px;
    }
    #inputNamePassword .contentAnim p{
        margin-top: 9px;
    }
    #loginButton{
        max-width: 250px;
    }
    #buttonHomeNext{
        font-size: 0.6em;
        height: 30px;
        line-height: 6px;
    }
    #inputNamePassword .contentAnim p,
    #inputNamePassword .contentAnim:last-of-type p{
        max-width: 165px;
    }
    #menuHome{
        margin-left: 90px;
        margin-top: 70px;
        font-size: 1.2em;
        width: 333px;
    }
    .divMenu{
        margin-bottom: 22px;
        width: 100%;
    }
    .background_presentation:before, 
    .background_competences:before, 
    .background_experiences:before, 
    .background_contact:before{
        width: 518px;
        height: 389px;
    }
    #presentation, 
    #competences, 
    #experiences, 
    #contact{
        max-width: 360px;
        margin-top: 40px;
    }
    #presentation h1, 
    #competences h1,
    #experiences h1, 
    #contact h1{
        font-size: 1.2em;
    }
    #presentation h1{
        margin-bottom: 20px;
    }
    #presentation p{
        font-size: 1rem;
    }
    #competences .h3, 
    #competences h3{
        font-size: 1em;
    }
    .bar_competences .progress-bar.text{
        font-size: 12px;
    }
    .progress-bar.text{
        width: 30% !important;
    }
    .barHtml{
        width: 58% !important;
    }
    .barSql{
        width: 50% !important;
    }
    .barPhp{
        width: 48% !important;
    }
    .barJs{
        width: 40% !important;
    }
    #competences .card.bg-dark.text-white{
        height: 85px;
    }
    #udemy button.btn.btn-primary{
        font-size: 11px;
        bottom: 4px;
        width: 115px;
    }
    #udemy .card-title{
        margin-top: 5px;
    }
    #containerFormContact{
        margin: 25px 35px 39px 35px;
    }
    #contact .inputBox.containerTextArea{
        width: 100%;
        margin: 0 0 12px 0;
    }
    #contact button.btn.btn-primary{
        right: 35px;
    }
    #contact .inputBox label{
        font-size: 15px;
    }
    #contact .inputBox input, 
    #contact .inputBox textarea{
        font-size: 13px;
    }
    #contact .emailformError.parentFormcontainerFormContact.formError{
        top: 0px !important;
        left: 155px !important;
    }
    #contact .alert.alert-success p, 
    #contact .alert.alert-danger p{
        font-size: 0.8em;
    }
    #contact .inputBox.containerTextArea textarea{
        margin-bottom: 18px;;
    }
    #contact .inputBox{
        margin-bottom: 18px;
    }
    .order-md-2{
        order: 1;
    }
    .timeline li:nth-child(odd):not(.both) [class^="col"]:not(:first-child), 
    .timeline li:nth-child(even):not(.both).odd [class^="col"]:not(:first-child){
        order: 2;
        text-align: left;
        margin: 0;
    }
    ul li.row .offset-md-6{
        margin: 0;
    }
    li.row .col-md-6{
        max-width: 100%;
        flex-grow: 1;
    }
    .timeline li:nth-child(even):not(.both) .year, .timeline li:nth-child(odd):not(.both).even .year{
        margin: 0;
    }
    .timeline h4 span{
        font-size: 18px;
    }
    #sectionFormation h1{
        margin-bottom: 0;
    }
    .timeline{
        padding-bottom: 20px;
    }
    #sectionExperiences table h4{
        font-size: 16px;
        font-weight: 500;
    }
    #sectionExperiences .left p{
        font-size: 16px;
    }
    #sectionExperiences table tr:first-of-type .left.date {
        vertical-align: middle;
    }
    .timeline li .year{
        width: 52px;
    }

}



/* responsive */
@media only screen and (max-height: 576px) and (orientation: landscape){
    body {
        min-height: calc(100vh-70px);
        /* mobile viewport bug fix */
        min-height: -webkit-fill-available;
    }
    section#tablette {
        width: 480px;
        height: 365px;
    }
    section#tablette #container{
        width: 377px;
        margin-top: 46px;
        height: 284px;
        margin-left: 51px;
    }
    #inputNamePassword {
        margin-top: 45px;
    }
    #menuHome {
        margin-top: 35px;
        font-size: 0.8em;
        width: 215px;
        margin-left: 80px;
    }
    .background_presentation:before, 
    .background_competences:before, 
    .background_experiences:before, 
    .background_contact:before{
        width: 377px;
        height: 284px;
    }
    #downloadCV .button > div{
        width: 35px;
        height: 35px;
    }
    #presentation, 
    #competences, 
    #experiences,
    #contact{
        margin-top: 30px;
        max-width: 66%;
    }
    #presentation h1, 
    #competences h1, 
    #experiences h1, 
    #contact h1{
        font-size: 0.8em;
    }
    #presentation p{
        font-size: 0.9rem;
    }
    .bar_competences{
        margin: 0;
        margin-bottom: 25px;
    }
    #competences .h3, 
    #competences h3{
        font-size: 0.7em;
    }
    #competences #udemy .row{
        margin-right: -15px;
        margin-left: -15px;
    }
    #competences .card.bg-dark.text-white{
        height: 77px;
    }
    #udemy .card-title{
        margin-top: 0px;
    }
    #udemy .card-title.verticalAlign{
        margin-bottom: 10px;
        font-size: 0.6em;
        font-weight: 600;
    }
    #sectionExperiences table {
        margin-top: 20px;
    }
    .timeline h4 span {
        font-size: 17px;
    }
    #competences .card.bg-dark.text-white .card-img-overlay{
        opacity: 1;
    }
    #competences .card.bg-dark.text-white{
        height: 119px;
        overflow: hidden;
    }
    #competences .card.bg-dark.text-white.hasModal .card-img-overlay{
        padding: 25px;
    }
    #competences .card.bg-dark.text-white.hasModal .card-title{
        font-size: 0.8em;
    }
    #competences .card.bg-dark.text-white img{
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: .3s ease-in-out;
        transition: .3s ease-in-out;
    }
    #competences .card.bg-dark.text-white:hover img{
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1;
    }
    #competences .card.bg-dark.text-white.hasModal:hover img{
        opacity: 0;
    }
    #buttonHomeNext{
        font-size: 0.66em;
        height: 33px;
        line-height: 7px;
    }
    #containerFormContact{
        margin: 25px 0px 29px 0px;
    }
    #contact .inputBox{
        margin-bottom: 14px;
    }
    #contact button.btn.btn-primary{
        right: 0;
    }
    #contact .inputBox label{
        font-size: 13px;
    }
    #contact .inputBox input, 
    #contact .inputBox textarea{
        font-size: 12px;
    }
    #contact .inputBox input, #contact .inputBox textarea{
        padding: 8px 10px 5px 10px;
    }
    .formError .formErrorContent{
        font-size: 10px;
    }
    #contact .emailformError.parentFormcontainerFormContact.formError{
        left: 167px !important;
    }
    .progress-bar.text {
        width: 35% !important;
    }
    .bar_competences .progress {
        height: 1.7rem;
    }
    .progress .barPrestashop{
        width: 45% !important;
    }
    .progress .barWordpress{
        width: 35% !important;
    }
    .progress .barJoomla{
        width: 20% !important;
    }
    .progress .barSymfony{
        width: 30% !important;
    }
    .progress .barCode{
        width: 18% !important;
    }
    #udemy > h1{
        margin-bottom: 20px;
    }
    #competences .card.bg-dark.text-white {
        height: 104px;
    }
    #udemy button.btn.btn-primary {
        width: 99px;
        padding: 0;
    }
    #competences .card.bg-dark.text-white.hasModal .card-title {
        font-size: 0.6em;
        font-weight: 600;
        color: darkorange;
    }
    #competences .card.bg-dark.text-white.hasModal .card-img-overlay {
        padding: 0;
        padding-top: 30px;
    }
    .hasModal img{
        opacity: 0.5;
    }
    
}


#test{
    display: none;
    width: 100%;
    height: 100%;
}
/* responsive */
@media (max-height: 400px) and (orientation: landscape){

    body {
        min-height: calc(100vh-70px);
        /* mobile viewport bug fix */
        min-height: -webkit-fill-available;
    }
    section#tablette{
        width: 389px;
        height: 310px;
    }
    section#tablette #container{
        width: 312px;
        margin-top: 39px;
        height: 234px;
        margin-left: 42px;
    }
    #inputNamePassword{
        margin-top: 20px;
    }


    #test{
        display: block;
    }
}
  
