@import url("https://fonts.googleapis.com/css?family=PT+Mono&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inconsolata&display=swap");
/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

/* Global */
html {
  color: #c5c6c7;
  font-size: 10px;
  width: 100%;
  font-family: "Inconsolata", monospace;
  overflow-x: hidden;
  /* To remove horizontal scroll */ }

body {
  background: #0b0c10;
  min-height: 100vh;
  overflow-x: hidden; }

/* Reusable */
section {
  padding: 5rem 0; }

p {
  font-size: 2rem;
  font-weight: 300; }

a {
  text-decoration: none; }

.nav-link,
.about a {
  color: #66fcf1; }
  .nav-link:hover,
  .about a:hover {
    cursor: pointer;
    text-decoration: underline; }

img {
  width: 100%; }

.container {
  width: 95%;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative; }

.section-heading {
  text-align: center;
  margin-bottom: 10rem; }

.section-heading h1 {
  color: rgba(197, 198, 199, 0.5);
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  position: relative;
  text-transform: lowercase; }

.section-heading h1::before,
.section.heading h1::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(197, 198, 199, 0.75); }

.section-heading h1::before {
  border-radius: 0.8rem;
  height: 0.3rem;
  width: 10rem; }

.section-heading h1::after {
  border-radius: 100%;
  bottom: -1rem;
  height: 1.5rem;
  width: 1.5rem; }

.section-heading h6 {
  font-size: 1.6rem;
  font-weight: 300; }

.no-select {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
               supported by Chrome, Opera and Firefox */ }

.flex {
  display: flex;
  align-items: center; }

/* Home */
.home {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100vh; }

.top-nav.sticky {
  animation: popDown 0.5s;
  left: 0;
  position: fixed;
  right: 0;
  top: 0; }

.top-nav.sticky,
.top-nav.open {
  background-color: rgba(31, 40, 51, 0.95); }

.top-nav {
  border-bottom-right-radius: 100%;
  border-bottom-left-radius: 100%;
  position: fixed;
  top: -100vh;
  z-index: 4000;
  height: 100vh;
  transition: all 650ms cubic-bezier(1, 0, 0, 1);
  width: 100%;
  background-color: rgba(11, 12, 16, 0.9); }
  .top-nav .nav-list {
    list-style: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }

li {
  margin: 2rem; }

.nav-link {
  color: #c5c6c7;
  font-size: 2.1rem;
  padding: 1rem;
  text-align: center;
  text-transform: lowercase;
  transition: 0.2s all ease-in; }

.nav-link:hover,
.nav-link:focus,
.nav-link.active {
  color: #66fcf1; }

.top-nav.open {
  top: 0;
  position: fixed;
  border-radius: initial; }

.menu-toggler {
  position: fixed;
  top: 5rem;
  right: 5rem;
  width: 3rem;
  height: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  z-index: 5000; }

.bar {
  position: relative;
  width: 100%;
  height: 0.2rem;
  background-color: #66fcf1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 650ms ease-in-out; }

.menu-toggler:hover > .bar {
  background-color: #45a29e; }

.bar:before,
.bar:after {
  content: "";
  position: absolute;
  top: -1rem;
  width: 100%;
  height: 0.2rem;
  background: inherit; }

/* Make X menu-toggler */
.bar.open {
  transform: rotate(135deg); }

.bar.open:before,
.bar.open:after {
  top: 0;
  transform: rotate(90deg); }

.bar:after {
  top: 1rem; }

/* Make X */
/* Rotate X on hover */
.menu-toggler.open:hover > .bar {
  transform: rotate(225deg); }

/* Rotate X on hover */
.landing-text {
  width: 100%;
  text-align: center;
  z-index: 1; }

.landing-text h1,
.landing-text h6 {
  text-shadow: 2px 2px 2px #1f2833;
  font-weight: 200;
  margin: 0.4rem; }

.landing-text h1 {
  font-family: "PT mono", monospace;
  font-size: 6rem;
  padding: 1rem;
  color: #66fcf1; }

.landing-text h6 {
  font-size: 2.6rem;
  font-weight: 300;
  color: #c5c6c7; }

.social-media {
  z-index: 2000; }
  .social-media .nav-list {
    list-style: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center; }

.social-media i {
  font-size: 3rem;
  transition: color 650ms;
  color: #c5c6c7; }

.social-media i:hover {
  color: #66fcf1; }

/* Cursor */
.txt-type > .txt:after {
  content: "";
  box-shadow: 2px 2px 2px #1f2833;
  border-right: 0.05em solid;
  animation: blink 1s steps(1) infinite; }

/* End header */
/* Start about */
.about .container {
  padding-top: 5rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center; }

.about-heading {
  text-align: center;
  text-transform: uppercase;
  line-height: 0;
  margin-bottom: 6rem; }

.about-heading h1 {
  font-size: 10rem;
  opacity: 0.3; }

.about-heading h6 {
  font-size: 2rem;
  font-weight: 300; }

.profile-img {
  max-width: 75%;
  margin: 0 0 7rem 0; }

.about-details p {
  font-size: 1.5rem;
  line-height: 2.5rem; }

/* End about */
/* Start portfolio */
.filter-wrapper {
  width: 100%;
  display: flex;
  justify-content: center; }
  .filter-wrapper ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    margin-bottom: 1.5rem; }

.filter {
  font-size: 1.7rem;
  border: none;
  outline: none;
  padding: 0 0.7rem;
  background: transparent;
  color: inherit;
  cursor: pointer;
  transition: 0.4s all ease-in; }
  .filter.active {
    background: #66fcf1;
    color: #0b0c10; }
  .filter.active, .filter:hover {
    text-decoration: underline; }

/* Modal */
.modal-wrap {
  display: none;
  /* Hidden by default */
  align-items: center;
  /* Center vertically*/
  justify-content: center;
  /* Center horizontally*/
  position: fixed;
  /* Stay in place */
  z-index: 6000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100vw;
  /* Full width */
  height: 100vh;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.4);
  /* Black w/ opacity */ }

.modal-content {
  background-color: #0b0c10;
  width: 100%;
  /* Could be more or less, depending on screen size */
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed; }
  .modal-content .carousel {
    background: url("../images/hex.gif") center no-repeat;
    position: relative;
    height: 0;
    width: 100%;
    padding-bottom: 56.25%; }

.carousel-image {
  position: absolute;
  height: 100%;
  object-fit: cover;
  top: 0; }

.carousel-video {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

.info-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
  width: 100%;
  padding: 2.5rem;
  /* Top, Right, Bottom, Left */ }

.info-wrap .title {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 0.2rem; }
.info-wrap .tag {
  border-bottom: 1px solid #c5c6c7;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  width: 100%; }
.info-wrap .detail {
  font-size: 1.5rem;
  white-space: pre-wrap; }

.button-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  vertical-align: middle;
  width: 100%; }
  .button-wrap .button {
    background: #66fcf1;
    border: none;
    color: #0b0c10;
    font-size: 1.5rem;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
    margin-right: 1rem;
    transition: 0.5s all ease-in; }
    .button-wrap .button i {
      margin-right: 0.7rem; }
    .button-wrap .button:hover {
      background: #0b0c10;
      color: #66fcf1; }

#modal-button {
  display: flex;
  flex-wrap: wrap; }

.close {
  order: 2;
  font-size: 2.5rem;
  color: #bbb;
  cursor: pointer;
  vertical-align: middle;
  transition: color 650ms; }
  .close:hover {
    color: #66fcf1; }

#gallery {
  display: grid;
  row-gap: 0;
  grid-template-columns: 1;
  gap: 0.5rem; }

.portfolio-img img {
  object-fit: cover;
  height: 100%; }

.portfolio-item {
  display: inline-flex;
  position: relative;
  justify-content: space-around;
  animation: fadeIn 1s; }
  .portfolio-item:hover .portfolio-img {
    opacity: 0.1; }
  .portfolio-item:hover .portfolio-text {
    cursor: default;
    opacity: 1;
    top: 24%; }
  .portfolio-item:hover button {
    bottom: 24%;
    opacity: 1; }
  .portfolio-item button {
    color: inherit;
    padding: 5px 25px;
    font-size: 1.7rem;
    position: absolute;
    border-style: solid;
    opacity: 0;
    bottom: 0;
    background: transparent;
    text-align: center;
    transition: all 0.5s ease-in-out; }
    .portfolio-item button:hover {
      border-color: #66fcf1;
      background: #66fcf1;
      color: #0b0c10; }

.portfolio-img {
  max-width: 100%;
  transition: all 0.5s; }

.portfolio-text {
  top: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  position: absolute;
  width: 100%;
  transition: all 0.3s ease-in-out; }

.portfolio-title {
  font-size: 2.1rem; }

.highlight {
  color: #66fcf1;
  font-size: 1.6rem; }

/* End portfolio */
/* Start contact */
.contact {
  height: 100%; }

.info-wrapper {
  display: flex;
  align-items: center;
  text-align: center;
  flex-direction: column;
  justify-content: space-around;
  width: 95%;
  margin: 0 auto; }

.extra-info {
  order: 2;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%; }

.info {
  text-decoration: none;
  display: flex;
  color: inherit;
  align-items: center;
  vertical-align: middle;
  flex-direction: row;
  margin-top: 2.5rem;
  width: 100%; }
  .info:hover h1 {
    text-decoration: underline; }
  .info i {
    color: #66fcf1;
    font-size: 2.5rem; }

.info-link {
  display: none;
  border-right: 1px solid #c5c6c7;
  text-align: right;
  margin-right: 1.5rem;
  padding-right: 1.5rem;
  width: 80%; }
  .info-link h1 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem; }
    .info-link h1:last-child {
      margin-bottom: 0; }

form {
  order: 1;
  display: inline-block;
  width: 95%; }

form label {
  font-size: 1.7rem;
  line-height: 5rem;
  position: absolute;
  transition: 0.5s;
  opacity: 0.5; }

input,
textarea,
button[type="submit"] {
  position: relative;
  width: 100%;
  height: 5rem;
  border: none;
  outline: none;
  color: white; }

.input-box.focus label {
  transform: translateY(-2rem);
  font-size: 1.5rem;
  opacity: 1;
  color: #66fcf1; }

textarea {
  height: 10rem;
  padding-top: 2rem; }

input,
textarea {
  font-size: 1.4rem;
  background: transparent;
  border-bottom: 2px solid #c5c6c7; }

button[type="submit"] {
  font-size: 1.5rem;
  height: 3rem;
  margin-left: 50%;
  margin-top: 2.5rem;
  width: 50%;
  background: transparent;
  border: 1px solid #c5c6c7;
  color: #c5c6c7;
  cursor: pointer;
  transition: all 650ms; }

button[type="submit"]:hover {
  background-color: #66fcf1;
  border: none;
  color: #0b0c10; }

/* Remove autofill colors */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-animation: autofill 0s forwards;
  animation: autofill 0s forwards; }

@keyframes autofill {
  100% {
    background: transparent;
    color: inherit; } }
@-webkit-keyframes autofill {
  100% {
    background: transparent;
    color: inherit; } }
/* End contact */
/* Start footer */
.copyright {
  width: 100%;
  text-align: center;
  border-top: 2px solid #1f2833;
  padding: 2rem 0;
  position: relative; }

.up {
  position: absolute;
  width: 5rem;
  height: 5rem;
  background-color: #66fcf1;
  top: -2.5rem;
  right: 5rem;
  border-radius: 100%;
  display: flex;
  cursor: pointer;
  animation: pulse 2s infinite; }

.up i {
  color: #0b0c10;
  font-size: 2rem;
  margin: auto; }

.copyright p {
  font-size: 1.4rem; }

/* End footer */
/* Start animation */
@keyframes blink {
  50% {
    border-color: transparent;
    box-shadow: none; } }
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(115, 138, 144, 0.99); }
  70% {
    box-shadow: 0 0 0 2rem rgba(115, 138, 144, 0); }
  100% {
    box-shadow: 0 0 0 0 rgba(115, 138, 144, 0); } }
@keyframes popDown {
  0% {
    transform: translateY(-10rem); } }
@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }
/* Media Queries */
@media only screen and (min-width: 1024px) {
  .menu-toggler {
    display: none; }

  .top-nav {
    border-radius: 0;
    top: unset;
    position: absolute;
    bottom: 0;
    height: 5vh; }
    .top-nav .nav-list {
      flex-direction: row; }

  .about .container {
    justify-content: space-around;
    flex-direction: row; }

  .profile-img,
  .about-details {
    flex: unset; }

  .profile-img {
    max-width: 25%; }

  .about-details {
    max-width: 65%; }

  #gallery {
    grid-template-columns: repeat(2, 1fr); } }
@media only screen and (min-width: 1366px) {
  .container {
    max-width: 1297.7px; }

  .about .container {
    min-height: 100vh; }

  #gallery {
    grid-template-columns: repeat(3, 1fr); }

  .modal-content {
    width: 45%;
    height: 95%; }

  .info-wrapper {
    flex-direction: row; }

  .extra-info {
    order: 1;
    flex-direction: column;
    width: 25%; }

  .info-link {
    display: block; }

  form {
    order: 2;
    width: 55%; } }
@media only screen and (min-width: 1920px) {
  .container {
    max-width: 1824px; }

  .about-details p {
    font-size: 2rem;
    line-height: 3rem; }

  .filter {
    font-size: 2.3rem; }

  .section-heading h1 {
    font-size: 5rem; } }
@media only screen and (min-width: 3840px) {
  html {
    font-size: 18px; } }

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