/* ----------------------------------------
   Variables
   ---------------------------------------- */

:root {
  --w90: rgba(255, 255, 255, 90%);
  --w70: rgba(255, 255, 255, 70%);
  --w60: rgba(255, 255, 255, 60%);
  --w40: rgba(255, 255, 255, 40%);
  --w15: rgba(255, 255, 255, 15%);
  --w8: rgba(255, 255, 255, 8%);
  --dark: #313546;
  --green: #96AFBB;
}

/* ----------------------------------------
   General
   ---------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overscroll-behavior: none;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 100vh;
  margin: 0;
  background: var(--dark);
  color: #FFF;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

html::before {
  content: "";
  background-image: url(/assets/images/backgrounds/noiseEffect.svg);  
  background-size: 150%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  z-index: -4;
}

body::before {
  content: "";
  background-image: url(/assets/images/backgrounds/noiseEffect2.svg);  
  background-size: 150%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  z-index: -1;
}

body::after {
  content: "";
  background-image: url(/assets/images/backgrounds/circles.svg);
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1300px;
  height: 100%;
  box-sizing: border-box;
  z-index: -3;
}

@media (max-width: 475px) {
  html::before,
  body::before {
    background-size: 500%;
  }
}

@supports (-moz-appearance: none) {
  body::after {
    filter: blur(150vw);
  }
}

@media (max-width: 475px) {
  body::after {
    width: 800px;
  }
}

main {
  flex: 1;
}

a {
  text-decoration: none;
  color: unset;
}

ul, ol {
  list-style: none;
  padding: 0;
}

::selection {
  color: var(--dark);
  background-color: var(--green);
}

@media screen and (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}  

/* ----------------------------------------
   Navigation
   ---------------------------------------- */

nav ul {
  width: fit-content;
  margin: 30px auto 20px auto;
  padding: 3.5px;
  display: flex;
  position: relative;
  column-gap: 1px;
  background: rgba(49, 53, 70, 15%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: .5px solid var(--w15);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--w70);
}

nav ul li {
  z-index: 1;
}

nav ul li a {
  display: flex;
  align-items: center;
  gap: 7.5px;
  padding: 8.5px 16.5px;
  transition: .3s ease-in-out;
}

nav ul li a:hover,
nav ul:not(:has(li:hover)) #active-page a {
  color: #FFF;
}

nav ul li a svg {
  fill: none;
}
  
.nav-indicator {
  position: absolute;
  height: 83%;
  top: 3.2px;
  left: 4px;
  border: .5px solid rgba(255, 255, 255, 50%);
  border-radius: 8px;
  color: #FFF;
  background: var(--w15);
  box-shadow: 0px 0px 2px var(--w40);
  z-index: 0;
  transition: all .4s ease 0s;
}

nav .projects-menu {
  width: 104px;
  left: 94px;
}

nav .contact-menu {
  width: 103.5px;
  left: 198px;
}

nav .about-menu {
  width: 92px;
  left: 303px;
}

nav ul li:nth-child(1) {
  width: 90px;
}

nav .home-menu, ul li:nth-child(1):hover ~ .nav-indicator {
  width: 90px;
  left: 4px;
}

nav ul li:nth-child(2) {
  width: 104px;
}

nav ul li:nth-child(2):hover ~ .nav-indicator {
  width: 104px;
  left: 94px;
}

nav ul li:nth-child(3) {
  width: 103.5px;
}

nav ul li:nth-child(3):hover ~ .nav-indicator {
  width: 103.5px;
  left: 198px;
}

nav ul li:nth-child(4) {
  width: 92px;
}

nav ul li:nth-child(4):hover ~ .nav-indicator {
  width: 92px;
  left: 304px;
}

@media (max-width: 475px) {
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }

  nav ul {
    margin: 0;
    width: 100vw;
    justify-content: space-between;
    border-radius: 0;
    border: unset;
    border-bottom: 1px solid var(--w8);
  }

  nav ul li {
    flex: 0 0 25%;
  }

  nav ul li a {
    flex-direction: column;
    font-size: 11px;
    padding: 8px 7.5px 7.5px 7.5px;
  }

  nav ul li a svg {
    width: 20px !important;
    height: 20px !important;
  }

  .nav-indicator {
    display: none;
  }

  #active-page a svg {
    fill: #fff !important;
    color: #434A5E !important;
  }

  #active-page a svg path {
    fill: #fff !important;
  }

  #active-page .outside-stroke {
    color: #fff !important;
  }

  .outside-stroke {
    color: var(--w70) !important;
  }
}

/* ----------------------------------------
   Hero Section
   ---------------------------------------- */

.hero {
  position: relative;
  width: 86%;
  margin: 80px auto 0 auto;
  padding: 95px 0;
  display: flex;
  flex-direction: column;
  row-gap: 35px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(to left, transparent, var(--w15) 30% 70%, transparent);
  border-image-slice: 1;
  text-align: center;
}

.hero-projects,
.hero-about,
.hero-contact {
  padding: 150px 0;
  row-gap: 22px;
}

.hero p::before,
.hero p::after {
  content: "";
  position: absolute;
  top: -310px;
  left: 14vw;
  width: 1px;
  height: 600px;
  border-radius: 100%;
  background: linear-gradient(to bottom, transparent, var(--w15) 200px 70%, transparent);
}

.hero p::after {
  left: unset;
  right: 14vw;
}

.hero-projects p::after,
.hero-projects p::before,
.hero-contact p::after,
.hero-contact p::before,
.hero-about p::after,
.hero-about p::before {
  top: -301px;
  height: 570px;
}

.hero::before {
  content: "welcome";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 700;
  font-size: 390px;
  letter-spacing: -.02em;
  color: rgba(255, 255, 255, 5%);
  z-index: -2;
}

h1 {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 90%;
  text-shadow: 1px 1px 4px rgba(250, 250, 213, 20%);
}

.hero p {
  position: relative;
  margin: 0;
  font-size: 15px;
  text-shadow: 0px 0px 6px var(--dark);
}

@media (max-width: 1200px) {
  .hero {
    width: 100%;
    padding: 80px 6vw 80px 6vw;
    margin-top: 60px;
  }

  h1 {
    font-size: 30px;
  }

  .hero p,
  h1 {
    padding: 0 15px;
  }
}

@media (max-width: 672px) {
  .hero p::before,
  .hero p::after {
    height: 480px;
    top: -238px;
  }
}

@media (max-width: 475px) {
  .hero {
    margin-top: 63.5px !important;
    padding: 60px 6vw;
    border-top: unset;
  }

  .hero p::after,
  .hero p::before {
    content: unset;
  }
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 8.6vw 0 8.6vw;
  padding: 22px 0;
  border-top: .5px rgba(255, 255, 255, 25%) solid;
  color: var(--w60);
  font-size: 14px;
}

footer p:first-child {
  font-weight: 500;
}

footer p:nth-child(2) {
  padding: 0 60px;
  text-align: center;
}

footer a {
  color: var(--w90);
}

footer div {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

footer svg {
  fill: var(--w60);
  transition: .3s ease-in-out;
}

footer svg:hover {
  fill: var(--w90);
}

@media (max-width: 730px) {
  footer {
    flex-direction: column;
  }

  footer p:nth-child(2) {
    order: 3;
    padding: 0;
  }
}

/* ----------------------------------------
   Homepage
   ---------------------------------------- */

/* ---------- Hero Section ---------- */

#spacer {
  display: block;
  height: 15px;
}

.hero-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px;
  gap: 20px;
}

@media (max-width: 330px) {
  .hero-btns {
    flex-direction: column;
  }
}

.hero-homepage .cta {
  position: relative;
  width: 145px;
  height: 37px;
  border-radius: 8px;
  box-shadow: 0px 4px 15px rgba(49, 53, 70, 25%);
  overflow: hidden;
}

.hero-homepage .cta div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 144px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 10px 20px;
  background: #646B87;
  background-image: url('/assets/images/backgrounds/cta-noise.png');
  background-size: 90%;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  box-shadow: 0px 4px 15px rgba(49, 53, 70, 25%);
}

.hero-homepage .cta::after {
  content: "";
  position: absolute;
  top: -200%;
  left: -100%;
  width: 300%;
  height: 500%;  
  background-image: conic-gradient(#FFF 20deg, transparent 120deg);
  animation: rotate 3s linear infinite;
  z-index: -1;
  transition: .3s ease-in-out;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.hero-homepage .cta::before {
  content: "";
  display: block;
  position: absolute;
  top: -14%;
  left: 0;
  width: 40%;
  height: 130%;
  border-radius: 20px;
  background: var(--green);
  filter: blur(28px);
  transform: skew(-20deg);
  z-index: 1;
  opacity: 0;
  transition: .3s ease-in-out;
}

.hero-homepage .cta:hover::before {
  animation: ctahover 1.5s linear infinite;
  opacity: 1;
}

.hero-homepage .cta:hover::after {
  animation: none;
  background: var(--w40);
}

@keyframes ctahover {
  0% {
    transform: skew(-30deg) translateX(-50px);
  }

  100% {
    transform: skew(-30deg) translateX(140px);
  }
}

.hero-homepage .socials {
  display: flex;
  gap: 20px;
}

.hero-homepage .social {
  display: block;
  height: 37px;
  border-radius: 8px;
  box-shadow: 0px 0px 4px var(--w15), inset 0px 0px 4px var(--w15);
  transition: .3s ease-in-out;
}

.hero-homepage .social svg {
  padding: 6px;
  box-sizing: content-box;
  border: .5px solid var(--w70);
  border-radius: 8px;
  filter: drop-shadow(0px 0px 4px var(--w60));
  transition: .3s ease-in-out;
}

@media (max-width: 830px) {
  .hero-homepage .social svg {
    border: 1px solid var(--w40);
  }  
}

.hero-homepage .social svg:hover {
  fill: #8691A5 !important;
}

.hero-homepage .social:has(svg:hover) {
  background: var(--w70);
}

/* ---------- Main Section ---------- */

.case-studies {
  margin: 50px auto 110px auto;
}

.projects-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto 8.6vw 50px 8.6vw;
}

@media (max-width: 1000px) {
  .case-studies {
    margin-top: 25px;
  }

  .projects-title {
    margin-bottom: 25px;
  }
}

.projects-title-left {
  display: flex;
  gap: 30px;
}

h2 {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--w70);
}

.projects-title-left div {
  display: flex;
  align-items: center;
  gap: 13px;
}

.gallery-arrows {
  padding: 10px;
  border: var(--green) .5px solid;
  border-radius: 20px;
  cursor: pointer;
  transition: background-color .3s ease-in-out;
}

.gallery-arrows:hover {
  background-color: rgba(150, 175, 187, 15%);
}

@media (max-width: 525px) {
  .projects-title {
    align-items: flex-start;
  }

  .projects-title-left {
    flex-direction: column;
    gap: 0;
    margin-top: -15px;
  }

  .gallery-arrows {
    border: var(--green) 1px solid;
    width: 30px;
    height: 30px;
    padding: 8px;
  }
}

.btn-projects {
  padding: 10px 25px;
  background: rgba(150, 175, 187, 7%);
  border: .5px solid var(--green);
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--green);
  line-height: 16px;
  transition: .3s ease-in-out;
}

@media (max-width: 730px) {
  .btn-projects {
    border: .8px solid var(--green);
  }  
}

.btn-projects:hover {
  background: rgba(150, 175, 187, 70%);
  color: var(--dark);
}

.projects-gallery .slick-track {
  display: flex;
  gap: 20px;
  margin-left: -94px;
}

.project {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.project img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  border: .5px solid rgba(150, 175, 187, 70%);
}

@media (max-width: 730px) {
  .project img {
    border: unset;
  }  
}

.project::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: rgba(61, 65, 83, 45%);
  transition: .3s ease-in-out;
}

.project:hover::before {
  background: rgba(61, 65, 83, 75%);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.marquee-text {
  overflow: clip;
  position: absolute;
  top: 3.5%;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: soft-light;
}

.marquee-text-track {
  display: flex;
  padding-left: 2px;
  gap: 2px;
  width: max-content;
  opacity: 0;
  transition: opacity .5s ease-in-out;
  will-change: transform;
}

.marquee-text p {
  margin: 0;
  padding: 5px 2px;
  font-weight: 700;
  font-size: 100px;
  letter-spacing: -.05em;
}

.marquee-text-2 p {
  margin-top: 75px;
}

.marquee-text-3 p {
  margin-top: 150px;
}

.marquee-text-4 p {
  margin-top: 225px;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}

.project:hover .marquee-text-track {
  opacity: 1;
  animation: marquee linear infinite;
  animation-duration: var(--duration, 5s);
}

@media (max-width: 475px) {
  .case-studies {
    margin-top: 40px;  
  }

  .projects-title {
    flex-direction: column;
    align-items: center;
    margin-bottom: 48px;
  }

  .projects-title-left {
    margin-bottom: 25px;
  }

  .projects-title-left div {
    justify-content: center;
  }
  
  .projects-gallery .slick-track {
    margin-left: 10vw;
  }

  .project img {
    width: 80vw;
    height: 80vw;
  }

  .marquee-text {
    display: none;
  }

  .project:hover::before {
    background: rgba(61, 65, 83, 25%);
    backdrop-filter: unset;
    -webkit-backdrop-filter: unset;
  }
}

/* ----------------------------------------
   Projects page
   ---------------------------------------- */

/* ---------- Hero Section ---------- */

.hero-projects::before {
  content: "portfolio";
  letter-spacing: 0;
  font-feature-settings: "kern" off;
  -webkit-font-feature-settings: "kern" off;
  -moz-font-feature-settings: "kern" off;
}

/* ---------- Projects Section ---------- */

.projects {
  margin: 122px 8.6vw 110px 8.6vw;
  display: grid;
  grid-template-columns: repeat(auto-fill, 300px);
  justify-content: space-evenly;
  justify-items: center;
  row-gap: 26px;
}

.projects .project,
.projects .project img {
  width: 280px;
  height: 280px;
}

.projects .marquee-text {
  top: 0;
}

.projects .marquee-text p {
  font-size: 85px;
}

.projects .marquee-text-2 p {
  margin-top: 65px;
}

.projects .marquee-text-3 p {
  margin-top: 130px;
}

.projects .marquee-text-4 p {
  margin-top: 195px;
}

.projects .marquee-text-track {
  margin-top: -18px;
}

@media (max-width: 1200px) {
  .projects {
    margin-top: 80px;
  }
}

@media (max-width: 475px) {
  .projects {
    margin: 60px 0 110px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .projects .project,
  .projects .project img {
    width: 82.8vw;
    height: 82.8vw;
  }
}

/* ----------------------------------------
   About page
   ---------------------------------------- */

.about {
  margin: 40px 25vw 110px 25vw;
}

@media (max-width: 1200px) {
  .about {
    margin: 60px 12vw 110px 12vw;
  }
}

@media (max-width: 475px) {
  .about {
    margin-top: 58px;
  }
}
  
/* ---------- Hero Section ---------- */

.hero-about::before {
  content: "aboutme";
}

.hero-about p::after,
.hero-about p::before {
  height: 1050px;
}

/* ---------- Main Section ---------- */

.about p {
  margin: 0;
}

.intro-text {
  position: relative;
  margin-bottom: 80px;
}

.intro-text::after,
.main-text::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 86vw;
  height: .5px;
  border-radius: 100%;
  background: linear-gradient(to left, transparent, var(--w40) 30% 70%, transparent);
}

.intro-text .small {
  float: left;
  margin-top: 3px;
  padding-right: 7vw;
  color: var(--w60);
}

.intro-text .large {
  font-size: 28px;
  line-height: 100%;
  text-align: justify;
  background: linear-gradient(var(--green), var(--w70));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-bottom: .2em;
}

.intro-text .large::selection {
  -webkit-text-fill-color: var(--dark);
}

@media (max-width: 475px) {
  .intro-text .large {
    padding-top: 60px;
    font-size: 23px;
    text-align: left;
  }
}

.main-text {
  position: relative;
  color: var(--w60);
  margin-bottom: 80px;
}

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

.about-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.btn-underlined span {
  position: relative;
  margin-right: 5px;
  font-size: 14px;
  color: var(--w90);
}

.btn-underlined span:after {
  content: "";
  position: absolute;
  bottom: -1.5px;
  left: 0;
  right: 0;
  width: 100%;
  height: .5px;
  background: var(--w90);
}

.btn-underlined:hover svg {
  animation: arrow 1s ease-out infinite;
}

@keyframes arrow {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(3px, -3px);
  }

  100% {
    transform: translate(0, 0);
  }
}

.btn-rounded {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px 7px 16px;
  border-radius: 17px;
  border: rgba(150, 175, 187, 50%) 1px solid;
  font-size: 14px;
  color: var(--green);
  transition: .3s ease-in-out;
}

.btn-rounded:hover {
  background-color: rgba(150, 175, 187, 15%);
}

/* ----------------------------------------
   Contact page
   ---------------------------------------- */

.contact {
  margin: 50px 25vw 110px 25vw;
}

@media (max-width: 1200px) {
  .contact {
    margin: 70px 12vw 110px 12vw;
  }
}

@media (max-width: 475px) {
  .contact {
    margin: 60px 10vw 110px 10vw;
  }
}
  
/* ---------- Hero Section ---------- */
  
.hero-contact::before {
  content: "emailme";
  letter-spacing: unset;
}
  
/* ---------- Contact Form ---------- */

.contact form,
.contact .success-message {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 10px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 8%);
}

.contact .success-message {
  padding: 25px;
}

.contact .success-message p {
  margin: 0 0 20px 0;
}

.contact label {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact input,
.contact textarea {
  width: 100%;
  height: 50px;
  padding: 18px;
  background: rgba(255, 255, 255, 3%);
  border-radius: 8px;
  border: 1px solid var(--w15);
  color: var(--w70);
  font-size: 15px;
  font-family: 'Inter', sans-serif;
}

.contact input:focus,
.contact textarea:focus {
  outline: none;
}

.contact input::placeholder,
.contact textarea::placeholder {
  outline: none;
  color: var(--w70);
  font-size: 15px;
  text-shadow: 0 0 2px rgba(250, 250, 213, 20%);
}

.contact textarea {
  resize: none;
  height: 20vw;
}

.contact button {
  width: 100%;
  height: 50px;
  border-radius: 8px;
  background-color: rgba(150, 175, 187, 15%);
  border: 1px solid rgba(150, 175, 187, 50%);
  color: #B1BFC6;
  font-size: 15px;
  text-shadow: 0 0 1px rgb(150, 175, 187, 30%);
  -webkit-text-stroke: .2px #B1BFC6;
  cursor: pointer;
  transition: .3s ease-in-out;
}

@media (max-width: 475px) {
  .contact button {
    -webkit-text-stroke: unset;
    font-weight: 400;
  }
}

.contact button:hover {
  background: rgba(150, 175, 187, 70%);
  color: var(--dark);
  text-shadow: unset;
  -webkit-text-stroke: .2px var(--dark);;
}

.contact .btn-opaque,
.contact .btn-transparent {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  background: rgba(255, 255, 255, 3%);
  border: 1px solid var(--w15);
  border-radius: 8px;
  font-weight: 500;
  color: var(--w70);
  transition: .3s ease-in-out;
}

.contact .btn-opaque {
  background: rgba(150, 175, 187, 15%);
  color: #B1BFC6;
  border: 1px solid rgba(150, 175, 187, 50%);
  text-shadow: 0 0 1px rgb(150, 175, 187, 30%);
}

.contact .btn-transparent:hover {
  background: rgba(255, 255, 255, 20%);
  color: var(--w90);
}

.contact .btn-opaque:hover {
  background: rgba(150, 175, 187, 70%);
  color: var(--dark);
}

/* ----------------------------------------
   Project page: beeyondauto
   ---------------------------------------- */

/* ---------- Hero Section ---------- */

.hero-beeyond::before {
  content: "beeyondauto";
}

.tech-list {
  margin: 0;
  padding: 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 19px;
  row-gap: 10px;
}

.tech-list li {
  padding: 6px 12px;
  background: rgba(49, 53, 70, 60%);
  border: .5px solid var(--green);
  border-radius: 17px;
  font-size: 12px;
  color: #CBD8DE;
  text-shadow: 0px 0px 1px var(--green);
}

@media (max-width: 730px) {
  .tech-list li {
    border: 1px solid var(--green);
  }  
}

.year {
  width: fit-content;
  margin: 0 auto;
  padding: 6px 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background: var(--w15);
  box-shadow: 0px 0px 2px var(--w40);
  border: .5px solid rgba(255, 255, 255, 30%);
  border-radius: 8px;
  font-weight: 500;
  font-size: 12px;
}

@media (max-width: 730px) {
  .year {
    border: 1px solid var(--w15);
  }  
}

/* ---------- Breadcrumbs ---------- */

.project-main {
  margin: 0 8.6vw 110px 8.6vw;
}

.project-main nav {
  position: relative;
  padding: 34px 0 38px 15vw;
  color: var(--w60);
  z-index: 998;
}

@media (max-width: 1200px) {
  .project-main nav {
    width: 100vw;
    margin-left: -8.6vw;
    padding: 34px 0 38px 8.6vw;
  }
}

.project-main nav ol {
  display: flex;
  column-gap: 17px;
  margin: 0;
}

.project-main li {
  position: relative;
  transition: .3s ease-in-out;
}

.project-main nav ol li:first-child::after {
  content: "";
  position: absolute;
  bottom: -1.2px;
  left: 0;
  right: 0;
  width: 100%;
  height: .5px;
  background: var(--w60);
  transition: .3s ease-in-out;
}

.project-main li:first-child:hover {
  color: var(--w90);
}

.project-main li:first-child:hover::after {
  background: var(--w90);
}

.project-main nav::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: .5px;
  border-radius: 100%;
  background: linear-gradient(to left, transparent, var(--w40) 200px 70%, transparent);
}

/* ---------- Main Content ---------- */

.project-content {
  width: fit-content;
  margin: 0 auto;
  padding-top: 100px;
  display: flex;
  column-gap: 4vw;
  justify-content: center;
  align-items: stretch;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 60px;
}

.project-desc {
  max-width: 750px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1 1 440px;
  gap: 30px;
}

.overview {
  width: 70%;
  margin: 0;
  padding-bottom: .2em;
  font-size: 28px;
  line-height: 100%;
  background: linear-gradient(to bottom, var(--green), var(--w70));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.overview::selection {
  -webkit-text-fill-color: var(--dark);
}

.goal {
  color: var(--w60);
  line-height: 140%;
}

.projects-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}

.project-img {
  display: flex;
  align-items: flex-end;
}

.project-img img {
  filter: drop-shadow(16px -3px 45px rgba(0, 0, 0, 25%));
}

.beeyondauto-content .project-img img {
  opacity: .8;
}

.project-img img:first-child {
  height: 400px;
  margin-right: -100px;
  border-radius: 5px 5px 0px 0px;
  z-index: 1;
}

.project-img img:last-child {
  height: 500px;
}

@media (max-width: 700px) {
  .project-img img:first-child {
    border-radius: .7vw .7vw 0px 0px;
  }
}

@media (max-width: 1366px) {
  .beeyondauto-content {
    padding-top: 60px;
  }
}

@media (max-width: 907px) {
  .project-content,
  .overview {
    width: unset;
  }
  
  .project-desc {
    min-width: unset;
  }

  .project-img img:first-child {
    height: unset !important;
    width: 60%;
    margin-right: -10%;
  }
  
  .project-img img:last-child {
    height: unset !important;
    width: 50%;
  }
}

@media (min-width: 907px) and (max-width: 1366px) {
  .beeyondauto-content .project-desc {
    text-align: center;
  }

  .beeyondauto-content .overview {
    width: 80%;
    margin: 0 auto;
  }

  .beeyondauto-content .projects-links {
    justify-content: center;
  }
}

/* ----------------------------------------
   Project page: XLIM
   ---------------------------------------- */

/* ---------- Hero Section ---------- */

.hero-xlim::before {
  content: "xliminstitute";
}

/* ---------- Main Section ---------- */

@media (max-width: 1217px) {
  .xlim-content {
    padding-top: 60px;
  }
}

@media (min-width: 907px) and (max-width: 1217px) {
  .xlim-content .project-desc {
    text-align: center;
  }

  .xlim-content .overview {
    width: 80%;
    margin: 0 auto;
  }

  .xlim-content .projects-links {
    justify-content: center;
  }
}

/* ----------------------------------------
   Project page: Theme Park Homepage
   ---------------------------------------- */

/* ---------- Hero Section ---------- */

.hero-themepark::before {
  content: "themepark";
}

/* ---------- Main Section ---------- */

@media (max-width: 1202px) {
  .themepark-content {
    padding-top: 60px;
  }
}

@media (min-width: 907px) and (max-width: 1202px) {
  .themepark-content .project-desc {
    text-align: center;
  }

  .themepark-content .overview {
    width: 80%;
    margin: 0 auto;
  }

  .themepark-content .projects-links {
    justify-content: center;
  }
}

/* ----------------------------------------
   Project page: ASAPéro
   ---------------------------------------- */

/* ---------- Hero Section ---------- */

.hero-asapero::before {
  content: "mockups";
}

/* ---------- Main Section ---------- */

.asapero-content {
  width: 100%;
  flex-direction: column;
  flex-wrap: unset;
  gap: 120px;
}

.asapero-content .project-desc {
  flex-direction: row;
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  flex: unset;
  gap: 50px;
}

.asapero-content .project-desc p {
  width: unset;
  margin: 0;
}

.asapero-gallery {
  width: 100vw !important;
  margin-left: -8.6vw;
}

.asapero-gallery .slick-track {
  margin-left: -40px;
}

@media (max-width: 475px) {
  .asapero-gallery .slick-track {
    margin-left: 0;
  }
}

.asapero-gallery .slick-list {
  overflow: visible !important;
}

.asapero-gallery img {
  width: 200px;
  margin-right: 25px;
  border-radius: 21px !important;
  filter: drop-shadow(10px 9px 45px rgba(150, 175, 187, 36%));
  opacity: .8;
}

.asapero-gallery-arrows {
  display: flex;
  margin-top: 30px;
  gap: 13px;
}

.hidden-arrows {
  display: none;
}

@media (max-width: 1200px) {
  .asapero-content {
    padding-top: 60px;
  }
}

@media (max-width: 800px) {
  .asapero-content {
    gap: 60px;
  }

  .asapero-content .project-desc {
    flex-direction: column;
    gap: 30px;
  }

  .asapero-gallery-arrows {
    display: none;
    margin-top: 10px;
  }

  .hidden-arrows {
    display: flex;
  }

  .asapero-content .projects-links {
    margin-top: 35px;
  }
}

/* ----------------------------------------
   Project page: Chocobonbon
   ---------------------------------------- */

/* ---------- Hero Section ---------- */

.hero-chocobonbon::before {
  content: "chocobonbon";
}

/* ---------- Main Section ---------- */

@media (max-width: 1224px) {
  .chocobonbon-content {
    padding-top: 60px;
  }
}

@media (min-width: 907px) and (max-width: 1224px) {
  .chocobonbon-content .project-desc {
    text-align: center;
  }

  .chocobonbon-content .overview {
    width: 80%;
    margin: 0 auto;
  }

  .chocobonbon-content .projects-links {
    justify-content: center;
  }
}

/* ----------------------------------------
   Project page: Formdev
   ---------------------------------------- */

/* ---------- Hero Section ---------- */

.hero-formdev::before {
  content: "formdev";
}

/* ---------- Main Section ---------- */

.formdev-content .project-img img {
  height: 400px;
  margin-right: unset;
}

@media (max-width: 907px) {
  .formdev-content .project-img img {
    width: 100%;
  }
}

@media (max-width: 1143px) {
  .formdev-content {
    padding-top: 60px;
  }
}

@media (min-width: 907px) and (max-width: 1143px) {
  .formdev-content .project-desc {
    text-align: center;
  }

  .formdev-content .overview {
    width: 80%;
    margin: 0 auto;
  }

  .formdev-content .projects-links {
    justify-content: center;
  }
}

/* ----------------------------------------
   Project page: Internship report
   ---------------------------------------- */

/* ---------- Hero Section ---------- */

.hero-report::before {
  content: "internship";
}

/* ---------- Main Section ---------- */

.internship-content .project-img img:first-child {
  height: 250px;
}

.internship-content .project-img img:last-child {
  height: 200px;
}

@media (max-width: 1343px) {
  .internship-content {
    padding-top: 60px;
  }
}

@media (min-width: 907px) and (max-width: 1343px) {
  .internship-content .project-desc {
    text-align: center;
  }

  .internship-content .overview {
    width: 80%;
    margin: 0 auto;
  }

  .internship-content .projects-links {
    justify-content: center;
  }
}

/* ----------------------------------------
   Hero Sections (responsive)
   ---------------------------------------- */

.hero-project p::before,
.hero-project p::after {
  height: 657px;
  top: -321px;
}

@media (max-width: 1200px) {
  .hero p::before,
  .hero p::after {
    left: 0;
    height: 512px;
    top: -263px;
  }

  .hero p::after {
    left: unset;
    right: 0;
  }

  .hero-contact p::before,
  .hero-contact p::after,
  .hero-projects p::before,
  .hero-projects p::after {
    height: 385px;
    top: -208px;
  }

  .hero-about p::before,
  .hero-about p::after {
    height: 901px;
    top: -208px;
  }
  
  .hero-project p::before,
  .hero-project p::after {
    height: 612px;
    top: -283px;
  }
}

@media (max-width: 475px) {
  .hero::before,
  .hero-projects::before,
  .hero-contact::before,
  .hero-about::before,
  .hero-beeyond::before,
  .hero-themepark::before,
  .hero-xlim::before,
  .hero-asapero::before,
  .hero-chocobonbon::before,
  .hero-formdev::before,
  .hero-report::before {
    content: unset;
  }
}