/*

  2. General
  5. Loader
  5. Coutdown
  6. Content about
  7. Content works
  8. Canvas
  17. Responsive

*/

/* #Cursor */
* {
  font-family: 'Rubik Pixels', cursive;
  cursor: none !important;
}

.cursor{
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  will-change: transform;
  pointer-events: none;
  image-rendering: pixelated;
  z-index: 10000;
}

/* Pixel-art arrow pointer, drawn as one 3px "pixel" plus a box-shadow pixel grid */
.cursor:nth-child(1){
  width: 3px;
  height: 3px;
  background-color: #ffffff;
  box-shadow:
    0px 3px 0 0 #fff, 3px 3px 0 0 #fff,
    0px 6px 0 0 #fff, 3px 6px 0 0 #fff, 6px 6px 0 0 #fff,
    0px 9px 0 0 #fff, 3px 9px 0 0 #fff, 6px 9px 0 0 #fff, 9px 9px 0 0 #fff,
    0px 12px 0 0 #fff, 3px 12px 0 0 #fff, 6px 12px 0 0 #fff, 9px 12px 0 0 #fff, 12px 12px 0 0 #fff,
    0px 15px 0 0 #fff, 3px 15px 0 0 #fff, 6px 15px 0 0 #fff, 9px 15px 0 0 #fff, 12px 15px 0 0 #fff, 15px 15px 0 0 #fff,
    0px 18px 0 0 #fff, 3px 18px 0 0 #fff, 6px 18px 0 0 #fff, 9px 18px 0 0 #fff, 12px 18px 0 0 #fff, 15px 18px 0 0 #fff, 18px 18px 0 0 #fff,
    0px 21px 0 0 #fff, 3px 21px 0 0 #fff, 6px 21px 0 0 #fff, 9px 21px 0 0 #fff, 12px 21px 0 0 #fff,
    0px 24px 0 0 #fff, 3px 24px 0 0 #fff, 6px 24px 0 0 #fff,
    0px 27px 0 0 #fff, 3px 27px 0 0 #fff,
    0px 30px 0 0 #fff;
}

/* Small trailing pixel echo */
.cursor:nth-child(2){
  width: 6px;
  height: 6px;
  background-color: #cfcfcf;
}

.color_white {
  color: #fff !important;
}

.color_grey {
  color: #f9f9f7 !important;
}

.color_grey2 {
  color: #e9e9e9 !important;
}

.color_grey3 {
  color: #757575 !important;
}

.color_blue {
  color: #5B8EFB !important;
}

.color_red {
  color: #f9223e !important;
}

.color_green {
  color: #39FF14 !important;
}

/* Terminal-style contact form */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.terminal-form .form-control {
  font-family: 'Rubik Pixels', cursive;
  letter-spacing: 1px;
  caret-color: #39FF14;
}

.terminal-form .form-control::placeholder {
  color: #4a4a4a;
}

.terminal-form .form-control:focus {
  border-color: #39FF14 !important;
  box-shadow: 0 0 8px rgba(57, 255, 20, 0.35);
}

.btn-send {
  background: transparent;
  border: 1px solid #39FF14;
  color: #39FF14 !important;
  font-family: 'Rubik Pixels', cursive;
  letter-spacing: 1px;
  transition: all 0.2s ease;
}

.btn-send:hover, .btn-send:focus {
  background: #39FF14;
  color: #111215 !important;
  box-shadow: 0 0 15px rgba(57, 255, 20, 0.6);
}

/* Glitch hover effect for nav buttons and social links */
.btn_nav, .social_home a, .social_footer a {
  position: relative;
}

.btn_nav:hover, .social_home a:hover, .social_footer a:hover {
  animation: glitch-jitter 0.25s steps(2, jump-none) infinite;
}

@keyframes glitch-jitter {
  0% {
    text-shadow: -2px 0 #f9223e, 2px 0 #39FF14;
    transform: translate(0, 0);
  }
  25% {
    text-shadow: 2px 0 #f9223e, -2px 0 #39FF14;
    transform: translate(-1px, 1px);
  }
  50% {
    text-shadow: -1px 0 #f9223e, 1px 0 #39FF14;
    transform: translate(1px, -1px);
  }
  75% {
    text-shadow: 1px 0 #f9223e, -1px 0 #39FF14;
    transform: translate(-1px, 0);
  }
  100% {
    text-shadow: -2px 0 #f9223e, 2px 0 #39FF14;
    transform: translate(0, 0);
  }
}

.timeline {
  max-width: 700px;
  max-height: 55vh;
  text-align: left;
  margin: 20px auto 0;
  padding-right: 10px;
}

.timeline-item {
  border-left: 2px solid #252525;
  padding: 0 0 25px 20px;
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5B8EFB;
}

.timeline-item h5 {
  margin-bottom: 4px;
  font-size: 14px;
}

.timeline-meta {
  display: block;
  font-size: 11px;
  color: #8a8a8a;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.timeline-item p {
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.color_green {
  color: #23c77b !important;
}

.color_purple {
  color: #8b41c4 !important;
}

.color_purple2 {
  color: #642f8d !important;
}

.color_purple3 {
  color: #200838 !important;
}

.color_yellow {
  color: #cf8b42 !important;
}

.color_purple_blue {
  background-image: linear-gradient(to right top, #8b41c4, #5B8EFB) !important;
  color: transparent !important;
  -webkit-background-clip: text; }

.color_red_purple {
  background-image: linear-gradient(to right top, #f9223e, #8b41c4) !important;
  color: transparent !important;
  -webkit-background-clip: text; }

.color_red_blue {
  background-image: linear-gradient(to right top, #f9223e, #5B8EFB) !important;
  color: transparent !important;
  -webkit-background-clip: text; }

.color_purple_purple3 {
  background-image: linear-gradient(to right top, #8b41c4, #200838) !important;
  color: transparent !important;
  -webkit-background-clip: text; }

.color_green_blue {
  background-image: linear-gradient(to right top, #23c77b, #5B8EFB) !important;
  color: transparent !important;
  -webkit-background-clip: text; }

.background_white {
  background: #fff !important; }

.background_blue {
  background: #5B8EFB !important; }
  .background_blue.btn:hover {
    background: #3041ad !important;
    box-shadow: 0 5px 55px -5px #0e0e0e;
    transition: 0.5s; }

.background_red {
  background: #f9223e !important; }
  .background_red.btn:hover {
    background: #d21d34 !important;
    box-shadow: 0 5px 55px -5px #0e0e0e;
    transition: 0.5s; }

.background_green {
  background: #23c77b !important; }
  .background_green.btn:hover {
    background: #157a4b !important;
    box-shadow: 0 5px 55px -5px #0e0e0e;
    transition: 0.5s; }

.background_purple {
  background: #8b41c4 !important; }
  .background_purple.btn:hover {
    background: #642f8d !important;
    box-shadow: 0 5px 55px -5px #0e0e0e;
    transition: 0.5s; }

.background_purple2 {
  background: #642f8d !important; }
  .background_purple2.btn:hover {
    background: #200838 !important;
    box-shadow: 0 5px 55px -5px #0e0e0e;
    transition: 0.5s; }

.background_purple3 {
  background: #200838 !important; }
  .background_purple3.btn:hover {
    background: #642f8d !important;
    box-shadow: 0 5px 55px -5px #0e0e0e;
    transition: 0.5s; }

.background_purple_blue {
  background: linear-gradient(to right top, #8b41c4, #5B8EFB) !important; }
  .background_purple_blue.btn:hover {
    background: linear-gradient(to right top, #642f8d, #3041ad) !important;
    box-shadow: 0 5px 55px -5px #0e0e0e;
    transition: 0.5s; }

.background_red_purple {
  background: linear-gradient(to right top, #f9223e, #8b41c4) !important; }
  .background_red_purple.btn:hover {
    background: linear-gradient(to right top, #d21d34, #642f8d) !important;
    box-shadow: 0 5px 55px -5px #0e0e0e;
    transition: 0.5s; }

.background_red_blue {
  background: linear-gradient(to right top, #f9223e, #5B8EFB) !important; }
  .background_red_blue.btn:hover {
    background: linear-gradient(to right top, #d21d34, #3041ad) !important;
    box-shadow: 0 5px 55px -5px #0e0e0e;
    transition: 0.5s; }

.background_purple_purple3 {
  background: linear-gradient(to right top, #642f8d, #200838) !important; }
  .background_purple_purple3.btn:hover {
    background: linear-gradient(to right top, #200838, #200838) !important;
    box-shadow: 0 5px 55px -5px #0e0e0e;
    transition: 0.5s; }

.background_green_blue {
  background: linear-gradient(to right top, #23c77b, #5B8EFB) !important; }
  .background_green_blue.btn:hover {
    background: linear-gradient(to right top, #157a4b, #3041ad) !important;
    box-shadow: 0 5px 55px -5px #0e0e0e;
    transition: 0.5s; }

hr {
  margin-top: 5vh;
  margin-bottom: 5vh;
  border: 0;
  border-top: 1px solid #252525; }

body {
  font-family: 'Rubik Pixels', cursive;
  line-height: 1.5;
  font-weight: 300;
  font-size: 12px;
  letter-spacing: 1px;
  background: #111215;
  color: #e9e9e9; }

/* Full-page scroll-snap (replaces the pagepiling.js library) */
html, body {
  height: 100%;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

#pagepiling {
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth; }

.pp-section {
  height: 100vh;
  width: 100%;
  background-color: #111215;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  backface-visibility: hidden; }

.pp-table {
  display: table; }

.pp-tableCell {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  height: 100%; }

.pp-scrollable {
  overflow-y: auto;
  height: 100%; }

h1, .h1 {
  font-family: 'Rubik Pixels', cursive;
  font-size: 5vmax;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 2px; }

h2, .h2 {
  font-family: 'Rubik Pixels', cursive;
  font-size: 3.5vmax;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 2px; }

h3, .h3 {
  font-family: 'Rubik Pixels', cursive;
  font-size: 3vmax;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 2px; }

h4, .h4 {
  font-family: 'Rubik Pixels', cursive;
  font-size: 2.5vmax;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 2px; }

h5, .h5 {
  font-size: 2vmax;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 2px; }

h6, .h6 {
  font-size: 1.5vmax;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 2px;
}

::-webkit-scrollbar {
  display: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: none !important;
  box-shadow: none;
}

.form-control::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #e9e9e9;
}

.form-control:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #e9e9e9;
  opacity: 1;
}

.form-control::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #e9e9e9;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #e9e9e9;
}

a, a:hover, a:focus {
  color: #e9e9e9;
  text-decoration: none;
}

button.mfp-close {
  display: none;
}

.mfp-arrow:hover, .mfp-arrow:focus {
  box-shadow: none;
}

.space {
  width: 100%;
  height: 5vh;
  display: inline-flex;
}

.btn {
  padding: 15px 30px;
  background: transparent;
  color: #e9e9e9;
  border: 0.5px solid #444;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 2px;
  overflow: hidden;
  opacity: 1;
  transition: 0.5s;
}

.btn::after {
  position: absolute;
  transition: .3s;
  content: '';
  width: 0;
  bottom: 0;
  background: #5B8EFB;
  height: 120%;
  left: -10%;
  z-index: -1;
}

.btn:hover {
  box-shadow: 0 5px 50px #0e0e0e;
  color: #fff;
}

.btn:hover:after {
  left: -10%;
  width: 120%;
}

#particles-js {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background: #111215;
  opacity: 0.75;
}

.overlay_top {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
  width: 100vw;
  height: 25px;
  background: rgba(0, 0, 0, 0.5);
}

.overlay_bottom {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 6;
  width: 100vw;
  height: 25px;
  background: rgba(0, 0, 0, 0.5);
}

.overlay_left {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6;
  width: 25px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}

.overlay_right {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 6;
  width: 25px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
}

.background_img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0.2;
}

.background_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.background_youtube {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
}

.background_dots {
  background-image: -webkit-repeating-radial-gradient(transparent, #252525 1px, transparent 1px, transparent 100%);
  background-image: -moz-repeating-radial-gradient(transparent, #252525 1px, transparent 1px, transparent 100%);
  background-image: -ms-repeating-radial-gradient(transparent, #252525 1px, transparent 1px, transparent 100%);
  background-image: repeating-radial-gradient(transparent, #252525 1px, transparent 1px, transparent 100%);
  -webkit-background-size: 50px 50px;
  -moz-background-size: 50px 50px;
  background-size: 50px 50px;
  background-attachment: fixed;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.wrapper {
  padding: 25px;
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 5;
}

.content_home {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: block;
}

.content_home .brand {
  height: 45px;
  margin: 0 auto;
}

.content_home .brand img {
  height: 100%;
  margin: 0 auto;
}

.content_home .text_animation {
  font-size: 7vmax;
  color: #e9e9e9;
}

.content_home .centered {
    position: relative;
    z-index: 3;
    opacity: 1;
    transition: 1s;
  }

  .content_home .centered.on {
    opacity: 0;
    transition: 1s;
  }

/* Social Media */
.social_home {
  position: fixed;
  left: 40px;
  bottom: 35px;
  z-index: 1;
}

.social_home a {
  color: #e9e9e9;
  font-size: 20px;
}

.social_home a:hover {
  color: #5B8EFB;
  font-size: 20px;
}

.icon-button {
  border-color: white;
  border-radius: 3.6rem;
  cursor: pointer;
  display: inline-block;
  font-size: 1.8rem;
  height: 3.6rem;
  line-height: 3.6rem;
  margin: 0 5px;
  position: relative;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 3.6rem;
}

.icon-button span {
  border-radius: 0;
  display: block;
  height: 0;
  left: 50%;
  margin: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  width: 0;
}

.icon-button:hover span {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 3.6rem;
  margin: -1.8rem;
}

/* Icons */
.icon-button i {
  border: 1px solid #fff;
  color: white;
  height: 3.6rem;
  border-radius: 3.6rem;
  left: 0;
  line-height: 3.6rem;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  -o-transition: all 0.8s;
  transition: all 0.8s;
  width: 3.6rem;
  z-index: 10;
}

.facebook span {
  background-color: #3B5998;
}
.instagram span {
  background-color: #962fbf;
}
.twitter span {
  background-color: #4099ff;
}
.linkedin span{
  background-color: #0e76a8;
}
.flickr span{
  background-color: #0063dc;
}
.skype span{
  background-color: #00aff0;
}

.icon-button .icon-facebook {
  color: #3B5998;
}
.icon-button .icon-instagram {
  color: #962fbf;
}
.icon-button .icon-twitter {
  color: #4099ff;
}
.icon-button .icon-flickr {
  color: #0063dc;
}
.icon-button .icon-skype {
  color: #00aff0;
}

.icon-button:hover .fa-facebook-f,
.icon-button:hover .fa-instagram,
.icon-button:hover .fa-twitter,
.icon-button:hover .fa-linkedin-in,
.icon-button:hover .fa-flickr,
.icon-button:hover .fa-skype {
  color: white;
  transform: rotateY(360deg);
}

.copyright {
  position: fixed;
  right: 35px;
  bottom: 35px;
  z-index: 1;
  color: #e9e9e9;
  font-size: 10px; }

.btn_nav {
  padding: 30px 100px;
  color: #e9e9e9;
  position: fixed;
  top: calc(50vh - 40px);
  z-index: 9;
  border: 0.5px solid #444;
  background: rgba(0, 0, 0, 0.5);
  font-weight: bold;
  letter-spacing: 2px;
  overflow: hidden;
  opacity: 1;
  transition: 2s;
  transform: translate(0px, 0px);
}

.btn_nav._hide {
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  transform: translate(-100px, 0px);
}

.btn_nav.btn_nav_left {
  left: 15px;
}

.btn_nav.btn_nav_left::after {
  position: absolute;
  transition: .3s;
  content: '';
  width: 0;
  bottom: 0;
  background: #5B8EFB;
  height: 120%;
  left: -10%;
  z-index: -1;
}

.btn_nav.btn_nav_left:hover {
  background: none;
  cursor: pointer;
  box-shadow: 0 5px 50px #0e0e0e;
  color: #fff;
}

.btn_nav.btn_nav_left:hover:after {
  left: -10%;
  width: 120%;
}

.btn_nav.btn_nav_right {
  right: 15px;
}

.btn_nav.btn_nav_right::after {
  position: absolute;
  transition: .3s;
  content: '';
  width: 0;
  bottom: 0;
  background: #5B8EFB;
  height: 120%;
  right: -10%;
  z-index: -1;
}

.btn_nav.btn_nav_right:hover {
  background: none;
  cursor: pointer;
  box-shadow: 0 5px 50px #0e0e0e;
  color: #fff;
}

.btn_nav.btn_nav_right:hover:after {
  right: -10%;
  width: 120%;
}

.btn_nav.btn_nav_right._hide {
  transform: translate(200px, 0px);
}

.title_bordered {
  color: #5B8EFB;
  position: relative;
  margin-bottom: 0;
  font-family: 'Rubik Pixels', cursive;
  font-size: 25px;
  letter-spacing: 2px;
}

.title_bordered::before {
  content: '';
  width: 35px;
  height: 2px;
  position: relative;
  bottom: -45px;
  left: calc(50% - 12.5px);
  display: block;
  background: #e9e9e9;
}

.loader-bg {
  width: 100vw;
  height: 100vh;
  background: #111215;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loader-bg.fadeOut {
  opacity: 0;
}

.loader-bg.hide {
  display: none;
  pointer-events: none;
}

.loader {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.loader-terminal {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'Rubik Pixels', cursive;
  letter-spacing: 1px;
  min-width: 300px;
}

.loader-terminal .loader-line {
  font-size: 13px;
  color: #7a7a7a;
  opacity: 0;
  animation: loader-line-in 0.3s ease forwards;
}

.loader-terminal .loader-line:nth-child(1) {
  color: #39FF14;
  font-size: 15px;
  animation-delay: 0s;
}
.loader-terminal .loader-line:nth-child(2) { animation-delay: 0.35s; }
.loader-terminal .loader-line:nth-child(3) { animation-delay: 0.55s; }
.loader-terminal .loader-line:nth-child(4) {
  color: #e9e9e9;
  animation-delay: 0.75s;
}
.loader-terminal .loader-bar-row { animation-delay: 0.95s; }

.loader-terminal .loader-prompt {
  color: #6b6b6b;
}

.loader-terminal .loader-ok {
  color: #39FF14;
}

.loader-terminal .loader-cursor {
  display: inline-block;
  width: 8px;
  height: 14px;
  margin-left: 6px;
  background: #39FF14;
  vertical-align: -2px;
  animation: cursor-blink 1s step-end infinite;
}

.loader-bar-row {
  margin-top: 8px;
  font-size: 13px;
  color: #39FF14;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: loader-line-in 0.3s ease forwards;
}

.loader-bar-row .loader-bracket {
  color: #4a4a4a;
}

.loader-bar-track {
  position: relative;
  width: 200px;
  height: 8px;
  background: #232428;
  overflow: hidden;
  display: inline-block;
}

.loader-bar-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  transform-origin: left;
  background: #39FF14;
  animation: loader-bar-fill 2.4s ease-out infinite alternate;
}

@keyframes loader-line-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes loader-bar-fill {
  from { transform: scaleX(0.08); }
  to { transform: scaleX(0.85); }
}

.mouse-scroll {
  position: fixed;
  margin: auto;
  left: calc(100vw - 150px);
  top: calc(100vh - 150px);
  -webkit-transform: translateX(-50%);
  z-index: 9999;
  opacity:0.3;
}

.mouse-scroll.up {
  rotate: 180deg;
  top: 60px;
}

.mouse-scroll span{
  display: block;
  width: 5px;
  height: 5px;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  margin: 0 0 3px 5px;
}
.mouse-scroll .mouse {
  height: 21px;
  width: 14px;
  border-radius: 0;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  border: 2px solid #ffffff;
  top: 170px;
}
.mouse-scroll .down-arrow-1 {
  margin-top: 6px;
}
.mouse-scroll .down-arrow-1,.mouse-scroll .down-arrow-2, .mouse-scroll .down-arrow-3 {
  -webkit-animation: mouse-scroll 1s infinite;
  -moz-animation: mouse-scroll 1s infinite:
}
.mouse-croll .down-arrow-1 {
  -webkit-animation-delay: .1s;
  -moz-animation-delay: .1s;
  -webkit-animation-direction: alternate;
}
.mouse-scroll .down-arrow-2 {
  -webkit-animation-delay: .2s;
  -moz-animation-delay: .2s;
  -webkit-animation-direction: alternate;
}
.mouse-scroll .down-arrow-3 {
  -webkit-animation-delay: .3s;
  -moz-animation-dekay: .3s;
  -webkit-animation-direction: alternate;
}
.mouse-scroll .mouse-in {
  height: 5px;
  width: 2px;
  display: block;
  margin: 5px auto;
  background: #ffffff;
  position: relative;
}
.mouse-scroll .mouse-in {
  -webkit-animation: animated-mouse 1.2s ease infinite;
  moz-animation: mouse-animated 1.2s ease infinite;
}

@-webkit-keyframes animated-mouse {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
}
@-webkit-keyframes mouse-scroll {
  0% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mouse-scroll {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.content_about {
  position: fixed;
  z-index: 2;
  top: 25px;
  left: 0;
  width: 100vw;
  height: calc(100vh - 50px);
  -ms-transform: translate(-100vw, 0px);
  /* IE 9 */
  -webkit-transform: translate3d(-100vw, 0, 0);
  /* Safari */
  transform: translate3d(-100vw, 0, 0);
  transition: transform 1s ease;
  will-change: transform;
  font-size: 18px;
}

.content_about.on {
  -ms-transform: translate(25px, 0px);
  /* IE 9 */
  -webkit-transform: translate3d(25px, 0, 0);
  /* Safari */
  transform: translate3d(25px, 0, 0);
  transition: transform 1s ease;
}

.content_about .services .item {
  width: 45%;
  margin: 0;
}

.content_about .clients {
  border-top: 1px solid #252525;
  border-left: 1px solid #252525;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 1000px;
}
    .content_about .clients::before {
      content: '';
      position: absolute;
      z-index: 99;
      top: -2px;
      right: -2px;
      width: 4px;
      height: 4px;
      display: block;
      background: #e9e9e9;
      border-radius: 5px; }
    .content_about .clients::after {
      content: '';
      position: absolute;
      z-index: 99;
      bottom: -2px;
      left: -2px;
      width: 4px;
      height: 4px;
      display: block;
      background: #e9e9e9;
      border-radius: 5px; }
    .content_about .clients .item {
      position: relative;
      vertical-align: top;
      border-right: 1px solid #252525;
      border-bottom: 1px solid #252525;
      padding: 0; }
      .content_about .clients .item::before {
        content: '';
        position: absolute;
        z-index: 99;
        top: -2px;
        left: -2px;
        width: 4px;
        height: 4px;
        display: block;
        background: #e9e9e9;
        border-radius: 5px; }
      .content_about .clients .item::after {
        content: '';
        position: absolute;
        z-index: 99;
        bottom: -2px;
        right: -2px;
        width: 4px;
        height: 4px;
        display: block;
        background: #e9e9e9;
        border-radius: 5px; }
      .content_about .clients .item img {
        width: 100%;
        max-height: 80px;
        object-fit: contain;
        opacity: 1;
        filter: brightness(0) invert(1) drop-shadow(0 0 1px rgba(255,255,255,0.9));
        transition: opacity 0.25s ease;
        padding: 2vh 20px; }
      .content_about .clients .item:hover img {
        opacity: 1; }
  .content_works #contact-form .form-group {
    margin-bottom: 25px; }
    .content_works #contact-form .form-group .form-control {
      border: 1px solid #3a3a3a;
      border-radius: 0;
      box-shadow: none;
      line-height: 50px;
      height: 50px;
      background: none;
      color: #f9f9f7;
      transition: border-color 0.2s ease; }
    .content_works #contact-form .form-group .form-control:focus {
      border-color: #5B8EFB;
      outline: none; }
    .content_works #contact-form .form-group .form-control::placeholder {
      color: #8a8a8a; }
    .content_works #contact-form .form-group textarea {
      min-height: 150px !important;
      resize: none; }
  .content_works .with-errors {
    position: absolute;
    font-size: 10px;
    font-weight: bold;
    color: #ff6b6b; }
  .content_about .close_section {
    position: fixed;
    top: 15px;
    left: calc(100vw - 150px);
    z-index: 999;
    width: 25px;
    cursor: pointer; }

.content_works {
  position: fixed;
  z-index: 5;
  top: 25px;
  right: 0;
  width: 50vw;
  height: calc(100vh - 50px);
  -ms-transform: translate(160vw, 0px);
  /* IE 9 */
  -webkit-transform: translate3d(160vw, 0, 0);
  /* Safari */
  transform: translate3d(160vw, 0, 0);
  background: #0e0e0e;
  transition: transform 2s ease;
  will-change: transform;
  font-size: 18px;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch; }
  .content_works.on {
    -ms-transform: translate(-25px, 0px);
    /* IE 9 */
    -webkit-transform: translate3d(-25px, 0, 0);
    /* Safari */
    transform: translate3d(-25px, 0, 0);
    transition: transform 1s ease; }
  .content_works .project {
    width: 100%;
    height: 100%;
    background: #fff;
    position: relative; }
    .content_works .project .project_img {
      width: 100%;
      height: 80%;
      object-fit: contain;
      object-position: right;
      position: absolute;
      top: 0;
      right: 0; }
    .content_works .project .project_info {
      position: absolute;
      z-index: 5;
      bottom: 10vh;
      width: 100%;
      color: #fff; }
  .content_works .close_section {
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 999;
    width: 25px;
    cursor: pointer;
  }

.close_section .close{
  color: #fff !important;
  font-size: 33px;
}

.close_section .close:focus, .close_section .close:hover{
  color: #cfcfcf !important;
  font-size: 33px;
}

.title {
  line-height: 1; }

.title::before {
  content: '> ';
  color: #39FF14;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.6);
}

/* Terminal blinking cursor, sits after the scrambling hero word */
.text_animation::after {
  content: '\2581';
  color: #39FF14;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
  margin-left: 0.05em;
  animation: cursor-blink 1s step-end infinite;
}

@keyframes cursor-blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0; }
}

/* CRT scanline overlay */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0px,
    rgba(0, 0, 0, 0) 1px,
    rgba(0, 0, 0, 0.12) 2px,
    rgba(0, 0, 0, 0.12) 3px
  );
  animation: scanline-flicker 8s infinite;
}

@keyframes scanline-flicker {
  0%, 96%, 100% { opacity: 1; }
  97% { opacity: 0.85; }
  98% { opacity: 1; }
}

#pagepiling .section .intro,
#section6 .intro {
  padding: 0 10%; }

#section5.pp-table {
  table-layout: fixed; }

#section5 .intro {
  width: 100%;
  padding-left: 6%;
  padding-right: 6%; }

#section5 .timeline {
  max-width: 900px; }

.tech-stack {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 12px;
  max-width: 900px;
  margin: 30px auto 0;
  max-height: 55vh;
  overflow-y: auto;
  padding-top: 6px;
  padding-right: 4px;
}

.tech-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #252525;
  padding: 18px 8px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.tech-chip:hover {
  border-color: #5B8EFB;
  transform: translateY(-2px);
}

.tech-chip i {
  font-size: 26px;
  color: #5B8EFB;
}

.tech-chip span {
  font-size: 10px;
  letter-spacing: 1px;
  color: #e9e9e9;
  text-align: center;
}

.project-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 700px;
  margin: 30px auto 0;
}

.project-card {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid #252525;
  padding: 22px 20px;
  text-align: left;
  transition: border-color 0.2s ease;
}

.project-card:hover {
  border-color: #5B8EFB;
}

.project-tag {
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #39FF14;
}

.project-name {
  font-size: 15px;
  color: #e9e9e9;
  letter-spacing: 1px;
}

.project-link {
  font-size: 11px;
  letter-spacing: 1px;
  color: #5B8EFB !important;
}

.canvas-wave #canvas-wave {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.1; }
.canvas-wave #canvas-wave > div {
  display: none; }

.canvas-floor .content_home {
  background: none; }
.canvas-floor #canvas-floor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.1; }
.canvas-floor #canvas-floor > div {
  display: none; }

.canvas-sphere .content_home {
  background: none; }
#matrix-rain {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  pointer-events: none; }
.canvas-sphere #canvas-sphere {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0.5; }
.canvas-sphere #canvas-sphere > div {
  display: none; }

@media all and (min-width: 1600px) {
  body {
    font-size: 18px; }

  .content_about {
    font-size: 22px; }

  .content_works #contact-form .form-group .form-control {
    line-height: 65px;
    height: 65px; }
  .content_works #contact-form .form-group textarea {
    min-height: 200px !important; }
  .content_works #contact-form input.btn.btn-send {
    height: 65px;
    line-height: 65px;
    padding: 0 35px; }

  .services {
    margin-top: 5vh; }

  .title_bordered {
    font-size: 18px; } }
@media all and (min-width: 2400px) {
  body {
    font-size: 30px; }

  .content_about {
    font-size: 30px; }

  .content_works #contact-form .form-group .form-control {
    line-height: 75px;
    height: 75px; }
  .content_works #contact-form .form-group textarea {
    min-height: 300px !important; }
  .content_works #contact-form input.btn.btn-send {
    height: 75px;
    line-height: 75px;
    padding: 0 55px; }

  .services {
    margin-top: 7vh; }

  .title_bordered {
    font-size: 22px; }
    .title_bordered::before {
      content: '';
      width: 40px;
      height: 2px;
      bottom: -55px;
      left: calc(50% - 20px); }

  .copyright {
    font-size: 20px; } }
@media all and (max-width: 992px) {
  body, .content_about, .content_works {
    font-size: 12px; }

  .wrapper {
    padding: 15px; }

  .content_about, .content_works {
    width: calc(100vw - 30px); }

  .content_about {
    -ms-transform: translate(-100vw, 0px);
    -webkit-transform: translate(-100vw, 0px);
    transform: translate(-100vw, 0px); }

  #pagepiling .section {
    padding-top: 5%;
    padding-bottom: 5%; }

  .btn_nav {
    padding: 20px 55px; } }
@media all and (max-width: 767px) {
  h1, .h1 {
    font-size: 32px; }

  h2, .h2 {
    font-size: 28px; }

  h3, .h3 {
    font-size: 24px; }

  h4, .h4 {
    font-size: 20px; }

  h5, .h5 {
    font-size: 16px; }

  h6, .h6 {
    font-size: 12px; }

  .overlay_top {
    height: 15px; }

  .overlay_bottom {
    height: 15px; }

  .overlay_left {
    width: 15px; }

  .overlay_right {
    width: 15px; }

  .content_about, .content_works {
    top: 15px;
    height: calc(100vh - 30px);
    width: calc(100vw - 30px); }
    .content_about.on, .content_works.on {
      -ms-transform: translate(15px, 0px);
      /* IE 9 */
      -webkit-transform: translate(15px, 0px);
      /* Safari */
      transform: translate(15px, 0px); }
    .content_about .close_section, .content_works .close_section {
      left: initial;
      right: 15px; }

  .content_works.on {
    -ms-transform: translate(-15px, 0px);
    /* IE 9 */
    -webkit-transform: translate(-15px, 0px);
    /* Safari */
    transform: translate(-15px, 0px); }

  .btn_nav {
    padding: 10px 25px;
    font-size: 12px;
    top: inherit;
    bottom: 20vh;
    position: relative;
    display: inline-block; }
    .btn_nav.btn_nav_left {
      left: 30px; }
    .btn_nav.btn_nav_right {
      right: 30px;
      float: right; }

  .social_home {
    left: 30px;
    bottom: 45px;
  }

  .copyright {
    left: 30px;
    bottom: 20px;
    right: inherit; } }
@media all and (max-width: 480px) {
  #icon-development {
    width: 100%; }

  .space {
    height: 2.5vh; }

  .content_about .clients .item img {
    padding: 0 0; }

  .content_home {
    padding-top: 5vh !important; } }
@media all and (max-width: 767px) and (max-height: 480px) {
  .social_home, .copyright {
    display: none; }

  .countdown {
    margin-top: -13vh; }
    .countdown ul#countdown, .countdown h6 {
      margin: 0; }

  .title_bordered {
    margin-top: -5vh; } }
@media all and (max-width: 767px) and (max-height: 320px) {
  .countdown {
    margin-top: -15vh; }

  .content_home {
    padding-top: 5vh !important; } }
@media all and (min-width: 1024px) and (max-width: 1400px) and (max-height: 700px) {
  .content_works #contact-form .form-group .form-control {
    line-height: 35px;
    height: 35px; }
  .content_works #contact-form .form-group textarea {
    min-height: 100px !important; }
  .content_works #contact-form input.btn.btn-send {
    height: 35px;
    line-height: 35px;
    padding: 0 15px; } }



.svg-wrapper {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  width: 320px;
}
.svg-wrapper svg {
  max-width: 45rem;
  width: 100%;
  height: auto;
  fill: none;
  stroke: white;
  stroke-width: 4;
}
.svg-wrapper svg tspan > tspan {
  stroke-dasharray: 1500;
  stroke-dashoffset: -1500;
}
.svg-wrapper svg tspan > tspan:nth-of-type(1) {
  -webkit-animation: draw 300ms 150ms forwards;
  animation: draw 300ms 150ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(2) {
  -webkit-animation: draw 300ms 300ms forwards;
  animation: draw 300ms 300ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(3) {
  -webkit-animation: draw 300ms 450ms forwards;
  animation: draw 300ms 450ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(4) {
  -webkit-animation: draw 300ms 600ms forwards;
  animation: draw 300ms 600ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(5) {
  -webkit-animation: draw 300ms 750ms forwards;
  animation: draw 300ms 750ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(6) {
  -webkit-animation: draw 300ms 900ms forwards;
  animation: draw 300ms 900ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(7) {
  -webkit-animation: draw 300ms 1050ms forwards;
  animation: draw 300ms 1050ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(8) {
  -webkit-animation: draw 300ms 1200ms forwards;
  animation: draw 300ms 1200ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(9) {
  -webkit-animation: draw 300ms 1350ms forwards;
  animation: draw 300ms 1350ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(10) {
  -webkit-animation: draw 300ms 1500ms forwards;
  animation: draw 300ms 1500ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(11) {
  -webkit-animation: draw 300ms 1650ms forwards;
  animation: draw 300ms 1650ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(12) {
  -webkit-animation: draw 300ms 1800ms forwards;
  animation: draw 300ms 1800ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(13) {
  -webkit-animation: draw 300ms 1950ms forwards;
  animation: draw 300ms 1950ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(14) {
  -webkit-animation: draw 300ms 2100ms forwards;
  animation: draw 300ms 2100ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(15) {
   -webkit-animation: draw 300ms 2250ms forwards;
   animation: draw 300ms 2250ms forwards;
 }
.svg-wrapper svg tspan > tspan:nth-of-type(16) {
  -webkit-animation: draw 300ms 2400ms forwards;
  animation: draw 300ms 2400ms forwards;
}
.svg-wrapper svg tspan > tspan:nth-of-type(17) {
  -webkit-animation: draw 300ms 2550ms forwards;
  animation: draw 300ms 2550ms forwards;
}


@-webkit-keyframes draw {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes draw {
  100% {
    stroke-dashoffset: 0;
  }
}

.pp-tableCell .title{
  padding-bottom: 20px;
}

.pp-tableCell p{
  padding-bottom: 40px;
}
