@keyframes buttonHover {
  0% {
    background-position-x: 0%;
    background-size: 0% 100%;
  }
  50% {
    background-position-x: 0%;
    background-size: 100% 100%;
  }
  51% {
    background-position-x: 100%;
    background-size: 100% 100%;
  }
  100% {
    background-position-x: 100%;
    background-size: 0% 100%;
  }
}
@keyframes underlineHover {
  0% {
    background-position-x: 100%;
    background-size: 100% 1.5px;
  }
  50% {
    background-position-x: 100%;
    background-size: 0% 1.5px;
  }
  51% {
    background-position-x: 0%;
    background-size: 0% 1.5px;
  }
  100% {
    background-position-x: 0%;
    background-size: 100% 1.5px;
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 1;
  }
  40% {
    stroke-dashoffset: 0;
  }
  60% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -1;
  }
}
::-moz-selection {
  /* Firefox */
  color: #eeeeee;
  background: #00adb5;
}

::selection {
  color: #eeeeee;
  background: #00adb5;
}

#cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: #00adb5;
  pointer-events: none;
  display: block;
  z-index: 1000;
}
@media only screen and (hover: none) and (pointer: coarse) {
  #cursor {
    display: none;
  }
}

.hover,
.cursorButton,
.hoverIndex,
.button {
  position: relative;
  z-index: 2000;
}

.button {
  position: relative;
  border: none;
  outline: none;
  color: #222831;
  background-color: transparent;
  font-size: 20px;
  font-weight: bold;
  padding: 0.8rem 3rem;
  color: #fff;
  cursor: pointer;
}
.button::before {
  content: "";
  transition: all 0.2s ease-in-out;
  position: absolute;
  inset: 0;
  transform: skew(-25deg);
  background-color: #00adb5;
  border-radius: 3px;
  z-index: -1;
}
.button::after {
  content: "";
  transition: all 0.2s ease-in-out;
  position: absolute;
  inset: 0;
  transform: skew(-25deg);
  border-radius: 3px;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.2));
  background-size: 0% 100%;
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 576px) {
  .button {
    font-size: 16px;
    padding: 0.8rem 2rem;
  }
}
.button:hover::before {
  transform: skew(-20deg);
  border-radius: 6px;
}
.button:hover::after {
  transform: skew(-20deg);
  border-radius: 6px;
  animation-name: buttonHover;
  animation-duration: 0.4s;
  animation-timing-function: ease-in-out;
}

.section {
  padding-top: 5rem;
}
.section .h2 {
  font-size: 24px;
  font-weight: 600;
  color: #00adb5;
  text-transform: uppercase;
  text-align: center;
  margin-top: 0;
}
.section .h1 {
  font-size: 48px;
  font-weight: 500;
  color: #222831;
  text-align: center;
  margin-top: 1rem;
  max-width: 600px;
  margin-inline: auto;
}
.section .h1 div {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .section {
    padding-top: 5rem;
  }
  .section .h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
  }
  .section .h1 {
    font-size: 40px;
    font-weight: 500;
    margin-top: 1rem;
    max-width: 500px;
  }
}
@media screen and (max-width: 576px) {
  .section {
    padding-top: 4rem;
  }
  .section .h2 {
    font-size: 16px;
    margin-top: 0;
  }
  .section .h1 {
    font-size: 32px;
    font-weight: 500;
    margin-top: 1rem;
    max-width: 400px;
  }
}

.errorPage {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  flex-direction: column;
  gap: 1rem;
  background-color: #222831;
  color: #eeeeee;
  padding: 1px;
}
.errorPage h1,
.errorPage p {
  margin: 0;
}
.errorPage h1 {
  font-size: 8rem;
  font-weight: 700;
}
.errorPage .button {
  margin-top: 1rem;
}

body {
  background-color: #eeeeee;
  margin: 0;
  font-family: sans-serif;
}
body:not(.active) #menu {
  pointer-events: none;
}
body:not(.active) #menu .background {
  background-color: rgba(34, 40, 49, 0);
}
body:not(.active) #menu .background::after {
  transform: translateX(100%);
}
body:not(.active) #menu .content {
  transform: translateX(100%);
}
body.active {
  overflow-y: hidden;
  max-height: 100vh;
  max-height: 100svh;
}
body.active #cursor {
  z-index: 11000;
}
body.active #menu .content .hover,
body.active #menu .content .cursorButton {
  z-index: 12000;
}
body.active #header #nav {
  z-index: 12000;
}
body.active #header #nav #language {
  color: rgba(34, 40, 49, 0.5);
}
body.active #header #nav #language a {
  color: rgba(34, 40, 49, 0.5);
}
body.active #header #nav #language a:not(:last-child)::after {
  color: rgba(34, 40, 49, 0.5);
}
body.active #header #nav #language a.active {
  color: #222831;
}
body.active #header #nav #menuButton div {
  background-color: #222831;
}

.progressBar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background-color: rgba(57, 62, 70, 0.5);
  z-index: 100;
}
.progressBar .progressBarInner {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  background-color: #00adb5;
}

.toTopButton {
  transition: all 0.3s ease-in-out;
  position: fixed;
  z-index: 10000;
  right: 4rem;
  bottom: 3rem;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  border-radius: 30px;
  color: #eeeeee;
  background-color: #00adb5;
  cursor: pointer;
}
.toTopButton:not(.active) {
  opacity: 0;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.toTopButton:hover {
  transform: scale(1.1);
}
@media screen and (max-width: 768px) {
  .toTopButton {
    right: 3rem;
    bottom: 2rem;
  }
}
@media screen and (max-width: 576px) {
  .toTopButton {
    right: 2rem;
    bottom: 1rem;
  }
}

#menu #gamesButton {
  position: absolute;
  left: 4rem;
  top: 3rem;
}
#menu .background {
  transition: all 0.3s ease-in-out;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: rgba(34, 40, 49, 0.5);
}
#menu .background::after {
  content: "";
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100%;
  margin-left: auto;
  background-color: #eeeeee;
  box-shadow: 0 0 60px rgba(0, 0, 0, 0.2666666667);
}
#menu .content {
  transition: all 0.3s ease-in-out;
  position: fixed;
  z-index: 12000;
  top: 0;
  right: 0;
  bottom: 0;
  width: 400px;
  max-width: 100%;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  padding-top: 8rem;
}
#menu .content .navList {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  list-style: none;
  padding-left: 0;
}
#menu .content .navList .item {
  text-transform: uppercase;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 2px;
  padding: 1rem;
  cursor: pointer;
}
#menu .content .navList .item.animationFinished {
  transition: all 0.2s ease-in-out;
}
#menu .content .navList .item:hover {
  letter-spacing: 6px !important;
}
#menu .content .links {
  position: relative;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
#menu .content .links a {
  position: relative;
  color: #222831;
  text-decoration: none;
}
#menu .content .links a svg {
  position: relative;
  width: 60px;
  height: 60px;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 768px) {
  #menu .background::after {
    width: 100%;
  }
  #menu .content {
    width: 100%;
  }
  #menu .content .navList .item {
    font-size: 20px;
  }
  #menu .content .links {
    gap: 1rem;
  }
  #menu .content .links a svg {
    width: 50px;
  }
}

#header {
  position: absolute;
  left: 4rem;
  top: 3rem;
  width: calc(100% - 8rem);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #header {
    left: 3rem;
    width: calc(100% - 6rem);
  }
}
@media screen and (max-width: 576px) {
  #header {
    left: 2rem;
    width: calc(100% - 4rem);
  }
}
#header #logo svg {
  width: 50px;
  height: auto;
  fill: #eeeeee;
}
#header #nav {
  display: flex;
  align-items: center;
}
#header #nav #language {
  color: rgba(238, 238, 238, 0.5);
  font-size: 20px;
  margin-right: 1.5rem;
}
#header #nav #language a {
  color: rgba(238, 238, 238, 0.5);
  text-decoration: none;
}
#header #nav #language a:not(:last-child)::after {
  content: "|";
  color: rgba(238, 238, 238, 0.5);
}
#header #nav #language a.active {
  color: #eeeeee;
}
#header #nav #menuButton {
  position: relative;
  width: 36px;
  height: 36px;
  border: none;
  outline: none;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
}
#header #nav #menuButton div {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #eeeeee;
}
#header #nav #menuButton div:nth-child(1) {
  top: 30%;
}
#header #nav #menuButton div:nth-child(2) {
  bottom: 30%;
}

#top {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background-color: #222831;
}
#top .topContent {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#top .topContent .text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #eeeeee;
}
#top .topContent .text h1 {
  font-size: 96px;
  text-align: center;
  margin: 0;
}
#top .topContent .text h1 .underscore {
  color: #00adb5;
}
#top .topContent .text p {
  font-size: 24px;
  text-align: center;
  max-width: 600px;
  font-weight: light;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  #top .topContent .text h1 {
    font-size: 80px;
  }
  #top .topContent .text p {
    font-size: 20px;
    max-width: 500px;
    margin-top: 2rem;
  }
}
@media screen and (max-width: 576px) {
  #top .topContent .text h1 {
    font-size: 64px;
  }
  #top .topContent .text p {
    font-size: 16px;
    max-width: 400px;
    margin-top: 2rem;
  }
}
#top .topContent .discover {
  position: relative;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  #top .topContent .discover {
    margin-top: 2rem;
  }
}
#top .bottom {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  bottom: -1px;
}
#top .backgroundContainer {
  position: absolute;
  inset: 0;
  color: #00adb5;
}
#top .backgroundContainer .backgroundSvg {
  position: absolute;
  width: 300px;
  height: auto;
  stroke-width: 1px;
  opacity: 0.3;
  display: none;
}
@media screen and (max-width: 768px) {
  #top .backgroundContainer .backgroundSvg {
    width: 250px;
  }
}
@media screen and (max-width: 576px) {
  #top .backgroundContainer .backgroundSvg {
    width: 200px;
  }
}
#top .backgroundContainer .backgroundSvg path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: dash 4s ease-in-out alternate;
}

#background {
  position: relative;
  background-color: #eeeeee;
}
#background .content {
  position: relative;
  margin-block: 6rem;
}
@media screen and (max-width: 768px) {
  #background .content {
    margin-block: 5rem;
  }
}
@media screen and (max-width: 576px) {
  #background .content {
    margin-block: 4rem;
  }
}
#background .content .verticalLine {
  position: absolute;
  top: 0;
  left: 30%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: rgba(34, 40, 49, 0.3);
}
#background .content .verticalLine::after {
  content: "";
  transition: height 0.5s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--height);
  background: #00adb5;
}
@media screen and (max-width: 576px) {
  #background .content .verticalLine {
    left: 35px;
  }
}
#background .content .parcoursLIst {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  #background .content .parcoursLIst {
    gap: 5rem;
  }
}
@media screen and (max-width: 576px) {
  #background .content .parcoursLIst {
    gap: 4rem;
  }
}
#background .content .parcoursLIst .item {
  position: relative;
  transition: color 0.3s ease-in-out;
  color: rgba(34, 40, 49, 0.5);
  display: flex;
  align-items: flex-start;
}
#background .content .parcoursLIst .item::before, #background .content .parcoursLIst .item::after {
  content: "";
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 30%;
  top: 0;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 35px;
  background-color: #888b8f;
  border: 15px solid #eeeeee;
}
#background .content .parcoursLIst .item::after {
  width: 0;
  height: 0;
  background-color: #00adb5;
  border: none;
  margin-top: 15px;
}
#background .content .parcoursLIst .item .title {
  width: 25%;
  text-align: end;
  font-size: 40px;
  color: inherit;
  margin: 0;
}
#background .content .parcoursLIst .item .text {
  margin: 0;
  margin-left: 10%;
  width: 50%;
  color: inherit;
}
#background .content .parcoursLIst .item.active {
  color: #222831;
}
#background .content .parcoursLIst .item.active::after {
  transition-delay: 0.5s;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 768px) {
  #background .content .parcoursLIst .item .title {
    font-size: 28px;
    margin-top: 8px;
  }
  #background .content .parcoursLIst .item .text {
    width: 60%;
  }
}
@media screen and (max-width: 576px) {
  #background .content .parcoursLIst .item {
    padding-left: 70px;
    flex-direction: column;
    align-items: flex-start;
  }
  #background .content .parcoursLIst .item::before, #background .content .parcoursLIst .item::after {
    left: 35px;
  }
  #background .content .parcoursLIst .item .title {
    width: calc(100% - 40px);
    text-align: start;
    margin-bottom: 2rem;
  }
  #background .content .parcoursLIst .item .text {
    font-size: 14px;
    margin-left: 0;
    width: calc(100% - 40px);
  }
}

#skills {
  position: relative;
  margin: 2rem;
  padding-inline: 1px;
  padding-bottom: 1px;
  background-color: #222831;
  border-radius: 4rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #skills {
    margin: 1rem;
  }
}
@media screen and (max-width: 576px) {
  #skills {
    margin: 0;
    border-radius: 0;
  }
}
#skills .h1 {
  color: #eeeeee;
}
#skills .skillsList {
  margin-block: 6rem;
  transform: perspective(150px) rotateX(5deg);
  /* SPACING AND SIZING */
}
#skills .skillsList .hexGrid {
  width: 60%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0.707% 0;
}
#skills .skillsList .hexGrid:after {
  content: "";
  display: block;
  clear: both;
}
#skills .skillsList .hexGrid .hex {
  position: relative;
  list-style-type: none;
  float: left;
  overflow: hidden;
  visibility: hidden;
  -webkit-transform: rotate(-60deg) skewY(30deg);
  -ms-transform: rotate(-60deg) skewY(30deg);
  transform: rotate(-60deg) skewY(30deg);
  pointer-events: none;
}
#skills .skillsList .hexGrid .hex * {
  position: absolute;
  visibility: visible;
}
#skills .skillsList .hexGrid .hex .hexIn {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #eeeeee;
  overflow: hidden;
  -webkit-transform: skewY(-30deg) rotate(60deg);
  -ms-transform: skewY(-30deg) rotate(60deg);
  transform: skewY(-30deg) rotate(60deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  background-color: #eeeeee;
  pointer-events: all;
}
#skills .skillsList .hexGrid .hex .hexIn img {
  left: 50%;
  top: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
}
#skills .skillsList .hexGrid .hex .hexIn p {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #eeeeee;
  opacity: 0;
}
#skills .skillsList .hexGrid .hex .hexIn:hover {
  background-color: #00adb5;
}
#skills .skillsList .hexGrid .hex .hexIn:hover img {
  opacity: 0;
}
#skills .skillsList .hexGrid .hex .hexIn:hover p {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  #skills .skillsList {
    margin-block: 5rem;
  }
  #skills .skillsList .hexGrid .hex .hexIn p {
    font-size: 14px;
  }
}
@media screen and (max-width: 576px) {
  #skills .skillsList {
    margin-block: 4rem;
  }
}
@media screen and (min-width: 576px) {
  #skills .skillsList .hex {
    width: 24.25%;
    padding-bottom: 28.001%;
  }
  #skills .skillsList .hex:nth-child(7n+5), #skills .skillsList .hex:nth-child(7n+6), #skills .skillsList .hex:nth-child(7n+7) {
    margin-top: -6.134%;
    margin-bottom: -6.134%;
    -webkit-transform: translateX(50%) rotate(-60deg) skewY(30deg);
    -ms-transform: translateX(50%) rotate(-60deg) skewY(30deg);
    transform: translateX(50%) rotate(-60deg) skewY(30deg);
  }
  #skills .skillsList .hex:nth-child(7n+5):last-child, #skills .skillsList .hex:nth-child(7n+6):last-child, #skills .skillsList .hex:nth-child(7n+7):last-child {
    margin-bottom: 0;
  }
  #skills .skillsList .hex:nth-child(7n+2), #skills .skillsList .hex:nth-child(7n+6) {
    margin-left: 1%;
    margin-right: 1%;
  }
  #skills .skillsList .hex:nth-child(7n+3) {
    margin-right: 1%;
  }
  #skills .skillsList .hex:nth-child(7n+8) {
    clear: left;
  }
  #skills .skillsList .hex:nth-child(7n+5) {
    clear: left;
    margin-left: 0.5%;
  }
}
@media screen and (max-width: 576px) {
  #skills .skillsList .hex {
    width: 32.666%;
    padding-bottom: 37.72%;
  }
  #skills .skillsList .hex:nth-child(5n+4), #skills .skillsList .hex:nth-child(5n+5) {
    margin-top: -8.564%;
    margin-bottom: -8.564%;
    -webkit-transform: translateX(50%) rotate(-60deg) skewY(30deg);
    -ms-transform: translateX(50%) rotate(-60deg) skewY(30deg);
    transform: translateX(50%) rotate(-60deg) skewY(30deg);
  }
  #skills .skillsList .hex:nth-child(5n+4):last-child, #skills .skillsList .hex:nth-child(5n+5):last-child {
    margin-bottom: 0;
  }
  #skills .skillsList .hex:nth-child(5n+4) {
    margin-right: 1%;
    margin-left: 0.5%;
  }
  #skills .skillsList .hex:nth-child(5n+2) {
    margin-left: 1%;
    margin-right: 1%;
  }
  #skills .skillsList .hex:nth-child(5n+6) {
    clear: left;
  }
}

#projects {
  position: relative;
  overflow: hidden;
}
#projects .projectsList {
  position: relative;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  width: 80%;
  margin-inline: auto;
  margin-block: 0;
  padding-left: 0;
  color: #222831;
}
#projects .projectsList .item {
  position: relative;
  display: flex;
  align-items: flex-start;
  padding-block: 4rem;
}
#projects .projectsList .item .responsiveTitle {
  display: none;
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding-bottom: 12px;
  margin-inline: auto;
  margin-bottom: 2rem;
}
#projects .projectsList .item .responsiveTitle a {
  color: #222831;
  text-decoration: none;
}
#projects .projectsList .item .responsiveTitle a svg {
  position: absolute;
  display: inline;
  color: #00adb5;
  margin-left: 4px;
}
#projects .projectsList .item .responsiveTitle::after {
  content: "";
  position: absolute;
  display: block;
  width: 30%;
  height: 5px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background-color: #00adb5;
}
#projects .projectsList .item .imgContainer {
  transition: all 0.3s ease-in-out;
  position: absolute;
  align-self: center;
  width: 45%;
  aspect-ratio: 1/1;
  left: 27%;
  transform: translateX(-50%) scale(0);
  opacity: 0;
}
#projects .projectsList .item .imgContainer img {
  position: relative;
  left: 50%;
  top: 50%;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  object-position: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
}
#projects .projectsList .item .description {
  margin-left: 50%;
}
#projects .projectsList .item .description .title {
  position: relative;
  font-size: 48px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 2rem;
}
#projects .projectsList .item .description .title a {
  color: #222831;
  text-decoration: none;
}
#projects .projectsList .item .description .title::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 8px;
  margin-left: 10px;
  background-color: #00adb5;
}
#projects .projectsList .item .description .text {
  margin: 0;
}
#projects .projectsList .item:hover .imgContainer {
  transform: translateX(-50%);
  opacity: 1;
}
@media screen and (max-width: 992px) {
  #projects .projectsList {
    width: 90%;
  }
  #projects .projectsList .item {
    padding-block: 3rem;
  }
  #projects .projectsList .item .description .title {
    font-size: 40px;
    margin-bottom: 1rem;
  }
  #projects .projectsList .item .description .text {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #projects .projectsList .item {
    flex-direction: column;
    padding-block: 2rem;
  }
  #projects .projectsList .item .number {
    display: none;
  }
  #projects .projectsList .item .responsiveTitle {
    display: block;
  }
  #projects .projectsList .item .imgContainer {
    position: relative;
    align-self: center;
    width: 80%;
    aspect-ratio: auto;
    left: 0;
    transform: none;
    opacity: 1;
    margin-bottom: 2rem;
  }
  #projects .projectsList .item .imgContainer img {
    position: relative;
    left: 50%;
    top: 0;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    transform: translateX(-50%);
    object-fit: contain;
    object-position: center;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
    border-radius: 1rem;
    max-height: 300px;
  }
  #projects .projectsList .item .description {
    margin-left: 0;
  }
  #projects .projectsList .item .description .title {
    display: none;
  }
  #projects .projectsList .item:hover .imgContainer {
    transform: none;
  }
}

#services {
  position: relative;
  padding-bottom: 6rem;
  overflow: hidden;
}
#services .background {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 30%;
  background-color: #222831;
}
#services .servicesList {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2%;
  list-style: none;
  margin: 0;
  margin-top: 6rem;
  padding-left: 0;
  max-width: 1200px;
  margin-inline: auto;
}
#services .servicesList .item {
  position: relative;
  padding: 1rem 3% 2rem;
  background-color: #393e46;
  color: #eeeeee;
  border-radius: 1rem;
  width: 20%;
  box-shadow: 0px 0px 10px rgba(34, 40, 49, 0.4);
}
#services .servicesList .item:nth-child(2) {
  border: solid 6px #00adb5;
  transform: translateY(0.5rem);
}
#services .servicesList .item h3 {
  position: relative;
  text-align: center;
  padding-bottom: 10px;
  margin-top: 1rem;
  font-size: 24px;
  font-weight: bold;
}
#services .servicesList .item h3::after {
  content: "";
  position: absolute;
  width: 2rem;
  height: 4px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background-color: #00adb5;
  border-radius: 4px;
}
#services .servicesList .item .infoList {
  list-style: disc;
  margin-top: 2rem;
  padding-left: 1rem;
}
#services .servicesList .item .infoList li {
  margin-top: 0.8rem;
}
#services .servicesList .item .button {
  margin-top: 2rem;
  color: #eeeeee;
  z-index: 100;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 992px) and (min-width: 768px) {
  #services .servicesList .item {
    padding: 1rem 3% 1.5rem;
  }
  #services .servicesList .item h3 {
    font-size: 20px;
    margin-top: 0.8rem;
  }
  #services .servicesList .item .infoList {
    font-size: 14px;
    margin-top: 1.5rem;
  }
  #services .servicesList .item .infoList li {
    margin-top: 0.6rem;
  }
  #services .servicesList .item .button {
    font-size: 16px;
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #services {
    padding-bottom: 4rem;
  }
  #services .background {
    display: none;
  }
  #services .servicesList {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    margin-top: 4rem;
  }
  #services .servicesList .item {
    width: 50%;
  }
  #services .servicesList .item:nth-child(2) {
    transform: none;
  }
}

#footer {
  position: relative;
  background-color: #222831;
  padding-top: 4rem;
  padding-bottom: 2rem;
  color: #eeeeee;
  overflow: hidden;
}
#footer .container {
  display: flex;
  justify-content: space-evenly;
  gap: 1rem;
  width: 95%;
  margin-inline: auto;
}
#footer .container .informations {
  max-width: 500px;
  margin-inline: auto;
}
#footer .container .informations h2 {
  font-size: 64px;
  font-weight: bold;
  color: #00adb5;
  margin: 0;
  margin-bottom: 3rem;
}
#footer .container .informations .text {
  margin: 0;
  margin-bottom: 3rem;
}
#footer .container .informations ul {
  list-style: none;
  padding-left: 0;
}
#footer .container .informations ul li {
  margin-bottom: 0.5rem;
}
#footer .container .informations ul li a {
  color: inherit;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
#footer .container .informations ul li a span {
  margin-left: 1rem;
  padding-bottom: 3px;
  background: linear-gradient(90deg, #eeeeee, #eeeeee);
  background-size: 100% 1.5px;
  background-position-x: 0%;
  background-position-y: calc(100% - 2px);
  background-repeat: no-repeat;
}
#footer .container .informations ul li a:hover span {
  animation-name: underlineHover;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
}
#footer .container form {
  position: relative;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  max-width: 500px;
  margin-inline: auto;
}
#footer .container form .field {
  position: relative;
  background-color: rgba(238, 238, 238, 0.1);
  border-radius: 0.5rem;
  grid-column: span 2;
  min-width: 0;
}
#footer .container form .field.half {
  grid-column: span 1;
}
#footer .container form .field label {
  transition: all 0.3s ease-in-out;
  position: absolute;
  left: 1rem;
  top: 1rem;
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
#footer .container form .field input,
#footer .container form .field textarea,
#footer .container form .field button[type=submit] {
  width: -webkit-fill-available;
  padding: 1rem;
  border: none;
  outline: none;
  background-color: transparent;
  color: #eeeeee;
}
#footer .container form .field input:focus ~ label, #footer .container form .field input:valid ~ label,
#footer .container form .field textarea:focus ~ label,
#footer .container form .field textarea:valid ~ label,
#footer .container form .field button[type=submit]:focus ~ label,
#footer .container form .field button[type=submit]:valid ~ label {
  transform: translateY(calc(-1rem - 50%));
  font-size: 14px;
}
#footer .container form .field input[type=submit],
#footer .container form .field textarea[type=submit],
#footer .container form .field button[type=submit][type=submit] {
  background-color: #00adb5;
  border-radius: 0.5rem;
  font-size: 20px;
  cursor: pointer;
}
#footer .container form .field input[type=submit]:hover,
#footer .container form .field textarea[type=submit]:hover,
#footer .container form .field button[type=submit][type=submit]:hover {
  filter: brightness(0.9);
}
#footer .container form .field button[type=submit]:not(.loading) .loadingIcon {
  display: none;
}
#footer .container form .field button[type=submit].loading .text {
  display: none;
}
#footer .container form .field textarea {
  resize: vertical;
  min-height: 3rem;
}
#footer .links {
  position: relative;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 6rem;
}
#footer .links a {
  position: relative;
  color: #eeeeee;
  text-decoration: none;
}
#footer .links a svg {
  position: relative;
  width: 60px;
  height: 60px;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 768px) {
  #footer .container {
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    width: 90%;
    font-size: 14px;
  }
  #footer .container .informations {
    max-width: 500px;
    margin-inline: auto;
  }
  #footer .container .informations h2 {
    font-size: 56px;
    margin-bottom: 2rem;
  }
  #footer .container .informations .text {
    margin-bottom: 2rem;
  }
  #footer .links {
    gap: 1rem;
    margin-top: 5rem;
  }
  #footer .links a svg {
    width: 50px;
  }
}

#games {
  background-color: #222831;
  padding: 1px;
}
#games h1 {
  position: relative;
  font-size: 64px;
  color: #00adb5;
  text-align: center;
}
#games #gameList {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 4rem;
  margin-top: 8rem;
  margin-bottom: 6rem;
  width: 80%;
  max-width: 1000px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  #games #gameList {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  #games #gameList {
    grid-template-columns: repeat(1, 1fr);
  }
}
#games #gameList .item {
  transition: all 0.3s ease-in-out;
  position: relative;
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 1rem;
}
#games #gameList .item img {
  transition: filter 0.1s ease-in-out, transform 0.3s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  object-position: center;
}
#games #gameList .item .title {
  transition: all 0.1s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% + 1rem));
  margin: 0;
  color: #00adb5;
  font-size: 40px;
  font-weight: bold;
  opacity: 0;
  text-align: center;
}
#games #gameList .item:hover img {
  filter: brightness(0.8) blur(2px);
  transform: scale(1.1);
}
#games #gameList .item:hover .title {
  opacity: 1;
  transform: translate(-50%, -50%);
}

/*# sourceMappingURL=theme.css.map */
