@font-face {
  font-display: block;
  font-family: Motter Corpus Std;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/MotterCorpusStd.woff2) format("woff2"), url(../fonts/MotterCorpusStd.woff) format("woff");
}
@font-face {
  font-display: block;
  font-family: GT Pressura Mono;
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/GTPressuraMono.woff2) format("woff2"), url(../fonts/GTPressuraMono.woff) format("woff");
}
/* Nav section */
.nav_lang .not_selected {
  color: var(--text-secondary);
}

.nav_lang a {
  text-decoration: none;
}

.nav_left,
.nav_top,
.nav_right,
.nav_bottom {
  position: absolute;
  display: flex;
  align-items: center;
  background-color: var(--bg);
  z-index: 999;
  pointer-events: all;
}

.nav_desktop,
.nav_mobile {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  pointer-events: none;
  z-index: 999;
}

/* Desktop nav */
.nav_desktop .nav_top {
  height: 50px;
  width: 100vw;
}

.nav_desktop .nav_top_container {
  margin: auto 50px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.nav_desktop .nav_top img {
  height: 25px;
}

.nav_desktop .nav_left {
  flex-direction: column;
  justify-content: center;
  width: 50px;
  height: 100vh;
  row-gap: 20px;
  top: 0;
  left: 0;
}

.nav_desktop .nav_left a:hover img {
  filter: invert(92%) sepia(86%) saturate(617%) hue-rotate(47deg) brightness(94%) contrast(88%);
}

.nav_desktop .nav_right {
  top: 50px;
  right: 0;
  width: 50px;
  height: calc(100vh - 100px);
  text-align: center;
  justify-content: center;
  writing-mode: vertical-lr;
  text-orientation: upright;
  letter-spacing: 12px;
  cursor: pointer;
  z-index: 99999;
}

.nav_desktop .nav_right div {
  height: inherit;
  display: inherit;
  justify-content: inherit;
  text-align: inherit;
  transition: var(--transition);
}

.nav_desktop .nav_right span {
  transition: all 0.3s ease;
}

.nav_desktop .nav_right:hover span:nth-child(2n) {
  margin-left: 8px;
}

.nav_desktop .nav_right:hover span:nth-child(2n+1) {
  margin-right: 8px;
}

.nav_desktop .nav_right .nav_right_close {
  position: absolute;
  opacity: 0;
}

.nav_desktop .nav_right.opened_side_nav {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05) inset;
}

.nav_desktop .nav_right.opened_side_nav .nav_right_close {
  opacity: 1;
}

.nav_desktop .nav_right.opened_side_nav .nav_right_open {
  opacity: 0;
}

.nav_desktop .side_nav {
  position: absolute;
  text-transform: uppercase;
  background-color: var(--bg);
  right: 50px;
  top: 50px;
  height: calc(100vh - 160px);
  display: flex;
  flex-direction: column;
  z-index: 9999;
  pointer-events: all;
  padding: 30px;
  align-items: start;
  justify-content: space-between;
  gap: 30px;
  transform: translateX(100%);
  transition: var(--transition);
  overflow: scroll;
}

.nav_desktop .side_nav.opened_side_nav {
  transform: translateX(0%);
}

.side_nav a {
  position: relative;
  width: fit-content;
  color: var(--text);
  z-index: 1;
}

.side_nav a:hover {
  color: var(--text);
}

.side_nav a::before {
  content: "";
  position: absolute;
  padding: 0;
  top: 50%;
  left: 0;
  width: 0%;
  height: 40%;
  transform: translate(-5px, -50%);
  background-color: var(--primary);
  z-index: -1;
  transition: var(--transition);
}

.side_nav a:hover::before {
  width: 100%;
  padding: 0 5px;
}

.side_nav .nav_links {
  display: flex;
  flex-direction: column;
  margin-bottom: auto;
  gap: 30px;
}

.side_nav .side_nav_contact {
  display: flex;
  flex-direction: column;
  margin: auto 0;
}

.side_nav .side_nav_contact h5 {
  margin-bottom: 0;
}

.side_nav .side_nav_contact .btn {
  margin-top: 10px;
  margin-bottom: 10px;
}

.side_nav .side_nav_contact .mailto {
  margin: auto;
}

.side_nav .side_nav_contact a:not(.mailto),
.side_nav .side_nav_contact .btn {
  width: 100%;
}

.side_nav .side_nav_contact a:not(.mailto)::before {
  display: none;
}

.side_nav .side_nav_contact .btn:hover {
  box-shadow: 0px 4px 2px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.side_nav .side_nav_photos a {
  transform: translateX(-5px);
}

.nav_desktop .nav_bottom {
  bottom: 0;
  width: calc(100vw - 100px);
  padding: 0 50px;
  height: 50px;
  align-self: center;
  justify-content: center;
}

.nav_desktop .nav_button {
  position: absolute;
  bottom: 80px;
  right: 80px;
  filter: drop-shadow(0px 6px 2px rgba(0, 0, 0, 0.2));
  pointer-events: all;
}

.nav_desktop .nav_button a::before {
  content: none;
}

/* Mobile nav */
@media screen and (max-width: 570px) {
  .nav_mobile {
    display: block !important;
  }
  .nav_desktop {
    display: none;
  }
  body.opened_mobile_side_nav {
    overflow: hidden;
  }
}
.nav_mobile {
  display: none;
}

.nav_mobile .nav_top,
.nav_mobile .nav_bottom {
  width: 100vw;
  height: 50px;
  justify-content: center;
  align-items: center;
}

.nav_mobile .nav_top img {
  height: 30px;
  width: auto;
}

.nav_mobile .nav_top {
  align-items: center;
}

.nav_mobile .nav_bottom {
  bottom: 0;
  gap: 20px;
  cursor: pointer;
}

.nav_mobile .nav_bottom:hover span:nth-child(2n) {
  margin-top: 8px;
}

.nav_mobile .nav_bottom:hover span:nth-child(2n+1) {
  margin-bottom: 8px;
}

.nav_mobile .nav_bottom div {
  height: inherit;
  display: inherit;
  align-items: inherit;
  text-align: inherit;
  transition: var(--transition);
  gap: inherit;
}

.nav_mobile .nav_bottom div span {
  transition: var(--transition);
}

.nav_mobile .nav_bottom .nav_bottom_close {
  position: absolute;
  opacity: 0;
}

.nav_mobile .nav_bottom.opened_mobile_side_nav {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.05);
}

.nav_mobile .nav_bottom.opened_mobile_side_nav .nav_bottom_close {
  opacity: 1;
}

.nav_mobile .nav_bottom.opened_mobile_side_nav .nav_bottom_open {
  opacity: 0;
}

.nav_mobile .side_nav {
  height: calc(100vh - 130px);
  width: calc(100vw - 60px);
  padding: 0 30px 30px 30px;
  background-color: var(--bg);
  position: absolute;
  top: 50px;
  pointer-events: all;
  overflow: scroll;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  transform: translateY(100%);
  transition: var(--transition);
}

.nav_mobile .side_nav.opened_mobile_side_nav {
  transform: translateY(0);
}

.nav_mobile .side_nav .nav_lang {
  margin-left: auto;
}

.side_nav .side_nav_contact .mailto::before {
  width: 100%;
  padding: 0 5px;
}

.nav_mobile .side_nav .nav_social a::before {
  display: none;
}

.nav_mobile .side_nav .nav_social a:hover {
  filter: invert(92%) sepia(86%) saturate(617%) hue-rotate(47deg) brightness(94%) contrast(88%);
}

.nav_mobile .side_nav .nav_social {
  display: flex;
  gap: 30px;
}

.nav_mobile .side_nav .side_nav_photos {
  text-align: center;
}

/* Hero section */
.hero_title {
  display: flex;
  min-width: calc(100vw - 100px);
  height: calc(100vh - 100px);
  min-height: 400px;
  flex-direction: column;
  text-align: center;
}

.hero_title h1 {
  text-align: center;
  font-size: 90px;
  letter-spacing: -2px;
  text-transform: uppercase;
  margin: auto auto 0 auto;
}

@media screen and (max-width: 720px) {
  .hero_title h1 {
    font-size: 10vw;
    letter-spacing: 0;
  }
  .hero_title p {
    font-size: 5vw !important;
  }
}
.hero_title .hero_subtitle {
  margin: 0 auto auto auto;
  font-size: 24px;
}

.hero_title .hero_scroll .text {
  text-transform: uppercase;
  font-size: 14px;
  margin: 0 10px;
}

.hero_title .hero_scroll {
  display: flex;
  flex-direction: row-reverse;
  margin: 0 auto;
  transform: rotate(-90deg) translateX(50%);
  align-items: center;
  z-index: -1;
}

.hero_title .hero_scroll svg {
  transform: translateX(0);
  animation: arrowAnimation 2s infinite ease;
}

@keyframes arrowAnimation {
  0%, 50% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
}
/* About section */
#about {
  height: 80vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#about.active {
  position: fixed;
  top: 50px;
  left: 0;
  width: calc(100vw - 100px);
  height: calc(100vh - 100px);
  background-color: var(--bg);
  z-index: 9;
}

#about.active::before {
  background-image: url(../img/texture/texture.png);
  background-image: -webkit-image-set(url(../img/texture/texture.webp) type("image/webp"), url(../img/texture/texture.png) type("image/png"));
  background-image: image-set(url(../img/texture/texture.webp) type("image/webp"), url(../img/texture/texture.png) type("image/png"));
  background-color: var(--bg);
}

#about.active::after {
  background-image: url(../img/texture/grain.jpg);
  background-image: -webkit-image-set(url(../img/texture/grain.webp) type("image/webp"), url(../img/texture/grain.jpg) type("image/jpeg"));
  background-image: image-set(url(../img/texture/grain.webp) type("image/webp"), url(../img/texture/grain.jpg) type("image/jpeg"));
  background-color: var(--bg);
  opacity: 7%;
  z-index: 1;
  background-blend-mode: difference;
}

#about.active::before,
#about.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

#about .about_placeholder {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  color: var(--text);
  text-align: center;
}

.about_navigation {
  position: absolute;
  right: 75px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 10;
}

.about_navigation button {
  padding: 5px 10px;
}

.about_navigation button:disabled {
  opacity: 0.5;
  background-color: var(--text-secondary);
}

.about_navigation button:hover:disabled {
  background-color: var(--text-secondary);
  cursor: default;
}

@media screen and (max-width: 570px) {
  .about_navigation {
    right: 25px;
  }
}
.about_stepper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 75px;
  height: 80%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--text);
}

.about_stepper::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 50%;
  transform: translateX(-50%);
  height: calc(100% - 46px - 2px);
  width: 1px;
  background-color: var(--text);
  opacity: 0.5;
}

.about_stepper > span {
  position: relative;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  border: 1px solid var(--text);
  transition: 0.3s ease;
  text-align: center;
}

#about.light .about_stepper {
  color: var(--bg);
}
#about.light .about_stepper::before {
  background-color: var(--bg);
}
#about.light .about_stepper > span {
  border: 1px solid var(--bg);
}

.about_stepper #about_stepper_current_step {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--primary);
  color: var(--bg);
  z-index: 2;
}

@media screen and (max-width: 570px) {
  .about_stepper {
    left: 25px;
  }
}
#about #aboutCloseButton {
  position: absolute;
  top: 1rem;
  right: 75px;
  height: max(3vw, 1.5rem);
  width: max(3vw, 1.5rem);
  max-height: 2rem;
  max-width: 2rem;
  z-index: 999999;
  cursor: pointer;
  transition: 0.4s ease;
  z-index: 10;
}

#about #aboutCloseButton:hover {
  rotate: -90deg;
}

#about #aboutCloseButton::before,
#about #aboutCloseButton::after {
  content: "";
  height: 2px;
  width: max(3vw, 1.5rem);
  max-width: 2rem;
  background-color: #70e266;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transform-origin: center center;
}

#about #aboutCloseButton::before {
  transform: rotate(45deg);
}

#about #aboutCloseButton::after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 570px) {
  #about #aboutCloseButton {
    right: 25px;
  }
}
.about_card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  width: calc(100% - 300px);
  height: calc(100% - 300px);
  padding: 150px;
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s ease;
}

canvas.about_card {
  background: black;
}

.about_text {
  font-size: max(2vw, 1.2rem);
  text-align: justify;
}

.about_comment {
  display: flex;
  color: var(--text-secondary);
  align-items: center;
  padding: min(5vw, 30px);
  background-color: var(--bg);
  border-radius: 10px;
  width: fit-content;
  gap: 20px;
  font-size: max(1.5vw, 1rem);
}

.about_comment img {
  height: min(30vw, 100px);
  width: auto;
  border-radius: 100%;
}

.time_travelling {
  background-color: var(--text);
  color: var(--text-primary);
}
.time_travelling p {
  text-align: center;
}
.time_travelling canvas {
  position: absolute;
  left: 0;
  top: 0;
  max-height: 100%;
  z-index: -1;
}

.dot-animate {
  animation: dotAnimation 1s linear infinite;
  opacity: 0;
}

.dot-animate:nth-child(2) {
  animation-delay: 0.33s;
}

.dot-animate:nth-child(3) {
  animation-delay: 0.66s;
}

@keyframes dotAnimation {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@media screen and (max-width: 570px) {
  .about_card {
    width: calc(100% - 200px);
    height: calc(100% - 200px);
    padding: 100px;
  }
}
/* Section skills */
#skills {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  flex-direction: row;
  padding-top: 10%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, var(--bg) 10%);
  justify-content: space-around;
  text-align: center;
}

#skills h1,
#skills h3 {
  width: 100%;
}

.skills_container > div:not(.Profile_card) {
  padding: 15px;
  opacity: 0.9;
  position: absolute;
  border-radius: 20px;
  box-shadow: 0px 4px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  display: flex;
}
.skills_container > div:not(.Profile_card) img {
  width: 40px;
  height: 40px;
  margin: auto;
}

.skills_container {
  position: relative;
  padding-top: 10vh;
  padding-bottom: 10vh;
  height: 80vh;
  min-height: 900px;
  width: 100%;
  max-width: 1000px;
}
.skills_container .GraphQl {
  background-color: #ffc9ed;
  right: 25%;
  bottom: 25%;
}
.skills_container .Bootstrap {
  background-color: #ffc9ed;
  top: 10%;
  left: 40%;
}
.skills_container .JS {
  background-color: #fff6af;
  top: 40%;
  right: 25%;
}
.skills_container .TS {
  background-color: #8fc4ff;
  left: 11%;
  top: 2%;
}
.skills_container .Jquery {
  background-color: #9ecdf8;
  right: 30%;
  bottom: 10%;
}
.skills_container .SASS {
  background-color: #ffcbe4;
  right: 45%;
  bottom: 20%;
}
.skills_container .CSS {
  background-color: #65cbf7;
  right: 10%;
  top: 30%;
}
.skills_container .Next {
  background-color: #fff;
  top: 45%;
  left: 5%;
}
.skills_container .React {
  background-color: #b4f2fa;
  bottom: 35%;
  left: 12%;
}
.skills_container .Rest {
  background-color: #b7f9b8;
  color: #0f8d59;
  cursor: default;
  bottom: 50%;
  left: 20%;
}
.skills_container .HTML {
  background-color: #fed4c9;
  bottom: 70%;
  left: 23%;
}
.skills_container .GIT {
  background-color: #fbc6be;
  right: 17%;
  top: 5%;
}
.skills_container .Wordpress {
  background-color: #f0f1f5;
  top: 12%;
  right: 35%;
}
.skills_container .PHP {
  background-color: #b8d3ff;
  bottom: 13%;
  right: 10%;
}
.skills_container .Prisma {
  background-color: #fff;
  bottom: 12%;
  left: 25%;
}
.skills_container .Angular {
  background-color: rgba(243, 98, 192, 0.8);
  left: 2%;
  top: 15%;
}
.skills_container .Cypress {
  background-color: #0b7898;
  left: 3%;
  top: 30%;
}
.skills_container .Docker {
  background-color: #5fd9ff;
  right: 8%;
  top: 15%;
}
.skills_container .Helm {
  background-color: #3e7bae;
  right: 20%;
  bottom: 35%;
}
.skills_container .Jest {
  background-color: #d585aa;
  right: 5%;
  bottom: 40%;
}
.skills_container .Kube {
  background-color: #79a9f4;
  left: 4%;
  bottom: 20%;
}
.skills_container .Nginx {
  background-color: #89d18e;
  left: 5%;
  bottom: 5%;
}
.skills_container .Nestjs {
  background-color: #ff94ab;
  left: 26%;
  bottom: 26%;
}
.skills_container .Profile_card {
  background: #fff;
  padding: 40px 60px;
  opacity: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  box-shadow: 0px 30px 30px rgba(0, 0, 0, 0.05);
}
.skills_container .Profile_card .heading h1 {
  font-size: 1.6rem;
}
.skills_container .Profile_card .heading p {
  color: rgb(154, 219, 146);
  font-size: 1.2rem;
}
.skills_container .Profile_card .picture {
  position: relative;
  margin-bottom: 60px;
}
.skills_container .Profile_card .picture .pill {
  background: linear-gradient(rgb(142, 252, 140), rgb(77, 205, 98));
  padding: 8px 16px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 65px;
  box-shadow: 0px 5px 20px rgba(0.25, 1, 0.37, 0.3);
  width: max-content;
  color: #fff;
}
.skills_container .Profile_card .picture img {
  border-radius: 50%;
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.25);
  height: 200px;
  width: 200px;
}

.skills_container > div:not(.Profile_card):nth-child(1) {
  animation: passiveAnimation-1 28s 403ms infinite ease alternate;
}

@keyframes passiveAnimation-1 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(50%, 39%);
  }
  40% {
    transform: translate(-4%, -33%);
  }
  60% {
    transform: translate(-46%, 0%);
  }
  80% {
    transform: translate(21%, -35%);
  }
  100% {
    transform: translate(-19%, -32%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(2) {
  animation: passiveAnimation-2 43s 456ms infinite ease alternate;
}

@keyframes passiveAnimation-2 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-6%, -33%);
  }
  40% {
    transform: translate(26%, -42%);
  }
  60% {
    transform: translate(-8%, -12%);
  }
  80% {
    transform: translate(25%, -5%);
  }
  100% {
    transform: translate(50%, -32%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(3) {
  animation: passiveAnimation-3 41s 483ms infinite ease alternate;
}

@keyframes passiveAnimation-3 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(12%, 27%);
  }
  40% {
    transform: translate(16%, 46%);
  }
  60% {
    transform: translate(-12%, 20%);
  }
  80% {
    transform: translate(2%, 33%);
  }
  100% {
    transform: translate(1%, 33%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(4) {
  animation: passiveAnimation-4 26s 55ms infinite ease alternate;
}

@keyframes passiveAnimation-4 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-30%, -11%);
  }
  40% {
    transform: translate(-18%, 6%);
  }
  60% {
    transform: translate(13%, -35%);
  }
  80% {
    transform: translate(-21%, 22%);
  }
  100% {
    transform: translate(29%, 25%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(5) {
  animation: passiveAnimation-5 34s 551ms infinite ease alternate;
}

@keyframes passiveAnimation-5 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-20%, -35%);
  }
  40% {
    transform: translate(-12%, 1%);
  }
  60% {
    transform: translate(-31%, -33%);
  }
  80% {
    transform: translate(48%, 26%);
  }
  100% {
    transform: translate(15%, -41%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(6) {
  animation: passiveAnimation-6 32s 958ms infinite ease alternate;
}

@keyframes passiveAnimation-6 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(45%, 40%);
  }
  40% {
    transform: translate(46%, -34%);
  }
  60% {
    transform: translate(2%, -8%);
  }
  80% {
    transform: translate(43%, 26%);
  }
  100% {
    transform: translate(40%, 16%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(7) {
  animation: passiveAnimation-7 27s 570ms infinite ease alternate;
}

@keyframes passiveAnimation-7 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-1%, 43%);
  }
  40% {
    transform: translate(-13%, 11%);
  }
  60% {
    transform: translate(32%, -5%);
  }
  80% {
    transform: translate(46%, -35%);
  }
  100% {
    transform: translate(-6%, 1%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(8) {
  animation: passiveAnimation-8 29s 321ms infinite ease alternate;
}

@keyframes passiveAnimation-8 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-24%, -22%);
  }
  40% {
    transform: translate(35%, 4%);
  }
  60% {
    transform: translate(27%, 43%);
  }
  80% {
    transform: translate(46%, -44%);
  }
  100% {
    transform: translate(25%, -41%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(9) {
  animation: passiveAnimation-9 49s 356ms infinite ease alternate;
}

@keyframes passiveAnimation-9 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(39%, 39%);
  }
  40% {
    transform: translate(40%, -44%);
  }
  60% {
    transform: translate(-16%, 31%);
  }
  80% {
    transform: translate(8%, 13%);
  }
  100% {
    transform: translate(-8%, 49%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(10) {
  animation: passiveAnimation-10 46s 585ms infinite ease alternate;
}

@keyframes passiveAnimation-10 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-13%, -30%);
  }
  40% {
    transform: translate(-35%, 7%);
  }
  60% {
    transform: translate(-46%, 49%);
  }
  80% {
    transform: translate(9%, 45%);
  }
  100% {
    transform: translate(3%, 26%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(11) {
  animation: passiveAnimation-11 27s 16ms infinite ease alternate;
}

@keyframes passiveAnimation-11 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(18%, -48%);
  }
  40% {
    transform: translate(48%, -12%);
  }
  60% {
    transform: translate(17%, -8%);
  }
  80% {
    transform: translate(8%, -32%);
  }
  100% {
    transform: translate(-42%, 8%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(12) {
  animation: passiveAnimation-12 42s 411ms infinite ease alternate;
}

@keyframes passiveAnimation-12 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(29%, -30%);
  }
  40% {
    transform: translate(-15%, 28%);
  }
  60% {
    transform: translate(-38%, -48%);
  }
  80% {
    transform: translate(-13%, 27%);
  }
  100% {
    transform: translate(15%, 41%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(13) {
  animation: passiveAnimation-13 42s 694ms infinite ease alternate;
}

@keyframes passiveAnimation-13 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-39%, -27%);
  }
  40% {
    transform: translate(-17%, 21%);
  }
  60% {
    transform: translate(-34%, -13%);
  }
  80% {
    transform: translate(0%, 41%);
  }
  100% {
    transform: translate(-43%, 33%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(14) {
  animation: passiveAnimation-14 31s 684ms infinite ease alternate;
}

@keyframes passiveAnimation-14 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-11%, 0%);
  }
  40% {
    transform: translate(-19%, -32%);
  }
  60% {
    transform: translate(8%, -1%);
  }
  80% {
    transform: translate(27%, -17%);
  }
  100% {
    transform: translate(-41%, 27%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(15) {
  animation: passiveAnimation-15 41s 515ms infinite ease alternate;
}

@keyframes passiveAnimation-15 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-31%, -36%);
  }
  40% {
    transform: translate(-4%, 2%);
  }
  60% {
    transform: translate(-9%, -20%);
  }
  80% {
    transform: translate(-21%, -12%);
  }
  100% {
    transform: translate(46%, 23%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(16) {
  animation: passiveAnimation-16 28s 111ms infinite ease alternate;
}

@keyframes passiveAnimation-16 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(16%, -40%);
  }
  40% {
    transform: translate(38%, 6%);
  }
  60% {
    transform: translate(31%, -7%);
  }
  80% {
    transform: translate(14%, 34%);
  }
  100% {
    transform: translate(-42%, -18%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(17) {
  animation: passiveAnimation-17 21s 817ms infinite ease alternate;
}

@keyframes passiveAnimation-17 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-19%, -20%);
  }
  40% {
    transform: translate(-36%, -43%);
  }
  60% {
    transform: translate(25%, -7%);
  }
  80% {
    transform: translate(-42%, 40%);
  }
  100% {
    transform: translate(-29%, 41%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(18) {
  animation: passiveAnimation-18 31s 697ms infinite ease alternate;
}

@keyframes passiveAnimation-18 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(8%, 47%);
  }
  40% {
    transform: translate(31%, -28%);
  }
  60% {
    transform: translate(-26%, -8%);
  }
  80% {
    transform: translate(5%, 7%);
  }
  100% {
    transform: translate(-34%, 17%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(19) {
  animation: passiveAnimation-19 29s 459ms infinite ease alternate;
}

@keyframes passiveAnimation-19 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-48%, -41%);
  }
  40% {
    transform: translate(-30%, -42%);
  }
  60% {
    transform: translate(-34%, 29%);
  }
  80% {
    transform: translate(36%, -22%);
  }
  100% {
    transform: translate(48%, 8%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(20) {
  animation: passiveAnimation-20 27s 117ms infinite ease alternate;
}

@keyframes passiveAnimation-20 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-3%, -14%);
  }
  40% {
    transform: translate(-5%, -25%);
  }
  60% {
    transform: translate(37%, 11%);
  }
  80% {
    transform: translate(-33%, -23%);
  }
  100% {
    transform: translate(-19%, 9%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(21) {
  animation: passiveAnimation-21 42s 203ms infinite ease alternate;
}

@keyframes passiveAnimation-21 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-22%, 30%);
  }
  40% {
    transform: translate(-35%, 16%);
  }
  60% {
    transform: translate(-49%, -18%);
  }
  80% {
    transform: translate(-12%, 36%);
  }
  100% {
    transform: translate(42%, 24%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(22) {
  animation: passiveAnimation-22 32s 258ms infinite ease alternate;
}

@keyframes passiveAnimation-22 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-21%, -25%);
  }
  40% {
    transform: translate(45%, -21%);
  }
  60% {
    transform: translate(36%, 28%);
  }
  80% {
    transform: translate(21%, -10%);
  }
  100% {
    transform: translate(-20%, -33%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(23) {
  animation: passiveAnimation-23 32s 664ms infinite ease alternate;
}

@keyframes passiveAnimation-23 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(31%, -47%);
  }
  40% {
    transform: translate(27%, -11%);
  }
  60% {
    transform: translate(25%, 29%);
  }
  80% {
    transform: translate(-34%, 43%);
  }
  100% {
    transform: translate(-42%, 13%);
  }
}
.skills_container > div:not(.Profile_card):nth-child(24) {
  animation: passiveAnimation-24 50s 900ms infinite ease alternate;
}

@keyframes passiveAnimation-24 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-21%, 50%);
  }
  40% {
    transform: translate(46%, 11%);
  }
  60% {
    transform: translate(33%, -36%);
  }
  80% {
    transform: translate(-34%, 50%);
  }
  100% {
    transform: translate(-20%, 46%);
  }
}
@media screen and (max-width: 775px) {
  .skills_container .JS {
    right: 15%;
  }
  .skills_container .Rest {
    left: 15%;
  }
}
/* Jobs section */
#jobs {
  background-color: var(--bg);
  padding-top: min(20%, 30vh);
  display: flex;
  flex-direction: column;
}

#jobs .jobs-filter-sort-container {
  flex-direction: row;
  align-items: center;
  gap: 4rem;
}

@media screen and (max-width: 755px) {
  #jobs .jobs-filter-sort-container {
    flex-direction: column;
  }
  #jobs .jobs-filter-sort-container > div {
    margin-left: unset !important;
  }
}
#jobs select {
  padding: 5px;
  border-radius: 5px;
  background-color: var(--bg);
  border: 2px solid var(--secondary);
}

#jobs #jobs-filter {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

#jobs #jobs-filter img {
  height: 25px;
  margin: 0 10px 0 10px;
  cursor: pointer;
  filter: grayscale(100%);
  transition: 0.2s ease;
}

#jobs #jobs-filter img:hover,
#jobs #jobs-filter img.active {
  filter: grayscale(0);
}

#jobs .jobs_list {
  padding: 0 50px 0 50px;
  row-gap: max(20vh, 200px);
}

#jobs .title {
  text-align: justify;
  padding: 0px 50px 100px 50px;
  gap: 25px;
}

#jobs .title h1 {
  margin: 0;
}

#jobs div {
  display: flex;
  flex-direction: column;
}

#jobs .job {
  flex-direction: row;
  justify-content: space-around;
  column-gap: 10vw;
  row-gap: 5vh;
}

#jobs .job.hidden {
  display: none;
}

@media screen and (max-width: 1060px) {
  #jobs .job {
    flex-wrap: wrap;
  }
  .job .job_img {
    max-width: 80% !important;
  }
}
@media screen and (max-width: 570px) {
  .job .job_img {
    max-width: 100% !important;
  }
  #jobs .title,
  #jobs .jobs_list {
    padding-left: 0;
    padding-right: 0;
  }
}
.job .job_img {
  max-width: 50%;
  position: relative;
  margin-bottom: 5%;
  cursor: pointer;
}

.job .job_img:hover .thumbnail {
  transform: translateY(-8px);
}

.job .job_img img {
  box-shadow: 0 0 40px 0px rgba(0, 0, 0, 0.07);
}

.jobs_list .job:nth-child(2n) .job_img .thumbnail:not(.dont_flip) {
  transform: scaleX(-1);
}
.jobs_list .job:nth-child(2n) .job_img:hover .thumbnail:not(.dont_flip) {
  transform: scaleX(-1) translateY(-8px);
}

.job .job_img .thumbnail {
  border-radius: 20px;
  height: 100%;
  width: auto;
  object-fit: contain;
  transition: 0.3s ease;
}

.job .job_img .logo,
.job .job_img .job_date {
  position: absolute;
  bottom: 0;
  text-transform: capitalize;
}

.job .job_img .logo {
  right: 20px;
  max-height: 25%;
  max-width: 30%;
  background-color: var(--bg);
  border-radius: 20px;
  padding: 10px;
  translate: 0 50%;
  width: 100%;
  height: auto;
}

.job .job_img .logo.cowlculator {
  background-color: #0c0b10;
}

.job .job_img .job_date {
  left: 0;
  margin: 0 0 10px 10px;
  z-index: 2;
}

.job .job_img .job_date::before {
  content: "";
  position: absolute;
  padding: 0;
  top: 50%;
  left: 0;
  width: calc(100% + 4px);
  height: 40%;
  transform: translate(-2px, -50%);
  background-color: var(--primary);
  z-index: -1;
}

#jobs .job .job_text {
  min-height: 300px;
}

#jobs .job .job_text h3 {
  text-transform: uppercase;
}

#jobs .job .job_text .tech {
  flex-direction: row;
  justify-content: space-around;
}

.job .job_text .tech img {
  max-width: 25px;
}

.job .job_text .job_description {
  text-align: justify;
  overflow: hidden;
  height: 11.7rem;
  line-height: 1.3rem;
  flex-shrink: 0;
  position: relative;
}

.job .job_text .job_description::after {
  content: "[..]";
  position: absolute;
  bottom: 0;
  right: 0;
  color: var(--text);
  background-color: var(--bg);
  padding-left: 1rem;
}

#jobs .job_text .keywords {
  flex-direction: row;
  gap: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.job .job_text .keywords span {
  border: 1px solid var(--text);
  color: var(--text);
  padding: 2px 5px;
  border-radius: 5px;
  flex-grow: 1;
  text-align: center;
  font-size: small;
  display: inline-block;
}

/* Full screen display for jobs */
.job_fullscreen {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: var(--bg);
  height: 100vh;
  width: 100vw;
  overflow: auto;
  animation: fade-in-bottom 500ms forwards;
}

.job_fullscreen .job {
  display: flex;
  flex-direction: row;
  gap: 5vw;
  padding: 5vw;
}

.job_fullscreen .job > div {
  flex: 1 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.job_fullscreen .job .job_text {
  height: 100%;
}
.job_fullscreen .job .job_text .tech {
  display: flex;
  gap: 10px;
}

.job_fullscreen .job .job_text .job_description {
  height: auto;
}

.job_fullscreen .job .job_text .job_description::after {
  content: none;
}

.job_fullscreen .keywords {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.job_fullscreen .job .job_text .btn {
  display: none;
}

.job_fullscreen .job .job_img {
  margin-bottom: 0;
  position: relative;
  transition: 0.3s ease;
  cursor: pointer;
}

.job_fullscreen .job .job_img *:not(.thumbnail) {
  display: none;
}

.job_fullscreen .job .job_img .thumbnail {
  position: relative;
}

.job_fullscreen .job .job_img::after {
  content: "Voir le site";
  padding: 5px 15px;
  border: 1px solid var(--text);
  border-radius: 5px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0.5;
  transition: 0.3s 0.2s ease;
}

.job_fullscreen .job .job_img:hover {
  transform: scale(1.05);
}

.job_fullscreen .job .job_img:hover::after {
  opacity: 1;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  background-color: var(--primary);
  color: var(--text-primary);
  border-color: var(--primary);
  transform: translate(-50%, -50%) scale(1.05);
}

@media screen and (max-width: 1060px) {
  .job_fullscreen .job {
    flex-direction: column;
    align-items: center;
    padding-top: max(5vw, 3rem);
  }
}
.job_fullscreen #close {
  position: fixed;
  top: 1vw;
  right: 1vw;
  height: max(3vw, 1.5rem);
  width: max(3vw, 1.5rem);
  max-height: 2rem;
  max-width: 2rem;
  z-index: 999999;
  cursor: pointer;
  transition: 0.4s ease;
}

.job_fullscreen #close:hover {
  rotate: -90deg;
}

.job_fullscreen #close::before,
.job_fullscreen #close::after {
  content: "";
  height: 2px;
  width: max(3vw, 1.5rem);
  max-width: 2rem;
  background-color: var(--primary);
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  transform-origin: center center;
}

.job_fullscreen #close::before {
  transform: rotate(45deg);
}

.job_fullscreen #close::after {
  transform: rotate(-45deg);
}

#contact {
  padding-top: 200px;
  padding-left: 100px;
  padding-right: 100px;
  padding-bottom: 200px;
  background-image: linear-gradient(white, transparent 200px);
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
#contact .contact_heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 80%;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 570px) {
  #contact .contact_heading {
    max-width: 100%;
  }
}
#contact .contact_social {
  display: flex;
  gap: 2rem;
}
#contact .contact_social a::before {
  content: none;
}
#contact .contact_social a img {
  transition: 0.2s ease;
}
#contact .contact_social a:hover img {
  filter: invert(92%) sepia(86%) saturate(617%) hue-rotate(47deg) brightness(94%) contrast(88%);
}
#contact .contact_buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
#contact .contact_ways {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  align-items: center;
}

@media screen and (max-width: 570px) {
  #contact {
    padding-left: 50px;
    padding-right: 50px;
  }
}
/* General declarations */
:root {
  --primary: #70e266;
  --text: #000;
  --text-primary: #fff;
  --text-secondary: #b1b1b1;
  --bg: #fff;
  --secondary: #f2f2f2;
  --transition: 0.3s cubic-bezier(1, 0, 0, 1);
}

::selection {
  background-color: var(--primary);
  color: var(--text);
}

:focus-visible {
  outline: var(--primary) auto 1px;
}

body {
  margin: 0;
  min-width: 100vw;
  min-height: 200vh;
  font-family: GT Pressura Mono, sans-serif;
  position: relative;
  background-color: var(--bg);
  color: var(--text);
}

body::before {
  background-image: url(../img/texture/texture.jpg);
  background-image: -webkit-image-set(url(../img/texture/texture.webp) type("image/webp"), url(../img/texture/texture.jpg) type("image/jpeg"));
  background-image: image-set(url(../img/texture/texture.webp) type("image/webp"), url(../img/texture/texture.jpg) type("image/jpeg"));
  background-color: var(--bg);
}

body::after {
  background-image: url(../img/texture/grain.jpg);
  background-image: -webkit-image-set(url(../img/texture/grain.webp) type("image/webp"), url(../img/texture/grain.jpg) type("image/jpeg"));
  background-image: image-set(url(../img/texture/grain.webp) type("image/webp"), url(../img/texture/grain.jpg) type("image/jpeg"));
  background-color: var(--bg);
  opacity: 7%;
  z-index: 1;
  background-blend-mode: difference;
}

body::before,
body::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

body.noscroll {
  overflow: hidden;
}

section {
  padding: 0 50px;
}

section h1 {
  font-size: 2rem;
}

body section:first-of-type {
  padding-top: 50px;
}

body section:last-of-type {
  padding-bottom: 50px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Motter Corpus Std, sans-serif;
}

html {
  scroll-behavior: smooth;
}

a {
  color: var(--primary);
  position: relative;
}

a:hover {
  color: rgb(71.9285714286, 217.8736263736, 59.1263736264);
}

a::before {
  content: "";
  position: absolute;
  padding: 0;
  top: 50%;
  left: 0;
  width: 0%;
  height: 40%;
  transform: translate(-5px, -50%);
  background-color: var(--bg);
  z-index: -1;
  transition: var(--transition);
}

a:hover::before {
  width: 100%;
  padding: 0 5px;
}

.btn {
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.btn.primary {
  background-color: var(--primary);
  color: var(--text-primary);
  transition: 0.3s ease;
  text-decoration: none;
}

.btn.primary::before {
  content: none;
}

.btn.primary:hover {
  background-color: rgb(71.9285714286, 217.8736263736, 59.1263736264);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn.primary a,
.btn.primary a:hover {
  color: var(--bg);
  text-decoration: none;
}

span.primary {
  color: var(--primary);
  text-shadow: 2px 2px 0px white;
}

span.secondary {
  color: var(--text-secondary);
}

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