/*http://html5doctor.com/html-5-reset-stylesheet/*/


/* Certains éléments contiennent des couleurs de background. A noter que c'est une méthode qui me permet de visualiser mes emplacements. */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* background-color: pink; */
}


/*-------------------------------------------CHARGEMENT-----------------------------------------*/
.loader-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFC513;
  /* background-color: white; */
  display:flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.loader {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 10%;
  position: relative;
  border: 4px solid #202020;
  animation: loader 2s infinite ease;
}

.loader-inner {
  vertical-align: top;
  display: inline-block;
  width: 100%;
  background-color: #202020;
  overflow: hidden;
  animation: loader-inner 2s infinite ease-in;
}

@keyframes loader {
  0% {
    transform: rotate(180deg);
  }

  25% {
    transform: rotate(180deg);
  }

  50% {
    transform: rotate(180deg);
  }

  75% {
    transform: rotate(360deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/* @keyframes loader-inner{

  0%, 75%, 100% {
    height: 100%;
  }

  25%, 50% {
    height: 0%;}

    } */

@keyframes loader-inner {
  0% {
    height: 0%;
  }

  25% {
    height: 0%;
  }

  50% {
    height: 100%;
  }

  75% {
    height: 100%;
  }

  100% {
    height: 0%;
  }
}


/* --------------------------------  SOURIS  -------------------------------- */

.cursor{
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid #c6c6c6;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: .1s;
  z-index: 10;
}

.cursor2{
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #c6c6c6;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: .15s;
  z-index: 10;
}

/* .content:hover ~ .cursor{
  transform: translate(-50%, -50%) scale(1.5);
  background-color: #c6c6c6;
  opacity: .5;

}

.content:hover ~ .cursor2{
  opacity: 0;

} */



/* --------------------------------  MENU  -------------------------------- */

header {
    /* position: absolute; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #202020;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
    z-index: 5;
    transition: .3s ease;
}

header.sticky {
    padding: 10px 100px;
    /* background-color: orange; */
    background: #202020;
    box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
}

header.sticky .mainlogo,
header.sticky ul li a {
    color: white;
}

.titre_header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 45px 100px;
}


/* mise en forme du logo */

header .mainlogo {
    position: relative;
    max-width: 120px;
}

header ul {
    position: relative;
    display: flex;
    /* background-color: purple; */
}

header ul li {
    list-style: none;
    /* background-color: brown; */
    /* display: inline-block; */
}

header ul li a {
    display: inline-block;
    margin-left: 60px;
    text-decoration: none;
    font-size: 25px;
    font-family: 'Oswald', sans-serif;
    /* font-weight: 500; */
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    /* background: orange; */
    position: relative;
}


/* mise en forme des traits sous le menu */

.btnm::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 0.23rem;
    left: 0;
    bottom: -5px;
    background: white;
    border-radius: 30px;
}


/* .cool-link:hover,
.cool-link:after{
  font-family: 'Oswald', sans-serif;
  color: #FFC513;
} */

.cool-link:hover,
.cool-link.active {
    font-family: 'Oswald', sans-serif;
    /* font-weight: 500; */
    color: #FFC513;
}

.cool-link::after {
    transform: scale(0, 1);
    transition: transform 0.3s ease;
}

.cool-link:hover::after,
.cool-link.active::after {
    transform: scale(0.5, 0.5);
}

/* -------------------------------mise en forme burger menu ---------------------*/

nav {
    display: flex;
    /* justify-content: space-around; */
    align-items: center;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 5px;
}

.burger {
    float: right;
    line-height: 20px;
    display: none;
    cursor: pointer;
    margin-left: 20px;
}

/* --------------------------------  BOUTTON POUR REMONTER EN HAUT DE LA PAGE  -------------------------------- */

.gotop {
    position: fixed;
    line-height: 40px;
    width: 40px;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 10%;
    color: #202020;
    /* bottom: 40px; */
    bottom: -20%;
    right: 50px;
    z-index: 5;
    border: 1px solid #202020;
    visibility: hidden;
    transition: .4s;
    padding-top: 5px;
}

.gotop .fas {
    margin: 3px;
    font-size: 20px;
    color: #202020;
}

.gotop:hover {
    background-color: #FFC513;
    /* border: 1px solid #FFC513; */
    border: none;
}

.show-scroll{
  visibility: visible;
  bottom: 2rem;
}




/* --------------------------------  EGCCITED -------------------------------- */


/* mise en forme de l'arrière plan */

#section_one_eggcited {
    /* background-color: purple;
    display: block; */
}

.responsive_project {
  width: 100%;
  height: auto;
  max-width: 1920px;
  display: block;
  /* margin-top: 50px; */
}

.responsive_project.responsive_project-big{
  width: 100%;
  height: auto;
  max-width: 1920px;
  margin-top: 50px;
  display: block;
}













/* --------------------------------------------AUTRES PROJETS --------------------------------*/

#section_autres_projets{
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    height: 50vh;
    padding: 30px 100px;
    /* display: flex; */
    justify-content: space-between;
    align-items: center;
    /* background: orange; */
}

#titre_autres_projets{
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    /* height: 10vh; */
    /* padding: 50px 100px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: darkblue; */
}

.titre_autres_projets{
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 35px;
  color: #202020;
  margin-bottom: 20px;
  text-transform: uppercase;
}


/* positionnement bloc */
#liste_autres_projets{
  width: 84%;
  /* height: 350px; */
  margin: 0px auto;
  /* border: 1px dashed red; */
  overflow: hidden;
}

/* pour eviter d'avoir les contours */
.post:focus, .savoir_plus, .savoir_icone{
  outline: none;
}


/* placement bloc défilement */
#liste_autres_projets .post{
  background: purple;
  display: inline-block;
  width: 380px;
  height: 30vh;
  margin: 0px 10px;
  background-color: white;
  border: 1px solid #202020;
  border-radius: 1.2rem;
  margin: 12px;
  overflow: hidden;
  position: relative;

}


/* bouton décale droite */
#section_autres_projets .next{
  position: absolute;
  top: 55%;
  right: 100px;
  font-size: 2em;
  color: #202020;
  cursor: pointer;
}

/* bouton décale gauche */
#section_autres_projets .prev{
  position: absolute;
  top: 55%;
  /* left: 30px; */
  font-size: 2em;
  color: #202020;
  cursor: pointer;
}



/* mise en forme element dans les box */
.portfolio_elements {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-around;
    background-color: darkblue;
}


/* icone noir en savoir plus */
.savoir_icone {
    color: white;
    font-size: 20px;
    display: block;
    text-decoration: none;
    width: 14%;
    height: 6vh;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-radius: 15px 0px 0px;
    background: #181818;
    display: flex;
    align-items: center;
    text-decoration: none;
    justify-content: center;
    cursor: pointer;
}

.savoir_icone:hover{
  background-color: #FFC513;
  color: #202020;
}

/* texte contour en background des blocs portfolio */

.outline_bg_title p {
    -webkit-text-fill-color: white;
    -webkit-text-stroke-width: 0.5px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 100px;
    color: #D9D9D9;
    text-align: center;
    /* position: relative;
  top: 20%; */
    margin-top: 35px
}

.title_on_bg {
    position: relative;
    margin-top: -123px;
    /* top: 20%; */
}


/* titre noir plein */

.title_on_bg .title_title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    text-transform: uppercase;
    font-weight: 500;
    color: #181818;
    position: relative;
    top: 8px;
    letter-spacing: 0.5px;
}

.title_on_bg .sub_title {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: 400;
    text-transform: uppercase;
    color: #181818;
}








/* ----------------------------------------------PARTIE FOOTER------------------------------------ */

#section_footer_eggcited {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    /* height: 40vh; */
    padding: 0px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(../img/footer_elements2.jpg);
    background-size: cover;
    /* background: orange; */
}


/* PARTIE FOOTER GAUCHE */

#section_footer_gauche {
    /* background: blue; */
    position: relative;
    width: 50%;
    height: 28vh;
}

.section_footer_gauche_1 {
    /* background: pink; */
    position: relative;
    width: 100%;
}

.section_footer_gauche_2 {
    /* background: brown; */
    position: relative;
    width: 100%;
}

.section_footer_gauche_3 {
    /* background: purple; */
    position: relative;
    width: 100%;
    margin-top: 25px;
    margin-bottom: 50px;
}

.section_footer_gauche_4 {
    /* background: green; */
    position: relative;
    width: 100%;
}

.dites_bonjour {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 42px;
    margin-top: 30px;
    color: white;
}

.save_mail {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: white;
}


/* mise en forme adresse mail */

.email_btn {
    border: 1.5px solid #202020;
    color: white;
    background-color: #202020;
    padding: 8px;
    margin-right: 5px;
    /* font-weight: 600; */
    /* text-transform: uppercase; */
}

.email_btn:hover {
    border: 1.5px solid #FFC513;
    color: #202020;
    background-color: #FFC513;
    font-weight: 600;
}

.logo_mail {
    padding: 8px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    background: #202020;
    margin-left: 30px;
    color: white;
}

.logo_mail i {
    font-size: 16px;
}

.section_footer_gauche_3 button {
    /* width: 200px; */
    height: 48px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 14px;
    outline: none;
    background-color: white;
    cursor: pointer;
    letter-spacing: 0.3px;
    padding-left: 20px;
    color: #202020;
}

.copy_right {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.3px;
    color: white;
}


/* PARTIE DROITE FOOTER */

#section_footer_droite {
    /* background: red; */
    position: relative;
    width: 50%;
    height: 28vh;
}

.section_footer_droite_1 {
    /* background: pink; */
    position: relative;
    width: 100%;
}

.ich_bin {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 20px;
    text-align: right;
    margin-top: 50px;
    margin-bottom: 15px;
    color: white;
}

.alexia_footer,
.monportfolio_footer {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 20px;
    text-align: right;
    margin-top: 50px;
    margin-bottom: 15px;
}


/* .alexia_footer:hover,
.monportfolio_footer:hover{
  font-family: 'Lato', sans-serif;
  font-weight: 600;
  font-size: 20px;
  text-align: right;
  margin-top: 50px;
  margin-bottom: 15px;
  color: #FFC513;
} */

.section_footer_droite_2 {
    /* background: brown; */
    position: relative;
    width: 100%;
}

.folow_me {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-align: right;
    color: white;
}


/* mise en forme réseaux sociaux footer */

.rs_footer {
    /* background-color: #6495ED; */
    position: relative;
    float: right;
    /* top: 35%;
  left: 30px;
  width: 70px;
  height: 310px;
  transform: translate(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column; */
    /* filter: invert(1); */
}

.reseaux_footer {
    /* position: absolute;
    top: 3px; */
    display: flex;
    margin-top: 25px;
}

.gotors_footer {
    /* line-height: 50px; */
    /* margin-bottom: 20px; */
    margin-left: 20px;
    width: 40px;
    height: 40px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border-radius: 50%;
    color: #202020;
    /* bottom: 40px;
  right: 50px;
  flex-direction: column; */
    text-align: right;
}

.gotors_footer i {
    font-size: 20px;
}

.reseaux_footer li {
    list-style: none;
}

.reseaux_footer li a:hover {
    transform: translate(0, -1px);
    transition: transform 0.2s ease;
}

.gotors_footer:hover {
    background-color: #FFC513;
    color: #202020;
}


/* footer copyright */

#section_footer_centre {
    position: relative;
    width: 100%;
    /* min-height: 100vh; */
    height: 10vh;
    padding: 0px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(../img/black_bg_3.jpg);
    background-size: cover;
    /* background: black; */
}













/* --------------------------------  MEDIA QUERIES  -------------------------------- */

/* version desktop */
@media screen and (min-width: 1024px) {

}

/* version tablette */

@media screen and (min-width: 768px) and (max-width: 1023px) {

  /* curseur */
  .cursor, .cursor2{
    display: none;
  }
  header{
    padding: 15px 20px;
  }

  header ul li a {
    font-size: 20px;
  }

  /* mise en forme de la liste déroulante */

  #section_autres_projets .next{
    top: 50%;
    right: 30px;
  }

  #section_autres_projets{
    padding: 20px 10px;
  }

  #section_autres_projets .prev{
    top: 50%;
    left: 30px;
  }

  .savoir_icone{
    width: 25%;
  }

  .outline_bg_title p{
    margin-top: 35%;
  }

}



/* -------------------- version smartphone -------------- */
@media screen and (max-width: 767px)  {

  html,body{

    overflow-x: hidden;
}

/* curseur */
.cursor, .cursor2{
  display: none;
}

/* logo */
header .mainlogo{
  max-width: 100px;
}

/* -----------------------------------------NAV BAR----------------------------------------------------- */
header {
    padding: 10px 10px;
}



/* burger menu */
.burger {
    display: block;
}

/* mise en forme menu déroulant */

.navbar ul {
  position: absolute;
  right: 0px;
  /* height: 100vh; */
  width: 100%;
  top: 60px;
  left: 0;
  display: flex;
  list-style: none;
  background-color: #202020;
  text-align: center;
  transition: transform 0.5s ease;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateX(100%);
  /* overflow-x: hidden; */
  /*On décale  le menu par défaut sur la droite*/
  /* transition: transform 1s ease; */
}



.navbar ul.visible {
    /*On remet le mnu en visible*/
    transform: translateX(0);
}
.navbar ul li {
    /* opacity: 0; */
    display: block;
}
.navbar ul li a {
    font-size: 25px;
    margin-left: 0px;
    padding: 30px;
    text-decoration: none;
}
a:hover,
a:active {
    background: none;
    /* color: yellow; */
}
#check:checked~ul {
    left: 0;
}

/* .visible{
  margin-bottom: 30px;
} */

/* mise en forme des traits sous le menu */

.btnm::after {
    background: none;
}

.cool-link:hover,
.cool-link.active {
    font-family: 'Oswald', sans-serif;
    /* font-weight: 500; */
    color: white;
}


/* --------------------------------------PARTIE FOOTER ----------------------------------*/
#section_footer_eggcited {
    padding: 0 20px;
    flex-direction: column;
}
/* partie faites moi un retour */
#section_footer_gauche {
    text-align: center;
    width: auto;
    height: auto;
}
#section_footer_gauche_3 {
    margin-bottom: 30px;
}
/* partie réseaux sociaux */
#section_footer_droite {
/* text-align: center; */
width: auto;
height: auto;
}
.ich_bin {
    text-align: center;
    margin: 0 auto;
    margin-bottom: 15px;
}
.folow_me {
    text-align: center;
}

/* liens réseaux sociaux */
.rs_footer{
  text-align: center;
  justify-content: center;
  float: none;
}

.reseaux_footer{
  justify-content: center;
}



/* mise en forme du copy_right */
#section_footer_centre {
    padding: 0 20px;
    position: absolute;
    text-align: center;
}









/* ------------------------- Partie projets qui défilent ----------------------------*/

  #section_autres_projets{
    padding: 30px 20px;

}

  .titre_autres_projets {
    font-size: 28px;
    color: #202020;
}

  #section_autres_projets .next {
    top: 50%;
    right: 20px;
  }

  #section_autres_projets .prev {
    top: 50%;
}


.responsive_eggcited.responsive_eggcited-big{
  /* width: 100%; */
  /* height: auto; */
  /* max-width: 1920px; */
  margin-top: 25%;
  /* display: block; */
}



  /* -----------------------------------------ICONE DEROULEZ----------------------------------------------------- */
.gotop{
  right: 20px;
}

/* Partie présentation projet */
.responsive_project.responsive_project-big{
  margin-top: 60px;

}





}
