:root {
  --black: #101010;
  --white: white;
}

* {
  margin: 0;
  padding: 0;
  line-height: 1;
  box-sizing: border-box;
}

html {
  font-family: "Manrope", sans-serif;
  cursor: none;
}

#custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../../media/cursors/cursor.svg);
  border-radius: 50%;
  background-size: contain;
  pointer-events: none;
  mix-blend-mode: difference;
  z-index: 9999;
  will-change: transform;
}

a {
  text-decoration: none;
  color: var(--white);
  cursor: none;
}

li {
  list-style-type: none;
}

header {
  height: auto;
  width: 100%;
  padding: 30px;
  position: sticky;
  top: 0px;
  z-index: 888;
}
header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header nav h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
}
header .hamburger-icon {
  width: 32px;
  height: 32px;
  overflow: hidden;
  z-index: 999;
}
header .bottom-line, header .middle-line {
  stroke-dasharray: 176;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.3s ease;
  will-change: stroke-dashoffset;
}
header .hamburger-icon.clicked .bottom-line {
  stroke-dashoffset: 88;
}
header .hamburger-icon.clicked .middle-line {
  stroke-dashoffset: 40;
}
header .menu__nav {
  width: 225px;
  height: 100vh;
  opacity: 0;
  background-color: var(--black);
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 30px;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}
header .menu__nav li {
  transform: translateX(30px);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
header .menu__nav li:nth-child(1) {
  transition-delay: 0.1s;
}
header .menu__nav li:nth-child(2) {
  transition-delay: 0.2s;
}
header .menu__nav li:nth-child(3) {
  transition-delay: 0.3s;
}
header .menu__nav li:nth-child(4) {
  transition-delay: 0.4s;
}
header .menu__nav li a {
  color: var(--white);
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  display: inline-block;
  text-align: right;
  transition: transform 0.3s ease;
}
header .menu__nav li a:hover {
  transform: translateX(-10px);
}

.menu__nav.active {
  opacity: 1;
  pointer-events: all;
}
.menu__nav.active li {
  transform: translateX(0);
  opacity: 1;
}

.main__wrapper {
  width: 100vw;
  height: 100vh;
  background-color: var(--black);
  position: relative;
}
.main__wrapper::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0%;
  background-color: var(--white);
  mix-blend-mode: difference;
  z-index: 10000;
  transition: height 0.6s ease;
}
.main__wrapper.active::before {
  height: 100%;
}

footer {
  position: fixed;
  bottom: 0;
  padding: 30px;
  width: 100%;
  color: white;
  display: flex;
  justify-content: space-between;
}

.back__button__wrapper {
  height: 40px;
  margin: 0px 30px;
  display: flex;
  align-items: flex-end;
}
.back__button__wrapper a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 10px 10px 0px;
  color: var(--white);
}
.back__button__wrapper a svg {
  fill: var(--white);
  width: 20px;
  height: 20px;
}

.about__content {
  display: flex;
  gap: 30px;
  font-size: 1rem;
}
.about__content .image__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  padding-left: 30px;
}
.about__content .image__wrapper img {
  height: auto;
  max-height: 60vh;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
.about__content .image__wrapper p {
  color: var(--white);
  font-size: clamp(0.6rem, 1vw, 1.5rem);
  line-height: 1.4;
}
.about__content .image__wrapper p a {
  text-decoration: underline;
}
.about__content .info__wrapper {
  width: 100%;
  height: auto;
  color: var(--white);
  margin-right: 30px;
  margin-bottom: 50px;
  font-size: 1.1rem;
  overflow-y: scroll;
  scrollbar-width: none;
}
.about__content .info__wrapper::-webkit-scrollbar {
  display: none;
}
.about__content .info__wrapper h1 {
  font-weight: normal;
  margin-bottom: 40px;
  font-size: clamp(0.7rem, 1.1vw, 1.6rem);
}
.about__content .info__wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  font-size: clamp(0.6rem, 1vw, 1.5rem);
}
.about__content .info__wrapper ul li {
  display: flex;
  justify-content: space-between;
  padding-bottom: 10px;
}

.project__wrapper {
  display: flex;
  gap: 10px;
  width: 100vw;
  overflow-x: scroll;
  height: 75vh;
  padding: 0 30px;
  will-change: scroll-position;
  scrollbar-width: none;
}
.project__wrapper::-webkit-scrollbar {
  display: none;
}
.project__wrapper .project {
  flex-shrink: 0;
  width: 22.5vw;
  height: 100%;
  color: var(--white);
  padding-right: 30px;
}
.project__wrapper .project .project__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project__wrapper .project .project__content .heading {
  font-size: clamp(1.5rem, 2.5vw, 3.5rem);
  font-weight: 700;
}
.project__wrapper .project .project__content .ph_heading {
  height: clamp(1.5rem, 2.4vw, 3.5rem);
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  border-radius: 2px;
}
.project__wrapper .project .project__content .text {
  line-height: 1.2;
  margin-bottom: 10px;
}
.project__wrapper .project .project__content .ph_text {
  height: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  width: 100%;
  border-radius: 2px;
}
.project__wrapper .project .project__content .preview {
  width: 100%;
  height: auto;
}
.project__wrapper .project .project__content .preview img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid var(--black);
  transition: border 0.3s ease;
  image-rendering: crisp-edges;
}
.project__wrapper .project .project__content .preview img:hover {
  border: 1px solid var(--white);
}
.project__wrapper .project .project__content .ph_preview {
  background-color: rgba(255, 255, 255, 0.2);
  height: 250px;
  width: 100%;
  border-radius: 2px;
  display: grid;
  place-content: center;
}
.project__wrapper .project .project__content .ph_button {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.2);
}
.project__wrapper .project .project__content .link__button a {
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}
.project__wrapper .project .project__content .link__button a:hover {
  text-decoration: underline;
}
.project__wrapper .project .project__content .link__button a svg {
  fill: var(--white);
  width: 20px;
  height: auto;
}

body {
  width: 100vw;
  height: 100vh;
  position: relative;
  display: flex;
  top: 0;
  left: 0;
}

.contact__wrapper {
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10vh;
}
.contact__wrapper form {
  display: flex;
  flex-direction: column;
  width: 40vw;
  gap: 20px;
  margin: 0;
  padding: 0;
  font-family: "Manrope", sans-serif;
  cursor: none;
  margin-bottom: 20px;
}
.contact__wrapper form input, .contact__wrapper form textarea {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 5px;
  border-style: none;
  background-color: transparent;
  border-radius: 0px !important;
  border-bottom: 1px solid white;
  outline: none;
  cursor: none;
  color: white;
}
.contact__wrapper form input::-moz-placeholder, .contact__wrapper form textarea::-moz-placeholder {
  color: white;
}
.contact__wrapper form input::placeholder, .contact__wrapper form textarea::placeholder {
  color: white;
}
.contact__wrapper form textarea {
  border-bottom: none !important;
  resize: none;
}
.contact__wrapper form button {
  padding: 10px;
  background-color: white;
  border-style: none;
  color: black;
  border: 1px solid white;
  font-weight: 700;
  font-family: "Manrope", sans-serif;
  border-radius: 5px;
  text-transform: uppercase;
  cursor: none;
}

.socials {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  color: var(--white);
}
.socials svg {
  fill: white;
  width: 20px;
  height: 20px;
}
.socials .instagram {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 20px;
}

.footer-mobile {
  display: none;
  margin-top: auto;
  color: white;
  height: 0;
  width: 100%;
  padding: 30px;
  font-size: 0.7rem;
}

@media (max-width: 1023px) {
  footer {
    display: none;
  }
  .footer-mobile {
    display: flex;
    height: auto;
  }
  #custom-cursor {
    display: none;
  }
  html {
    cursor: default;
  }
  .main__wrapper, body {
    width: 100dvw;
    height: 100dvh;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
  }
  header {
    background-color: var(--black);
    padding: 30px;
  }
  header .hamburger-icon {
    width: 24px;
    height: 24px;
  }
  header nav h1 {
    font-size: 1.5rem;
  }
  header .menu__nav {
    width: 50dvw;
    height: 100dvh;
    justify-content: center;
    background-color: var(--black);
    right: -120px;
    padding-right: 30px;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
  }
  header .menu__nav li {
    opacity: 1;
    transform: none;
  }
  header .menu__nav li a {
    font-size: 1.5rem;
  }
  header .menu__nav li a:hover {
    transform: none;
  }
  .menu__nav.active {
    right: 0px;
  }
  .contact__wrapper {
    margin-top: 0px;
  }
  .contact__wrapper form {
    width: 100dvw;
    padding: 20px;
  }
  .project__wrapper .project {
    width: 80vw;
  }
  .project__wrapper .project .project__content .heading {
    font-size: clamp(1rem, 7.5vw, 2.5rem);
  }
  .project__wrapper .project .project__content .ph_preview {
    height: 22.5vh;
  }
  .project__wrapper .project .project__content .mobile {
    display: none;
  }
  .project__wrapper .project .project__content .text {
    font-size: clamp(0.6rem, 4vw, 1.5rem);
  }
  .back__button__wrapper {
    height: 30px;
  }
  .about__content {
    width: 100dvw;
    flex-direction: column;
    gap: 30px;
  }
  .about__content .image__wrapper {
    padding: 0 30px;
  }
  .about__content .image__wrapper img {
    width: 100%;
    height: auto;
  }
  .about__content .image__wrapper p {
    font-size: 0.8rem;
  }
  .about__content .info__wrapper {
    width: 100%;
    font-size: 0.8rem;
    padding: 0 30px;
  }
  .about__content .info__wrapper h1 {
    margin-bottom: 20px;
  }
  .about__content .info__wrapper ul li {
    flex-direction: column;
    gap: 5px;
  }
  .about__content .info__wrapper ul li span {
    line-height: 1.2;
  }
  footer {
    position: none;
    padding: 20px;
    font-size: 0.7rem;
  }
}/*# sourceMappingURL=stylesPages.css.map */