/*STYLES GENERAUX*/
*{
    font-family: Avenir, sans-serif;
    padding: 0px;
    margin: auto 0px;
    box-sizing: border-box;
}
body{
    background: transparent;
    color: transparent;
}
body::-webkit-scrollbar {
width: 5px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
background: black /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
background-color: rgb(255, 255, 255); /* color of the scroll thumb */
border-radius: 20px; /* roundness of the scroll thumb */
border: 3px solid white; /* creates padding around scroll thumb */
} 
#progress{
	background-color: #ffffff;
	height: 3px;
	width: 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999; /* Peut être important si vous avez un menu en position fixe */
}
.bubbles-container {
	position: absolute;
    position: fixed;
	top: 0%;
	left: 50%;
	width: 100%;
	max-width: 15rem;
	transform: translateX(-50%);
	opacity: 0.75;
	overflow: visible;
}
.bubbles {
	width: 100%;
	height: auto;
	circle {
		stroke: white;
		fill: none;
	}
	> g > g:nth-of-type(3n) circle {
		stroke: #87f5fb;
	}
	> g > g:nth-of-type(4n) circle {
		stroke: #8be8cb;
	}
}
.bubbles-large {
	overflow: visible;
	> g {
		transform: translateY(2048px);
		opacity: 0;
		will-change: transform, opacity;
	}
	g:nth-of-type(1) {
		animation: up 6.5s infinite;
		g {
			transform: translateX(350px);
		}
		circle {
			animation: wobble 3s infinite ease-in-out;
		}
	}
	g:nth-of-type(2) {
		animation: up 5.25s 250ms infinite;
		g {
			transform: translateX(450px);
		}
		circle {
			animation: wobble 3s infinite ease-in-out;
		}
	}
	g:nth-of-type(3) {
		animation: up 6s 750ms infinite;
		g {
			transform: translateX(700px);
		}
		circle {
			animation: wobble 3s infinite ease-in-out;
		}
	}
	g:nth-of-type(4) {
		animation: up 5.5s 1.5s infinite;
		g {
			transform: translateX(500px);
		}
		circle {
			animation: wobble 3s infinite ease-in-out;
		}
	}

	g:nth-of-type(5) {
		animation: up 6.5s 4s infinite;
		g {
			transform: translateX(675px);
		}
		circle {
			animation: wobble 3s infinite ease-in-out;
		}
	}
}
.bubbles-small {
	overflow: visible;
	> g {
		transform: translateY(2048px);
		opacity: 0;
		will-change: transform, opacity;
	}
	g circle {
		transform: scale(0);
	}
	g:nth-of-type(1) {
		animation: up 5.25s infinite;
		g {
			transform: translateX(350px);
		}
		circle {
			animation: wobble 3s infinite ease-in-out;
		}
	}
	g:nth-of-type(2) {
		animation: up 5.75s infinite;
		g {
			transform: translateX(750px);
		}
		circle {
			animation: wobble 3s infinite ease-in-out;
		}
	}
	g:nth-of-type(3) {
		animation: up 5.25s 250ms infinite;
		g {
			transform: translateX(350px);
		}
		circle {
			animation: wobble 3s 250ms infinite ease-in-out;
		}
	}
	g:nth-of-type(4) {
		animation: up 5.75s 325ms infinite;
		g {
			transform: translateX(180px);
		}
		circle {
			animation: wobble 3s 325ms infinite ease-in-out;
		}
	}
	g:nth-of-type(5) {
		animation: up 6s 125ms infinite;
		g {
			transform: translateX(350px);
		}
		circle {
			animation: wobble 3s 250ms infinite ease-in-out;
		}
	}
	g:nth-of-type(6) {
		animation: up 5.13s 250ms infinite;
		g {
			transform: translateX(650px);
		}
		circle {
			animation: wobble 3s 125ms infinite ease-in-out;
		}
	}
	g:nth-of-type(7) {
		animation: up 6.25s 350ms infinite;
		g {
			transform: translateX(480px);
		}
		circle {
			animation: wobble 3s 325ms infinite ease-in-out;
		}
	}
	g:nth-of-type(8) {
		animation: up 7s 200ms infinite;
		g {
			transform: translateX(330px);
		}
		circle {
			animation: wobble 3s 325ms infinite ease-in-out;
		}
	}
	g:nth-of-type(9) {
		animation: up 6.25s 233ms infinite;
		g {
			transform: translateX(230px);
		}
		circle {
			animation: wobble 3s 275ms infinite ease-in-out;
		}
	}
	g:nth-of-type(10) {
		animation: up 6s 900ms infinite;
		g {
			transform: translateX(730px);
		}
		circle {
			animation: wobble 2s 905ms infinite ease-in-out;
		}
	}
}
@keyframes wobble {
	33% {
		transform: translateX(-50px);
	}

	66% {
		transform: translateX(50px);
	}
}
@keyframes up {
	0% {
		opacity: 0;
	}

	10%,
	90% {
		opacity: 1;
	}

	100% {
		opacity: 0;
		transform: translateY(-1024px);
	}
}
/* #content{
    display: flex;
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}
#content img{
    margin: auto;
    width: 150px;
} */
#video_id_fond {
    background-color: transparent;
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -1;
}
p{
    color: #ffffff;
    font-size: 1em;
    line-height: 1.5em;
    text-shadow: -1px -1px 5px #000000;
}
a{
    text-decoration: none;
    color: #ffffff;
}

/*HEADER & FOOTER*/
header, footer{
    width: 100%;
    padding: 0px 0px;
    box-shadow: 0px 0px 15px #000000;
}
header{
    border-bottom: 2px solid #ffffff00;
    height: 150px;
}

#particles-js {
    height: 150px;
    width: 100%;
    z-index: 2;
}
footer{
    border-top: 1px solid #fff;
}
footer p{
    width: 90%;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}
footer a{
    color: #fff;
}

/*SECTIONS*/
section{
    display: flex; 
    flex-flow: wrap;
    /* justify-content: center; */
    justify-content: space-around;
    width: 90%;
    padding-bottom: 20px;
    margin: 20px auto;
    background-color: transparent;
    border-radius: 10px;
    border: 2px solid rgba(0, 0, 0, 0.5);
    box-shadow: -2px -2px 5px #000000;
}
section:hover {
    border-radius: 10px;
    /* border: 2px solid rgba(255, 255, 255, 0.5); */
    /* box-shadow: 2px 2px 5px #ffffff; */
}
section h2{
    color: #ffffff;
    margin: 20px 0;
    padding-bottom: 25px;
    width: 100%;
    text-align: center;
    text-shadow: -1px -1px 5px #000000;
    font-size:  2em;
}
section > div{
    width: 90%;
}

/*SECTION INFOS*/
.photo{
    text-align: center;
    animation: float 6s ease-in-out infinite;
}
.photo img{
    width: 150px;
    height: 150px;
    border: 1px solid #000000;
    box-shadow: 1px 1px 15px #000000;
    border-radius: 50%;
    margin-top: -80px;
}
@keyframes float {
	0% {
		/* box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); */
		transform: translatey(0px);
	}
	50% {
		/* box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2); */
		transform: translatey(-20px);
	}
	100% {
		/* box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6); */
		transform: translatey(0px);
	}
}
.prez, .prez h2 {
    color: #ffffff;
    text-align: center;
    margin: 5px;
    width: 100%;
}
.prez a{
    width: 90%;
    display: block;
    text-align: center;
    padding: 10px;
    margin: 10px auto 30px auto;
    color: #ffffff;
    background-color: rgba(0, 0, 0, 0);
    box-shadow: -1px -1px 5px #000000;
    border-radius: 10px;
}
.prez h2 {
    font-size: 2em;
    color: #ffffff;
}
.prez a:hover{
    color: #ffffff;
    background-color: #00000042;
    box-shadow: 2px 2px 5px #ffffff;
}
.contact{
    text-align: center;
    justify-content: center;
}
.contact h2 {
    color: #ffffff;
    font-size: 1.8em;
}
.contact-flex{
    padding-left: 10%;
    text-align: center;
    display: flex;
    flex-direction: row;
    /* text-align: center; */
    /* justify-content: space-around; */
}
.contact-flex img {
    max-width: 25px;
}
.contact-flex p:first-child{
    padding-left: 25px;
    flex: 0 0 30%;
}
.contact-flex p:last-child{
    text-align: left;
    flex: 0 0 70%;
}

/*SECTION LANGUES EXP ET FORMATION*/
.paraligne {
    padding-top:15px;
    border-top: 1px solid #ffffff36;
}
.exp-desc{
    color: #ffffff;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 5px;
}
.expl{
    display: flex;
    text-align: center;
    flex-flow: column;
    padding-bottom: 10px;
    margin-bottom: 10px;
    box-shadow: -1px -1px 5px #000000;
    border-radius: 10px;
    padding-top: 10px;
    border:  2px solid transparent;
    color: #ffffff;
}
section  .expl > div{
    flex-flow:  row;
    width: 100%;
    height: 100%;
    flex: 0 0 45%;
}
.expl:hover {
    background-color: #00000034;
    height: 100%;
    border-radius: 10px;
    box-shadow: 1px 1px 5px #ffffff7e;
    border:  2px solid transparent;
}
.expl-logo{
    display:flex;
    flex-flow: row wrap;
    margin-left: auto;
    margin-right: auto;
}
.expl-logo p:first-child{
    flex: 0 0 50%;
}
.expl-logo p:last-child{
    flex: 0 0 50%;
    text-align: center;
}
.expl-info{
    display:flex;
    flex-flow: row wrap;
    margin: 0 auto;
    margin-left: auto;
}
.expl img{
    padding-top: 15px;
    max-width: 120px;
    flex: 0 0 45%;
}
.exp{
    color: #ffffff;
    display: flex;
    text-align: center;
    flex-flow: column;
    padding-bottom: 10px;
    margin-bottom: 10px;
    box-shadow: -1px -1px 5px #000000;
    border-radius: 10px;
    border:  2px solid transparent;
    padding-top: 10px;
}
section  .exp > div{
    width: 100%;
    height: 100%;
    flex: 0 0 45%;
}
.exp:hover {
    background-color: #00000034;
    height: 100%;
    border-radius: 10px;
    box-shadow: 1px 1px 5px #ffffff;
    border:  2px solid transparent;
}
.exp-logo{
    flex: 0 0 50%;
    min-width: 250px;
    margin-left: auto;
    margin-right: auto;
}
.exp-info{
    display: flex;
    flex-flow: column wrap;
    margin: 0 auto;
    margin-left: auto;
}
.exp img{
    padding-top: 15px;
    max-width: 200px;
}
.exp h3{
    font-size:  1.2em;
    text-align: center;
    padding-left: 0px;
}
.exp h4{
   text-align: center;
}
/*SECTION COMPETENCES*/
.h3gauche{
    color: #ffffff;
    width: 90%;
    margin-bottom: 15px;
    text-align: center;
    text-shadow: -1px -1px 5px #000000;
}
.comp{
    display:flex;
    flex-flow: row wrap;
    margin: 5px auto;
}
.comp p{
    flex: 0 0 45%;
    text-align: center;
    box-shadow: -1px -1px 5px #000000;
    border-radius: 10px;
    margin: 5px auto;
    border:  2px solid transparent;
    padding-top: 15px;
}
.comp p:hover{
    box-shadow: 1px 1px 5px #ffffff;
    background-color: #00000034;
    border:  2px solid transparent;
}

.comp img{
    max-width: 50px;
}
.barre{
    display: block;
    height: 100%;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}
.c85{
    width: 85%;
    background-color: rgb(255, 255, 255);
}
.c90{
    width: 90%;
    background-color: rgb(255, 255, 255);
}
.c95{
    width: 95%;
    background-color: rgb(255, 255, 255);
}
.c100{
    width: 100%;
    background-color: rgb(255, 255, 255);
    border-radius: 5px;
}
.comp2{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    width: 90%;
}
.comp2 p {
    text-shadow: -1px -1px 5px #000000;
}
.conteneur-barre2{
    flex: 0 0 100%;
    height: 0.5em;
    margin-bottom: 0.25em;
    border-radius: 5px;
    background-color: grey;
}
/*SECTION TRAVAUX SAISONNIERS*/

.lignetitre::after {
	content: ""; 
	display: inline-flex;
	background-color: white; 
	height: 2px; 
	animation: linenormal 5s ease-in-out forwards;
}
.ligne::before {
    margin-top: 15px;
    margin-bottom: 15px;
	content: ""; 
	display: inline-flex;
	background-color: white; 
	height: 1px; 
	animation-name: linenormal ;
	animation-timing-function: ease-in-out;
	animation-duration: 3s;
	animation-direction: alternate;
	animation-iteration-count: infinite;
}
@keyframes linenormal {
	from {margin-left: 50%;
			width: 0%; opacity: 0;}
	to {width: 100%; opacity: 1.0;}
}

/*SECTION INTERETS*/
.interet{
    color: #ffffff;
    flex: 0 1 50%;
    display: flex;
    flex-flow: column wrap;
    align-items: center;
    margin-bottom: 35px;
}
.interet img{
    object-fit: cover;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 1px 1px 15px #ffffff;
}
.interet figcaption {
    text-shadow: 0px 0px 5px #000000;
    padding-top: 15px;
}

/*VERSION BUREAU DU CV*/
@media screen and (min-width: 980px){
    section{
        color: #ffffff;
        display: flex;
        justify-content: space-around;
        font-size: 1.2em;
        box-shadow: -1px -1px 5px #000000;
        border-radius: 10px;
        max-width: 980px;
        text-align: center;
        flex-flow: row wrap;
        width: 90%;
    }
    section >  .expl{
        padding: 15px auto;
        /* flex: 0 0 45%; */
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }
    section >  .exp{
        margin: auto auto;
        /* min-height: 370px; */
        padding: 15px auto;
        /* flex: 0 0 45%; */
        display: flex;
        justify-content: space-around;
        margin-bottom: 15px;
    }
    a:hover{
        border-radius: 10px;
        color: rgb(255, 255, 255);
        text-shadow: 1px 1px 5px #ffffff;
    }
    header h1{
        width: 80%;
    }
    .prez, .contact{
        flex: 0 0 50%;
        text-align: center;
    }
    .prez{
        padding-top: 25px;
        border-bottom: none;
        border-right: 2px solid #000000;
        margin: auto;
        text-align: center;
    }
    .contact{
        text-align: center;
    }
    /* .prez a{
        border: 2px solid transparent;
    } */
    .prez a:hover{
        color: #ffffff;
        background-color: #00000042;
        box-shadow: 1px 1px 5px #ffffff;
    }
    .comp p{
        flex: 0 0 15%;
        text-align: center;
        padding-top: 15px;
        padding-bottom: 5px;
    }
    .exp-info{
        font-size: 1em;
        text-align: center;
        margin-left: 0;
        margin-top: 5px;
        flex-flow: column row;
    }
    .exp-desc p:first-child{
        flex: 0 0 20%;
    }
    .exp-desc p:last-child{
        flex: 0 0 100%;
        text-align: center;
    }
    .exp-desc{
        display: flex;
        flex-direction: column;
        text-align: center;
        /* flex: 0 0 20%; */
        text-align: center;
        padding: 5px;
    }
    .exp{
        display: flex;
        /* flex: 0 0 45%; */
        flex-flow: column;
        padding-bottom: 25px;
        margin-bottom: 10px;
    }
    .exp-logo{
        flex: 0 0 50%;
        max-width: 250px;
        margin-left: auto;
        margin-right: auto;
    }
    .exp img{
        width: 100%;
    }
    .exp h3{
        font-size:  1.8em;
        text-align: center;
        padding-left: 0px;
    }
    .exp h4{
        font-size:  1.2em;
    }
    .interet{
        flex: 0 1 25%;
    }
}

/* animation footer:passage du pointeur */
.animation_footer:hover {
	cursor: pointer;
	position: relative;
	animation-name: animation_footer ;
	animation-duration: 0.5s;
	animation-iteration-count: infinite;
	border-radius: 50%;
}
@keyframes animation_footer {
	0% {top: 0px;
			left: 0px;
			background-color: rgb(148, 102, 34);}
	25% {top: 0px;
			left: 1px;
			background-color: rgb(100, 237, 207);}
	50% {top: 1px;
			left: 1px;
			background-color: rgb(237, 100, 191);}
	75% {left: 0px;
			top: 1x;
			background-color: rgb(223, 237, 100);}
	100% {top: 0px;
			left: 0px;
			background-color: rgb(100, 216, 237);}
}
#contour_animation {
    border: none;
    background-color: transparent;
    font-family: inherit;
    position: relative;
    display: inline-block;
    padding: 10px;
    color: #ffffff;
    font-size: 16px;
    text-decoration: none;
    text-transform: uppercase;
    overflow: hidden;
    transition: .5s;
    margin-top: 40px;
    letter-spacing: 4px;
    box-shadow: -1px -1px 2px #000000;
    padding: 15px;

}
#contour_animation {
    text-align: center;
}
#contour_animation:hover{
    box-shadow: -1px -1px 5px #000000;
}
#contour_animation > span {
    position: absolute;
    display: block;
}
#contour_animation > span:nth-child(1) {
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ffffff);
    animation: btn-anim1 1s linear infinite;
}
#contour_animation > span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #ffffff);
    animation: btn-anim2 1s linear infinite;
    animation-delay: .25s
}
#contour_animation > span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, #ffffff);
    animation: btn-anim3 1s linear infinite;
    animation-delay: .5s
}
#contour_animation > span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #ffffff);
    animation: btn-anim4 1s linear infinite;
    animation-delay: .75s
}
#contour_animation:hover {
    background: #ffffff00;
    color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 5px #ffffff,
                            0 0 25px #ffffffa2,
                            0 0 50px #ffffff57,
                            0 0 100px #ffffff00;
}
#contour_animation:hover {
    background: rgba(255, 255, 255, 0);
    color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 5px #ffffff, 0 0 25px rgba(255, 255, 255, 0.6352941176), 0 0 50px rgba(255, 255, 255, 0.3411764706), 0 0 100px rgba(255, 255, 255, 0);
  }
  @-webkit-keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%, 100% {
      left: 100%;
    }
  }
  @keyframes btn-anim1 {
    0% {
      left: -100%;
    }
    50%, 100% {
      left: 100%;
    }
  }
  @-webkit-keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%, 100% {
      top: 100%;
    }
  }
  @keyframes btn-anim2 {
    0% {
      top: -100%;
    }
    50%, 100% {
      top: 100%;
    }
  }
  @-webkit-keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%, 100% {
      right: 100%;
    }
  }
  @keyframes btn-anim3 {
    0% {
      right: -100%;
    }
    50%, 100% {
      right: 100%;
    }
  }
  @-webkit-keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%, 100% {
      bottom: 100%;
    }
  }
  @keyframes btn-anim4 {
    0% {
      bottom: -100%;
    }
    50%, 100% {
      bottom: 100%;
    }
  }