* {
  padding: 0;
  margin: 0;
  color: var(--white);
  font-family: "IL", Arial, sans-serif;
  cursor: none;
  box-sizing: border-box;
}

:root {
  --white: rgb(255 255 255);
  --background-blue: rgb(17 22 53);
  --transparence-color: rgba(255 255 255 0.7);
}

html,
body {
  position: relative;
  font-size: 1em;
  height: 100%;
  background-color: var(--background-blue);
  width: 100%;
  color: var(--white);
  overflow-x: hidden;
}

a {
  all: unset;
}

main {
  padding: 1px;
}

.mouseCircle {
  height: 16px;
  width: 16px;
  border-radius: 16px;
  background-color: var(--white);
  box-shadow: 0px 0px 10px -1px rgba(255, 255, 255, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 99999999;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
.mouseCircle.hover {
  animation: pulse 1s infinite ease-in-out;
  background-color: rgba(255, 255, 255, 0.3);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 30px;
  border-bottom: 2px solid var(--white);
  height: 80px;
}
header a {
  font-family: "MC";
  font-size: 30px;
}

nav {
  width: -moz-fit-content;
  width: fit-content;
}
nav ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 5vw;
       column-gap: 5vw;
}
nav a {
  position: relative;
}
nav a::after {
  content: "";
  display: block;
  height: 2px;
  width: 0%;
  background-color: currentColor;
  box-shadow: 0px 0px 5px 1px rgba(255, 255, 255, 0);
  position: absolute;
  left: 50%;
  bottom: -5px;
  transition: all linear 0.3s;
}
nav a:hover::after {
  left: 0;
  width: 100%;
  box-shadow: 0px 0px 5px 1px var(--transparence-color);
}
nav li[aria-current=page] a {
  text-shadow: 0px 0px 10px var(--transparence-color);
}
nav li[aria-current=page] a::after {
  left: 0;
  width: 100%;
  box-shadow: 0px 0px 5px 1px var(--transparence-color);
}

#menuMobile {
  display: none;
}

#burgerIcon {
  height: 36px;
  position: relative;
  z-index: 2;
}

.burger-bar {
  display: block;
  width: 70px;
  height: 6px;
  border-radius: 6px;
  background-color: var(--white);
  transition: all ease 0.2s;
  position: relative;
  top: 0px;
}
.burger-bar::before {
  content: "";
  top: 15px;
  display: block;
  width: 70px;
  height: 6px;
  border-radius: 6px;
  background-color: var(--white);
  transition: all ease 0.2s;
  position: absolute;
}
.burger-bar::after {
  content: "";
  top: 30px;
  display: block;
  width: 70px;
  height: 6px;
  border-radius: 6px;
  background-color: var(--white);
  transition: all ease 0.2s;
  position: absolute;
}
.burger-bar.active {
  transform: translate(0px, 16px) rotate(45deg);
  width: 50px;
}
.burger-bar.active::before {
  transform: rotate(-45deg) translate(50px, -15px);
  opacity: 0;
}
.burger-bar.active::after {
  transform: translate3d(0, -30px, 0) rotate(-90deg);
  width: 50px;
}

#openMenu {
  display: none;
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 100%;
  background-color: var(--background-blue);
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  transition: all linear 0.2s;
  list-style: none;
}

/*******************/
/*  MEDIA QUERIES  */
/*******************/
@media screen and (max-width: 850px) {
  #menuOrdinateur {
    display: none;
  }
  #menuMobile {
    display: flex;
  }
  #openMenu {
    display: flex;
  }
}
@media screen and (max-width: 576px) {
  header > a {
    font-size: 25px;
  }
  #burgerIcon {
    height: 30px;
  }
  .burger-bar {
    height: 3px;
  }
  .burger-bar::before {
    height: 3px;
  }
  .burger-bar::after {
    height: 3px;
  }
}
@media screen and (max-width: 450px) {
  .burger-bar {
    width: 50px;
  }
  .burger-bar::before {
    width: 50px;
  }
  .burger-bar::after {
    width: 50px;
  }
}
#accueil {
  height: 100vh;
  padding-top: 70px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#accueil h1 {
  text-align: center;
  margin: 20px auto;
  font-size: 70px;
  z-index: 2;
  position: relative;
  font-family: "MC";
  font-weight: 100;
  text-shadow: 0px 0px 10px var(--transparence-color);
  height: -moz-fit-content;
  height: fit-content;
}
#accueil p {
  width: 30%;
  margin: 20px auto;
  text-align: center;
  font-size: 18px;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 2;
  position: relative;
}
#accueil p span {
  font-family: "IGR";
  font-size: 20px;
}
#accueil section {
  margin: 100px auto;
  width: 70%;
  position: relative;
  bottom: 10%;
  height: 100%;
}
#accueil section a {
  position: absolute;
  padding-top: 0;
  transition: all ease-in-out 0.5s;
  z-index: 1;
  top: 0;
  width: 35%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#accueil section a img {
  max-width: 85%;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
#accueil section a h2 {
  text-align: center;
  font-family: "MW";
  font-weight: 100;
  font-size: 50px;
}
#accueil section a::before {
  content: "";
  display: block;
  position: absolute;
  height: 100vh;
  width: 3px;
  background-color: rgba(255, 255, 255, 0.3);
  left: 50%;
  transform: translateX(-50%);
  bottom: 80%;
  z-index: -1;
  box-shadow: 0px 0px 10px -1px var(--transparence-color);
}
#accueil section a:hover {
  top: 60%;
}
#accueil section a:hover::before {
  bottom: 65%;
}
#accueil section a:first-of-type {
  left: 10%;
}
#accueil section a:nth-of-type(2) {
  left: 50%;
}
#accueil section a:last-of-type {
  left: 90%;
}
#accueil section a:first-child h2 {
  background: -webkit-linear-gradient(127deg, rgb(246, 142, 153) 0%, rgb(223, 69, 95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 2px 4px #e64569;
}
#accueil section a:nth-child(2) h2 {
  background: -webkit-linear-gradient(153deg, rgb(254, 206, 58) 0%, rgb(222, 66, 27) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 2px 4px #FD972C;
}
#accueil section a:last-child h2 {
  background: -webkit-linear-gradient(163deg, rgb(54, 211, 192) 0%, rgb(118, 121, 218) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 2px 4px #4A92BA;
}

/*******************/
/*  MEDIA QUERIES  */
/*******************/
@media screen and (max-width: 1024px) {
  #accueil h1 {
    font-size: 50px;
  }
  #accueil section a h2 {
    font-size: 30px;
  }
  #accueil p {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #accueil {
    padding-top: 30px;
  }
  #accueil p {
    margin: 5px auto;
    width: 80%;
  }
  #accueil h1 {
    font-size: 40px;
  }
  #accueil section {
    margin: 100px auto 15px;
  }
  #accueil section a {
    left: 50%;
    width: -moz-fit-content;
    width: fit-content;
  }
  #accueil section a img {
    max-width: 250px;
  }
  #accueil section a:first-of-type {
    left: 40%;
    top: 20%;
    z-index: 3;
  }
  #accueil section a:first-of-type:hover {
    top: 30%;
  }
  #accueil section a:nth-of-type(2) {
    left: 70%;
    top: 50%;
    z-index: 2;
  }
  #accueil section a:nth-of-type(2):hover {
    top: 60%;
  }
  #accueil section a:last-of-type {
    left: 20%;
    top: 85%;
    z-index: 1;
  }
  #accueil section a:last-of-type:hover {
    top: 95%;
  }
  #accueil p {
    width: 60%;
  }
}
@media screen and (max-width: 576px) {
  #accueil {
    padding-top: 15px;
  }
  #accueil p {
    width: 98%;
    font-size: 14px;
  }
  #accueil h1 {
    font-size: 30px;
  }
  #accueil section {
    margin: 100px auto 15px;
  }
  #accueil section a::before {
    display: none;
  }
  #accueil section a img {
    max-width: 150px;
  }
  #accueil section a:first-of-type {
    left: 50%;
    top: 10%;
  }
  #accueil section a:first-of-type:hover {
    top: 20%;
  }
  #accueil section a:nth-of-type(2) {
    left: 50%;
    top: 50%;
  }
  #accueil section a:nth-of-type(2):hover {
    top: 60%;
  }
  #accueil section a:last-of-type {
    left: 50%;
    top: 90%;
  }
  #accueil section a:last-of-type:hover {
    top: 100%;
  }
  #accueil p {
    width: 60%;
  }
}
#projets h1 {
  margin-bottom: 60px;
  font-family: "MW";
  font-size: 50px;
  background: -webkit-linear-gradient(153deg, rgb(254, 206, 58) 0%, rgb(222, 66, 27) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 10px #FD972C;
  text-align: center;
  margin: 20px;
}

#liste_projets {
  display: flex;
  justify-content: space-between;
  width: 75%;
  margin: 50px auto;
}
#liste_projets div {
  width: 15%;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 1/1;
  box-shadow: 0px 0px 8px 0px rgba(255, 255, 255, 0.5);
}
#liste_projets div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  top: 0;
}
#liste_projets div h3 {
  position: absolute;
  text-align: center;
  align-content: center;
  width: 100%;
  top: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all linear 0.4s;
  font-size: 22px;
  font-weight: 100;
  color: white;
  white-space: normal;
  overflow-wrap: break-word;
  height: 100%;
}
#liste_projets div:hover h3 {
  top: 0;
}

#explication_projets {
  max-width: 80%;
  margin: 50px auto;
}
#explication_projets .project-details {
  background-color: white;
  padding: 30px 50px;
  box-shadow: inset 0px 0px 10px 0px var(--background-blue);
}
#explication_projets .project-details article {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  row-gap: 20px;
}
#explication_projets .project-details p a {
  text-decoration: underline;
}
#explication_projets .project-details p,
#explication_projets .project-details h2,
#explication_projets .project-details h3 {
  color: var(--background-blue);
}
#explication_projets .project-details h2 {
  text-align: center;
  font-family: "IGR";
  margin-bottom: 20px;
}
#explication_projets .project-details div:first-of-type {
  width: 60%;
}
#explication_projets .project-details div:first-of-type p {
  text-align: justify;
}
#explication_projets .project-details h3 {
  text-align: center;
  margin: 20px auto 10px;
  font-family: "MC";
  font-size: 20px;
  font-weight: 100;
}
#explication_projets .project-details div:last-of-type {
  width: 30%;
}
#explication_projets .project-details div:last-of-type a {
  padding: 10px 20px;
  background-color: #FD972C;
  border: none;
  border-radius: 2px;
  transition: all linear 0.1s;
  box-shadow: 0px 0px 10px -1px rgba(253, 151, 44, 0);
  margin: auto;
  text-align: center;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
#explication_projets .project-details div:last-of-type a:hover {
  box-shadow: 0px 0px 10px -1px rgba(253, 151, 44, 0.67);
  padding: 10px 25px;
}
#explication_projets .project-details div:last-of-type img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 10px;
}

.project-details {
  display: none;
}

/*******************/
/*  MEDIA QUERIES  */
/*******************/
@media screen and (max-width: 1440px) {
  #liste_projets div {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  #liste_projets {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    white-space: nowrap;
    width: calc(100% - 110px);
    margin: 20px auto;
    padding: 10px;
    gap: 30px;
    box-sizing: border-box;
  }
  #liste_projets > div {
    flex: 0 0 auto;
    width: 130px;
  }
  #liste_projets > div h3 {
    font-size: 20px;
  }
  #liste_projets::-webkit-scrollbar {
    height: 6px;
  }
  #liste_projets::-webkit-scrollbar-thumb {
    background-color: rgba(253, 151, 44, 0.67);
    border-radius: 4px;
  }
  #liste_projets::-webkit-scrollbar-track {
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 4px;
  }
  #explication_projets .project-details {
    padding: 15px 30px;
  }
  #explication_projets .project-details article {
    display: block;
  }
  #explication_projets .project-details div:first-of-type,
  #explication_projets .project-details div:last-of-type {
    width: 90%;
    margin: auto;
  }
  #explication_projets .project-details div:last-of-type a {
    margin: 10px auto 20px;
  }
  #explication_projets .project-details div:last-of-type img {
    margin: 20px auto;
  }
}
@media screen and (max-width: 576px) {
  #liste_projets {
    width: calc(100% - 60px);
  }
  #liste_projets > div {
    width: 100px;
  }
  #liste_projets > div h3 {
    padding: 8px;
    font-size: 18px;
  }
  #explication_projets {
    max-width: 90%;
    margin: 40px auto;
  }
  #explication_projets .project-details {
    padding: 8px 20px;
  }
  #explication_projets .project-details div:first-of-type,
  #explication_projets .project-details div:last-of-type {
    width: 95%;
  }
}
#propos {
  display: flex;
  margin: 50px auto;
  width: 90%;
  justify-content: space-between;
  min-height: calc(100vh - 191px);
}
#propos img {
  height: 100%;
  width: 100%;
}
#propos h1 {
  margin-bottom: 20px;
  font-family: "MW";
  font-size: 50px;
  background: -webkit-linear-gradient(127deg, rgb(246, 142, 153) 0%, rgb(223, 69, 95) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 10px #e64569;
}
#propos p {
  text-align: justify;
}
#propos section,
#propos > div {
  width: 45%;
  position: relative;
}
#propos #downloadCV {
  position: absolute;
  bottom: 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  background-color: #e64569;
  border: none;
  border-radius: 2px;
  transition: all linear 0.1s;
  box-shadow: 0px 0px 10px -1px rgba(230, 69, 105, 0);
  left: 50%;
  transform: translateX(-50%);
}
#propos #downloadCV:hover {
  box-shadow: 0px 0px 10px -1px rgba(230, 69, 105, 0.67);
  padding: 10px 25px;
}
#propos #competences {
  position: relative;
  height: 40%;
}
#propos #competences article {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#propos #competences article h3 {
  text-align: center;
  font-family: "MC";
  margin-top: 10px;
  font-size: 18px;
  font-weight: 100;
}
#propos #competences article svg {
  width: 50%;
  -o-object-position: center;
     object-position: center;
  height: auto;
  aspect-ratio: 1/1;
}
#propos #competences article:first-child {
  top: 20%;
  left: 10%;
}
#propos #competences article:nth-child(2) {
  top: 30%;
  left: 70%;
}
#propos #competences article:nth-child(3) {
  top: 50%;
  left: 40%;
}
#propos #competences article:nth-child(4) {
  top: 90%;
  left: 10%;
}
#propos #competences article:last-child {
  top: 80%;
  left: 90%;
}

/*******************/
/*  MEDIA QUERIES  */
/*******************/
@media screen and (max-width: 1024px) {
  #propos {
    flex-direction: column;
  }
  #propos section {
    width: 60%;
    margin: auto;
  }
  #propos section h1 {
    text-align: center;
    margin: 30px 0;
  }
  #propos > div {
    width: 40%;
    margin: auto;
  }
  #propos #competences {
    left: calc((-100vw + 100%) / 2);
    width: 100vw;
    margin: 20px auto 30px;
    height: 100px;
  }
  #propos #competences article {
    top: 50% !important;
    transform: translate(-50%, -50%);
  }
  #propos #competences article:first-child {
    left: 10%;
  }
  #propos #competences article:nth-child(2) {
    left: 30%;
  }
  #propos #competences article:nth-child(3) {
    left: 50%;
  }
  #propos #competences article:nth-child(4) {
    left: 70%;
  }
  #propos #competences article:last-child {
    left: 90%;
  }
  #propos #downloadCV {
    position: relative;
    margin: 30px 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #propos section {
    width: 80%;
  }
  #propos > div {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  #propos section {
    width: 95%;
  }
  #propos > div {
    width: 60%;
  }
}
#contact {
  text-align: center;
  position: relative;
  top: calc(53% - 80px);
  transform: translateY(-50%);
}
#contact h1 {
  margin-bottom: 40px;
  font-family: "MW";
  font-size: 50px;
  background: -webkit-linear-gradient(163deg, rgb(54, 211, 192) 0%, rgb(118, 121, 218) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0px 0px 10px #4A92BA;
}
#contact form {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
  row-gap: 40px;
}
#contact form input,
#contact form textarea {
  background-color: transparent;
  color: white;
  border: none;
  border-bottom: 1px solid #41ACBC;
  padding-bottom: 7px;
  font-size: 18px;
  width: 20%;
}
#contact form input:focus-visible,
#contact form textarea:focus-visible {
  outline: unset;
}
#contact form input::-moz-placeholder, #contact form textarea::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#contact form input::placeholder,
#contact form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
#contact form input[type=submit] {
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 20px;
  background-color: #4B8BB9;
  border: none;
  border-radius: 2px;
  transition: all linear 0.1s;
  box-shadow: 0px 0px 10px -1px rgba(82, 140, 182, 0);
}
#contact form input[type=submit]:hover {
  box-shadow: 0px 0px 10px -1px rgba(82, 140, 182, 0.67);
  padding: 10px 25px;
}
#contact section {
  font-size: 15px;
}
#contact section h2 {
  margin-bottom: 10px;
  font-weight: 100;
  font-size: 20px;
}
#contact section a {
  color: rgba(255, 255, 255, 0.8);
}

/*******************/
/*  MEDIA QUERIES  */
/*******************/
@media screen and (max-width: 1440px) {
  #contact h1 {
    margin-bottom: 40px;
    font-size: 40px;
  }
  #contact form {
    margin-bottom: 50px;
    row-gap: 30px;
  }
  #contact form input,
  #contact form textarea {
    font-size: 18px;
    width: 35%;
  }
}
@media screen and (max-width: 1024px) {
  #contact h1 {
    margin-bottom: 30px;
    font-size: 35px;
  }
  #contact form {
    margin-bottom: 10px;
    row-gap: 20px;
  }
  #contact form input,
  #contact form textarea {
    font-size: 18px;
    width: 35%;
  }
}
@media screen and (max-width: 990px) {
  #contact h1 {
    font-size: 35px;
  }
  #contact form input,
  #contact form textarea {
    width: 55%;
  }
}
@media screen and (max-width: 576px) {
  #contact h1 {
    font-size: 25px;
  }
  #contact form input,
  #contact form textarea {
    width: 75%;
  }
}/*# sourceMappingURL=main.css.map */