* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-collapse: inherit;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

ul {
  list-style: none;
}

body,
html {
  width: 100%;
  height: 100%;
}

html {
  font-size: 16px;
  font-family: 'Poppins';
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: #100f0f;
  color: #fcf6f4;
}

a,
a:visited {
  color: #fcf6f4;
  text-decoration: none;
}

.container {
  padding: 0 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  max-width: 1600px;
}

@media (min-width: 576px) {
  .container {
    margin: 0 auto;
    padding: 0px 3rem;
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0px 4rem;
  }
}

@media (min-width: 992px) {
  .container {
    padding: 0px 5rem;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0px 6rem;
  }
}

h1 {
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 100%;
}

@media (min-width: 992px) {
  h1 {
    font-size: 4rem;
    font-weight: 700;
  }
}

h2 {
  font-size: 2.25rem;
  line-height: 110%;
  margin-top: 1rem;
}

@media (min-width: 992px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.25rem;
  color: #fcf6f4;
  margin-top: 1.25rem;
}

p {
  font-size: 1rem;
  line-height: 150%;
}

@media (min-width: 992px) {
  p {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .hide-for-mobile {
    display: none;
  }
}

.underline {
  color: #fcf6f4;
}

.underline::after {
  content: '';
  width: 0;
  height: 1px;
  background: #fcf6f4;
  display: block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: width 0.3s 0.1s ease-in-out;
  transition: width 0.3s 0.1s ease-in-out;
}

.underline:hover::after {
  width: 100%;
}

.btn {
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 1rem 2.5rem;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
  font-weight: 500;
}

.btn:hover {
  background-color: #00c65c;
}

.no-scroll {
  overflow-y: hidden;
}

.gs_reveal {
  opacity: 0;
  visibility: hidden;
  will-change: transform, opacity;
}

.scroll-top {
  position: fixed;
  bottom: 3rem;
  right: 2rem;
  color: #fcf6f4;
  width: 4rem;
  height: 4rem;
  background-color: #222222;
  border: none;
  display: -ms-grid;
  display: grid;
  opacity: 0;
  place-content: center;
  cursor: pointer;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
}

@media (min-width: 576px) {
  .scroll-top {
    bottom: 4rem;
    right: 3rem;
  }
}

@media (min-width: 768px) {
  .scroll-top {
    right: 4rem;
  }
}

@media (min-width: 992px) {
  .scroll-top {
    right: 5rem;
  }
}

@media (min-width: 1200px) {
  .scroll-top {
    right: 6rem;
  }
}

.scroll-top img {
  width: 1.5rem;
  -webkit-transform: rotate(180%);
  transform: rotate(180%);
}

@media (min-width: 768px) {
  .scroll-top img {
    width: 2rem;
  }
}

.scroll-top--active {
  opacity: 0.8;
}

.header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 6rem;
  z-index: 3;
}

@media (min-width: 768px) {
  .header {
    width: 100%;
    height: 6rem;
    position: fixed;
    backdrop-filter: blur(5px);
  }
}

.header__logo {
  display: -ms-grid;
  display: grid;
  place-items: center;
  z-index: 99;
}

.menu-btn {
  z-index: 99;
  width: 32px;
  display: block;
  height: 1.5rem;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

@media (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn span {
  display: block;
  position: absolute;
  height: 1px;
  width: 100%;
  background: #fcf6f4;
  border-radius: 5px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}

.menu-btn span:nth-child(1) {
  top: 0px;
  left: 8px;
  width: 24px;
}

.menu-btn span:nth-child(2),
.menu-btn span:nth-child(3) {
  top: 8px;
}

.menu-btn span:nth-child(4) {
  top: 16px;
  left: 12px;
  width: 20px;
}

.menu-btn--active span:nth-child(1) {
  top: 8px;
  width: 0%;
  left: 50%;
}

.menu-btn--active span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-btn--active span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.menu-btn--active span:nth-child(4) {
  top: 8px;
  width: 0%;
  left: 50%;
}

@media (max-width: 767px) {
  .nav {
    display: none;
  }
}

.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.nav__item {
  margin-right: 2rem;
  font-size: 1rem;
}

.nav__item a {
  color: #aaa;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav__item a:hover,
.nav__item a:active {
  color: #fff;
}

.nav-mobile {
  position: fixed;
  padding: 10rem 2rem;
  width: 100vw;
  top: 0;
  left: 100vw;
  right: 0;
  bottom: 0;
  background-color: #100f0f;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  z-index: 2;
  height: 100vh;
}

.nav-mobile--active {
  -webkit-transform: translateX(-100vw);
  transform: translateX(-100vw);
}

.nav-mobile:after {
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  content: '';
  position: absolute;
  background-position: 50%;
  background-image: url('../../images/noise.png');
  -webkit-animation: noise 1s steps(2) infinite;
  animation: noise 1s steps(2) infinite;
  z-index: -1;
}

.nav-mobile__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.nav-mobile__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: inline-block;
  -ms-flex-negative: 2;
  flex-shrink: 2;
  font-size: 2.5rem;
  font-weight: 600;
  z-index: 99;
  margin-bottom: 0.5rem;
}

.nav-mobile__item a {
  color: #aaa;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-mobile__item a:hover,
.nav-mobile__item a:active {
  color: #fff;
}

.nav-mobile__contact {
  margin-top: 5rem;
}

.nav-mobile__contact-title {
  font-size: 1.25rem;
  font-weight: 500;
  color: #00c65c;
}

.active:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #fcf6f4;
  display: block;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: width 0.3s 0.1s ease-in-out;
  transition: width 0.3s 0.1s ease-in-out;
}

.active a {
  color: #fcf6f4;
}

ul {
  list-style: none;
}

.section {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  padding-top: 8rem;
  padding-bottom: 8rem;
}

@media (min-width: 768px) {
  .section {
    -ms-grid-columns: 50% 50%;
    grid-template-columns: 50% 50%;
    -ms-flex-line-pack: center;
    align-content: center;
  }
}

@media (min-width: 768px) {
  .section__column1 {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-right: 3rem;
  }
}

.section__column2 {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .section__column2 {
    display: -ms-grid;
    display: grid;
    -ms-flex-line-pack: center;
    align-content: center;
    margin-left: 3rem;
    margin-top: 0;
  }
}

.section__title {
  color: #00c65c;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.section__title > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 2rem;
  height: 2px;
  margin-right: 1rem;
  background: #00c65c;
  font-size: 1.25rem;
}

.section__desc {
  color: #969696;
  margin-top: 1.5rem;
}

.sample-page {
  -ms-grid-columns: 100%;
  grid-template-columns: 100%;
  text-align: justify;
}

.sample-page h1,
.sample-page h2,
.sample-page h3,
.sample-page h4 {
  letter-spacing: normal;
  margin: 1rem 0;
  line-height: 100%;
}

.sample-page h1 {
  font-size: 2rem;
}

.sample-page h2 {
  font-size: 1.5rem;
}

.sample-page h3 {
  font-size: 1rem;
}

.sample-page p {
  margin: 1rem 0rem;
}

.sample-page ul {
  list-style: circle !important;
  padding-left: 1rem;
}

h1.title {
  padding: 4rem 0;
  font-size: 3rem !important;
}

@media (min-width: 768px) {
  h1.title {
    font-size: 7rem !important;
  }
}

.thank-you h1 {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  letter-spacing: normal;
}

@media (min-width: 768px) {
  .thank-you h1 {
    font-size: 4rem;
  }
}

.thank-you P {
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.thank-you a {
  -ms-flex-item-align: start;
  align-self: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0;
}

.hero {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-flex-line-pack: end;
  align-content: flex-end;
  padding-top: 10rem;
  padding-bottom: 7rem;
}

@media (min-width: 768px) {
  .hero {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-flex-line-pack: center;
    align-content: center;
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}

.hero__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  z-index: 1;
}

@media (min-width: 768px) {
  .hero__text {
    -ms-flex-line-pack: center;
    align-content: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.hero__title {
  font-size: 1.5rem;
  color: #00c65c;
  margin-bottom: 1rem;
}

.hero p {
  margin-top: 2rem;
  padding-right: 3rem;
}

.scroll-icon {
  margin-top: 4rem;
}

.scroll-icon > img {
  -webkit-animation: animation1 1.5s infinite;
  animation: animation1 2s infinite;
}

.scroll-icon > a {
  margin-left: 10px;
  color: #00c65c;
}

@-webkit-keyframes animation1 {
  0% {
    -webkit-transform: translate(0, -5px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0px, 3px);
    opacity: 0;
  }
}

@keyframes animation1 {
  0% {
    -webkit-transform: translate(0, -5px);
    transform: translate(0, -5px);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0px, 3px);
    transform: translate(0px, 3px);
    opacity: 0;
  }
}

.illustration {
  width: 100%;
}

@media (max-width: 575px) {
  .illustration {
    display: none;
  }
}

.illustration img {
  width: 100%;
}

.swiper {
  width: 100%;
}

.swiper-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .swiper-nav {
    margin-top: 2rem;
  }
}

.swiper-slide {
  background-color: rgba(150, 150, 150, 0.1);
  width: 90% !important;
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .swiper-slide {
    width: 80% !important;
  }
}

.swiper-button {
  color: #fcf6f4;
  width: 4rem;
  height: 4rem;
  background-color: rgba(150, 150, 150, 0.1);
  border: none;
  display: -ms-grid;
  display: grid;
  place-content: center;
  margin-right: 1rem;
  cursor: pointer;
  border-radius: 8px;
}

.swiper-button img {
  width: 2rem;
}

@media (min-width: 768px) {
  .swiper-button img {
    width: 2.5rem;
  }
}

@media (min-width: 768px) {
  .swiper-button {
    width: 5rem;
    height: 5rem;
    margin-right: 1.5rem;
  }
}

.project {
  text-align: left;
}

.project__img {
  display: block;
  width: 100%;
  max-height: 240px;
  overflow: hidden;
  cursor: pointer;
}

.project__img img {
  width: 100%;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.project__img img:hover {
  -webkit-transform: scale(105%);
  transform: scale(105%);
}

@media (min-width: 768px) {
  .project__img {
    height: 18vw;
    max-height: 375px;
  }
}

.project__desc {
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .project__desc {
    padding: 3rem 2.5rem;
  }
}

.project__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-transform: uppercase;
}

.project__tag {
  margin-right: 1rem;
  font-size: 0.825rem;
  color: #969696;
}

@media (min-width: 768px) {
  .project__tag {
    font-size: 1rem;
  }
}

.project__name {
  font-size: 1.5rem;
  line-height: 110%;
  font-weight: 600;
  margin-top: 0.5rem;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .project__name {
    font-size: 1.9rem;
  }
}

.project__link {
  display: inline-block;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .project__link {
    font-size: 1.25rem;
  }
}

.tech-icons {
  margin-top: 2rem;
}

.tech-icons img {
  height: 1.2rem;
}

.tech-icons > a {
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.tech-icons > a:hover {
  opacity: 1;
}

.tech-icons > a:not(:last-child) {
  margin-right: 2rem;
}

.tech-title {
  font-size: 1.25rem;
}

.tech-grid {
  position: relative;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr) [3];
  grid-template-columns: repeat(3, 1fr);
  margin-top: 1.5rem;
}

@media (min-width: 992px) {
  .tech-grid {
    -ms-grid-columns: (1fr) [4];
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1200px) {
  .tech-grid {
    -ms-grid-columns: (1fr) [5];
    grid-template-columns: repeat(5, 1fr);
  }
}

.technologies-grid {
  margin-bottom: 5rem;
}

.tech {
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 1rem;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #969696;
}

.tech img {
  height: 2.5rem;
  margin: 0 auto;
  margin-bottom: 0.9rem;
  margin-top: 3px;
}

.tech:hover {
  background-color: rgba(150, 150, 150, 0.1);
}

.tech-no-label {
  width: 100%;
  height: auto;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem;
  text-align: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #969696;
}

.tech-no-label img {
  height: 4rem;
  margin: 0 auto;
}

.tech-no-label:hover {
  background-color: rgba(150, 150, 150, 0.1);
}

.tech-icon {
  font-size: 3rem;
  margin-bottom: 0.625rem;
}

.tech-name {
  font-size: 0.8rem;
  font-weight: 500;
}

#html:hover {
  color: #e54c21;
}

#css:hover {
  color: #018fd5;
}

#js:hover {
  color: #ead41c;
}

#sass:hover {
  color: #c36291;
}

#bootstrap:hover {
  color: #7952b3;
}

#wp:hover {
  color: #1f6f92;
}

#react:hover {
  color: #5ed5f2;
}

#vscode {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

#vscode:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  color: #2da5f1;
}

#figma {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

#figma:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

#npm:hover {
  color: #cc3534;
}

#webpack {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

#webpack img {
  opacity: 0.6;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

#webpack:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

#webpack:hover img {
  opacity: 1;
}

#git:hover {
  color: #f05133;
}

#typescript {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

#typescript:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  color: #2e78c7;
}

#nextjs {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

#nextjs:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  color: #ffffff;
}

#reactnative {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

#reactnative:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
}

#strapi {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}

#strapi:hover {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  color: #5020ff;
}

.social-icons {
  margin-top: 2rem;
}

.social-icons > a {
  color: #969696;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.social-icons > a:hover {
  color: #fcf6f4;
}

.social-icons > a:not(:last-child) {
  margin-right: 3rem;
}

.social-icon {
  font-size: 1.5rem;
}

.contact-links {
  margin-top: 2.5rem;
}

@media (min-width: 768px) {
  .contact-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.contact-links__column {
  margin-right: 2rem;
}

.contact-links__name {
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .contact-links__name {
    font-size: 1.25rem;
  }
}

.contact-link {
  color: #969696;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .contact-link {
    font-size: 1.25rem;
  }
}

.greetings {
  display: block;
  text-align: center;
  padding-top: 0;
}

.greetings h1 {
  font-size: 4.5rem;
  margin-top: 0rem;
  margin-bottom: 2rem;
}

.greetings p {
  font-size: 1rem;
  margin-bottom: 2rem;
}

.greetings a {
  display: inline-block;
}

.accept {
  font-size: 1rem;
  color: #636363;
  margin-left: 0.5rem;
}

.accept a {
  font-size: 1rem;
  color: #969696;
}

.form__label {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

.form__input {
  width: 100%;
  background-color: rgba(150, 150, 150, 0.1);
  border: none;
  padding: 1.5rem;
  font-size: 1rem;
  color: #fcf6f4;
  outline: none;
  font-family: 'Poppins';
  font-size: 1rem;
  border: 1px solid transparent;
  margin-bottom: 1.5rem;
  border-radius: 8px;
}

.form__input:focus {
  border: 1px solid #333333;
}

.form__submit {
  background: rgba(150, 150, 150, 0.1);
  border: none;
  padding: 1.25rem 2rem;
  color: #fcf6f4;
  font-size: 1.25rem;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.form__submit:hover {
  background: rgba(255, 255, 255, 0.1);
}

.g-recaptcha {
  width: 100;
  height: 5rem;
}

.footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-top: 5rem;
  padding-bottom: 3rem;
  color: #969696;
}

.footer p {
  font-size: 1rem;
  margin-right: 2rem;
}

.footer a {
  font-size: 1rem;
  color: #aaa;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer a:hover,
.footer a:active {
  color: #fff;
}
/*# sourceMappingURL=main.css.map */
