* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  list-style: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

html * {
  scroll-behavior: smooth;
  cursor: none;
}

html * ::-moz-selection {
  background: #3df515;
}

html * ::selection {
  background: #3df515;
}

::-webkit-scrollbar {
  display: none;
}

body {
  background-color: #121212;
  color: #f0f0f0;
  font-family: futura-pt, sans-serif;
  font-size: 20px;
}

@media (hover: hover) and (pointer: fine) {
  #cursor {
    height: 38px;
    width: 38px;
    background: #f0f0f0;
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    mix-blend-mode: difference;
    z-index: 999;
    top: -100px;
    left: -100px;
    margin-left: -17px;
    margin-top: -15px;
  }
  #cursor.click {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
  }
}

.loader-wrapper {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #161519;
  z-index: 999;
}

.loader-wrapper.hidden {
  -webkit-animation: fadeOut .5s;
          animation: fadeOut .5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.loader-wrapper .loader {
  width: 100%;
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-animation: loader 2s infinite ease;
          animation: loader 2s infinite ease;
}

.loader-wrapper .loader .loader-text {
  color: #f0f0f0;
  font-family: acumin-pro-wide, sans-serif;
  font-size: 1.1em;
  font-weight: bold;
  text-transform: capitalize;
  -webkit-animation: fadeInOut 1s linear infinite;
          animation: fadeInOut 1s linear infinite;
}

.loader-wrapper .loader img {
  height: 40vw;
  max-height: 500px;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}

@-webkit-keyframes fadeInOut {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@keyframes fadeInOut {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

@-webkit-keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  100% {
    opacity: 0;
    visibility: hidden;
  }
}

a {
  color: #f0f0f0;
  line-height: 2em;
  text-decoration: none;
}

.noise {
  background: url(./images/noise.png) repeat;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  -webkit-animation: noise-anim 0.5s steps(10) infinite;
          animation: noise-anim 0.5s steps(10) infinite;
}

@-webkit-keyframes noise-anim {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

@keyframes noise-anim {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 100% 100%;
  }
}

header {
  margin-left: 4vw;
  margin-right: 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  height: 60px;
  position: absolute;
  width: calc(100% - 8vw);
  z-index: 99;
}

header #logo {
  font-weight: 500;
  letter-spacing: .4px;
  line-height: 2em;
}

nav li {
  font-weight: 500;
  letter-spacing: 4px;
}

ul li {
  display: inline-block;
  padding-left: 1.2em;
  letter-spacing: 0.2px;
}

ul li a {
  position: relative;
  display: block;
  text-align: center;
  margin: 0;
  color: transparent;
}

ul li a:hover:before {
  color: #f0f0f0;
  -webkit-transform: translate(-3px, -2px);
          transform: translate(-3px, -2px);
}

ul li a:hover:after {
  color: #f0f0f0;
  -webkit-transform: translate(3px, 2px);
          transform: translate(3px, 2px);
}

ul li a:before, ul li a:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #f0f0f0;
  -webkit-transition: .5s;
  transition: .5s;
}

ul li a:before {
  -webkit-clip-path: polygon(0 53%, 100% 54%, 100% 0, 0 0);
          clip-path: polygon(0 53%, 100% 54%, 100% 0, 0 0);
}

ul li a:after {
  -webkit-clip-path: polygon(0 100%, 99% 100%, 100% 53%, 0 53%);
          clip-path: polygon(0 100%, 99% 100%, 100% 53%, 0 53%);
}

.hero {
  margin-left: 4vw;
  margin-right: 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  margin-bottom: 0;
}

.hero .content {
  max-width: 1200px;
}

.hero .content h1 {
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 800;
  font-size: 84px;
  line-height: 1em;
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .hero .content h1 {
    font-size: 76px;
  }
}

@media screen and (max-width: 768px) {
  .hero .content h1 {
    font-size: 9vw;
  }
}

@media screen and (min-width: 1300px) {
  .hero .content h1 {
    font-size: 100px;
  }
}

.hero .content h1 span {
  display: block;
  letter-spacing: -0.05em;
}

.hero .scroll {
  position: absolute;
  right: 0;
  top: 96vh;
}

.hero .scroll .scroll-text {
  letter-spacing: 1.2px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: right top 0;
          transform-origin: right top 0;
  float: right;
}

.hero .scroll .scroll-text:after {
  content: "";
  display: block;
  float: right;
  margin-top: .6em;
  border-top: 1px solid #fff;
  width: 95px;
  margin-left: 10px;
}

section {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  section {
    margin-bottom: 40px;
  }
}

.section-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
  overflow-y: hidden;
  white-space: nowrap;
  direction: rtl;
}

.section-intro:nth-child(2) {
  direction: ltr;
}

.section-intro:nth-child(3) {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .section-intro:nth-child(3) {
    margin-bottom: 40px;
  }
}

.section-intro h2 {
  text-transform: uppercase;
  opacity: .3;
  font-size: 10vw;
  font-family: acumin-pro-wide, sans-serif;
  font-weight: 800;
  line-height: 1em;
  color: transparent;
  -webkit-text-stroke: 2px #f0f0f0;
}

@media screen and (max-width: 768px) {
  .section-intro h2 {
    opacity: .6;
    -webkit-text-stroke: 1.5px #f0f0f0;
  }
}

@media screen and (max-width: 600px) {
  .section-intro h2 {
    -webkit-text-stroke: 1.2px #f0f0f0;
  }
}

.section-intro h2.filled {
  opacity: .9;
  color: #f0f0f0;
  -webkit-text-stroke: 2px #f0f0f0;
}

a.anchor {
  display: block;
  position: relative;
  top: -35px;
  visibility: hidden;
}

.grid {
  margin-left: 4vw;
  margin-right: 4vw;
  display: -ms-grid;
  display: grid;
  grid-gap: 16px;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fill];
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.grid .item {
  padding-top: 75%;
  overflow: hidden;
  position: relative;
}

.grid .item:nth-child(3), .grid .item:nth-child(4) {
  grid-row: span 2;
}

.grid .item:nth-child(6) {
  grid-column: span 2;
  padding-top: 37.5%;
}

@media screen and (max-width: 1013px) {
  .grid .item:nth-child(6) {
    grid-column: span 1;
    padding-top: 75%;
  }
  .grid .item:nth-child(6) img {
    height: 165%;
    top: -60%;
  }
}

@media screen and (min-width: 1300px) {
  .grid .item:nth-child(6) {
    padding-top: 0;
  }
}

.grid .item img {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(60%);
          filter: grayscale(60%);
  opacity: .6;
  -webkit-transition: -webkit-transform .8s;
  transition: -webkit-transform .8s;
  transition: transform .8s;
  transition: transform .8s, -webkit-transform .8s;
}

.grid .item img:hover {
  -webkit-transform: scale(1.04);
          transform: scale(1.04);
  -webkit-filter: grayscale(30%);
          filter: grayscale(30%);
  opacity: .7;
}

@media screen and (min-width: 1300px) {
  .grid .item {
    padding-top: 0;
  }
}

@media screen and (min-width: 1300px) {
  .grid {
    -ms-grid-columns: (minmax(30%, 1fr))[auto-fill];
        grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    grid-auto-rows: 400px;
  }
}

.project-modal {
  display: none;
  position: fixed;
  z-index: 99;
  height: 90%;
  width: 80vw;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: scroll;
  -webkit-box-shadow: 0 50px 180px 0 rgba(18, 18, 18, 0.8);
          box-shadow: 0 50px 180px 0 rgba(18, 18, 18, 0.8);
  background-color: #121212;
  border: 1px solid #2e2e2e;
  border-bottom: none;
  margin: 0 auto;
  -webkit-animation: slideUp .5s;
          animation: slideUp .5s;
}

.project-modal.show {
  display: block;
}

.project-modal img {
  height: 300px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-filter: grayscale(40%);
          filter: grayscale(40%);
}

@media screen and (max-width: 768px) {
  .project-modal img {
    height: 200px;
  }
}

@media screen and (max-width: 600px) {
  .project-modal img {
    height: 180px;
  }
}

.project-modal .close {
  position: absolute;
  right: 0;
  padding: 6px 8px;
  z-index: 99;
}

.project-modal .close ion-icon {
  font-size: 34px;
}

.project-modal.modal-close {
  -webkit-animation: slideDown .5s linear;
          animation: slideDown .5s linear;
}

@-webkit-keyframes slideDown {
  from {
    margin-bottom: 0;
    opacity: 1;
  }
  to {
    margin-bottom: -100vh;
    opacity: 0;
  }
}

@keyframes slideDown {
  from {
    margin-bottom: 0;
    opacity: 1;
  }
  to {
    margin-bottom: -100vh;
    opacity: 0;
  }
}

@-webkit-keyframes slideUp {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    bottom: -300px;
    opacity: 0;
  }
  to {
    bottom: 0;
    opacity: 1;
  }
}

.modal-content {
  margin: 0 6vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding: 50px 0;
}

@media screen and (max-width: 768px) {
  .modal-content {
    margin: 0 6vw;
    padding-top: 6vw;
  }
}

@media screen and (max-width: 600px) {
  .modal-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.modal-content h1 {
  font-size: 36px;
}

@media screen and (max-width: 768px) {
  .modal-content h1 {
    font-size: 4.5vw;
  }
}

@media screen and (max-width: 600px) {
  .modal-content h1 {
    font-size: 6.5vw;
  }
}

.modal-content h2 {
  color: #777;
  font-size: 15px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .10em;
  margin-bottom: 1px;
}

.modal-content p {
  margin: 10px 0 26px 0;
}

.modal-content .main-content {
  margin-right: 30px;
  border-right: 1px solid #2e2e2e;
  padding-right: 30px;
  width: 80%;
}

@media screen and (max-width: 768px) {
  .modal-content .main-content {
    margin-right: 15px;
    padding-right: 15px;
    width: 75%;
  }
}

@media screen and (max-width: 600px) {
  .modal-content .main-content {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
    padding-bottom: 30px;
    border-bottom: 1px solid #2e2e2e;
    width: 100%;
  }
}

.modal-content .main-content ion-icon {
  font-size: 18px;
}

.modal-content .main-content .project-btn {
  letter-spacing: 1.2px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  border: solid #212121;
  border-width: 1px 1px 2px 1px;
  padding: 8px 14px;
  background-color: #333;
  border-radius: 3px;
  font-weight: 500;
  letter-spacing: .2px;
  margin-right: 3px;
}

.modal-content .main-content .project-btn:hover {
  -webkit-transition: .1s ease-in-out;
  transition: .1s ease-in-out;
  background-color: #444;
}

.modal-content .main-content .project-btn ion-icon {
  margin-bottom: -4px;
}

.modal-content .main-content .project-btn ion-icon:nth-child(1) {
  padding-right: 2px;
}

.modal-content .tags {
  width: 20%;
}

.modal-content .tags h2 {
  margin-bottom: 6px;
}

.modal-content .tags li {
  display: inline-block;
  background-color: #1f1f1f;
  margin: 0 4px 3px 0;
  padding: 4px 10px;
  font-size: 14px;
  border-radius: 4px;
  letter-spacing: .4px;
  text-transform: capitalize;
}

@media screen and (max-width: 600px) {
  .modal-content .tags li {
    margin-right: 0.5em;
  }
}

@media screen and (max-width: 768px) {
  .modal-content .tags {
    width: 25%;
  }
}

@media screen and (max-width: 600px) {
  .modal-content .tags {
    margin-top: 20px;
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .modal-content .tags .tags-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.modal-overlay {
  z-index: 98;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #121212c2;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s, visibility .5s;
  transition: opacity .5s, visibility .5s;
}

.modal-overlay.show {
  visibility: visible;
  opacity: 1;
}

.about {
  margin-bottom: 160px;
}

@media screen and (max-width: 768px) {
  .about {
    margin-bottom: 80px;
  }
}

.about .content {
  width: 60vw;
  margin: 0 auto;
  font-size: 2em;
  text-align: left;
  line-height: 1.4em;
}

.about .content .wave {
  display: inline-block;
  -webkit-transform-origin: 70% 70%;
          transform-origin: 70% 70%;
  -webkit-animation: wave-anim 3s infinite;
          animation: wave-anim 3s infinite;
  margin-left: -2px;
  margin-right: 1px;
}

@-webkit-keyframes wave-anim {
  0%, 50%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  20% {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
  30% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  40% {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
}

@keyframes wave-anim {
  0%, 50%, 100% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  10% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  20% {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
  30% {
    -webkit-transform: rotate(12deg);
            transform: rotate(12deg);
  }
  40% {
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
}

@media screen and (max-width: 768px) {
  .about .content {
    font-size: 5vw;
    width: 70vw;
  }
}

@media screen and (min-width: 1300px) {
  .about .content {
    font-size: 2.5em;
  }
}

.about .content p {
  margin-bottom: 30px;
}

.contact {
  margin: 50px 0;
}

@media screen and (max-width: 768px) {
  .contact {
    margin: 0;
  }
}

.contact h3 {
  line-height: 2.6em;
  font-size: 30px;
  font-weight: 400;
  display: inline-block;
}

.contact span {
  margin-left: 5px;
  font-size: 1.2em;
  top: 5px;
  position: relative;
}

.contact span ion-icon {
  margin-bottom: -3px;
  margin-left: -13px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  font-size: 34px;
  -webkit-transform-origin: 50% 51%;
}

.contact a {
  font-size: 50px;
  font-weight: bold;
  display: inline;
  padding-bottom: 3px;
  line-height: 1em;
  position: relative;
}

.contact a::after {
  content: "";
  position: absolute;
  height: 5px;
  width: 100%;
  background: #f0f0f0;
  left: 0px;
  bottom: -6px;
  mix-blend-mode: exclusion;
  -webkit-transition: .3s;
  transition: .3s;
}

.contact a:hover::after {
  height: calc(100% + 10px);
}

@media screen and (max-width: 768px) {
  .contact a {
    font-size: 7vw;
  }
}

footer {
  margin-left: 4vw;
  margin-right: 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-top: 1px solid #aaa;
  padding: 40px 0;
  height: 16vh;
}

footer .copyright p {
  letter-spacing: 1.2px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 500;
  color: #777;
}

footer .copyright p ion-icon {
  margin-bottom: -2px;
}

@media screen and (max-width: 600px) {
  footer .copyright p {
    display: none;
  }
}

footer .social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1em;
  font-weight: bold;
}

footer .social li {
  font-family: acumin-pro-wide, sans-serif;
}

footer .social li a {
  line-height: 1em;
}
/*# sourceMappingURL=style.css.map */