*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "IBM Plex Sans", sans-serif;
  font-weight: normal;
  text-decoration: none;
  color: #ECEFFF;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background: linear-gradient(0deg, rgb(83, 118, 192) 0%, rgb(83, 118, 192) 65%, rgb(145, 121, 196) 86%);
  overflow: visible;
  font-size: 1em;
}
body .animeFenetre {
  animation: animeFenetre 1s;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1rem;
  color: #061C4A;
}

p {
  font-size: 1rem;
}

[v-cloak] {
  display: none;
}

@keyframes descendre {
  from {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@keyframes monter {
  from {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
  to {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
}
@keyframes tourner-avant {
  from {
    transform: rotate(45deg);
  }
  to {
    transform: rotate(0deg);
  }
}
@keyframes tourner-arriere {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(45deg);
  }
}
@keyframes animeBtn {
  from {
    border: #1D4089 solid 5px;
    transform: scale(1.05);
  }
  to {
    box-shadow: 0 0 30px #1D4089;
    transform: scale(1);
  }
}
@keyframes animeFenetre {
  from {
    filter: brightness(1);
    background: inherit;
  }
  to {
    filter: brightness(0);
    background: black;
  }
}
@keyframes demarrage {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes demarrageMilieu {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes demarrageFin {
  50% {
    opacity: 1;
  }
  75% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.animation-menu-descendre {
  animation: descendre 1s forwards;
  opacity: 1;
}

.animation-menu-monter {
  animation: monter 1s forwards;
}

.conteneur-bulle {
  width: 9.375em;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  flex-direction: column;
  border-radius: 0.625rem;
  filter: drop-shadow(-8px 7px 4px rgba(0, 0, 0, 0.25));
  overflow-y: visible;
}
.conteneur-bulle .projet-titre {
  position: absolute;
  background-color: rgba(239, 239, 239, 0.57);
  width: 100%;
  bottom: 0;
  color: #061C4A;
  font-size: 1rem;
  padding: 0.45em 1.05em 0.95em;
  z-index: 20;
}
.conteneur-bulle .conteneur-img {
  aspect-ratio: 1/1;
  width: 7.75em;
  border-radius: 0.625rem;
}
.conteneur-bulle .conteneur-img img {
  max-height: 100%;
  display: block;
  position: relative;
  right: 1.25em;
}
.conteneur-bulle::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 0.625rem;
  background: radial-gradient(circle, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgb(255, 255, 255) 100%);
  z-index: 10;
}
.conteneur-bulle:hover {
  transform: scale(1.1);
  transition: ease-in 0.1s;
}

.demarrage {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: white;
  animation: demarrageFin 5s forwards;
  animation-delay: 2s;
  position: absolute;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}
.demarrage .portfolio {
  border: 5px gray solid;
  padding: 0.625em;
  border-radius: 40px;
  color: gray;
  font-weight: bold;
  animation: demarrage 2s forwards;
  animation-delay: 1s;
  position: inherit;
}
.demarrage .nom {
  color: gray;
  font-weight: bold;
  overflow: hidden;
  animation: demarrageMilieu 3s forwards;
  position: inherit;
}
.demarrage .nom img {
  position: relative;
  top: 15px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 2.5rem;
  padding-bottom: 7.125rem;
  position: relative;
}
header .profil {
  display: flex;
  align-items: flex-end;
  padding-left: 8vw;
  overflow: visible;
  gap: 0.625rem;
}
header .profil .conteneur-bulle {
  width: 5rem;
}
header .profil .conteneur-bulle .conteneur-img {
  width: 4.125rem;
}
header .profil:hover p {
  color: #1D4089;
  transition: ease-in 0.1s;
}
header .profil:hover .conteneur-bulle {
  transform: scale(1.2);
  transition: ease-in 0.1s;
}
header .menu-hamburger {
  width: 6.25rem;
  padding-right: 8vw;
  position: relative;
}
header .menu-hamburger:hover svg {
  fill: #1D4089;
  transition: ease-in 0.1s;
}
header .cliquable {
  pointer-events: none;
}
header nav {
  position: absolute;
  width: 100%;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, #6c77c2 0%, rgb(145, 121, 196) 30%);
  gap: 2.25rem;
}
header nav .ferme {
  position: absolute;
  top: 22px;
  right: 23px;
  width: 2.5rem;
}
header nav .ferme:hover {
  fill: #1D4089;
  transition: ease-in 0.1s;
}
header nav .page {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow: visible;
}
header nav .page .selectionne {
  color: #061C4A;
}
header nav .page .contour-icon {
  aspect-ratio: 1/1;
  width: 3.25rem;
  background-color: #ECEFFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
}
header nav .page .contour-icon svg {
  width: 2.1875rem;
}
header nav .page:hover .contour-icon {
  border: #5376C0 solid 3px;
  background-color: #061C4A;
  transition: ease-in 0.1s;
}
header nav .page .transitionAnimation {
  animation: animeBtn 1s;
}

@media screen and (min-width: 744px) {
  header .menu-hamburger {
    display: none;
  }
  header nav {
    background: transparent;
    opacity: 1;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
  }
  header nav .ferme {
    display: none;
  }
  header .cliquable {
    all: none;
  }
  header .profil .conteneur-bulle {
    width: 6rem;
  }
  header .profil .conteneur-bulle .conteneur-img {
    width: 5.125rem;
  }
}
footer {
  display: flex;
  background-color: #1D4089;
  height: 7.375rem;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 1.56rem;
}
footer .liens {
  display: flex;
  padding-left: 1.75rem;
  gap: 1.56rem;
}
footer .liens svg {
  width: 2.125rem;
  height: 2.125rem;
}
footer .liens svg:hover {
  fill: #5376C0;
}
footer .heure {
  padding: 0 1.375em 0.625em 0;
}

.page-projets {
  padding-bottom: 9.125rem;
}
.page-projets h1 {
  padding: 0 2.25rem;
}
.page-projets .projets {
  display: grid;
  grid-template-columns: 9.375rem 9.375rem;
  grid-template-rows: 9.375rem;
  gap: 2rem;
  min-height: -moz-fit-content;
  min-height: fit-content;
  margin: auto;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 2.0625rem;
  overflow: visible;
}/*# sourceMappingURL=style.css.map */