html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
  scrollbar-width: thin;
}

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

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "Roboto", sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body a, body a:visited, body a:active {
  text-decoration: none;
}

.wrapper {
  width: 60%;
  margin-inline: auto;
}
@media (max-width: 62.5em) {
  .wrapper {
    width: 80%;
  }
}

footer {
  margin-top: auto;
}

.puce {
  color: var(--primary-color);
}
@media (max-width: 37.5em) {
  .puce {
    font-size: 1em;
  }
}

h1, h2, h3 {
  font-weight: 700;
  line-height: 1.1;
  margin-top: 0;
}

p {
  margin-top: 0;
}

a, a:visited, a:active {
  text-decoration: none;
}

:root {
  --background-color: #FFFEFD;
  --text-color: #041C32;
  --primary-color: #5D17EB;
  --lime: #ccf381;
}

.filter-primary {
  filter: invert(11%) sepia(97%) saturate(6731%) hue-rotate(264deg) brightness(91%) contrast(102%);
}

.credits {
  font-size: 0.75em;
  text-align: center;
  padding: 20px;
  color: var(--primary-color);
}

.dev {
  font-size: 2em;
  font-weight: 400;
}
@media (max-width: 37.5em) {
  .dev {
    font-size: 1.5em;
  }
}

.index__bottom__contact {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 4em;
  margin-bottom: 5em;
}
.index__bottom__contact p {
  font-size: 1.25em;
  font-weight: 400;
}
@media (max-width: 37.5em) {
  .index__bottom__contact {
    margin-top: 2em;
  }
  .index__bottom__contact p {
    font-size: 1em;
  }
}

.button__primary {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0.75em 1.2em;
  border-radius: 0.5em;
  transition: 0.4s;
  font-size: 1.24em;
  font-weight: 600;
  margin: 0.3em;
}
.button__primary:hover {
  background-color: #421799;
  padding: 0.75em 1.2em;
  border-radius: 0.5em;
}

.button__secondary {
  background-color: var(--lime);
  color: var(--primary-color);
  border: none;
  padding: 0.75em 1.2em;
  border-radius: 0.5em;
  transition: 0.4s;
  font-size: 1.24em;
  font-weight: 600;
  margin: 0.3em;
}
.button__secondary:hover {
  background-color: #a8db46;
  padding: 0.75em 1.2em;
  border-radius: 0.5em;
}

.name__flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 83.8em) {
  .name__flex {
    flex-direction: column;
    align-items: center;
  }
}

.call__index {
  margin-top: 4em;
  font-size: 1.2em;
  font-weight: 400;
  margin-bottom: 1em;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 83.8em) {
  .call__index {
    margin-top: 2em;
    margin-bottom: 2em;
    justify-content: center;
  }
}
@media (max-width: 59em) {
  .call__index {
    flex-direction: column;
    font-size: 0.9em;
  }
}
.call__index > .button__primary {
  margin-left: 0;
}

.name {
  margin-bottom: 4em;
  text-align: center;
}
@media (max-width: 62em) {
  .name {
    margin: 2em;
  }
}

.social__links {
  position: fixed;
  bottom: 0px;
  left: 20px;
  right: auto;
}
.social__links img {
  width: 2.4em;
  margin: 0.3em;
}
.social__links ul {
  list-style-type: none;
  padding: 0;
}
.social__links li {
  transition: 0.4s;
}
.social__links li:hover {
  cursor: pointer;
  transform: scale(1.2);
  transition: 0.4s;
}
.social__links img:hover {
  filter: brightness(0) saturate(100%) invert(98%) sepia(75%) saturate(787%) hue-rotate(20deg) brightness(96%) contrast(98%);
}
@media (max-width: 56.25em) {
  .social__links {
    position: relative;
    left: auto;
  }
  .social__links ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .social__links img {
    width: 2.4em;
    margin: 0.9em;
  }
}
@media (max-width: 43.75em) {
  .social__links {
    position: relative;
    left: auto;
  }
  .social__links ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .social__links img {
    width: 2em;
    margin: 0.9em;
  }
}

.infos {
  margin: 5em 0;
}
.infos h2 {
  font-size: 3em;
  font-weight: 600;
  margin-bottom: 0.1em;
}
.infos p {
  font-size: 1.25em;
  font-weight: 400;
  margin-bottom: 1em;
}
@media (max-width: 62em) {
  .infos {
    margin: 2em 0;
  }
  .infos h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 37.5em) {
  .infos h2 {
    font-size: 1.5em;
  }
  .infos p {
    font-size: 1em;
  }
}

.line__top {
  border-top: solid 3px var(--primary-color);
  margin: 2em auto;
  width: 70%;
}

.skills {
  margin: 2em 0;
}
.skills ul {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  width: 230em;
  list-style: none;
}
.skills li {
  padding: 0 10px;
  margin: 1em 0;
}
.skills li img {
  width: 6em;
  margin: 0.3em;
}
.skills h3 {
  font-size: 2.3em;
  font-weight: 500;
  margin-bottom: 1em;
}
.skills h3::after {
  content: "";
  background: var(--lime);
  height: 0.4em;
  width: 20%;
  display: block;
  margin-top: -0.8rem;
  margin-left: -2%;
  position: absolute;
  z-index: -1;
}
@media (max-width: 62em) {
  .skills h3 {
    font-size: 2em;
  }
  .skills li img {
    width: 5em;
  }
  .skills h3::after {
    content: "";
    background: var(--lime);
    height: 0.4em;
    width: 30%;
    display: block;
    margin-top: -0.8rem;
    margin-left: -2%;
    position: absolute;
    z-index: -1;
  }
}
@media (max-width: 37.5em) {
  .skills h3 {
    font-size: 1.5em;
  }
  .skills li img {
    width: 5em;
  }
  .skills h3::after {
    content: "";
    background: var(--lime);
    height: 0.4em;
    width: 38%;
    display: block;
    margin-top: -0.8rem;
    margin-left: -2%;
    position: absolute;
    z-index: -1;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-3828px);
  }
}
@media (max-width: 37.5em) {
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-3190px);
    }
  }
}
.carousel {
  display: grid;
  height: 250px;
  place-items: center;
  margin: auto;
  position: relative;
  overflow: hidden;
}
@media (max-width: 37.5em) {
  .carousel {
    height: 170px;
  }
}

#rails {
  width: 8em;
}
@media (max-width: 37.5em) {
  #rails {
    width: 6em;
  }
}

#tailwind {
  width: 14em;
}
@media (max-width: 37.5em) {
  #tailwind {
    width: 10em;
  }
}

#yarn {
  width: 8em;
}
@media (max-width: 37.5em) {
  #yarn {
    width: 6em;
  }
}

#sqlite {
  width: 8em;
}
@media (max-width: 37.5em) {
  #sqlite {
    width: 6em;
  }
}

#postgresql {
  width: 10em;
}
@media (max-width: 37.5em) {
  #postgresql {
    width: 6em;
  }
}

#heroku {
  width: 3em;
}
@media (max-width: 37.5em) {
  #heroku {
    width: 2em;
  }
}

#bootstrap {
  width: 8em;
}
@media (max-width: 37.5em) {
  #bootstrap {
    width: 6em;
  }
}

#firebase {
  width: 10em;
}
@media (max-width: 37.5em) {
  #firebase {
    width: 8em;
  }
}

#typescript {
  width: 10em;
}
@media (max-width: 37.5em) {
  #typescript {
    width: 8em;
  }
}

.logo img {
  width: 7em;
}
@media (max-width: 900px) {
  .logo img {
    width: 5em;
    margin: 10px;
  }
}

header {
  z-index: 100;
  position: sticky;
  top: 0;
  background-color: var(--background-color);
  display: flex;
  justify-content: center;
}
@media (max-width: 900px) {
  header {
    margin-bottom: 3.5em;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  padding-top: 1em;
  align-items: center;
  width: 80%;
}

.menu #contact-btn {
  border: none;
  transition: 0.4s;
}
.menu #contact-btn a {
  padding: 0.75em 1.2em;
  border-radius: 0.5em;
  background-color: var(--primary-color);
  color: white;
}
.menu #contact-btn:hover {
  transition: 0.4s;
}
.menu #contact-btn:hover a {
  background-color: #421799;
  padding: 0.75em 1.2em;
}
.menu ul {
  display: flex;
  list-style-type: none;
  padding: 0;
}
.menu li {
  transition: 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
}
.menu li a {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 1.25em;
  padding: 0.65em;
  border-radius: 0.5em;
  transition: 0.4s;
}
@media (max-width: 37.5em) {
  .menu li a {
    font-size: 1em;
  }
}
.menu li:hover a {
  transition: 0.4s;
  background-color: #dacef2;
  border-radius: 0.5em;
  border: none;
  padding: 0.6em;
}
@media (max-width: 62em) {
  .menu ul li:hover a {
    background-color: #fffefd;
  }
}

.project__infos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 95px;
}
.project__infos img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5em;
}
.project__infos h3 {
  font-size: 1.5em;
  font-weight: 600;
  margin-bottom: 0.5em;
}
@media (max-width: 62em) {
  .project__infos {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .project__infos img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.5em;
  }
  .project__infos h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 0.5em;
  }
  .project__infos p {
    font-size: 1em;
  }
}
@media (max-width: 37.5em) {
  .project__infos img {
    width: 100%;
  }
  .project__infos h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 0.5em;
  }
}

.stack__button ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
}
.stack__button li {
  margin: 0 0.5em;
  padding: 0.5em 1.2em;
  border-radius: 0.5em;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.8em;
  transition: 0.4s;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 62em) {
  .stack__button ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .stack__button li {
    margin: 0.5em 0;
    font-weight: 500;
    font-size: 1em;
    width: 60%;
  }
}
@media (max-width: 37.5em) {
  .stack__button ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .stack__button li {
    font-weight: 500;
    font-size: 0.8em;
    width: 90%;
  }
}

.infos__projets h2 {
  margin-bottom: 2.5em;
}
@media (max-width: 62em) {
  .infos__projets h2 {
    font-size: 2.3em;
    margin-bottom: 2em;
  }
}
@media (max-width: 37.5em) {
  .infos__projets h2 {
    font-size: 1.5em;
    margin-bottom: 1em;
  }
}

.stack__button__link {
  margin: 1.3em 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
}
.stack__button__link #project__link {
  color: var(--primary-color);
  text-decoration: none;
  margin: 0.5em 0.5em;
  padding: 0.5em 1.2em;
  border-radius: 0.5em;
  font-weight: 600;
  font-size: 1em;
  transition: 0.4s;
  background-color: var(--lime);
}
@media (max-width: 37.5em) {
  .stack__button__link #project__link {
    font-size: 1em;
  }
}
.stack__button__link svg {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  filter: invert(11%) sepia(97%) saturate(6731%) hue-rotate(264deg) brightness(91%) contrast(102%);
}
.stack__button__link #project__link:hover {
  transition: 0.4s;
  -webkit-text-decoration: underline var(--primary-color);
          text-decoration: underline var(--primary-color);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
  background-color: #a8db46;
}

.project {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.div1 {
  grid-area: 1/1/2/2;
}
.div1 img {
  box-shadow: 5px 5px 6px var(--primary-color);
}

.div2 {
  grid-area: 1/2/2/3;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.div3 {
  grid-area: 2/1/3/2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.div3 a {
  font-size: 1em;
  font-weight: 500;
  -webkit-text-decoration: underline var(--primary-color);
          text-decoration: underline var(--primary-color);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
  color: var(--primary-color);
  transition: 0.4s;
}
.div3 a:hover {
  color: var(--primary-color);
  -webkit-text-decoration: underline var(--primary-color);
          text-decoration: underline var(--primary-color);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
  transition: 0.4s;
  text-shadow: 3px 3px 3px var(--lime);
}

.div4 {
  grid-area: 2/2/3/3;
}
.div4 img {
  box-shadow: 5px 5px 6px var(--primary-color);
}

.div5 {
  grid-area: 3/1/4/2;
}
.div5 img {
  box-shadow: 5px 5px 6px var(--primary-color);
}

.div6 {
  grid-area: 3/2/4/3;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.div6 a {
  font-size: 1em;
  font-weight: 500;
  -webkit-text-decoration: underline var(--primary-color);
          text-decoration: underline var(--primary-color);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
  color: var(--primary-color);
  transition: 0.4s;
}
.div6 a:hover {
  color: var(--primary-color);
  -webkit-text-decoration: underline var(--primary-color);
          text-decoration: underline var(--primary-color);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
  transition: 0.4s;
  text-shadow: 3px 3px 3px var(--lime);
}

.div7 {
  grid-area: 4/1/5/2;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.div7 a {
  font-size: 1em;
  font-weight: 500;
  -webkit-text-decoration: underline var(--primary-color);
          text-decoration: underline var(--primary-color);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
  color: var(--primary-color);
  transition: 0.4s;
}
.div7 a:hover {
  color: var(--primary-color);
  -webkit-text-decoration: underline var(--primary-color);
          text-decoration: underline var(--primary-color);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
  transition: 0.4s;
  text-shadow: 3px 3px 3px var(--lime);
}

.div8 {
  grid-area: 4/2/5/3;
}
.div8 img {
  box-shadow: 5px 5px 6px var(--primary-color);
}

.div9 {
  grid-area: 5/1/6/2;
}

.div10 {
  grid-area: 5/2/6/3;
}

.projects_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  flex-direction: column;
}
.projects_cards h3 {
  font-size: 2.3em;
  font-weight: 500;
  margin-bottom: 1em;
}
.projects_cards h3::after {
  content: "";
  background: var(--lime);
  height: 0.4em;
  width: 30%;
  display: block;
  margin-top: -0.8rem;
  margin-left: -2%;
  position: absolute;
  z-index: -1;
}
@media (max-width: 62em) {
  .projects_cards {
    flex-wrap: nowrap;
    justify-content: center;
  }
  .projects_cards h3 {
    font-size: 2em;
  }
  .projects_cards h3::after {
    content: "";
    background: var(--lime);
    height: 0.4em;
    width: 38%;
    display: block;
    margin-top: -0.8rem;
    margin-left: -2%;
    position: absolute;
    z-index: -1;
  }
}
@media (max-width: 37.5em) {
  .projects_cards h3 {
    font-size: 1.5em;
  }
  .projects_cards h3::after {
    content: "";
    background: var(--lime);
    height: 0.4em;
    width: 68%;
    display: block;
    margin-top: -0.8rem;
    margin-left: -2%;
    position: absolute;
    z-index: -1;
  }
}
.projects_cards .project .project_box .text_zone {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.projects_cards .project .project_box .text_zone a {
  font-size: 1em;
  font-weight: 500;
  -webkit-text-decoration: underline var(--primary-color);
          text-decoration: underline var(--primary-color);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
  color: var(--primary-color);
  transition: 0.4s;
}
.projects_cards .project .project_box .text_zone a:hover {
  color: var(--primary-color);
  -webkit-text-decoration: underline var(--primary-color);
          text-decoration: underline var(--primary-color);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
  transition: 0.4s;
  text-shadow: 3px 3px 3px var(--lime);
}
.projects_cards .project .project_box .text_zone h3 {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 0.5em;
}
@media (max-width: 62em) {
  .projects_cards .project .project_box .text_zone {
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .projects_cards .project .project_box .text_zone img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.5em;
  }
  .projects_cards .project .project_box .text_zone h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 0.5em;
  }
  .projects_cards .project .project_box .text_zone p {
    font-size: 1em;
  }
}
@media (max-width: 37.5em) {
  .projects_cards .project .project_box .text_zone img {
    width: 100%;
  }
  .projects_cards .project .project_box .text_zone h3 {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 0.5em;
  }
}
.projects_cards .project .project_box .text_zone h2 {
  font-size: 3em;
  font-weight: 600;
  margin-bottom: 0.1em;
}
.projects_cards .project .project_box .text_zone p {
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 1em;
}
@media (max-width: 62em) {
  .projects_cards .project .project_box .text_zone {
    margin: 2em 0;
  }
  .projects_cards .project .project_box .text_zone h2 {
    font-size: 2.5em;
  }
}
@media (max-width: 37.5em) {
  .projects_cards .project .project_box .text_zone h2 {
    font-size: 1.5em;
  }
  .projects_cards .project .project_box .text_zone p {
    font-size: 1em;
  }
}

.images_container {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
@media (max-width: 62em) {
  .images_container {
    flex-wrap: nowrap;
    flex-direction: column;
  }
}

.image_box {
  position: relative;
  flex: 1 1 40%;
  height: 270px;
  overflow: hidden;
  border-radius: 10px;
  width: 430px;
  max-width: calc(50% - 10px);
  perspective: 600px;
}
@media (max-width: 62em) {
  .image_box {
    max-width: 100%;
    height: 320px;
    flex: none;
  }
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 1s;
}
.flip-card-inner.is_flipped {
  transform: rotateY(180deg);
}
.flip-card-inner.is_flipped .card_face_front {
  z-index: 1;
}
.flip-card-inner.is_flipped .card_face_back {
  z-index: 3;
}
.flip-card-inner .card_face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}
.flip-card-inner .card_face_front .content {
  position: absolute;
  width: 100%;
  z-index: 3;
  padding: 10px 20px;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0, rgb(0, 0, 0));
  bottom: -70px;
}
.flip-card-inner .card_face_front .title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 24px;
}
.flip-card-inner .card_face_front .description {
  margin-bottom: 5px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}
.flip-card-inner .card_face_front .btn {
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 0 23px;
  height: 40px;
  line-height: 34px;
  border: 2px solid var(--lime);
  border-radius: 4px;
  font-size: 14px;
  color: #fff;
  background: transparent;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
}
.flip-card-inner .card_face_front .btn:hover {
  background: var(--lime);
  transform: translateY(-3px);
  color: var(--primary-color);
}
.flip-card-inner .card_face_front:after {
  content: "";
  background: linear-gradient(180deg, var(--primary-color), #000);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  z-index: 2;
  opacity: 0;
}
.flip-card-inner .card_face_front:hover:after {
  opacity: 0.75;
}
.flip-card-inner .card_face_front:hover .content {
  bottom: 0;
  background: transparent;
}
.flip-card-inner .card_face_front .portfolio_image {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flip-card-inner .card_face_back {
  transform: rotateY(180deg);
  color: #fff;
}
.flip-card-inner .card_face_back .stack__button__link {
  margin: 0;
}
.flip-card-inner .card_face_back .bck-grd {
  padding: 20px;
  background: linear-gradient(180deg, var(--primary-color), #000);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flip-card-inner .card_face_back .portfolio_image {
  position: absolute;
  z-index: -2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flip-card-inner .card_face_back .btn {
  height: 40px;
  line-height: 34px;
  background: transparent;
  text-transform: uppercase;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 10px;
  width: 50px;
  border: none;
  color: var(--lime);
}
.flip-card-inner .card_face_back .btn:hover {
  transform: translateX(-6px);
}
.flip-card-inner .card_face_back a {
  -webkit-text-decoration: underline var(--lime);
          text-decoration: underline var(--lime);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
  color: var(--lime);
  transition: 0.4s;
}

@media (max-width: 37.5em) {
  .image_box {
    width: 300px;
    height: 180px;
    margin: 0 auto;
    max-width: none;
    padding: 0;
    box-sizing: border-box;
  }
  .card_face_front .content {
    font-size: 14px;
    padding: 5px 10px;
  }
  .card_face_front .content .title {
    font-size: 16px;
  }
  .card_face_front .content .description {
    font-size: 12px;
  }
  .card_face_front .content .btn {
    padding: 0 23px;
    font-size: 12px;
  }
  .flip-card-inner .card_face_back .bck-grd {
    padding: 15px;
  }
  .flip-card-inner .card_face_back h3, .flip-card-inner .card_face_back p, .flip-card-inner .card_face_back a {
    font-size: 12px;
  }
  .flip-card-inner .card_face_back .stack__button__link {
    font-size: 12px;
  }
  .flip-card-inner .card_face_back .btn {
    width: 36px;
  }
}
.infos__cursus aside {
  display: flex;
  justify-content: end;
  align-items: center;
}
.infos__cursus aside img {
  width: 1em;
  transition: 0.4s;
}
.infos__cursus aside svg {
  width: 1.5em;
  margin-left: 1.875em;
  transition: 0.4s;
}
.infos__cursus aside p {
  font-size: 1em;
  margin: 0;
}
.infos__cursus aside .resume {
  display: flex;
  align-items: center;
  color: var(--text-color);
}
.infos__cursus aside svg:hover {
  cursor: pointer;
  transform: scale(1.2);
  transition: 0.4s;
}
.infos__cursus aside img:hover {
  cursor: pointer;
  transform: scale(1.2);
  transition: 0.4s;
}
@media (max-width: 62em) {
  .infos__cursus aside {
    margin-bottom: 1em;
  }
  .infos__cursus aside img {
    width: 1.4em;
  }
  .infos__cursus aside svg {
    margin-left: 1.2em;
  }
}
.infos__cursus a, .infos__cursus a:visited, .infos__cursus a:active {
  text-decoration: none;
}

.cursus__resume {
  display: flex;
  justify-content: space-around;
  margin: 0 1.875em;
}
.cursus__resume h2 {
  font-size: 2.5em;
  font-weight: 600;
  margin-bottom: 1em;
}
.cursus__resume p {
  font-size: 1.25em;
  margin: 0;
}
.cursus__resume a, .cursus__resume a:visited, .cursus__resume a:active {
  text-decoration: none;
}
@media (max-width: 62em) {
  .cursus__resume {
    flex-direction: column-reverse;
    align-items: center;
  }
  .cursus__resume h2 {
    font-size: 2em;
  }
  .cursus__resume p {
    font-size: 1em;
  }
}

.cursus__exp__main {
  margin-top: 5em;
}
.cursus__exp__main h3::after {
  content: "";
  background: var(--lime);
  height: 0.5em;
  width: 10%;
  display: block;
  margin-top: -0.6rem;
  margin-left: -2%;
  position: absolute;
  z-index: -1;
}

.cursus__resume__exp {
  margin-top: 4em;
  width: 100%;
}

.cursus__exp__header {
  padding-bottom: 1em;
}
.cursus__exp__header h3 {
  font-weight: 500;
  font-size: 2em;
}
@media (max-width: 62em) {
  .cursus__exp__header h2 {
    font-size: 2.3em;
  }
  .cursus__exp__header h3 {
    font-size: 1.5em;
  }
  .cursus__exp__header p {
    font-size: 1em;
  }
}
@media (max-width: 37.5em) {
  .cursus__exp__header h2 {
    font-size: 1.5em;
  }
  .cursus__exp__header h3 {
    font-size: 1.2em;
  }
}

.cursus__exp__header {
  border-bottom: solid 3px var(--primary-color);
}

.cursus__resume__stacks {
  width: 30%;
  margin-top: 5em;
  padding-top: 14em;
}
@media (max-width: 62em) {
  .cursus__resume__stacks {
    width: 100%;
    margin-top: 4em;
    padding-top: 2em;
    border-top: solid 3px var(--primary-color);
  }
}

@media (max-width: 62em) {
  .cursus__stacks__main {
    display: flex;
    justify-content: space-between;
  }
}
@media (max-width: 43.75em) {
  .cursus__stacks__main {
    display: block;
  }
}

.avatar {
  display: flex;
  justify-content: center;
  margin-left: 3.4em;
}
.avatar img {
  width: 20em;
  height: 20em;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  transition: 0.4s;
}
@media (max-width: 62em) {
  .avatar img {
    width: 10em;
    height: 10em;
  }
}
@media (max-width: 83.8em) {
  .avatar {
    margin-left: 0;
  }
}
@media (max-width: 37.5em) {
  .avatar img {
    width: 8em;
    height: 8em;
  }
}

#linkedin a {
  font-size: 1em;
  font-weight: 500;
  -webkit-text-decoration: underline var(--primary-color);
          text-decoration: underline var(--primary-color);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
  color: var(--primary-color);
  transition: 0.4s;
}
#linkedin a:hover {
  color: var(--primary-color);
  -webkit-text-decoration: underline var(--primary-color);
          text-decoration: underline var(--primary-color);
  text-decoration-thickness: 0.1em;
  text-underline-offset: 0.3em;
  transition: 0.4s;
  text-shadow: 3px 3px 3px var(--lime);
}

.contact__infos h2 {
  margin-bottom: 1em;
}
@media (max-width: 62em) {
  .contact__infos h2 {
    font-size: 2.3em;
  }
}
@media (max-width: 37.5em) {
  .contact__infos h2 {
    font-size: 1.5em;
  }
}

#zcal__h1 {
  font-size: 2em;
  font-weight: 500;
  margin-bottom: 0.6em;
}
@media (max-width: 62em) {
  #zcal__h1 {
    font-size: 1.5em;
  }
}
@media (max-width: 37.5em) {
  #zcal__h1 {
    font-size: 1em;
  }
}

.menu > li {
  margin: 0 1rem;
  overflow: hidden;
}

.menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#menu-toggle {
  display: none;
}

.menu-button,
.menu-button::before,
.menu-button::after {
  display: block;
  background-color: var(--primary-color);
  position: absolute;
  height: 4px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  border-radius: 2px;
}

.menu-button::before {
  content: "";
  margin-top: -8px;
}

.menu-button::after {
  content: "";
  margin-top: 8px;
}

#menu-toggle:checked + .menu-button-container .menu-button::before {
  margin-top: 0px;
  transform: rotate(405deg);
}

#menu-toggle:checked + .menu-button-container .menu-button {
  background: rgba(255, 255, 255, 0);
}

#menu-toggle:checked + .menu-button-container .menu-button::after {
  margin-top: 0px;
  transform: rotate(-405deg);
}

@media (max-width: 900px) {
  .menu-button-container {
    display: flex;
  }
  .menu {
    position: absolute;
    top: 0;
    margin-top: 36px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  #menu-toggle ~ .menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  #menu-toggle:checked ~ .menu li {
    border-bottom: 2px solid #333;
    height: 3.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  .menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0.2em;
    width: 100%;
    color: white;
    background-color: var(--background-color);
  }
  .menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
}/*# sourceMappingURL=style.css.map */