@import url("https://fonts.googleapis.com/css2?family=Zen+Kurenaido&display=swap");
::selection {
  background-color: #00ff00;
}

* {
  font-family: "Zen Kurenaido", sans-serif;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
}

h1 {
  text-transform: uppercase;
  font-size: 12vh;
  line-height: 90%;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: black;
  padding: 0;
  margin: 0;
}

h2 {
  font-size: 4vh;
  text-transform: uppercase;
  line-height: 0.9em;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

h1, h2, h3, h4 {
  padding: 0;
  margin: 0;
}

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

p {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
}

button {
  -webkit-text-stroke-width: 0.5px;
  -webkit-text-stroke-color: black;
}

img {
  image-rendering: smooth;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 5%;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  position: fixed;
  left: 0;
  z-index: 999;
  counter-reset: nav-counter;
}

.nav li {
  position: relative;
  display: inline;
  padding: 25px 0;
  font-size: 0.85em;
  text-transform: uppercase;
}

.nav a {
  position: relative;
  counter-increment: nav-counter;
}
.nav a:before {
  content: counter(nav-counter) ". ";
}
.nav a:after {
  content: attr(data-title);
  position: absolute;
  display: block;
  text-shadow: none;
  top: 0px;
  left: -4px;
  padding: 7px 0px;
  color: transparent;
  background: #00ff00;
  transform-origin: 50% 0%;
  backface-visibility: hidden;
  transform: translate3d(0px, 105%, 0px) rotateX(-112deg);
  transform-style: preserve-3d;
  transition: all 0.4s ease;
  z-index: -1;
}
.nav a:hover:after {
  transform: rotateX(0deg) translateZ(0px);
  transition: all 0.4s ease;
}

.hero img {
  width: 60%;
}

.hero h1 {
  margin: -10% 55% 0% 0%;
}

.hero2 {
  position: absolute;
  top: -15%;
  right: 1%;
  width: 20%;
}

.hero3 {
  position: absolute;
  top: -8%;
  left: -7%;
  width: 20%;
}

.hero {
  display: grid;
  grid-template: 1fr/1fr;
  place-items: center;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
.hero > * {
  grid-column: 1/1;
  grid-row: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero a {
  cursor: help;
  position: relative;
}
.hero a:after {
  content: "";
  position: absolute;
  background-color: #00ff00;
  width: 100%;
  height: 16px;
  top: 10px;
  left: 0;
  z-index: -1;
}

.hero-section {
  grid-column: 1/1;
  grid-row: 2/2;
  display: flex;
  width: 80vw;
  height: 100%;
  text-align: center;
  padding: 10px 0;
}

main {
  position: relative;
  display: flex;
  width: 100vw;
  justify-content: center;
}

.slides-nav {
  position: fixed;
  display: flex;
  align-items: center;
  width: 40%;
  justify-content: center;
}
@media (min-width: 54em) {
  .slides-nav {
    bottom: 5%;
  }
}
.slides-nav__nav {
  position: relative;
  right: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: 1em;
}
.slides-nav:after {
  content: " ";
  width: 35vw;
  position: absolute;
  border-bottom: 1px solid;
  top: 12px;
  color: #f70e07;
}
@media only screen and (max-width: 1024px) {
  .slides-nav:after {
    width: 33vw;
  }
}
.slides-nav button {
  position: relative;
  display: inline-block;
  padding: 0 0.2em;
  margin: 0;
  appearance: none;
  background: transparent;
  border: 0;
  overflow-x: hidden;
  transition: color 0.5s ease;
}
.slides-nav button:after {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  height: 15px;
  width: 0;
  background: #f70e07;
  transition: width 0.4s ease;
  z-index: -1;
}
.slides-nav button:hover {
  cursor: pointer;
  transition: color 0.5s ease;
}
.slides-nav button:hover:after {
  width: 100%;
  transition: width 0.4s ease;
}
.slides-nav button:focus {
  outline: 0;
}
.is-sliding .slides-nav {
  pointer-events: none;
}

.slides {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  background: transparent;
  transition: background 1s cubic-bezier(0.99, 1, 0.92, 1);
}
.is-sliding .slides {
  outline: 1px solid #0110fb;
  transition: background 0.3s cubic-bezier(0.99, 1, 0.92, 1);
}

.slide {
  padding: 0;
  position: absolute;
  width: 75vw;
  height: 75%;
  text-align: right;
  transition: z-index 1s ease;
}
.slide .clickable {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 1;
  display: none;
}
.slide.is-active {
  transition: z-index 1s ease;
}
.slide.is-active .clickable {
  display: block;
}
.slide__element {
  position: absolute;
  bottom: 0;
  height: 50%;
  width: 30%;
  z-index: 1;
  overflow-y: hidden;
}
.slide__element span {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 140%, 0);
  transition: transform 0.4s ease, opacity 0.8s ease;
}
.slide__element span:nth-child(1) {
  transition-delay: 0.1s;
}
.slide__element span:nth-child(2) {
  transition-delay: 0.2s;
}
.is-active .slide__element span {
  transform: translate3d(0, 0%, 0);
  opacity: 0.8;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.1s ease;
}
.slide__content {
  position: relative;
  margin: 0 auto;
  height: 100%;
  width: 100%;
  top: 0%;
  display: grid;
  grid-template-columns: 20% 80%;
  grid-template-rows: 90% 10%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-areas: "header figure" "footer footer";
}
@media (min-width: 54em) {
  .slide__content {
    height: 100%;
    width: 100%;
    top: 0%;
  }
}
.slide__header {
  position: relative;
  transform: translateX(5%);
  z-index: 3;
  grid-area: header;
}
@media (min-width: 54em) {
  .slide__header {
    transform: translateX(-5%);
  }
}
.slide__title {
  font-size: 0.8em;
}
@media (min-width: 54em) {
  .slide__title {
    font-size: 1em;
  }
}
.slide__title .title-line, .slide__title .title-description {
  display: block;
  overflow-y: hidden;
}
.slide__title .title-line span, .slide__title .title-description span {
  display: inline-block;
  transform: translate3d(0, 140%, 0);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.8s ease;
}
.slide__title .title-line span:nth-child(1), .slide__title .title-description span:nth-child(1) {
  transition-delay: 0.15s;
}
.slide__title .title-line span:nth-child(2), .slide__title .title-description span:nth-child(2) {
  transition-delay: 0.3s;
}
.is-active .slide__title .title-line span, .is-active .slide__title .title-description span {
  transform: translate3d(0, 0%, 0);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.1s ease;
}
.is-active .slide__title .title-line:nth-of-type(2n) span, .is-active .slide__title .title-description:nth-of-type(2n) span {
  transition-delay: 0.2s;
}
.slide__title .title-description {
  color: #0110fb;
}
.slide__title .title-line {
  width: 400%;
  text-align: left;
}
.slide__footer {
  position: relative;
  width: 84%;
  z-index: 3;
  grid-row-start: 2;
  grid-row-end: span 2;
  grid-area: footer;
}
.slide__footer .title-line, .slide__footer .title-description {
  display: block;
  overflow-y: hidden;
}
.slide__footer .title-line span, .slide__footer .title-description span {
  display: inline-block;
  transform: translate3d(0, 140%, 0);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.8s ease;
  align-items: flex-end;
}
.slide__footer .title-line span:nth-child(1), .slide__footer .title-description span:nth-child(1) {
  transition-delay: 0.15s;
}
.slide__footer .title-line span:nth-child(2), .slide__footer .title-description span:nth-child(2) {
  transition-delay: 0.3s;
}
.is-active .slide__footer .title-line span, .is-active .slide__footer .title-description span {
  transform: translate3d(0, 0%, 0);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.1s ease;
}
.is-active .slide__footer .title-line:nth-of-type(2n) span, .is-active .slide__footer .title-description:nth-of-type(2n) span {
  transition-delay: 0.2s;
}
.slide__footer .title-description {
  color: #0110fb;
  -webkit-text-stroke-width: 0.75px;
  -webkit-text-stroke-color: #0110fb;
}
.slide__footer-text {
  text-align: right;
}
.slide__figure {
  align-self: end;
  margin: 0;
  height: 90%;
  width: 80%;
  overflow-y: hidden;
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  grid-area: figure;
}
.is-sliding .slide__figure {
  transform: scale(0.8);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}
.slide__img {
  position: relative;
  display: block;
  background-size: cover;
  background-position: 50%;
  -webkit-backface-visibility: hidden;
  will-change: height;
  height: 0%;
  width: 100%;
  filter: grayscale(0%);
  transition: height 1s 1.4s cubic-bezier(0.19, 1, 0.22, 1), filter 0.4s 0.1s ease;
}
.is-active .slide__img {
  height: 100%;
  opacity: 1;
  transition: height 0.5s 0.3s cubic-bezier(0.77, 0, 0.175, 1), filter 0.4s 0.1s ease;
}
.is-sliding .slide__img {
  filter: grayscale(100%);
}

.project {
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  width: 80vw;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 0;
}
.project__description {
  display: flex;
  width: 90%;
  margin: 2% 0 0 5%;
  border-top: 1px solid #0110fb;
  border-bottom: 1px solid #0110fb;
}
.project__description .description-title {
  font-size: 3vw;
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  line-height: 90%;
  margin: 0 0 20px 0;
}
.project__description .description-line {
  font-size: 0.75em;
  line-height: 100%;
  margin: 0 0 20px 0;
  -webkit-text-stroke-width: 0.5px;
}
.project__description > div {
  width: 50%;
}
.project__description > div:first-of-type {
  padding-right: 40px;
}
.project__description span {
  display: block;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: black;
  margin: 5px 0px;
}
.project__description span:last-of-type:not(.description-title) {
  display: flex;
  justify-content: flex-end;
  padding-right: 5px;
}
.project__description a {
  color: white;
  cursor: help;
  position: relative;
  -webkit-text-stroke-color: white;
  margin: 10px 0px;
}
.project__description a:after {
  content: "";
  position: absolute;
  background-color: #0110fb;
  width: 100%;
  height: 80%;
  top: 5px;
  left: -2px;
  padding: 0 4px;
  z-index: -1;
}
.project .super-rellax {
  display: grid;
  grid-template-columns: 70% 30%;
  grid-template-rows: 1fr;
  grid-template-areas: "image element";
  max-width: 100%;
  padding: 2em;
  align-items: flex-end;
}
.project .super-rellax:nth-child(odd) {
  grid-template-areas: "element image";
  grid-template-columns: 30% 70%;
}
.project .super-rellax:nth-child(odd) figure img {
  margin-left: auto;
}
.project .super-rellax figure {
  z-index: 10;
  display: flex;
}
.project figure img {
  max-width: 75%;
  max-height: 70vh;
  grid-area: image;
  z-index: 10;
}
.project figure img#hero-work {
  -moz-box-shadow: 30px 10px 40px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 30px 10px 40px rgba(0, 0, 0, 0.2);
  box-shadow: 30px 10px 40px rgba(0, 0, 0, 0.2);
}
.project .rellax {
  mix-blend-mode: lighten;
  grid-area: element;
  justify-items: center;
  z-index: -1;
}
.project .rellax img {
  max-width: 100%;
  opacity: 0.8;
}

.about {
  display: flex;
  align-items: center;
  width: 75vw;
  height: 100vh;
}
.about__text {
  display: flex;
  flex-direction: column;
  width: 33%;
  height: 75vh;
  text-align: right;
  z-index: 2;
}
.about__text span {
  height: 50%;
}
.about__text .contact {
  display: block;
}
.about__text .contact svg {
  margin: 10px 10px 10px 0;
  fill: #0110fb;
}
.about__text .bio {
  display: flex;
  align-items: flex-end;
  text-align: justify;
  width: 70%;
}
.about__text:last-of-type {
  text-align: left;
}
.about__text a {
  position: relative;
  display: inline-block;
  padding: 0 0.2em;
  margin: 0;
  appearance: none;
  background: transparent;
  border: 0;
  overflow-x: hidden;
  transition: color 0.5s ease;
}
.about__text a:after {
  content: "";
  position: absolute;
  top: 20%;
  left: 0;
  height: 17px;
  width: 0;
  background: #f70e07;
  transition: width 0.4s ease;
  z-index: -1;
}
.about__text a:hover {
  cursor: pointer;
  transition: color 0.5s ease;
}
.about__text a:hover:after {
  width: 100%;
  transition: width 0.4s ease;
}
.about__image {
  width: 33%;
  height: 75vh;
  background-image: url("/images/about.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  margin: 0 50px;
}
.about img {
  max-width: 50%;
  mix-blend-mode: hard-light;
  position: absolute;
}
.about .square-about {
  top: -10%;
  left: -30%;
  transform: rotate(-50deg);
}
.about .circle-about {
  top: 25%;
  right: -40%;
  transform: rotate(-50deg);
}
.about .triangle-about {
  bottom: -5%;
  left: -30%;
  transform: rotate(-50deg);
}
.about h1 {
  text-transform: none;
}

.contact {
  width: 80vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact > div {
  display: flex;
  width: 100%;
  flex-direction: column;
  text-align: center;
}
.contact > div:last-of-type {
  flex-direction: row;
}
.contact__header {
  display: block;
}
.contact__image {
  z-index: -1;
  user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -o-user-select: none;
}
.contact__image img {
  max-width: 300px;
}
.contact__image .square-contact {
  position: absolute;
  top: -15%;
  left: 20%;
}
.contact__image .square-2-contact {
  position: absolute;
  right: 20%;
  bottom: 25%;
  transform: rotate(150deg);
}
.contact__image .circle-contact {
  position: absolute;
  top: 30%;
  right: 53%;
}
.contact__image .circle-2-contact {
  position: absolute;
  top: -10%;
  right: 20%;
  transform: rotate(-160deg);
}
.contact__image .triangle-contact {
  position: absolute;
  bottom: 6%;
  left: 15%;
}
.contact__text {
  padding: 50px 0;
}
.contact__text > div {
  width: 50%;
  margin: 0 auto;
  padding: 0 2.5px;
}
.contact__text > div:first-of-type {
  text-align: right;
}
.contact__text > div:last-of-type {
  text-align: left;
}
.contact__text > div:last-of-type span {
  width: 30%;
}
.contact__text > div:last-of-type h2 {
  font-size: 2.5em;
}
.contact__text span {
  display: block;
  position: relative;
}
.contact__text a {
  position: relative;
  display: inline-block;
  transition: color 0.5s ease;
}
.contact__text a:after {
  content: "";
  position: absolute;
  top: 5%;
  left: -2px;
  height: 98%;
  width: 0;
  background: #f70e07;
  transition: width 0.4s ease;
  z-index: -1;
}
.contact__text a:hover {
  cursor: pointer;
  transition: color 0.5s ease;
}
.contact__text a:hover:after {
  width: 84%;
  transition: width 0.4s ease;
}
.contact__text a:focus {
  outline: 0;
}

footer {
  position: relative;
}
footer img {
  max-width: 100%;
  z-index: -999;
  position: fixed;
  bottom: 0;
  right: 0;
  width: 20vw;
  height: 35vh;
}
footer .logo {
  position: fixed;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20vw;
  height: 35vh;
}
@media only screen and (max-width: 1024px) {
  footer .logo {
    background-size: contain;
  }
}
footer .logo h2 {
  position: absolute;
  right: 25%;
  z-index: 100;
}
@media only screen and (max-width: 1024px) {
  footer .logo h2 {
    right: 25%;
    font-size: 2.5vw;
    bottom: 10%;
  }
}

/* Parallax base styles
--------------------------------------------- */
.parallax {
  height: 500px;
  /* fallback for older browsers */
  height: 70vh;
  width: 80vw;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-perspective: 50px;
  perspective: 50px;
  padding-top: 50px;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.parallax > div:last-of-type {
  height: 100%;
}
.parallax::-webkit-scrollbar {
  display: none;
}

.parallax__group {
  position: relative;
  height: 500px;
  /* fallback for older browsers */
  height: 100vh;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 1fr;
  grid-template-areas: "image element";
  margin: 0 0 100px 0;
  justify-items: center;
}
.parallax__group:nth-child(even) {
  grid-template-areas: "element image";
  justify-items: center;
}

.parallax__layer--base {
  -webkit-transform: translateZ(10px) translateY(-50%) scale(0.5);
  transform: translateZ(10px) translateY(-10%) scale(0.5);
  grid-area: element;
}
.parallax__layer--base img {
  max-width: 40vw;
  opacity: 0.8;
}

.parallax__layer--back {
  -webkit-transform: translateZ(-50px) scale(1.5);
  transform: translateZ(-50px) scale(1.5);
  grid-area: image;
}
.parallax__layer--back img {
  max-height: 75%;
}
.parallax__layer--back img#hero-work {
  -moz-box-shadow: 30px 10px 40px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 30px 10px 40px rgba(0, 0, 0, 0.2);
  box-shadow: 30px 10px 40px rgba(0, 0, 0, 0.2);
}

.parallax__group {
  -webkit-transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
}

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