/*=============================
  RESET & GLOBAL
=============================*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0d1117;
  color: #f4f4f4;
  overflow-x: hidden;
}

.sub-page {
  background: #0d1117;
  color: #ffffff;
  overflow-x: hidden;
}

p {
  font-size: 1rem;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-weight: 300;
  color: #fff;
}

legend {
  text-align: center;
}

/*=============================
  UNIVERSAL
=============================*/
.title {
  text-align: center;
  font-size: 28px;
  font-family: 'Times New Roman', serif;
}

.elki {
  filter: drop-shadow(1px 2px 10px #ff0000);
  animation: blinkShadow 1.5s ease-in-out infinite;
}

.elki:hover {
  filter: drop-shadow(1px 2px 50px #ff0000);
  -webkit-filter: drop-shadow(1px 2px 50px #ff0000);
  animation: blinkShadow 1.5s ease-in-out infinite;
}

@keyframes blinkShadow {
  0%, 100% {
    filter: drop-shadow(1px 2px 5px #1100ff);
  }
  50% {
    filter: drop-shadow(1px 2px 40px #1100ff);
  }
}

/*=============================
  BUTTONS
=============================*/
.shadow__btn {
  margin: auto;
  padding: 10px 20px;
  border: none;
  font-size: 17px;
  color: #fff;
  border-radius: 7px;
  letter-spacing: 4px;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  box-shadow: 0 0 25px rgb(0, 140, 255);
  transition: box-shadow 0.5s;
}

.shadow__btn:hover {
  box-shadow:
    0 0 5px rgb(0, 140, 255),
    0 0 25px rgb(0, 140, 255),
    0 0 50px rgb(0, 140, 255),
    0 0 100px rgb(0, 140, 255);
}

/*=============================
  HEADER / NAV
=============================*/
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1rem;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}

.logo {
  font-size: 2rem;
  font-weight: 700;
}

.logo span {
  color: #fff;
  text-shadow: 0 0 20px #00fffb, 0 0 40px #001aff;
}




.menu-toggle {
  display: none;
  color: #fff;
  font-size: 2.8rem;
  cursor: pointer;
}

/*=============================
  HERO / PAGE HEADING
=============================*/
.hero {
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.blinkingheading {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  z-index: 5;
  pointer-events: none;
}

.blinkingheading b {
  font: 400 10dvh "Vibur";
  color: #fee;
  text-shadow:
    0 -40px 100px,
    0 0 2px,
    0 0 1em #4457ff,
    0 0 0.5em #4457ff,
    0 0 0.1em #4744ff,
    0 10px 3px #000;
}

.blinkingheading b span {
  animation: blink 2s linear infinite;
}

.blinkingheading b span:nth-of-type(2) {
  animation: blink 3s linear infinite;
}

@keyframes blink {
  78% {
    color: inherit;
    text-shadow: inherit;
  }
  79% {
    color: #333;
  }
  80% {
    text-shadow: none;
  }
  81% {
    color: inherit;
    text-shadow: inherit;
  }
  82% {
    color: #333;
    text-shadow: none;
  }
  83% {
    color: inherit;
    text-shadow: inherit;
  }
  92% {
    color: #333;
    text-shadow: none;
  }
  92.5% {
    color: inherit;
    text-shadow: inherit;
  }
}

/*=============================
  NAVIGATION BUTTON
=============================*/
.navigation-button {
  position: fixed;
  top: 17%;
  right: 3%;
  z-index: 1;
  cursor: pointer;
  transform: translateY(-50%);
}

.navigation-button p {
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.3em 0.6em 0.3em 1.8em;
  color: #fff;
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}

/*=============================
  FOOTER
=============================*/
.footer-distributed {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(0, 255, 251, 0.25);
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  position: relative;
  z-index: 1;
  margin: 80px auto 60px;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
  flex: 1;
}

.footer-distributed h3 {
  color: #ffffff;
  font: normal 36px "Cookie", cursive;
  margin: 0 0 10px;
}

.footer-distributed h3 span {
  color: #5383d3;
}

.footer-distributed .footer-links {
  color: #ffffff;
  margin: 10px 0;
  padding: 0;
}

.footer-distributed .footer-links a {
  display: inline-block;
  margin: 0 10px;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: color 0.3s;
}

.footer-distributed .footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #00fffb;
  box-shadow: 0 0 5px #00fffb, 0 0 15px #0081bc;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease-in-out;
}

.footer-distributed .footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
  animation: flicker 1.5s infinite alternate;
}

.footer-distributed .footer-company-name {
  color: #8f9296;
  font-size: 14px;
  margin: 5px 0 0;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background-color: #33383b;
  color: #ffffff;
  border-radius: 2px;
  font-size: 20px;
  text-align: center;
  line-height: 35px;
  margin: 5px;
  transition: 0.3s;
}

.footer-distributed .footer-icons a:hover {
  background-color: #5383d3;
}

/*=============================
  RESPONSIVE
=============================*/
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    height: 450px;
    z-index: -1;
    transition: 0.4s;
  }

  .navbar ul li {
    padding-top: 65px;
  }

  .navbar span {
    text-align: center;
  }

  .navbar ul.active {
    display: flex;
    width: 20%;
  }

  /* .menu-toggle {
    display: block;
    text-shadow: 0 0 5px #00fffb, 0 0 10px #0081bc;
  } */

  .toolong {
    display: none;
  }

  .title {
    font-size: 23px;
  }

  .footer-distributed {
    flex-direction: column;
    width: 90%;
    text-align: center;
    margin-bottom: 0;
  }

  .footer-distributed .footer-left,
  .footer-distributed .footer-center,
  .footer-distributed .footer-right {
    margin-bottom: 0;
  }

  .footer-distributed .footer-center i {
    margin-left: 0;
  }
}
