a,
abbr,
acronym,
address,
applet,
article,
aside,
audio,
b,
big,
blockquote,
body,
canvas,
caption,
center,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
embed,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
output,
p,
pre,
q,
ruby,
s,
samp,
section,
small,
span,
strike,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
tt,
u,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html {
  box-sizing: border-box;
}

*,
::after,
::before {
  box-sizing: inherit;
}

img,
video {
  width: 100%;
  vertical-align: middle;
}

html {
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1em;
  font-style: normal;
  color: #000;
  cursor: url("./../img/arrow.webp"), default;
}

body {
  background: url("./../img/AP_fullpage.webp");
  background-repeat: repeat-y;
  background-size: cover;
  height: 100vh;
}
/* Header */
header {
  background: #fff6;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;

}
.header  {
  height: 75px;
}
.logo-header {
  position:relative;
  top:-20px;
  width: 60px;

}
.logo {
  animation: mac 2s ease-in-out;
}
.logo,
.logo1 {
  position: absolute;
  top: 0px;
   left: 50%; 
  transform: translate(-50%);
  width: 60px;
}
.logo1 {
  opacity: 0.37;
  z-index: -1;
  animation: mac1 2s ease-in-out;
}
/* Nav */
nav {
  z-index: 10;
  height: 100%;
  position: fixed;
  background: white;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: scroll;
  transform: translateX(-100%);

}

nav ul.nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: calc(100% - 10.5%);
  /* width: calc(100% - 60px - 11.5%); */
  margin: 16px 20px;
  align-items: center;
  flex-direction: column;
}
nav li{
  position: relative;
  margin: 20px 30px;
}
nav li a {
  font-family: "Roboto", sans-serif;
  font-weight: normal;
  font-size: 1.3rem;

}
.nav li a.active {
  color:#1e9dd8;
}
.nav li a:hover {
  text-decoration: none;
  color: #1e9dd8;
}
.indic-ssmenu {
  display: block;
  border: 1px solid black;
  background-color: transparent;
    width: 6px;
    height: 6px;
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg) skew(6deg, 6deg);
    margin:0;
}

.nav li a:hover .indic-ssmenu {
  border:1px solid #1e9dd8;
  background: #1e9dd8;
}


.ssmenu > li > a {
  font-family:"Roboto", sans-serif ;
  font-size: 1rem;
  font-weight: 300;
  color:#000;
  transition: color 0.5s ease-in-out;
  margin:14px 20px;
  display: flex;
  width: 100%;
  padding:0;
}
a {
  text-decoration: none;
  color: #000;
  cursor: url("./../img/Hand.webp"), default;
}
a:hover {
  color: #1e9dd8;
}
li {
  line-height: 1.5rem;
}
code {
  background-color: lightgrey;
  padding:0.2rem;
  font-family: monospace;
}
strong{
  font-weight: 500;
}
.arbo{
  width: 10%;
}
.arboBTN{
  float: left;
}

.tiret {
  width: 40%;
  position: relative;
  left: -3%;
}
.Puce {
  width: 54px;
}

.logo_made-coco{
  position: absolute;
  width: 60px;
  right: 1.5%;
  top:6px;

}
/* Nav Mobile */
.burger > div > .menu-puce {
  width: 30px;
  transform: translate(6px, -10px);
}
.burger > :first-child > .menu-puce{
  transform: translate(-15px, -10px);
}
.burger > :last-child > .menu-puce {
  left:35px;
  transform: translate(25px, -10px);
}
/* Dessin du burger */
.trigger,
.burger {
  position: fixed;
  top: 12px;
  left: 20px;
  margin: 0;
}

.trigger {
  z-index: 12;
  cursor: pointer;
  width: 36px;
  height: 28px;
  opacity: 0;
}

.burger {
  z-index: 11;
}

.burger > div {
  width: 40px;
  height: 3px;
  background: #000;
  margin-bottom: 15px;
  transition: transform 0.25s ease-out, opacity 0.5s ease-in-out;
}
.burger > :last-child {
  margin-bottom: 0;
}
/* Animation du burger et de la <nav> */
.trigger:checked + .burger > :nth-child(1) {
  transform: translateY(17px) rotate(45deg);
}

.trigger:checked + .burger > :nth-child(2) {
  background:transparent;
  transform:rotate(45deg) scale(2, 2) ;
}

.trigger:checked + .burger > :nth-child(3) {
  transform: translateY(-19px) rotate(-45deg);
}

.trigger:checked ~ nav:first-of-type {
  transform: translateX(0);
}
.trigger:checked + .burger > :first-child > .menu-puce {
  opacity: 0;
}
.trigger:checked + .burger > :last-child > .menu-puce {
  opacity: 0;
}

.trigger:checked,
.trigger:checked + .burger {
  position: fixed;
}
/* Fin du dessin du burger */
/* Dessin de la <nav> mobile */
div.mobile {
  z-index: 9;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: none;
  width: 100%;
  height: auto;
  position: fixed;
}
div.mobile > .logo-header{
  display: initial;
  top:10px;
}
 div.mobile > .logo_made-coco {
  display: initial;
}
nav :nth-child(6){
  display: none;
}
nav .logo-header, nav .logo_made-coco {
  display: none;
}
.ssmenu {
  display: none;
}


/* Query du menu mobile */
@media all and (min-width: 1040px) {
  .trigger,
.burger {
    display: none;
  }
  nav {
    transform: none;
    width: 100%;
    height: auto;
    position: fixed;
    background: initial;
    overflow:visible;
  }
  div.mobile > .logo-header, div.mobile > .logo_made-coco {
    display: initial;
  }
  div.mobile {
    display: none;
  }
  nav .logo-header, nav .logo_made-coco {
    display: initial;
  }
  nav :nth-child(6){
    display: initial;
  }
  nav ul.nav {
    flex-direction: row;
  }
  nav li {
    margin: auto;
    position: relative;
  }
  .ssmenu{
    position:absolute;
    display: none;
    top:48px;
    left: -20%;
    background: #fff;
    padding:20px;
    /* width: 12.5vw; */
  }
  .tiret {
    left: -17%;
  }
}



/* Fin Header */
/* Début Section */
section {
  position: relative;
  height: auto;
  width: 100vw;
}
section > div {
  display: flex;
  height: calc(100% - 80px);
}
 H1 {
  font-family: "Expletus sans", sans-serif;
  font-size: 2rem;
  text-align: center;
  margin: auto;
  font-weight: 600;
} 
.menu-metier {
  display: flex;
  width: 35%;
  background: #ffffff80;
}

.slider-metier {
  padding: 5% 15% 15%;
  height: 100%;
}
.slider-metier > figure {
  margin: auto;
    align-items: center;
    justify-content: space-evenly;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
}
.slider-metier > figure > figcaption{
  font-family: "Expletus sans", sans-serif;
  font-weight: bold;
  font-size: 1.3rem;
  padding-top: 30px;
  padding-bottom: 10px;;
}
.slider-metier > figure > p {
  font-weight: 300;
  margin:10px 0px;
  text-align: center;
  line-height: 1.5rem;
}
.slider-metier > figure > ul > li{
  font-weight: 300;
  margin:10px 0px;
  list-style: square;
}
.slick-prev {
  left: 5px;
  cursor: url("./../img/Hand.webp"), default;
}
.slick-next {
  right: 5px;
  cursor: url("./../img/Hand.webp"), default;
}
.slick-dots {
  bottom: 10%;
}
.slick-prev:before, .slick-next:before {
  color:#1e9dd8;
}
.slick-dots > li > button{
  cursor: url("./../img/Hand.webp"), default;
} 
.slick-dots > li > button:before {
  opacity: 1;
  color: black;
  border-radius: 50%;
  padding: 0;
  width: 20px;
  height: 20px;
  font-size: 15px;
}

.slick-dots li.slick-active button:before {
  color: #1e9dd8;
  opacity: 1;
}
.my-photo{
  overflow: hidden;
}
.my-photo > img {
  mix-blend-mode: luminosity;
  object-fit: contain;
  object-position: top;
}

/* Fin Section */
/* Debut Section Projet*/
.projet {
  padding:30px;
  height: 100%;
  width: 100%;
}
.projet .slick-dots {
  bottom: -35px;
}
.slider-projet{
  display: flex;
  margin: 10px auto;
  width: 70%;
  justify-content: center;
}
 .visual-projet{
  display: flex!important;
  background:white;
}
.visual-left, .visual-right{
width: 50%;
}

/* Fin Section Projet*/
/* Section Mentions Légales et Politique de confidentialité */
.legacy {
  text-align: left;
}
.legacy > H3 {
  text-align: left;
  margin: 2% 0 0;
}
.legacy > ul {
 margin: 2% 10%;
 font-size: 14px;
 list-style: circle;
}
.photo > img {
  width: 300px;
}
/* Fin Mentions Légales et Politique de confidentialité */
/* Footer */
/* Formulaire de contact */
.contact {
  margin: 5% 10%;
}
.contact > H2 {
  font-size: 1.5rem;
}
 H2 , H3{
  font-family: "Expletus Sans", cursive;
  font-size: 1.5rem;
  font-weight: 500;
  margin: auto;
  text-align: center;
}
form {
  margin: 80px 0;
}


input {
  height: 40px;
}

.identite,
.user_id {
  display: flex;
  flex-wrap: wrap;
}

.nom,
.prenom,
.obj,
.mail,
.msg {
  flex: 50%;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-wrap: wrap;
  margin: 5px 0;
  font-weight: normal;
}

label,
input {
  flex: 50%;
  padding-left: 10px;
  margin: 10px 0;
}

textarea {
  flex: 100%;
  resize: vertical;
  padding-left: 10px;
  padding-top: 10px;
}

::placeholder {
  color: #000;
  opacity: 0.37;
  font-size: 0.95rem;
}

input[type="submit"] {
  cursor: pointer;
  margin: 0;
  background: #000;
  color: #fff;
  font-size: 1rem;
  font-family: "Expletus Sans", cursive;
  font-weight: 500;
  text-align: center;
  border: none;
  padding: 0.5em;
  box-shadow: -3px 10px 10px #00000037;
}
input[type="submit"] :hover {
  background: #26c4ec;
  border: 1px solid #000;
  cursor: pointer;
  transition: all 1s ease-in;
}

input,
textarea {
  border: 0;
  border-radius: 10px;
  margin: 5px;
  background: none;
  color: #3e3e3e;
  border: 2px solid #000;
  cursor: text;
  font-family: "Roboto", sans-serif;
}
input :valid,
textarea :valid {
  background: #fff;
  opacity: 0.8;
}
input :invalid,
textarea :invalid {
  background: none;
  border: 1px solid #000;
}

.send {
  text-align: center;
  margin: 20px 0;
}

.send-btn:hover {
  background: #1e9dd8;
  color: #fff;
  border: none;
  transition: all 1s ease-in;
}

/* Fin Formulaire de Contact */
.white {
  background: #fff;
}

.my_rsx {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.my_rsx > a {
  width: 95px;
  position: relative;
  top: -31px;
  padding: initial;
}

.rsx-hov:hover > circle:first-of-type {
  fill: #1e9dd8;
  transition: all 0.5s ease-in-out;
}
.rsx-hov:hover > g > circle {
  fill: #1e9dd8;
  transition: all 0.5s ease-in-out;
}
.rsx-hov:hover > g > g > circle#Ellipse_182 {
  fill: #1e9dd8;
  transition: all 0.5s ease-in-out;
}
/* Picto Facebook passe bleu */
.rsx-hov:hover > path:last-child {
  fill: #1e9dd8;
  transition: all 0.5s ease-in-out;
}
/* Picto Instagram passe bleu */
.rsx-hov:hover > g > path {
  fill: #1e9dd8;
  stroke: #1e9dd8;
  transition: all 0.5s ease-in-out;
}
.rsx-hov:hover > g > g > path {
  fill: #1e9dd8;
  stroke: #1e9dd8;
  transition: all 0.5s ease-in-out;
}

/* Picto Linkedin passe bleu */
.rsx-hov:hover > g > g {
  fill: #1e9dd8;
  transition: all 0.5s ease-in-out;
}
/* Picto Pinterest passe bleu */
.rsx-hov:hover > g > g > g > path {
  fill: #1e9dd8;
  transition: all 0.5s ease-in-out;
}

.sign {
  color: #777;
  font-size: 0.9rem;
  text-align: center;
  position: relative;
  font-family: "Expletus Sans", cursive;
  padding-bottom: 10px;
}
.logo2 {
  bottom: 50px;
  width: 5%;
  position: sticky;
  left: 92%;
}

.flech {
  width: 2%;
  left: 94.5%;
  position: relative;
}
.flech > .backtotop {
  transition: ease-in-out 0.3s;
}
.flech > .backtotop:active {
  opacity: 1;
  pointer-events: auto;
}
.legal {
  margin: 2% 10%;
  justify-content: space-evenly;
  display: flex;
  flex-wrap: wrap;

}
.legal > a {
  font-weight: 100;
}
/* Fin Footer */

/* Animation Logo */
@keyframes mac {
  0% {
    transform: translate(100vw);
    width: 120px;
    left: 50%;
    top:80px;
  }
  50% {
    transform: translate(25%);
    animation-delay: 2s;
  }
  100% {
    transform: translate(-50%);
    width: 60px;
    left: 52.3%;
  }
}

@keyframes mac1 {
  0% {
    transform: translate(-100vw);
    width: 120px;
    left: 50%;
    top:80px;
  }
  50% {
    transform: translate(-100%);
    animation-delay: 2s;
  }
  100% {
    transform: translate(-50%);
    width: 60px;
    left: 52.3%;
  }
}

/*Anim page HOME */
.animLeft {
  animation: animLeft 2s ease-in-out;
} 
@keyframes animLeft {
  0% {
    transform: translate(-100vw);
  }
  100% {
    transform: translate(0%);
  }
}
.animRight {
  animation: animRight 2s ease-in-out;
} 
@keyframes animRight {
  0% {
    transform: translate(100vw);
  }
  100% {
    transform: translate(0%);
  }
}
.animMiddleT {
  animation: animMiddleT 2s ease-in-out;
} 
@keyframes animMiddleT {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.animMiddleB {
  animation: animMiddleB 2s ease-in-out;
} 
@keyframes animMiddleB {
  0% {
    transform: translateY(100vw);
  }
  100% {
    transform: translateY(0%);
  }
}
.animOpaQ {
  animation: animOpaQ 2s ease-in-out;
} 
@keyframes animOpaQ {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@media all and (min-width: 300px) and (max-width: 789px) {
  nav li {
    margin : 0;
  }
  .my-photo{
    display: none;
  }
  .menu-metier{
    width: 100%;
  }
  .slick-dots{
    bottom: 5%;
  }
  .my_rsx > a {
    width: 50px;
  }
  .rsx-hov{
    width: 32px;
  }
  .flech {
    width: 5%;
    left: 92.5%;
  }
  .logo2 {
    width: 12%;
    left: 82%;
  }
  .projet {
    padding: 20px;
    height: auto;
   
  }
  .slider-projet {
    width: 95%;
  }
  .visual-projet{
    flex-direction: column;
  }
  .visual-left, .visual-right{
    width: 100%;
  }
}
@media all and (min-width: 790px) and (max-width: 1039px) {
  .menu-metier{
    width: 40%;
  }
  .slick-dots{
    bottom: 5%;
  }
  
}


/* Page d'introduction */

/* Fin Page d'introduction */
@media (prefers-color-scheme: dark) {
  /* CSS propre au mode sombre */
  }
  
  @media (prefers-color-scheme: light) {
  /* CSS propre au mode clair */
  }
