html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

#container {
  position: absolute;
  top: 10vh;
  left: 5vw;
  width: 90vw;
  padding: 0;
}

@media screen and (max-width: 700px) {
  #container {
    width: 100vw;
    left: 0;
    overflow-x: hidden;
  }
}
@font-face {
  font-family: analogist;
  src: url(../fonts/analogist/AnalogistRegular-qZjBx.otf);
}
@font-face {
  font-family: galvanizer;
  src: url(../fonts/galvanizer/Galvanizer-Regular-BF653725d016ab3.otf);
}
header {
  z-index: 5;
  position: fixed;
  top: 0;
  left: 5vw;
  width: 90vw;
  height: 10vh;
  min-height: 50px;
  background-color: rgba(255, 255, 255, 0.85);
  border-bottom: 2px solid #282a39;
}
header .header-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
}
header .header-link #header-name {
  text-transform: uppercase;
  font-family: galvanizer, sans-serif;
  font-size: 1rem;
  Color: #282a39;
}
header .header-link .align-right {
  display: flex;
  align-items: center;
}
header .header-link .align-right #header-contact {
  border: solid 1px #282a39;
  background-color: #282a39;
  color: #FFF;
  border-radius: 30px;
  padding: 7px;
}
header .header-link .align-right #header-contact:hover {
  transform: translateY(0px);
  background-color: #FFF;
  color: #282a39;
}
header .header-link .align-right #header-projects {
  text-transform: uppercase;
  font-family: galvanizer, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  Color: #282a39;
  transition: ease-in-out 0.2s;
}
header .header-link .align-right #header-projects:hover {
  transform: translateY(-5px);
}
header .header-link .align-right a {
  margin: 0px 10px;
  Color: #282a39;
  text-decoration: none;
  text-transform: uppercase;
  font-family: galvanizer, sans-serif;
  font-size: 1rem;
  padding: 0px 10px;
  transition: ease-in-out 0.2s;
}
header .header-link .align-right a:hover {
  transform: translateY(-3px);
}
header .header-link .align-right a:visited {
  Color: #282a39;
}
header #header-logo {
  width: 40px;
  height: 40px;
  justify-self: center;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(50% - 20px);
}
header .header-menu {
  width: 40px;
  height: 40px;
  position: absolute;
  top: calc(50% - 20px);
  left: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  visibility: hidden;
  transition: ease-in-out 0.2s;
}
header .header-menu:hover {
  transform: scale(1.08);
  cursor: pointer;
}
header .header-menu .header-menu-barre {
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: #282a39;
}

@media screen and (max-width: 900px) {
  header {
    width: 100vw;
    left: 0;
  }
  header .header-link {
    justify-content: center;
  }
  header .header-link .align-right {
    transform: translateX(200vw);
    position: absolute;
    flex-direction: column;
    background-color: #FFF;
    top: 100%;
    width: 100vw;
    height: 90vh;
    align-items: center;
    justify-content: center;
    border-top: solid 2px #282a39;
    box-shadow: #CCC 10px 2px 10px;
    z-index: 2;
    overflow-y: hidden;
  }
  header .header-link .align-right #header-contact {
    border: none;
    background-color: #FFF;
    color: #282a39;
  }
  header .header-link .align-right #header-contact:hover {
    transform: translateY(0px);
  }
  header .header-link .align-right #header-projects,
  header .header-link .align-right a {
    padding: 10px !important;
    font-size: 2rem;
    color: #282a39;
  }
  header .header-link .align-right #header-projects:hover,
  header .header-link .align-right a:hover {
    transform: translateY(0px);
  }
  header #header-logo {
    left: 20px;
  }
  header .header-menu {
    visibility: visible;
  }
}
#home {
  width: 100%;
  height: 90vh;
  display: flex;
  z-index: 4;
  margin: 0;
}
#home .home-left-content {
  width: 50%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#home .home-left-content h1 {
  transform-origin: top left;
  transform: rotate(-90deg) translateX(-80vh);
  align-self: self-start;
  font-family: galvanizer, sans-serif;
  font-size: 1em;
  text-transform: uppercase;
  margin: 0;
  font-weight: normal;
  color: #282a39;
}
#home .home-left-content .home-pic {
  width: 65%;
  height: 80%;
  overflow: hidden;
}
#home .home-left-content .home-pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.4s ease-in-out;
}
#home .home-left-content .home-pic img:hover {
  transform: scale(1.2);
}
#home .home-right-content {
  width: 50%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
#home .home-right-content h2 {
  font-family: analogist;
  font-size: 4vw;
  text-transform: uppercase;
  z-index: 3;
  color: #282a39;
}
#home .home-right-content h2 #ideas {
  font-size: 3vw;
}

@media screen and (max-width: 700px) {
  #home {
    width: 100%;
    flex-direction: column-reverse;
  }
  #home .home-right-content {
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 20vh;
    padding: 0;
  }
  #home .home-right-content h2 {
    margin: 0;
    align-self: center;
    font-size: 8vw;
  }
  #home .home-right-content h2 #ideas {
    font-size: 3vw;
  }
  #home .home-left-content {
    width: 100%;
    height: 80vh;
    flex-direction: column-reverse;
    justify-content: space-around;
  }
  #home .home-left-content .home-pic {
    width: 80%;
    height: 80%;
  }
  #home .home-left-content .home-pic img:hover {
    transform: scale(1);
  }
  #home .home-left-content h1 {
    transform: rotate(0) translateX(0);
    align-self: center;
    font-size: 1.5rem;
    margin: 0;
    line-height: 1;
  }
}
#projects {
  width: 100%;
  padding-top: 12vh;
}
#projects h2 {
  margin: 0;
  font-family: analogist;
  font-size: 3rem;
  text-transform: uppercase;
  color: #282a39;
}
#projects .project-container {
  display: flex;
  margin-top: 2vh;
}
#projects .project-container .content-project {
  min-width: 60vw;
  height: 100%;
  margin-right: 10vw;
  background-color: #282a39;
}
#projects .project-container .content-project img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#projects .project-container .content-project:hover {
  cursor: pointer;
}

@media screen and (max-width: 700px) {
  #projects {
    overflow-x: hidden;
  }
  #projects h2 {
    padding-left: 10px;
  }
  #projects .project-container {
    padding-left: 5vw;
    flex-direction: column;
  }
  #projects .project-container .content-project {
    min-width: 90vw !important;
    min-height: 40vh;
    margin-top: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #projects .project-container .content-project img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#about {
  width: 100%;
  padding-top: 12vh;
}
#about h2 {
  margin: 0;
  font-family: analogist;
  font-size: 3rem;
  text-transform: uppercase;
  color: #282a39;
}
#about .container-about {
  width: 100%;
  height: 75vh;
  display: flex;
  margin-top: 2vh;
}
#about .container-about .content-about:first-child {
  width: 33.3333333333%;
}
#about .container-about .left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 10px;
}
#about .container-about .left .about-info-perso {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}
#about .container-about .left .about-info-perso .photo-about {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
}
#about .container-about .left .about-info-perso .photo-about img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.2s ease-in-out;
}
#about .container-about .left .about-info-perso .photo-about img:hover {
  transform: scale(1.2);
}
#about .container-about .left .about-info-perso .about-name {
  text-align: right;
}
#about .container-about .left .about-info-perso .about-name h3 {
  font-family: analogist;
  font-size: 1.5rem;
  color: #282a39;
}
#about .container-about .left .about-info-perso .about-name h3 #name {
  text-transform: uppercase;
}
#about .container-about .left .skills-about {
  width: 100%;
  height: 60%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}
#about .container-about .left .skills-about h3 {
  font-family: analogist;
  font-size: 2rem;
  color: #282a39;
}
#about .container-about .left .skills-about .container-slider-skills {
  width: 100%;
  height: 70%;
}
#about .container-about .left .skills-about .container-slider-skills .skills-name {
  min-width: 60%;
  min-height: 100%;
  margin: 0% 20%;
  border-top: solid 1px #282a39;
}
#about .container-about .left .skills-about .container-slider-skills .skills-name .title-about {
  font-family: analogist;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin: 20px;
  text-align: center;
}
#about .container-about .left .skills-about .container-slider-skills .skills-name p {
  font-family: galvanizer, sans-serif;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #282a39;
}
#about .container-about .arrow-slider {
  width: 100%;
  display: flex;
  justify-content: space-around;
}
#about .container-about .arrow-slider img {
  width: 10%;
  transition: 0.2s ease-in-out;
}
#about .container-about .arrow-slider img:nth-child(1) {
  transform: rotate(180deg);
}
#about .container-about .arrow-slider img:nth-child(1):hover {
  cursor: pointer;
  transform: rotate(180deg) scale(1.1);
}
#about .container-about .arrow-slider img:hover {
  cursor: pointer;
  transform: scale(1.1);
}
#about .right {
  width: 66.6666666667%;
  font-family: galvanizer, sans-serif;
  font-size: 1.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  margin: 0;
}
#about .right p {
  text-align: center;
  margin: 0;
}
#about .right p span {
  font-weight: 900;
  font-family: analogist;
  text-decoration: underline;
}
#about .right a {
  text-decoration: none;
  color: #282a39;
}
#about .right a .cv {
  width: 200px;
  height: 50px;
  transform: translateY(10vh);
  border-radius: 25px;
  border: #282a39 solid 1px;
  background-color: #FFF;
  font-family: analogist;
  font-size: 1.2rem;
  transition: 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
#about .right a .cv:hover {
  background-color: #282a39;
  color: #FFF;
  transform: translateY(10vh) scale(1.05);
  cursor: pointer;
  border: #282a39 solid 1px;
}
#about .right:visited {
  color: #282a39;
}

@media screen and (max-width: 700px) {
  h2 {
    padding-left: 10px;
  }
  .container-about {
    min-height: 110vh;
    flex-direction: column-reverse;
    justify-content: flex-end;
    align-items: center;
  }
  .container-about .content-about {
    min-width: 90vw;
  }
  .container-about .content-about .photo-about {
    min-width: 100px;
    min-height: 100px;
  }
  .container-about .content-about .photo-about img:hover {
    transform: scale(1);
  }
  .container-about .right p {
    font-size: 1.1rem;
  }
  .container-about .right .cv {
    margin: 20px !important;
    transform: translateY(0vh) !important;
  }
  .container-about .right .cv:hover {
    background-color: #FFF !important;
    color: #282a39 !important;
    transform: translateY(0) scale(1) !important;
    cursor: pointer !important;
    border: #282a39 solid 1px !important;
  }
  .container-about .left {
    max-height: 40vh;
    width: 120% !important;
  }
}
#contact {
  width: 100%;
  padding-top: 12vh;
}
#contact h2 {
  margin: 0;
  font-family: analogist;
  font-size: 3rem;
  text-transform: uppercase;
  color: #282a39;
}
#contact .formulaire-contact {
  width: 100%;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
#contact .formulaire-contact form {
  padding: 20px;
  border-radius: 5px;
  width: 70%;
}
#contact .formulaire-contact form label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: analogist;
  text-transform: uppercase;
  font-size: 1.3rem;
  color: #282a39;
}
#contact .formulaire-contact form input,
#contact .formulaire-contact form textarea {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  border-radius: 3px;
}
#contact .formulaire-contact form textarea {
  height: 100px;
}
#contact .formulaire-contact form input[type=submit] {
  background-color: #282a39;
  color: #fff;
  cursor: pointer;
  font-family: galvanizer, sans-serif;
  font-size: 1.2rem;
}
#contact .formulaire-contact form input[type=submit]:hover {
  background-color: #3f4258;
}

@media screen and (max-width: 700px) {
  #contact {
    margin-top: 100px;
  }
  #contact .formulaire-contact form {
    width: 90% !important;
  }
}
footer {
  width: 100vw;
  height: 200px;
  background-color: #282a39;
  transform: translate(-5vw, 10vh);
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .align-content {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .align-content a {
  color: #da1500;
  text-decoration: none;
}
footer .align-content a:visited {
  color: #da1500;
}
footer .align-content a div {
  height: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin: 0px 40px;
  padding: 0;
  transition: ease-in-out 0.2s;
}
footer .align-content a div:hover {
  transform: scale(1.08);
}
footer .align-content a div img {
  width: 75px;
  height: 75px;
}
footer .align-content a div p {
  color: #da1500;
  font-size: 1.3rem;
  padding: 0px 10px;
  font-family: galvanizer, sans-serif;
}
footer .align-content a div p span {
  color: #FFF;
  text-decoration: underline;
}

@media screen and (max-width: 700px) {
  footer {
    transform: translate(0);
    height: 65vh;
    width: 100%;
  }
  footer .align-content {
    flex-direction: column;
    justify-content: space-around;
    padding: 15px;
  }
  footer .align-content .content-link p {
    font-size: 1rem;
  }
  footer .align-content .content-link img {
    width: 64px;
    height: 64px;
  }
  footer .align-content .content-link img:hover {
    transform: scale(1) !important;
  }
}
#confirmation {
  width: 100vw;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#confirmation .content-confirmation {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: #FFF;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  margin: 20px;
}
#confirmation .content-confirmation h1 {
  font-family: analogist;
  color: #282a39;
}
#confirmation .content-confirmation p {
  font-family: galvanizer, sans-serif;
  color: #282a39;
}
#confirmation .content-confirmation button {
  background-color: #282a39;
  color: #fff;
  cursor: pointer;
  box-shadow: none;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  border-radius: 5px;
}
#confirmation .content-confirmation button:hover {
  background-color: #3f4258;
}
#confirmation .content-confirmation button a {
  color: #FFF;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  padding: 0px 10px;
}
#confirmation .content-confirmation button a:visited {
  Color: #FFF;
}

.affichage-projets {
  width: 100%;
}
.affichage-projets h1,
.affichage-projets h3 {
  margin: 0;
  font-family: analogist;
  font-size: 3rem;
  text-transform: uppercase;
  margin-top: 10px;
  color: #282a39;
}
.affichage-projets h3 {
  margin-top: 20px;
}
.affichage-projets h2 {
  font-family: galvanizer, sans-serif;
  font-weight: normal;
  color: #282a39;
}
.affichage-projets .container-affichage {
  display: flex;
  margin: 40px 0px;
}
.affichage-projets .container-affichage video {
  width: 45%;
}
.affichage-projets .container-affichage .text-explication {
  width: 55%;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 30px;
  display: flex;
  flex-direction: column;
}
.affichage-projets .container-affichage .text-explication p {
  font-size: 1.2rem;
  font-family: galvanizer, sans-serif;
  color: #282a39;
}
.affichage-projets .container-affichage .text-explication .technologies-used {
  width: 100%;
}
.affichage-projets .container-affichage .text-explication .technologies-used .span-technologie {
  width: 100%;
  display: flex;
  justify-content: space-between;
  color: #282a39;
}
.affichage-projets .container-affichage .text-explication .technologies-used .span-technologie span {
  min-width: 100px;
  font-family: analogist;
  font-size: 1.3rem;
  border: solid #282a39 1px;
  padding: 8px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0px 5px;
}
.affichage-projets .affichage-autre {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 30px auto;
}
.affichage-projets .affichage-autre img {
  transition: ease-in-out 0.2s;
  margin-top: 100px;
}
.affichage-projets .affichage-autre img:nth-child(1) {
  width: 30%;
  align-self: self-end;
}
.affichage-projets .affichage-autre img:nth-child(2) {
  width: 50%;
  align-self: self-start;
}
.affichage-projets .affichage-autre img:nth-child(3) {
  width: 30%;
  align-self: center;
}
.affichage-projets .affichage-autre img:nth-child(4) {
  width: 55%;
  align-self: self-end;
}
.affichage-projets .affichage-autre img:hover {
  transform: scale(1.1);
}

.retour {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
}
.retour a {
  text-decoration: none;
  Color: #282a39;
}
.retour a button {
  min-width: 200px;
  height: 50px;
  border-radius: 25px;
  border: #282a39 solid 1px;
  background-color: #FFF;
  padding: 15px;
  Color: #282a39;
  font-family: analogist;
  text-transform: uppercase;
  font-size: 1.3rem;
  transition: 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
}
.retour a button:hover {
  background-color: #282a39;
  color: #FFF !important;
  transform: scale(1.05);
  cursor: pointer;
  border: #282a39 solid 1px;
}

@media screen and (max-width: 700px) {
  .affichage-projets h1,
  .affichage-projets h3 {
    margin-left: 12px !important;
    font-size: 2.5rem !important;
  }
  .affichage-projets h2 {
    padding: 0, 12px;
  }
  .affichage-projets .container-affichage {
    margin: 0 !important;
    flex-direction: column;
    display: flex;
    align-items: center;
    justify-content: flex-start !important;
  }
  .affichage-projets .container-affichage video {
    width: 90% !important;
    margin: 0px auto !important;
  }
  .affichage-projets .container-affichage .text-explication {
    width: 90% !important;
    padding-left: 0 !important;
    margin: 0 auto;
  }
  .affichage-projets .container-affichage .text-explication .technologies-used {
    width: 100%;
  }
  .affichage-projets .container-affichage .text-explication .technologies-used .span-technologie {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
  .affichage-projets .container-affichage .text-explication .technologies-used .span-technologie span {
    border: solid #282a39 1px;
    padding: 5px !important;
    min-width: 50px !important;
    margin: 5px auto !important;
    border-radius: 5px !important;
  }
  .affichage-projets .affichage-autre {
    width: 90%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: center;
    margin: 20px auto !important;
  }
  .affichage-projets .affichage-autre img {
    transition: ease-in-out 0.2s;
    margin: 5px 0px !important;
    width: 100% !important;
  }
  .affichage-projets .affichage-autre img:hover {
    transform: scale(1);
  }
  button:hover {
    transform: scale(1);
    background-color: #FFF;
    color: #282a39 !important;
  }
}/*# sourceMappingURL=main.css.map */