*{
	margin: 0;
	padding: 0;
	font-family: Gill Sans, sans-serif;
	text-decoration: none;
	list-style: none;
	box-sizing: border-box;
}

body{
	text-decoration: none;
	color: black;
	background : black;
}

/*mise en forme du header*/

.navbar{
	padding : 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
}

.navbar a{
	color: black;
}

.navbar .logo{
	font-size: 2em;
	font-weight: bold;	
	color : #d16aff;
}

.navbar .nav-links ul{
	display: flex;
}

.navbar .nav-links ul li{
	margin: 0 50px;
}

.navbar .nav-links ul li.active a{
	color: #7ab1c7;	
	font-weight: 600;	
}

.navbar ul li a:hover{
	color: #7ab1c7;
}

.navbar .menu-burger{
	display: none;
	position: absolute;
	top: 30px;
	right: 30px;
	width: 60px ;	
}

/*Code responsive pour que lorsqu'on réduit notre page, atteint une certaine taille, le header disparait et laisse paraitre le menu hamburger*/

@media screen and (max-width: 900px){

	.navbar{
		padding: 0;
	}

	.navbar .logo{
		position: absolute;
		top: 40px;
		left: 30px;
	}

	.navbar .menu-burger{
		display: block;
	}
	
	.nav-links{
		top: 0;
		left: 0;
		position: absolute;
		background-color: rgba(255,255,255,0.5);
		backdrop-filter: blur(1px);
		width: 100%;
		height: 100vh;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-left: -100%;
		transition: all 0.5s ease;
	}

	.nav-links.mobile-menu{
		margin-left: 0;
	}

	.nav-links ul{
		display: flex;
		flex-direction: column;
	}

	.navbar .nav-links ul li{
		margin: 30px 0;
		font-size: 1.3em;
	}
}

/*mise en page de la première partie (image + premier paragraphe)*/
	
.home{
	margin-left: 48%;
	margin-right: 10%;
	margin-top: 15%;
}

.home h1{
	font-size: 3em;
	color: #7ab1c7;
	margin-bottom: 30px;
}

.home h3{
	font-size: 1.5em;
	margin-bottom: 30px;
	margin-top: -30px;
	margin-left: 15px;
	font-style: italic;
	color: #4e8397;
}

.home p{
	color: #94a6ad;
	font-size: 1.3em;
}

/*bouton contact me */

.home a{
	background-color: #7ab1c7;
	padding: 10px 20px;
	text-decoration: none;
	font-weight: bold;
	color: white;
	display: inline-block;
	margin: 30px 0;
	border-radius: 10px;
}
/*photo de profil*/

.pfp{
	width: 35%;
	padding: 10px 20px;
	display:  flex;
	margin-top: -27%;
	margin-left: 3%;
	}

/*mise en page de la partie about me*/

.container{
	width: 80%;
	margin: 80px auto;
}

.container h1{
	padding: 60px 0;
	color: black;
	font-size: 4em;
	text-align: center;
	font-family: Gill Sans, sans-serif;
	color: #7ab1c7;
}

.big {
	display: flex;
	width: 100%;
}

.big2 {
	margin-top: -30%;
}

.row{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-top: 15%;
}

.col{
	flex-basis: 50%;
	min-width: 600px;
}

.col video{
	width: 100%;
	padding: 0;
}

.feature-img {
	width: 90%;
	margin: auto;
	position: relative;
	border-radius: 5%;
	overflow: hidden;
}


.feature-img img {
	width: 100%;
	min-width: 1em;
}

.small-img-row {
	display: flex;
	background: lightcyan;
	margin: 20px 0;
	align-items: center;
	border-radius: 5%;
	overflow: hidden;
	margin-left: 55%;
	margin-right: 5%;
	margin-bottom: 2%;
	padding: 5px;
}

.small-img-row p {
	margin-left: 5% ;
	color: #808080;
	font-size: 1.3em;
}
.small-img img {
	width: 5em;
	line-height: 22px;
	font-size: 15px;
	border-radius: 5%;
	margin-left: 15px;
	padding: 5px;
}


.dl ul {
    padding: 0;
    list-style-type: none;
    margin-top: 2%;
    margin-left: 70%;
}

.dl li {
    font-size: 25px;
    width: 8em;
    height: 2em;
    font-family: Gill Sans, sans-serif;
	color: #7ab1c7;
    border-left: 0.08em solid;
    position: relative;
    margin-top: 0.8em;
    cursor: pointer;
}

.dl li::before,
.dl li::after
 {
    content: '';
    position: absolute;
    width: inherit;
    border-left: inherit;
    z-index: -1;
}

.dl li::before {
    height: 80%;
    top: 10%;
    left: calc(-0.15em - 0.08em * 2);
    filter: brightness(0.8);
}

.dl li::after {
    height: 60%;
    top: 20%;
    left: calc(-0.15em * 2 - 0.08em * 3);
    filter: brightness(0.6);
}

.dl li span {
    position: relative;
    height: 120%;
    top: -10%;
    box-sizing: border-box;
    border-radius: 15px;
    border: 0.08em solid;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    text-transform: capitalize;
    transform: translateX(calc(-0.15em * 3 - 0.08em * 2));
    transition: 0.3s;
}

.dl li:hover span {
    transform: translateX(0.15em);
}

.dl a{
	color: #7ab1c7;
}

/*mise en forme de la partie skills */

.skills {
	width: 100%;
	height: auto;
	margin-bottom: -30%;
	display: flex;
}

.skills-title {
	margin-top: 15%;
	text-align: center;
	font-family: Gill Sans, sans-serif;
	color: #7ab1c7;
	font-size: 4em;
}

/*skills graphisme*/

.skillsG h2{
	text-align: center;
	font-size: 1.7em;
	color: #7ab1c7;

}

.skillsG h3{
	margin: 5%;
	color: #94a6ad;
}

.skillsG{
	width: 700px;
	margin: 5% auto;
	margin-bottom: 40%;
	padding: 20px;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
	border-radius: 15px;
}

.skillsG li{
	margin: 20px 0;
	padding: 5px;
}

.bar{
	background-color: #353b48;
	display: block;
	height: 20px;
	border: 1px solid rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.bar:hover{
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.bar span{
	height: 20px;
	float: left;
	background: #7ab1c7 ;
}

.ps{
	width: 75%;
	animation: ps 4s;
}
.is{
	width: 50%;
	animation: is 4s;
}
.id{
	width: 60%;
	animation: id 4s;
}
.davinci{
	width: 50%;
	animation: davinci 4s;
}
.finalcut{
	width: 60%;
	animation: finalcut 4s;
}
.blender{
	width: 90%;
	animation: blender 4s;
}

/*skills dev web*/

.skillsD h2{
	text-align: center;
	font-size: 1.7em;
	color: #7ab1c7;

}

.skillsD h3{
	margin: 5%;
	color: #94a6ad;
}

.skillsD{
	width: 700px;
	margin: 5% auto;
	margin-bottom: 40%;
	padding: 20px;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
	border-radius: 15px;
}

.skillsD li{
	margin: 20px 0;
	padding: 5px;
}

.bar{
	background-color: #353b48;
	display: block;
	height: 20px;
	border: 1px solid rgba(0, 0, 0, 0.3);
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
}

.bar:hover{
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.bar span{
	height: 20px;
	float: left;
	background: #7ab1c7 ;
}

.html{
	width: 65%;
	animation: html 4s;
}
.css{
	width: 50%;
	animation: css 4s;
}
.php{
	width: 40%;
	animation: php 4s;
}
.wp{
	width: 80%;
	animation: wp 4s;
}
.js{
	width: 40%;
	animation: js 4s;
}

/*les outils les plus utilisé aka image clique */

.clique{
	width: 80%;
	margin: 80px auto;
	margin-bottom: 20%;
}

.clique h1{
	padding: 60px 0;
	color: black;
	font-size: 4em;
	text-align: center;
	font-family: Gill Sans, sans-serif;
	color: #7ab1c7;
}

.clique img{
	margin-left: 22%;
}


/* career  */

.container-car {
	position: relative;
	width: 1050px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	transition: 0.5s;
	transform: skewY(-10deg);
	margin-top: 10%;
	margin-left: 20%;
	margin-bottom: 15%;
}

.container-car {
	position: relative;
	width: 1250px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	transition: 0.5s;
	transform: skewY(-10deg);
}

.container-car .card {
	position: relative;
	width: 300px;
	height: 400px;
	background: #fff;
	transition: 0.5s;
}

.container-car .card:before{
	content: '';
	position: absolute;
	top: -15px;
	left: 0;
	width: 100%;
	height: 15px;
	background: #00c0f6;
	transform-origin: bottom;
	transform: skewX(45deg);
	transition: 0.5s;

}

.container-car .card:after{
	content: '';
	position: absolute;
	top: -15px;
	left: -15px;
	width: 15px;
	height: 50%;
	background: #00c0f6;
	transform-origin: left;
	transform: skewY(45deg);
	transition: 0.5s;
	border-bottom: 200px solid #d9d9d9;
}

.container-car .card:hover {
	transform: translateY(-40px);
}

.container-car .card .imgBx {
	position: relative;
	width: 300px;
	height: 200px;
	background: #00c7ff;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.container-car .card .imgBx img {
	max-width: 100px;
}

.container-car .card .imgBx h3 {
	position: relative;
	color: #fff;
	margin-top: 10px;
}

.container-car .card .content {
	position: relative;
	width: 100%;
	height: 200px;
	padding-top: 20px;
	color: #777;
	background: #fff;
	text-align: center;
}

.container-car .card .content:before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 400px;
	background: linear-gradient(transparent,transparent,rgba(0, 0, 0, .1));
	transform-origin: bottom;
	transform: skewX(45deg);
	transition: 0.5s;
	pointer-events: none;
	z-index: -1;
}

.container-car .card:hover .content:before {
	 transform: translateY(40px) skewX(45deg) ; 
	 filter: blur(5px);
	 opacity: 0.5;
	}

.container-car .card:nth-child(1) {
	z-index: 3;
}

.container-car .card:nth-child(2) {
	z-index: 2;
}

.container-car .card:nth-child(3) {
	z-index: 1;
}


/*jobs skills */
.sliders {

    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000000;
    overflow-x: hidden;
    height: 100vh;
}

.sliders a{

    text-decoration: none;
}

.sliders input {

    display: none;
}

.sliders .container {

    width: 100%;
    height: 100%;
    max-width: 600px;
    max-height: 600px;
    display: flex;
    transform-style: preserve-3d;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sliders .cards {

    position: relative;
    height: 500px;
    width: 430px;
    margin-bottom: 20px;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.sliders .cards label {

    position: absolute;
    width: 430px;
    left: 0;
    right: 0;
    margin: auto;
    cursor: pointer;
    transition: transform 0.55s ease;
}

.sliders .cards .card{

position: relative;

height: 100%;

background-color: #0e003d;

border-radius: 10px;

padding: 30px 35px;
}

.sliders .card .image{

    display: flex;
    justify-content: space-between;
}

.sliders .card .image img{

    border-radius: 5px;
    box-shadow: 15px 15px 40px rgba(0, 0, 0, 50%);
    margin-top: 23px;
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.sliders .card .image .dots{

    text-align: center;
}

.sliders .dots div{

    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.sliders .dots div:nth-child(1){

background-color: #e19bff;
}


.sliders .card .infos{

    display: block;
    text-align: end;
    padding-top: 60px;
}

.sliders .infos span{

    display: block;
}

.sliders .infos .name{

font-size: 30px;

color: #d16aff;

letter-spacing: 8px;

margin-bottom: 20px;

padding-left: 25%;

transition: all .6s ease;
}

.sliders .infos .lorem{

    font-size: 15.5px;
    color: #94a6ad;
    letter-spacing: 3px;
}

.sliders .card .btn-contact{

width: 100%;

height: 60px;

margin: 35px auto;

border-radius: 5px;

background-color: #520077;

display: flex;

align-items: center;

justify-content: center;

color: #fff;

font-size: 25px;

letter-spacing: 10px;

font-weight: 700;

transition: all .7scubic-bezier(0.4, 0, 1, 1);
}

.sliders .card .socials{

    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.sliders .socials i{

    font-size: 25px;
    transition: all .7s ease;
    color: var(--current-color2);
}



#s1:checked~.cards #slide4,
#s2:checked~.cards #slide5,
#s3:checked~.cards #slide1,
#s4:checked~.cards #slide2,
#s5:checked~.cards #slide3 {
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 45%);
    transform: translate3d(-70%, 0, -220px);
    --current-color1: #ECEAED;
    --current-color2: #404457;
}

#s1:checked~.cards #slide5,
#s2:checked~.cards #slide1,
#s3:checked~.cards #slide2,
#s4:checked~.cards #slide3,
#s5:checked~.cards #slide4 {
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 45%);
    transform: translate3d(-35%, 0, -120px);
    --current-color1: #ECEAED;
    --current-color2: #404457;
}

#s1:checked~.cards #slide1,
#s2:checked~.cards #slide2,
#s3:checked~.cards #slide3,
#s4:checked~.cards #slide4,
#s5:checked~.cards #slide5 {
    box-shadow: 0 25px 50px 0 rgba(0, 0, 0, 50%);
    transform: translate3d(0, 0, 0);
    --current-color1: #b885ff;
    --current-color2: #ffffff;
}

#s1:checked~.cards #slide2,
#s2:checked~.cards #slide3,
#s3:checked~.cards #slide4,
#s4:checked~.cards #slide5,
#s5:checked~.cards #slide1 {
    box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 45%);
    transform: translate3d(35%, 0, -120px);
    --current-color1: #ECEAED;
    --current-color2: #404457;
}

#s1:checked~.cards #slide3,
#s2:checked~.cards #slide4,
#s3:checked~.cards #slide5,
#s4:checked~.cards #slide1,
#s5:checked~.cards #slide2 {
    box-shadow: 0 15px 35px 0 rgba(0, 0, 0, 45%);
    transform: translate3d(70%, 0, -220px);
    --current-color1: #ECEAED;
    --current-color2: #404457;
}

/* gallerie image */

.gallerie .container {
    display: flex;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    color : black;
}

.gallerie img {
    width: calc(33.33% - 10px); /* 3 images par ligne sur desktop */
    height: auto;
    object-fit: cover;
    object-position: bottom;
    padding: 5px;
    transition: transform 0.3s ease-in-out;
}

.gallerie img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .gallerie img {
        width: calc(50% - 10px); /* 2 images par ligne sur tablette */
    }
}

@media screen and (max-width: 600px) {
    .gallerie img {
        width: 100%; /* 1 image par ligne sur mobile */
    }
}


/*formulaire */

.formulaire {
  margin: 0px;
  padding: 0px;
  background-color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: Gill Sans, sans-serif;
  text-decoration: none;
  list-style: none;
}


.formulaire header{
  height:100%;
  background-color:black;
}

.formulaire header h1{
  background-color: #7ab1c7;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: bold;
  color: white;
  display: inline-block;
  margin: 30px 0;
  border-radius: 10px;
}



.formulaire header nav ul{
  margin:0;
  padding:0;
  list-style-type:none;
  height:100%;

}


.formulaire header nav ul li{
  display:inline-block;
  margin:20px;
  width:250px;
  text-align:center;
  border-radius: 5%;
}

.formulaire header nav ul li a{
  display:block;
  width:100%;
  height:100%;
  line-height:40px;
  color:#FFF;
  text-decoration: none;

}



.formulaire form {
  padding: 30px;
  background-color: #bbd2e1;
  border-radius: 10px;
}
.formulaire form h1 {
  font-size: 20px;
}
.formulaire form .separation {
  width: 100%;
  height: 1px;
  background-color: #747cdf;
}

.formulaire form .corps-formulaire {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.formulaire form .corps-formulaire .groupe {
  position: relative; 
  margin-top: 20px;
  display: flex;
  flex-direction: column;
}
.formulaire form .corps-formulaire .gauche .groupe input {
  margin-top: 5px;
  padding: 10px 5px 10px 30px;
  border: 1px solid #c9c9c9;
  outline-color: #747cdf;
  border-radius: 5px;
}
.formulaire form .corps-formulaire .gauche .groupe i {
  position: absolute;
  left: 0;
  top: 25px;
  padding: 9px 8px;
  color: #747cdf;
}
.formulaire form .corps-formulaire .droite {
  margin-left: 40px;
}
.formulaire form .corps-formulaire .droite .groupe {
  height: 100%;
}
.formulaire form .corps-formulaire .droite .groupe textarea {
  margin-top: 5px;
  padding: 10px;
  background-color: lightgray;  
  border-radius: 5px;
  resize: none;
  height: 100%;
}
.formulaire form .pied-formulaire button {
  margin-top: 10px;
  background-color: #747cdf;
  color: white;
  font-size: 15px;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  outline: none;
  cursor: pointer;
  transition: transform 0.5s;
}
.formulaire form .pied-formulaire button:hover {
    background-color:#77b5fe;
    border-radius: 5%;
 -moz-border-radius: 50px; 
-webkit-border-radius:100px
}




/*footer */

footer{
	padding : 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	box-sizing: border-box;
	background-color: rgba(0,0,0,0.15);
	font-family: Gill Sans, sans-serif;
}

footer a{
	color: black;
}

footer .logo{
	font-size: 2em;
	font-weight: bold;	
}

footer .nav-links ul{
	display: flex;
}

footer .nav-links ul li{
	margin: 0 50px;
}

footer .nav-links ul li.active a{
	color: #7ab1c7;	
	font-weight: 600;	
}

footer ul li a:hover{
	color: #7ab1c7;
}

footer .menu-burger{
	display: none;
	position: absolute;
	top: 30px;
	right: 30px;
	width: 60px ;	
}

footer address{
	background-color: #7ab1c7;
	padding: 10px 20px;
	text-decoration: none;
	font-weight: bold;
	color: white;
	display: inline-block;
	margin: 30px 0;
	border-radius: 10px;
}

footer h3{
	font-style: italic;
	font-size: 0.8em;

}
