/*------------------------------------------------------------------------------------------ commun----------------------------- */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html{
  scroll-behavior: smooth;
}


/* ---------------------------------------------------------------------------------------fonts---------------------------------- */
@font-face {
  font-family: 'Source Code Pro';
  src: url('font/SourceCodePro-/SourceCodePro-Regular.woff2') format('woff2'),
      url('font/SourceCodePro-/SourceCodePro-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('font/Montserrat/Montserrat-Bold.woff2') format('woff2'),
      url('font/Montserrat/Montserrat-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}


h1,h2,h3,a{
  font-family: 'Montserrat';
  font-weight: bold;
}

p,form,button{
  font-family: 'Source Code Pro';
  font-weight: normal;
}

span{
  color: #a77d0a;
  font-weight: bold;

}

/* --------------------------------------------------------------------------Cookies----------------------------------------------------------------- */
.popup-rgpd{
  position: fixed;
  bottom: 0;
  display: flex;
  padding: 9px;
  width: 100%;
  gap: 20px;
  justify-content: center;
  height: auto;
  background-color: #111110b0;
  color: #FFF;
  align-items: center;
  z-index: 8;
  opacity: 0;
  animation: cookie 0.6s;
  animation-delay: 7s;
  animation-fill-mode: forwards;
}

@keyframes cookie {
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
  
}

.popup-rgpd p a {
  text-decoration: none;
  color: #a77d0a;
}
.popup-rgpd p a:hover{
  color: #fff;
}

.popup-rgpd .groupe-btn-rgpd{
  display: flex;
  gap: 20px;
}

.popup-rgpd .groupe-btn-rgpd button{
  padding: 5px;
  color: #000;
  border-radius: 8px;
  background-color: #FFF;
  cursor: pointer;
}

.popup-rgpd .groupe-btn-rgpd button:hover{
  background-color: #a3f5c6;
}


/* -----------------------------------------------------------------------------------Message Email--------------------------------------------------------- */

.message-mail {
	width: 100%;
	text-align: center;
	height: 30px;
	margin-top: 15px;
	align-self: flex-end;
  font-weight: bold;
  opacity: 0;
  animation: mailMessage 2s;

}
@keyframes mailMessage {
  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
  
}


/* ---------------------------------------------------------------------------------Animation des liens dans le menu coulissant---------------------------------- */

.mn-burger .mnu-burger li{
  width: 70%;
  text-align: center;
  height: auto;
  transition: 0.4s;
 

}

.mn-burger .mnu-burger li:hover{

  transform: translate(3px, 12px);
  padding: 5px;
  box-shadow:  5px -5px 6px #2d744b ;
  transition: 0.4s;
}





/*------------------------------------------------------------------ header -------------------------------------------------- */
/* header{
  position: fixed;
  z-index: 3;
} */
header,
ul {
  width: 100%;
  display: flex;
}
header {
  justify-content: center;
  margin-top: 7px;
  position: absolute;
}
nav {
  width: 50%;
}
ul {
  justify-content: space-between;
  align-items: center;
}

ul img {
  height: 60px;
}

li {
  list-style: none;
}

ul li a {
  text-decoration: none;
  color: #000;
 
  font-weight: 900;
  transition: 0.4s;
 
}

ul li a:hover {
color: #a77d0a;

}


.menu-burger{
  position: fixed;
  width: 52px;
  height: 34px;
  top:23px;
  right: 40px;
  padding: 3px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
  opacity: 0;
  cursor: pointer;
  transition: 0.3s;

}

.menu-burger span{
  width: 100%;
  height: 5px;
  display: block;
  background-color: #000;
  top: 50%;
  transition: 0.3s;
}

.menu-burger:hover{
  transform: rotate(45deg);
  transition: 0.3s;
}

.burger-show{
  opacity: 1;
  display: flex;
  transition: 1s;
}

.mn-burger{
  width: 25%;
  height: 100vh;
  background-color: #a3f5c7ea;
  position: fixed;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  transform: translateX(-100%);
  transition: 1s;
  bottom: 0;
 
}



.apparition{
  transform: translateX(0%);
  transition: 1s;
}

.mn-burger ul{
  display: flex;
  height: 50vh;
  flex-direction: column;
}

.mn-burger ul li a{
  font-size: 26px;
  transition: 0.5s;
}
/* .mnu-burger li a:hover{
  color:#FFF;
  transform: scale(2);
  transition: color 0.5s scale 0.5s;
} */

/* -----------------------------------------------------------------------------------------   MAIN   ------------------------------------------------------------------------------------------------ */

/*---------------------------------------------------------- accueil------------------------------------------ */

#accueil-mobile{
  display: none;
}


#accueil{
  width: 100%;
  height: 100vh;
  background-image: url(images/background.png);
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.bloc-accueil-animation{
  display: flex;
  justify-content: flex-start;
}
.accueil-animation{
  margin-top: 50px;
  font-size: 22px;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  animation: machine 1.5s steps(41);
}

@keyframes machine {

  from{ width: 0;}
  to{width: 100%;}
  
}

#accueil h1{
  padding: 0;
  font-size: 75px;
  opacity: 0;
  animation: tada 3s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
}



@keyframes tada {

  from{
    opacity: 0;
  }
  to{
    opacity: 1;
  }
  
}




#accueil h2{
  font-size: 55px;
  color: #a77d0a;
  opacity: 0;
  animation: tada 3s;
  animation-delay: 3.5s;
  animation-fill-mode: forwards;

}
#accueil h3{

  font-size: 22px;
  display: flex;
  gap: 6px;
  align-items: center;
  padding: 10px;
}



#accueil h3 span{

  color: #a77d0a;
  
}


.bloc-bouton-accueil{
  margin-top: 100px;
  width: 500px;
  display: flex;
  justify-content: center;
  gap: 30px;
  opacity: 0;
  animation: tada 3s;
  animation-delay: 5s;
  animation-fill-mode: forwards;
}


.bloc-bouton-accueil a{
  background-color: black;
  text-decoration: none;
  padding: 10px;
  color: #FFF;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  font-family: 'Source Code Pro';
  font-weight: normal;
  transition: 0.3s;
}



html body main section#accueil img{
  display: none;
}

.bloc-bouton-accueil a:hover{
  background-color: #a3f5c6;
  color: #000;
  transform: translateY(-8px) translateX(-8px);
  box-shadow: 3px 4px;
}


/* --------------------------------------------------------------------section A propos----------------------------------------- */
#a-pps {
  margin-top: 30px;
  padding-top: 15px;
}
.marque-page {
  width: 103px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 50%;
  transform: translateX(-50%);
}
.triangle {
  height: 90px;
}

#a-pps .wdt{
  padding-left: 30px;
  padding-top: 60px;
}

.marque-page p {
  position: absolute;
  font-size: 25px;
  transform: translateY(-10px);
  text-align: center;
}

#a-pps {
  margin-top: 20px;
  width: 100%;
}

h1 {
  padding-left: 40px;
  margin-top: 70px;
  font-size: 35px;
}

.bloc-black-bgd {
  background-color: #000;
  padding-left: 40px;
  padding-top: 40px;
  padding-right: 40px;
  width: 90%;
  color: #fff;
  margin-top: 90px;
  height: 498px;
  border-top-right-radius: 120px;
}

.bloc-black-bgd h2 {
  margin-bottom: 40px;
  font-size: 25px;
}


.area-btn {
  display: flex;
  justify-content: end;
}

.bloc-black-bgd a {
  display: block;
  margin-top: 50px;
  color: #000;
  background-color: #ffffff;
  width: 140px;
  padding: 12px;
  font-family: 'Source code Pro';
  font-weight: normal;
  text-align: center;
  text-decoration: none;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  transition: 0.3s;
}

.bloc-black-bgd a:hover {
  background-color: #000000;
  color: #FFF;
  transform: translateX(-5px) translateY(-5px);
  box-shadow: 3px 3px 2px #ffffff;
}




/* ---------------------------------------------------------------------------section projet web---------------------------------------------- */

#projet-web {
  margin-top: 100px;
  width: 100%;
  height: 100vh;
  padding: 40px;

}

#projet-web .marque-page {
  position: absolute;
  z-index: 2;
  margin-top: -25px;
  margin-left: 0;
  transform: translateX(0);
}

.deco-cadre-vert {
  width: 90%;
  height: 768px;
  margin-left: 50%;
  transform: translateX(-50%);
  height: 815px;
  border: 4px solid #a3f5c6;
  display: flex;
  gap: 70px;
  justify-content: space-between;
}
.texte-pages {
  display: flex;
  flex-direction: column;
}

.bloc-txt {
  width: 500px;
  background-color: #a3f5c6;
  height: auto;
  padding: 35px;
  border-bottom-right-radius: 85px;
  margin-top: 300px;
  font-family: "Mosk Normal 400";
  font-weight: normal;
}

.num-pages {
  display: flex;
  transform: translateX(-28px);
  margin-top: 58px;
  gap: 15px;
  width: 400px;
}

.num-pages div {
  width: 50px;
  height: 50px;
  border: 2px solid #a3f5c6;
  border-radius: 50%;
  display: flex;
  font-family:"Source Code Pro" ;
  background-color: #fff;
  align-items: center;
  justify-content: center;
  color: #000;
  cursor: pointer;
}

.num-pages div:hover {
  background-color: #a3f5c6;
}

.ensemble-titre-site {
  width: 450px;
  height: 40px;
  overflow: hidden;
}



.slider-ensemble-titre div {
  color: #000;
  font-family: "Montserrat";
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  width: 450px ;
  height: 40px ;
}

.cadre-projet {
  height: 400px;
  overflow: hidden;
  width: 450px;
}

.slider-projet {
  display: flex;
  gap: 20px;
  transition: 0.8s;
}

.slider-ensemble-titre{
  transition: 0.8s;
 
}

.slider-projet div {
  width: 450px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.slider-projet div img {
  width: 450px;
  height: 400px;
  object-fit: contain;
}

.description-projet {
  margin-top: 140px;
}

#maud-inst{
  margin-top: -55px;
}

.description-projet p {
  width: 450px;
  margin-top: 10px;
}

#alma-text,
#reboot,
#taxi-template,
#tcm-site {
  display: none;
  width: 450px;
  margin-top: 10px;
  opacity: 1;
  transition: 0.8s;
}

.liens-site {
  margin-top: 10px;
  text-align: center;
}

.liens-site a {
  text-decoration: none;
  color: #a77d0a;
}

#am,
#mir,
#tx,
#tcm {
  display: none;
}

#am{
  margin-top: -20px;
}
.illustration-projet-master {

  gap: 200px;
  overflow: hidden;
  width: 400px;
}
.container-illustration{
  display: flex;
  transition: 0.8s;
}
.illustr {
  width: 400px;
  display: flex;
}
.illustr img {
  max-width: 400px;
  object-fit: contain;
  display: flex;
  align-items: end;
}



/* --------------------------------------------------------------------------------------------Projet Design------------------------------------- */

#projet-design{
  display: flex;
  flex-direction: column;
  height: 100vh;
}

#projet-design .marque-page{
 margin-top: 20px;
}


.container-design{
  width: 100%;
  display: flex;
  margin-top: 150px;
}
.bloc-gauche-texte,.bloc-droit-gallerie{
  width: 50%;
}

.container-design-txt{
  width: 680px;
  display: flex;
  margin-left: 50%;
  transform: translateX(-50%);
  gap: 10px;
  height: 350px;
}

.menu-container button{
  width: 150px !important;
}


.illu-txt-design{
  width: 246px;
  height: 443px;
  background-color: #a3f5c6;

}

.illu-txt-design:nth-child(1){
  border-bottom-left-radius: 200px;
}
.illu-txt-design:nth-child(2){
  border-top-right-radius: 200px;
}

.container-design-txt p{
  position: absolute;
  width: 300px;
  margin: 0 auto;
  margin-left: 50%;
  transform: translateX(-70%);
  margin-top: 150px;
}





/* --------------------------------------------------------------------------------gallerie design------------------------------ */


.bloc-droit-gallerie{
  display: flex;
  align-items: center;
}

.gallerie-container{
  width: 80%;
  height: auto;
  border: 2px solid #a3f5c6;
}

.menu-container{
  width: 100%;
  display: flex;
  justify-content: space-around;
  padding: 25px;
}

.menu-container button{
  width: 120px;
  height: 28px;
  background-color: #a3f5c6;
  color: #000;
  border-bottom-right-radius: 17px;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}


.menu-container button:hover{
  background-color: #FFF;
  box-shadow: 1px 4px #000;
  transform: translateX(-5px) translateY(-3px);
}

.grid-container{
  width: 90%;
  margin-left: 50%;
  transform: translateX(-50%);
  height: 550px;
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
  
  
}

.active{
  width: 215px;
  height: 180px;
  object-fit: contain;
  transition: height 1s;
  cursor: pointer;
  padding: 5px;
  transition: 0.5s;

}

.active:hover{
  transform: scale(0.8);
  transition: 0.5s;
}

.inactive{
  height:  0;
  transition: height 1s;
  padding: 0;

}

.container-image{
  width: 90%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-top: 90px;
  display: flex;
  align-items: center;
  justify-content: space-around;
 

}

.bloc-100{
  width: 450px;
  height: 450px;
  transition: 0.4s;
  cursor: pointer;

}

.bloc-100 img{
  width: 450px;
  height: 450px;
  object-fit: contain;
}

.enlarge{
  margin-left: -50%;
  margin-top: 50%;
  transform: scale(2) translateX(65%) translateY(-43%);
  transition: 0.4s;
}



.text-bloc-100{
  width: 500px;
}



.text-bloc-100 span a{
  text-decoration: none;
  color: #a77d0a;

}

.croix-bloc-100{
  width: 88px;
  height: 83px;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  cursor: pointer;
}


.cross:hover{
  transform: rotate(360deg);
  transition: 0.8s;
}


/*----------------------------------------------------------------------------------- section contact -------------------------------------------- */

#contact{
  margin-top: 130px;
  width: 90%;
  display: flex;
  flex-direction: column;
  height: 100vh;
  margin-left: 50%;
  transform: translateX(-50%);
  padding: 40px;
}

#contact .marque-page{
  position: absolute;
  transform: translateX(-50%) translateY(-25px);
}
.bloc-deco-contact{
  background-image: url(images/contact-djisyn.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 210px;
}
.bloc-texte-contact{
  width: 100%;
  display: flex ;
  ;
}
.bloc-form-contact{
  width: 50%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.decoration-contact{
  width: 100%;
  height: 130px;
  border-right: 6px solid;
  border-color: #a3f5c6;
}

form{
  display: flex;
  flex-direction: column;
  width: 500px;
  margin-left: 50%;
  transform: translateX(-50%);
  gap: 20px;

}
.civilite{
  width: 100%;
  display: flex;
  gap: 15px;
}
.civilite input{
  width: 50%;
  border-left: none;
  border-top: none;
  border-right: none;
  border-color: #a3f5c6;
}
.civilite input[placeholder]{
  padding-bottom: 5px;
}

#email,#objet,#message{
  border-top:none;
  border-left: none;
  border-right: none;
  border-color: #a3f5c6;
}

#email[placeholder],#objet[placeholder]{
  padding-bottom: 5px ;
}

#message{
  resize: none;
}

.bouton-envoi{
  width: 120px;
  height: 40px;
  background-color: #a3f5c6;
  font-family: 'Source Code Pro';
  color: #000;
  border: none;
  cursor: pointer;
  border-top-left-radius: 15px;
  border-bottom-right-radius: 15px;
  transition: transform 0.3s;
}


.bouton-envoi:hover{
  background-color: #FFF;
  transform: translateX(-3px) translateY(-3px);
  box-shadow: 2px 4px  #000;
}


.bloc-remerciement-contact{
  width: 50%;
  display: flex;
  justify-content: center;
}
.remerciement{
  width: 500px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.rgpd{
  display: flex;
  justify-content: space-around;
  font-size: 13px;
  gap: 30px;
}

.rgpd input{
  appearance: none;
  border: 2px solid #a3f5c6;
  padding: 8px;
  cursor: pointer;
  width: 20px;
  height: 20px;
}

.rgpd input:checked{
  background-image: url(images/checked.png);
  background-repeat: no-repeat;
  background-size: contain;
}

.email-bloc{
  width: 100%;
  margin-top: 70px;
}

.email-bloc a {
  text-decoration: none;

  color: black;
  transition:  2s;
}

.email-bloc a:hover {
  color: #a77d0a;
  font-size: 17px;
  transition: 2s;
}





/*--------------------------------------------------------------------------------------------- FOOTER------------------------------------------- */


footer{
  width: 100%;
  display: flex;
  justify-content: center;
}
.bloc-footer{
  background-color: #a3f5c6;
  padding: 30px;
  padding-left: 30px;
  padding: 10px 80px;
  border-top-right-radius: 75px;
}
.bloc-footer p{
  text-align: center;
  padding-top: 4px;

  font-size: 11px;
}
.liens-footer{
  font-family: 'Mosk Bold 700';
  font-size: 15px;
}

.liens-footer a{
  text-decoration: none;
  color: #000;
  font-size: 13px;
  transition: 0.3s;
}

.liens-footer a:hover{
  color: #FFF;
  transition: 0.3s;
}

.liens-footer span{
  color: #000;
}





/*---------------------------------------------------------------------------------------------------------------------------------- Mentions Légales---------------------------------------------------------------------------------------------- */

.main-mentions-legales{
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;

}

.bloc-mentions-legales{
  width: 90%;
  height: 210px;
  background-image: url(images/mentions-legales-djisyn.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  justify-content: center;

}

.bloc-mentions-legales h1{
  color: #FFF;
  padding-left:0;
  text-align:center;
}



.container-articles-mentions-legale{
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  padding-left: 80px;

}

.articles-mentions{
  width: 400px;
}

.articles-mentions h3{
  margin-bottom: 10px;

}

/* -----------------------------------------------------------------------------------------------------------Politique de confidentialite-------------------------------------------------------------------------------------------- */

.header-confidentialite{
  position: relative;
}


.bloc-politique{
  width: 90%;
  background-image: url(images/fond-confidenntialite.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 40%;
  height: 210px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
  justify-content: center;

}


.bloc-article-politique{
  margin-top: 80px;
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
  width: 100%;
  margin-left: 5%;
  margin-right: 5%;
  margin-bottom: 80px;

  
}

.bloc-article-politique span{
  font-size: 20px;
  color: #a77d0a;
}



.artpolitique{
  width: 40%;
}




.bloc-politique h1 {
	color: #000;
	width: 100%;
	margin: 0;
	padding-left:0;
	text-align: center;

}

.main-confidentialite{
  height: auto !important;
}

/* ---------------------------------------------------------------------------------------------------CREDITS--------------------------------------------------------------------------------------------------------- */


.header-credits{
    overflow-x:hidden;
}

.credits-titre{
  padding: 0;
  text-align: center;
}

.illustrations-page-credits{
  width: 500px;
  margin: 0 auto;
}

.illustrations-page-credits p{
  margin-top: 40px;
  background-color: #FFF;
  box-shadow: 3px 3px 8px;
  padding: 15px;
}




/* ----------------------------------------------------------------------------------------------------------------RESPONSIVE -------------------------------------------------------------------------------------------------------------------------- */


/* --------------------------------------------------------------------------------------------------responsive de 320px à 359px------------------------------------------------------ */


@media (min-width:320px) and (max-width:359px){

/* --------------------------------------------------------------------Accueil--------------------------------- */
header nav ul li:not(.mob-logo){
  display: none;
}
.accueil-animation{
  font-size: 12px;
  padding-top: 31px;
  padding-bottom: 49px;
  margin-top: 22px;
}

#accueil h1, #accueil h2{
  text-align: center;
}


#accueil h1{
  font-size: 59px;
  margin-top: 14px;
}
#accueil h2{
  font-size: 40px;
}

#accueil{
  background-image: url();
  background-color: #a3f5c6;
}

html body main section#accueil img{
  display: block;
  width: 100%;
  opacity: 0;
  position: absolute;
  bottom: 0;
  right: 0;
  animation: badjishow 4s ;
  animation-delay: 0.3s;

}

.bloc-bouton-accueil{
  margin-top: 46px;
  z-index: 2;
}

@keyframes badjishow {

0%{
    opacity: 0;
  }
  50%{
    opacity:1;
  }
  100%{
    opacity: 0;
  }
}

@keyframes move {

  from{
    width: 100%
  }
  to{
    width: 0;
  }
}



/* --------------------------------------------------------------------------- A propos---------------------------------------- */

.bloc-black-bgd{
  height: auto;
}
.area-btn{
  padding-bottom: 40px;
}


/* ---------------------------------------------------------------------------Projet Web-------------------------------------- */

#projet-web{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
  height: auto;
}


.deco-cadre-vert{
  width: 90%;
  flex-direction: column;
  height: auto !important;
  margin-left: 0;
  transform: translateX(0);
  padding-bottom: 50px;

}

.bloc-txt{
  width: 100%;
  margin-top: 149px;
}

.num-pages{
  position: absolute;
  bottom: -27px;
  left: 10px;
}

.slider-ensemble-titre div{
  width: 100%;
}

.description-projet{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5px;
}

#maud-inst, #alma-text, #reboot, #taxi-template, #tcm-site {
	width: 90%;
	margin-top: 10px;
}

#am {
	margin-top: 15px;
}

.illustration-projet-master{
  display: none;
}


/* -------------------------------------------------------------- Projet Design  ----------------------------------------------- */


#projet-design {
	display: flex;
	flex-direction: column;
	height: auto;
  margin-top: 70px;
}

.container-design{
  width: 100%;
  flex-direction: column;
}

.container-design-txt{
  width: 100%;
}

.container-design-txt p{
  width: 90%;
  margin-top: 41px;
  transform: translateX(-50%);

}

.bloc-gauche-texte, .bloc-droit-gallerie {
	width: 90%;
	margin: 0 auto;
}

.bloc-droit-gallerie{

  justify-content: center;
  margin-top: 110px;

}

.gallerie-container{
  width: 100%;
}
.menu-container{
  gap: 5px;
}
.grid-container{
  height: auto;
  width: auto;
  justify-content: center;
}

.container-image{
  display: flex;
  flex-direction: column;
}
.bloc-100 img {
	width: 100%;

}

.text-bloc-100 {
	width: 100%;
}

.croix-bloc-100{
  margin: 0 auto;
}
/* -------------------------------------------------------------------------- Contact----------------------------- */

#contact{
  padding: 0;
  height: auto;
}

.decoration-contact{
  border: none;
}

.bloc-texte-contact{
  display: block;
}

.bloc-form-contact {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

form{
  width: 100%;
}

.bloc-remerciement-contact{
  margin-top: 35px;
  margin-bottom: 35px;
  width: 100%;
}

.remerciement{
  width: 100%;

}

/* --------------------------------------------------------FOOTER ------------------------------------------------ */

.liens-footer{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.liens-footer span{
  display: none;
}

}




/* ----------------------------------------------------------------------------------------------------------------  responsive de 360px à 516 px  ---------------------------------------------------------------------------------------------------- */

@media (min-width:360px) and (max-width:515px){


  .accueil-animation {
    font-size: 13px;
  }


/* -------------------------------------------- A propos------------------------------------ */
.bloc-black-bgd{
  height: auto;
}
.area-btn{
  padding-bottom: 40px;
}

/* ----------------------------------- Projets Web ---------------------------------- */
#projet-web{
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  justify-content: center;
  height: auto;
}

.deco-cadre-vert{
  flex-direction: column;
  height: auto;
  align-items: center;
  margin-left: 0;
  transform: translateX(0);
  padding-bottom: 50px;
}

.bloc-txt{
  width: auto;
  margin-top: 89px;
}

.num-pages{
  position: absolute;
  bottom: -28px;
  left: 10px;
}

.texte-page{
  width: 100%;
}

.description-projet{
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 0;
}

.description-projet p{
  width: 90%;
}

#alma-text, #reboot, #taxi-template, #tcm-site{
  width: 90%;
}

#am{
  margin-top: 0;
}

.illustration-projet-master{
  display: none;
}

/* --------------------------------------------------- Projet Design ------------------------- */

#projet-design{
  margin-top: 70px;
  height: auto;
}

.container-design{
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
  margin-top: 40px;
}

.container-design-txt{
  width: 99%;
}

.container-design-txt p{
  margin-left: 50%;
  transform: translateX(-50%);
  margin-top: 90px;
}

.bloc-gauche-texte, .bloc-droit-gallerie {
	display: flex;
  align-items: center;
  width: 95%;
}

.bloc-droit-gallerie{
  margin-top: 140px;
}

.gallerie-container{
  width: 100%;
}
.menu-container{
  gap: 5px;
  padding: 0;
}
.grid-container{
  height: auto;
  justify-content: center;
}

.container-image{
  display: flex;
  flex-direction: column;
}
.croix-bloc-100{
  margin-left: 50%;
  transform: translateX(-50%);
}

.text-bloc-100 {
	width: 100%;
}

/* -----------------------------------contact------------------------------ */

#contact{
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
  height: auto;
}
.bloc-texte-contact{
  width: 100%;
  display: flex;
  flex-direction: column;
}
.bloc-form-contact {
	width: 100%;
	display: flex;
	justify-content: center;
	flex-direction: column;
}
.decoration-contact{
  display: none;
}

form{
  width: 100%;
  padding-top: 60px;
}

.rgpd p{
  padding: 0;
}

.bloc-remerciement-contact {
	width: 100%;
	display: flex;
	justify-content: center;
}

.remerciement p{
  margin-top: 30px;
}

.email-bloc{
  margin-top: 25px;
  margin-bottom: 25px;
}


}
/* ----------------------------------------------------------------------------------------------------------Responsive de 360px à 623 px -------------------------------------------------------------------------------------------------------- */

@media (min-width:360px) and (max-width:623px){

  #accueil h1{
    font-size: 44px;
  }

  #accueil h2{
    font-size: 33px;
  }


  .liens-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .liens-footer span{
    display: none;
  }
}


/* ---------------------------------------------------------------------------------------------------------Responsive de 360px  à 1220px---------------------------------------------------------------------------------------------------------- */

@media (min-width:360px) and (max-width:1220px){

  /*--------------------------------- header commun à toutes les tailles---------------------------- */
  
  
  #accueil{
    background-image: url();
    background-color: #a3f5c6;
  }
  
  #a-pps{
    padding-top: 25px;
  }
  
  
  
  
  .accueil-animation{
    font-size: 14px;
  }
  
  #accueil h1, #accueil h2{
    text-align: center;
  }
  
  #accueil h3{
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    
  }
  
  header nav ul li:not(.mob-logo){
    display: none;
    
  }
  header nav ul{
    justify-content: center;
  }
  
  html body main section#accueil img{
    display: block;
    opacity: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    animation: badjishow 4s ;
    animation-delay: 0.3s;
  
  }
  
  @keyframes badjishow {
  
  0%{
      opacity: 0;
    }
    50%{
      opacity:1;
    }
    100%{
      opacity: 0;
    }
  }
  
  @keyframes move {
  
    from{
      width: 100%
    }
    to{
      width: 0;
    }
    
  }
  
  .bloc-bouton-accueil{
    z-index: 2;
  }
  
  
  .bloc-bouton-accueil button{
    width: 130px;
    height: 40px;
    background-color: #000;
    border-style: unset;
    border: none;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    color: #FFF;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .bloc-bouton-accueil button:hover{
  
    transform: translateY(-8px) translateX(-8px);
    background-color: #a3f5c6;
    box-shadow: 3px 4px;
    color: #000;
  
  }
  
  /* ---------------------------------------------------------------Projet design videos ----------------------------- */
  
  
  .bloc-100{
    width: auto;
  }
  .bloc-100 video{
    width: 100%;
  }
  
  }






  /*---------------------------------------------------------------------------------------------------------------------------- responsive dès 516px jusqu'a  640px -----------------------------------------------------------------------------*/

@media (min-width:516px) and (max-width:640px){


  /* --------------------------------section à propos---------------------------------- */


  #a-pps .bloc-black-bgd{
    height: auto;
  }
  #a-pps .bloc-black-bgd .area-btn{
    padding-bottom: 25px;
  }

  /* -----------------------------------section Projets Web--------------------------------- */

  #projet-web {
    margin-top: 100px;
    width: 100%;
    height: auto;
    padding: 0;
  }

  #projet-web .marque-page {
    position: absolute;
    z-index: 2;
    margin-top: -25px;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .deco-cadre-vert {
    width: 91%;
    height: auto;
    height: auto;
    display: flex;
    gap: 70px;
    justify-content: baseline;
    flex-direction: column;
    padding-bottom: 70px;
  }

  .bloc-txt{
    margin-top: 122px;
    width: auto;
  }

  .num-pages{
    position: absolute;
    bottom: -27px;
  }

  .description-projet{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 0;
  }

  #am{
    margin-top: 15px;
  }
  .illustration-projet-master{
    display: none;
  }

  /* ------------------------------------------------ section Projet Design -------------------------------------- */

  #projet-design {
    display: flex;
    flex-direction: column;
    height: auto;
    margin-top: 70px;
  }

 

  .container-design{
    margin-top: 70px;
    flex-direction: column;
  }

  .container-design-txt p{
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: 105px;
  }

  .bloc-gauche-texte{
    display: flex;
    width: 100%;
  }
  .bloc-droit-gallerie{
    width: 100%;
    margin-top: 150px;
    display: flex;
    
  }

  .menu-container{
    padding: 5px;
    gap: 5px;
  }
  .gallerie-container {
    width: 98%;
    height: auto;
    border: 2px solid #a3f5c6;
    margin: 0 auto;
  }
  .grid-container{
    height: auto;
  }

  .container-image{
    display: flex;
    flex-direction: column;
  }
  .croix-bloc-100{
    margin-left: 50%;
    transform: translateX(-50%);
  }
  
  .text-bloc-100 {
    width: 100%;
  }

  /* -------------------------------------------------- section Contact-------------------------------------------- */

  #contact {
    margin-top: 80px;
    width: 92%;
    display: flex;
    flex-direction: column;
    height: auto;
    margin-left: 50%;
    transform: translateX(-50%);
    padding-left: 0;
    padding-right: 0;
    padding-top: 40px;
  }

  .bloc-texte-contact{
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  .bloc-form-contact{
    width: 100%;
  }
  .decoration-contact {
    width: 100%;
    height: 130px;
    border-right: none;
    border-color: none;
  }

  .bloc-remerciement-contact{
    width: 100%;
  }

  .remerciement p{
    margin-top: 80px;
  }
  .email-bloc{
    padding-bottom: 110px;
  }

}

/* ----------------------------------------------------------------------------------------------------------------------Responsive jusqu'a 525px------------------------------------------------------------------------------------------------- */

@media (max-width:525px){
  
  .bloc-100{
    width: 100%;
  }

  .bloc-100 video{
    width: 100%;
  }



  .liens-footer a{
    text-align: center;
  }

  .liens-footer span{
    display: none;
  }
  .articles-mentions{
    width: 80%;
  }

  .popup-rgpd{
    flex-direction: column;
  }
}


/* ---------------------------------------------------------------------------------------------------------------------------Responsive jusqu'a 530px ---------------------------------------------------------------------------------- */

@media (max-width:530px){

  .illustrations-page-credits{
    width: 90%;
    padding-bottom: 40px;
  }


}

/* --------------------------------------------------------------------------------------------------------------------------------------  Responsive de 550px à 1000px ----------------------------------------------------------------------------- */


@media (min-width:530px) and (max-width:1000px){

  #accueil{
    height: 100vh;
  }
  .bloc-accueil-animation{
    padding-top: 70px;
    padding-bottom: 23px;
    z-index: 8;
  }
  #accueil h1{
    margin-top: 0;
    font-size: 47px;
  }
  #accueil h2{
    font-size: 30px;
  }
  .bloc-bouton-accueil{
    margin-top: 63px;
    padding-bottom: 40px;
  }

  html body main section#accueil img{
    width: 90vh;
  }



}


/* --------------------------------------------------------------------------------------------------------------------------  Responsive à partir de 624 px ----------------------------------------------------------------------------------------   */
@media (min-width:624){
  .liens-footer{
    display: flex;
    flex-direction: none !important;
  }
  .liens-footer span{
    display: block;
  }
}




/* ----------------------------------------------------------------------------------------------------------------------------------Responsive de 641px à 1220px----------------------------------------------------- */

@media (min-width:640px) and (max-width:1220px){


  #a-pps h1{
    width: 90%;
  }

/* ----------------------------------A propos ------------------------------------- */


.bloc-black-bgd{
  height: auto;

}
.area-btn{
  padding-bottom: 40px;
}

/* -------------------------------------Projet Web------------------------- */

#projet-web{
  height: auto;
  display: flex;
  justify-content: center;
 
  
}
.deco-cadre-vert{
  width: 99%;
  height: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  margin-left: 0;
  transform: translateX(0);
  padding-bottom: 50px;
}

.bloc-txt{
  width: 100%;
  margin-top: 160px;
}

.description-projet{
  width: 100%;
  margin-top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#am{
  margin-top: 20px;
}

.num-pages{
  position: absolute;
  bottom: -27px;
}
.illustration-projet-master{
  display: none;
}

/* ---------------------------------Projet Design ------------------------------------ */

#projet-design{
  height: auto;
}

.container-design{
  flex-direction: column;
  margin-top: 66px;
}

.container-design-txt{
  justify-content: center;
}

.container-design-txt p{
  margin-left: 0;
  transform: translateX(0);
  margin-top: 100px;
}

.bloc-gauche-texte, .bloc-droit-gallerie {
	width: 100%;
}
.bloc-gauche-texte{
  display: flex;
}
.menu-container{
  gap: 15px;
}

.bloc-droit-gallerie{
  margin-top: 140px;
}
.gallerie-container{
  width: 99%;
  margin-left: 50%;
  transform: translateX(-50%);
  margin-top: 130px;
}
.grid-container{
  height: auto;
  display: flex;
  justify-content: center;
}
.container-image{
  display: flex;
  flex-direction: column;
}
.croix-bloc-100{
  margin-left: 50%;
  transform: translateX(-50%);
}

.text-bloc-100 {
  width: 100%;
}

/* ------------------------------------------Contact---------------------------------- */

#contact{
  padding-left: 0;
  padding-right: 0;
  padding-top: 40px;
  height: auto;
}
.decoration-contact{
  border: none;
}
.bloc-texte-contact{
  flex-direction: column;
  align-items: center;
}

.remerciement{
  justify-content: start;
  margin-top: 50px;
}

.remerciement p{
  width: 500px;
}

.email-bloc {
	width: 100%;
	margin-top: 25px;
	margin-bottom: 25px;
}

}

/* --------------------------------------------------------------------------------------------------------------------------------------------Responsive jusqu'a 1000px -------------------------------------------------------------------- */
@media (max-width:1000px){

  html, body{
    overflow-x: hidden;
    width: 100%;
  }

 header{
    overflow-x:none !important;
  width: 100%;
 }


.header-credits{
    overflow-x:initial !important;
}
  .menu-burger{
    display: flex;
    opacity: 1;
    background-color:#FFFFFF2E;
   
  }
  .mn-burger{
    width: 100%;
    background-color: #a3f5c6;
    z-index: 20;
    height:100%;
  }

.croix-menu{
  width: 50px;
  height: 50px;
  position: absolute;
  top:20px;
  right: 45px;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
 
}


.croix-menu img{
  object-fit: contain;
  width: 25px;
  height: 25px;
  cursor: pointer;
  
}

/* .deco-cadre-vert{
  overflow: hidden;
} */

.bloc-100 img{
  width: 100%;
}

.croix-menu img:hover{
  animation: rotateBtn 0.8s alternate;
}

@keyframes rotateBtn {

 from{
  transform: rotate(0);
 }
  to{
    transform: rotate(720deg);
  }
}

.artpolitique{
  width: 85%;
}


}





/* ---------------------------------------------------------------------------------------------------------------------Responsive au dessus de 1000px---------------------------------------------------------------------------------------- */

@media (min-width:1000px){

  .croix-menu{
    display: none;
  }
  
  #projet-design{
      height:auto !important;
  }
  
  #contact{
      margin-top:100px !important;
      padding-top:40px !important;
  }
}




/* ----------------------------------------------------------------------------------------------------------------------Responsive de 1220px à 1368px------------------------------------------------------------------------------------------- */

@media (min-width:1220px) and (max-width:1367px){


/* ----------------------------------A propos ---------------------------- */

.bloc-black-bgd{
  height: auto;

}
.area-btn{
  padding-bottom: 40px;
}

/* -------------------------------Projet Web ---------------------------- */

#projet-web {
	margin-top: 100px;
	width: 100%;
	height: auto;
	padding: 40px;
	display: flex;
	justify-content: center;
}
.bloc-txt{
  margin-top: 231px !important;
}
.deco-cadre-vert {
	width: 90%;
	height: auto;
	margin-left: 0;
	transform: translateX(0);
	border: 4px solid #a3f5c6;
	display: flex;
	gap: 70px;
	justify-content: space-between;
  padding-bottom: 50px;
}
#am{
  margin-top: 20px;
}

.illustration-projet-master{
  display: none;
}

/* Projet Design------------------------------------------------------------------------------------ */

#projet-design{
  height: auto;
}

.container-design{
  flex-direction: column;
  margin-top: 66px;
}

.container-design-txt{
  justify-content: center;
}

.container-design-txt p{
  margin-left: 0;
  transform: translateX(0);
  margin-top: 100px;
}

.bloc-gauche-texte, .bloc-droit-gallerie {
	width: 100%;
}
.bloc-gauche-texte{
  display: flex;
}
.bloc-droit-gallerie{
  padding: 10px;
}
.menu-container{
  gap: 15px;
}
.gallerie-container{
  width: 100%;
  margin-left: 0;
  transform: translateX(0);
  margin-top: 130px;
}
.grid-container{
  height: auto;
  display: flex;
  justify-content: start;
}
.container-image{
  display: flex;
  flex-direction: column;
}
.croix-bloc-100{
  margin-left: 50%;
  transform: translateX(-50%);
}

.text-bloc-100 {
  width: 100%;
}

/* ----------------------------------------CONTACT------------------------------------ */

#contact{
  padding: 0;
}

}



/* -------------------------------------------------------------------------------------------------------------------------Responsive de 1368px à 1535px----------------------------------------------------------------------------------------- */

@media (min-width:1368px)and (max-width:1535px){


  /* ---------------------------------A Propos ----------------- */

  .bloc-black-bgd{
    height: auto;
  }
  .area-btn{
    padding-bottom: 40px;
  }

  #projet-web{
    padding: 0;
    height: auto;
  }

  #projet-web .marque-page{
    align-self: center;
    margin-left: 50%;
    transform: translateX(-50%);
  }

  .deco-cadre-vert {
    width: 96% !important;
    height: auto ima !important;
    gap: 1px !important;
  }

  .bloc-txt{
    width: 422px;
    margin-top: 198px !important;
    transform: translateX(0)!important;
  }

  .num-pages{
    position: absolute;
    bottom: -27px;
  }

  .description-projet {
    margin-top: 140px;
    display: flex;
    flex-direction: column;
 
  }

  #maud-inst {
    margin-top: 39px;
  }

  #am {
    margin-top: 30px;
  }






  /*------------------------------------------ projet design ---------------------------------------- */
  
  #projet-design{
      margin-top:100px;
  }
  
  .container-design{
    flex-direction: column;
    margin-top: 50px !important;
  }

  .container-design-txt p{
    transform: translateX(-50%) !important;
    margin-top: 100px !important;
  }
  .bloc-gauche-texte, .bloc-droit-gallerie{
    width: 100% !important;
  }
  .bloc-gauche-texte{
    margin-bottom: 130px;
  }
  .container-design-txt{
    justify-content: center;
  }
  .bloc-droit-gallerie{
    justify-content: center;
  }

  .texte-page{
    width: 430px !important;
  }

  .bloc-txt{
    transform: translateX(-76px);
    margin-top: 234px !important;
  }

  .bloc-txt p{
    padding-left: 38px !important;
  }

  .num-pages{
    margin-top: 40px !important;
  }
  .deco-cadre-vert{
    width: 96% !important;
    gap:1px !important;
  }
  .description-projet{
    margin-top: 82px !important;
  }
  .cadre-projet{
    /* width: 450px !important; */
    height: 341px !important;

  }
  #maud-inst{
    margin-top: 20px;
    transform: translateY(-25px);
  }
  #mi{
    transform: translateY(-20px);
  }
  #am,#mir,#tx,#tcm{
    transform: translateY(10px);

  }



  /* ----------------------------------------------------------CONTACT------------------------------- */
 

  #contact .marque-page{
    transform: translateX(-90%) translateY(-25px);
  }
}

@media (min-width:1536px){
  #contact{
    margin-top: 100px;
  }
  #contact .marque-page{
    margin-left: 0;
    align-self: center;
    transform: translateX(0);
    margin-top: -30px;
  }
  
  /* --------------------------------------------Projet Design -------------------------------------------------------- */
  
  .container-design {
	width: 100%;
	display: flex;
	margin-top: 53px;
	flex-direction: column;
}
.bloc-gauche-texte{
    display: flex;
  justify-content: center;
  width:100%;
}
.container-design-txt {

	margin-left: 0; 
	transform: translateX(0);
    height: auto; 
	justify-content: center;
}

.bloc-droit-gallerie{
    width: 100%;
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}



}





/* -----------------------------------------------------------------------------------------------------------------------Responsive à partir de 1536px----------------------------------------------------------------------------------------------------- */
@media (min-width:1536px){

  /* -------------------------section Apropos--------------- */

  #a-pps{
    display: flex;
    flex-direction: column;
    padding-top: 15px;
  }

  #a-pps .marque-page{
    align-self: center;
    margin-left: 0;
    transform: translateX(0);
  }


  /* --------------------------------PROJET WEB----------------------------------------- */

  .bloc-black-bgd{
    height: auto;
  }

  .area-btn{
    padding-bottom: 40px;
  }

  #projet-web{
    display: flex;
    flex-direction: column;
    padding-top: 40px;
  }
  #projet-web .marque-page{
    margin-left: 0;
    transform: translateX(0);
    align-self: center;
  }
  .deco-cadre-vert{
    width: 98%;
  }

  .bloc-txt{
    width: 400px;
    margin-top: 217px;
  }
  .description-projet{
    width: 435px;
  }


  /* ---------------------------------------------------Projet Design ---------------------------------- */

  #projet-design {
    display: flex;
    flex-direction: column;
    height: auto;
    margin-top: 120px;
  }

  #projet-design .marque-page{
    align-self: center;
    margin-left: 0;
    transform: translateX(0);
  }
  .bloc-gauche-texte{
    display: flex;
    justify-content: center;
  }

  .container-design{
    flex-direction: column;
    align-items: center;
    gap: 130px;
    margin-top: 30px;

  }
 
  .container-design-txt{
  width: 680px;
  display: flex;
  margin-left: 0;
  transform: translateX(0);
  gap: 10px;
  height: 350px;
  justify-content: center;
  }
  .container-design-txt p{
    margin-left: 26px;
    margin-top: 123px;
    transform: translateX(0);
  }
  .bloc-droit-gallerie {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .grid-container {
    width: 90%;
    margin-left: 50%;
    transform: translateX(-50%);
    height: auto;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
  }

}

