*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: #181f1c #000;
}

body {
  position: relative;
  min-width: 350px;
  max-width: 2000px;
  max-height: 100vh;
  margin: 0 auto;
  overflow-x: hidden;
  font-family: "Fira Code", monospace;
  letter-spacing: 0.03em;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-underline-position: under;
}

img {
  display: block;
  max-width: 100%;
}

.button-cta {
  display: block;
  text-decoration: none;
  width: 100%;
  max-width: 230px;
  height: 50px;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #fff;
  border-radius: 3px;
  outline: 2.5px solid #9ea93f;
  outline-offset: -2.5px;
  margin-left: 10%;
  margin-top: 30px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .button-cta {
    margin-left: 0;
    margin-top: 0;
  }
}
.button-cta:hover {
  background: #181f1c;
  outline-color: #60712f;
}

nav {
  position: absolute;
  right: 30px;
  top: 35px;
  z-index: 999;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1280px) {
  nav {
    top: 20px;
    right: 20px;
  }
}
nav .logo {
  margin-right: auto;
  margin-left: 6.5%;
}
@media screen and (max-width: 480px) {
  nav .logo {
    padding-left: 15px;
  }
}
nav .logo a {
  position: relative;
  display: block;
}
nav .logo a img {
  display: block;
  width: 100%;
  max-width: 50px;
  opacity: 0.8;
  transition: all 0.3s ease-in-out;
}
nav .logo a:hover img {
  transform: scale(1.1);
}
nav ul {
  list-style: none;
  display: flex;
}
@media screen and (max-width: 740px) {
  nav ul {
    display: none;
  }
}
nav ul li {
  margin: 20px 35px;
}
nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  padding: 5px;
  font-family: "Fira Code", monospace;
  transition: all 0.3s ease;
}
nav ul li a:hover {
  color: #9ea93f;
  -webkit-text-decoration: underline #9ea93f;
          text-decoration: underline #9ea93f;
}
nav ul li:hover ~ .cursor {
  width: 55px;
  height: 55px;
  border-color: orangered;
}

.socialWrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: 25px;
}
.socialWrap a {
  display: block;
  margin: 0 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.socialWrap a i {
  display: block;
  color: #fff;
  font-size: 26px;
  transition: all 0.3s ease;
}
.socialWrap a:hover i {
  color: #9ea93f;
}

.headerSection {
  position: relative;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1280px) {
  .headerSection {
    display: block;
    height: auto;
  }
}
.headerSection .hero-wrapper,
.headerSection .hero-illustration {
  position: relative;
  z-index: 1;
  width: 50%;
}
@media screen and (max-width: 1280px) {
  .headerSection .hero-wrapper,
  .headerSection .hero-illustration {
    width: 100%;
  }
}
.headerSection .heroVideo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.headerSection::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}
.headerSection .hero-wrapper {
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 1280px) {
  .headerSection .hero-wrapper {
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
  }
}
.headerSection .hero-wrapper .hero-heading {
  padding-left: 10%;
  margin-top: -5vw;
}
@media screen and (max-width: 1280px) {
  .headerSection .hero-wrapper .hero-heading {
    margin-top: 0;
    padding: 25px 25px 0;
    text-align: center;
  }
}
.headerSection .hero-wrapper .hero-heading_first {
  font-size: clamp(32px, 3.385vw, 65px);
  font-weight: bold;
  line-height: 1.3;
}
.headerSection .hero-wrapper .hero-heading_first small {
  font-size: 18px;
  display: block;
  font-weight: 400;
}
.headerSection .hero-wrapper .hero-heading_second {
  margin-bottom: 5px;
}
.headerSection .hero-wrapper .hero-heading_second, .headerSection .hero-wrapper .hero-heading_des {
  display: block;
  font-weight: 400;
  font-family: "Fira Code", monospace;
  font-size: 16px;
  line-height: 2;
  max-width: 740px;
  text-wrap: balance;
  margin-block: 5px;
}
@media screen and (max-width: 640px) {
  .headerSection .hero-wrapper .hero-heading_second, .headerSection .hero-wrapper .hero-heading_des {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .headerSection .hero-wrapper .hero-heading_second, .headerSection .hero-wrapper .hero-heading_des {
    font-size: 14px;
  }
}
.headerSection .hero-wrapper .hero-heading_second a, .headerSection .hero-wrapper .hero-heading_des a {
  color: #9ea93f;
  text-underline-position: under;
  transition: all 0.3s ease;
}
.headerSection .hero-wrapper .hero-heading_second a:hover, .headerSection .hero-wrapper .hero-heading_des a:hover {
  color: #60712f;
}
.headerSection .hero-illustration svg {
  max-width: 100%;
}
@media screen and (max-width: 1280px) {
  .headerSection .hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 480px) {
  .headerSection .hero-illustration {
    margin-top: -20%;
  }
}
.headerSection .wave {
  position: absolute;
  left: 0;
  bottom: 0;
  max-width: 100%;
  z-index: -1;
  fill: #181f1c;
}

.portfolioSection {
  padding: 100px 0;
  background: #121212;
}
.portfolioSection h2 {
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 45px;
  text-transform: uppercase;
  font-family: "Fira Code", monospace;
  word-spacing: -0.2em;
}
.portfolioSection h2::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 150px;
  height: 7px;
  margin: 20px auto;
  background: #9ea93f;
}
@media screen and (max-width: 1280px) {
  .portfolioSection h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 740px) {
  .portfolioSection h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 480px) {
  .portfolioSection h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 420px) {
  .portfolioSection h2 {
    font-size: 25px;
  }
}
.portfolioSection .inner-wrap {
  margin: 0 5%;
}

.projects {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 60px -5px;
}
.projects .project {
  position: relative;
  width: calc(25% - 10px);
  margin: 0 5px 10px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1500px) {
  .projects .project {
    width: calc(33.3333333333% - 10px);
  }
}
@media screen and (max-width: 1100px) {
  .projects .project {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 740px) {
  .projects .project {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 480px) {
  .projects .project {
    width: calc(100% - 10px);
  }
}
.projects .project .image-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 220px;
  overflow: hidden;
  border-radius: 3px;
  overflow: hidden;
}
@media screen and (max-width: 640px) {
  .projects .project .image-wrap {
    max-height: auto;
  }
}
.projects .project .image-wrap.react:after {
  content: "Personal Project";
}
.projects .project .image-wrap::after {
  content: "Designed by iNET-Web";
  font-family: inherit;
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  text-align: center;
  padding: 3px 7px;
  font-size: 10px;
  font-weight: 400;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.01em;
  border-top-left-radius: 3px;
  background: #9ea93f;
}
.projects .project .image-wrap img {
  display: block;
  width: 100%;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: all 0.3s ease;
}
.projects .project span {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #fff;
  padding: 10px 0;
  text-overflow: ellipsis;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1500px) {
  .projects .project span {
    font-size: 15px;
  }
}
@media screen and (max-width: 1320px) {
  .projects .project span {
    font-size: 14px;
  }
}
.projects .project:hover .image-wrap img {
  opacity: 0.8;
}
.projects .project:hover span {
  color: #9ea93f;
  -webkit-text-decoration: underline #9ea93f;
          text-decoration: underline #9ea93f;
}

.contactSection {
  padding: 100px 25px;
  text-align: center;
  background: #181f1c;
}
.contactSection h2 {
  text-align: center;
  letter-spacing: 0.05em;
  font-size: 45px;
  text-transform: uppercase;
  font-family: "Fira Code", monospace;
  word-spacing: -0.2em;
}
.contactSection h2::after {
  content: "";
  display: block;
  width: 100%;
  max-width: 150px;
  height: 7px;
  margin: 20px auto;
  background: #9ea93f;
}
@media screen and (max-width: 1280px) {
  .contactSection h2 {
    font-size: 40px;
  }
}
@media screen and (max-width: 740px) {
  .contactSection h2 {
    font-size: 35px;
  }
}
@media screen and (max-width: 480px) {
  .contactSection h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 420px) {
  .contactSection h2 {
    font-size: 25px;
  }
}
.contactSection p {
  margin-block: 1em;
  line-height: 1.7;
  font-size: 18px;
  padding-top: 10px;
}
@media screen and (max-width: 740px) {
  .contactSection p {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .contactSection p {
    font-size: 14px;
  }
}
.contactSection .mail i {
  display: inline-block;
  margin-top: 10px;
  font-size: 50px;
  color: #fff;
  transition: all 0.3s ease;
}
.contactSection .mail i:hover {
  color: #9ea93f;
}

footer {
  width: 100%;
  text-align: center;
  font-size: 16px;
  background: #121212;
  padding: 20px 0;
  color: #fff;
}
footer i {
  margin-right: 10px;
  color: #ff0000;
  animation: heartbeat 0.7s ease-in infinite;
}

.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  pointer-events: none;
  border: 2px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.2);
  }
  50% {
    transform: scale(1.3);
  }
  75% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}/*# sourceMappingURL=style.css.map */