@font-face {
  font-family: "Geist";
  src: url("../fonts/Geist-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("../fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  cursor: none !important;
}

:root {
  --border-clr: #e5e9df;
  --brand-primary: #f2edeb;
  --brand-primary-rgb: 242, 237, 235;
  --brand-base: #ee741d;
  --brand-base-rgb: 238, 116, 29;
  --brand-black: #16171a;
  --brand-black-rgb: 22, 23, 26;
  --brand-gray: #727272;
  --brand-primary-color: #08023f;
}

html {
  scroll-padding-top: 100px;
  height: auto;
  overflow-x: hidden;
}

.brand-primary-bg {
  background-color: var(--brand-primary-color);
}

body {
  font-family: "Geist", sans-serif;
  margin: 0;
  padding: 0;
  /* background: radial-gradient(50% 50% at 50% 50%, #0b0354 0%, #08023f 100%); */
  background: #08023f;
  background-size: cover;
  background-repeat: no-repeat;
}

html,
body {
  cursor: none !important;
}

section {
  position: relative;
}

a {
  color: #000;
  text-decoration: none;
  margin: 0px;
  padding: 0px;
  transition: 0.2s linear;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
li {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

dl,
ol,
ul {
  margin-top: 0;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999999;
}

.header-container {
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-menu {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: 12px;
}

.header-menu .menu-list {
  display: flex;
  align-items: center;
  /* backdrop-filter: blur(10px);
  background: #ffffff80; */
  border-radius: 8px;
  padding: 0;
}

/* .header-menu .menu-list li:not(:last-child) {
  border-right: 1px solid #fff;
} */

.header-menu .menu-list .dropdown-menu {
  background: radial-gradient(50% 50% at 50% 50%, #0b0354 0%, #08023f 100%);
}

.header-menu .menu-list li a,
.header-menu .menu-list li.dropdown button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 16px;
  color: #fff;
  text-transform: capitalize;
  background-color: transparent;
  border-radius: 8px;
  letter-spacing: 1px;
  text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.75);
}

.header-menu .menu-list li a.dropdown-item {
  justify-content: flex-start;
  padding: 8px 30px;
  height: auto;
  border-radius: 0 !important;
}

.header-menu .menu-list li.dropdown button {
  border: 0;
}


.header-menu .menu-list li a.contact-btn {
  color: #fff;
  background: linear-gradient(84.25deg, #5612b5 0%, #ab75f0 100%);
  text-transform: uppercase;
}

.header-logo img {
  max-height: 90px;
}

.primary-btn:hover,
.primary-btn {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(84.25deg, #5612b5 0%, #ab75f0 100%);
  border-radius: 8px;
  border: 1px solid #ffffff;
  text-transform: uppercase;
  padding: 13px 35px;
}

.header-social ul {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 8px;
  margin-top: 12px;
}

.header-social ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 16px;
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid #ffffff33;
  border-radius: 8px;
}

.header-menu .menu-list li a:hover {
  background: linear-gradient(84.25deg, #5612b5 0%, #ab75f0 100%);
  color: #fff;
}

/* .header-menu .menu-list li:first-child a,
.header-social ul li:first-child a {
  border-radius: 8px 0 0 8px;
}

.header-social ul li:last-child a {
  border-radius: 0 8px 8px 0;
} */

.hamburger {
  width: 40px;
  height: 40px;
  background-color: blueviolet;
  position: relative;
  display: none;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.hamburger::after {
  content: "";
  position: absolute;
  background-color: #fff;
  height: 2px;
  width: 20px;
  box-shadow: 0 8px #fff;
  transform: translateY(-8px);
  transition: 0.3s;
}

.hamburger::before {
  content: "";
  position: absolute;
  background-color: #fff;
  height: 2px;
  width: 20px;
  transform: translateY(8px);
  transition: 0.3s;
}

.hamburger.active {
  transition: 0.3s;
}

.hamburger.active::before {
  transform: translateY(0px) rotate(45deg);
}

.hamburger.active::after {
  transform: translateY(0px) rotate(-45deg);
  box-shadow: none;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #040122;
  opacity: 0.5;
  cursor: pointer;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: hidden;
}

.mobile-nav-overlay.expand {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
}

.mobile-nav-wrapper.expand {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# banner
--------------------------------------------------------------*/
.banner {
  /* background-image: url("../images/banner-bg.png");
  background-size: cover;
  background-position: center; */
  text-align: center;
  padding-top: 220px;
  padding-bottom: 120px;
  min-height: 480px;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .banner-bg {
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 170%;
} */

.banner-bg {
  position: absolute;
  z-index: -1;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #08023f;
}

.banner-bg::after {
  content: "";
  background: linear-gradient(0deg, #08023f, transparent);
  height: 100px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.page-title video {
  mix-blend-mode: plus-lighter;
  opacity: 1;
}

.banner-bg video {
  /* width: 100%; */
  /* height: 100%; */
  margin: 0;
  opacity: 0.5;
  min-width: 100%;
  transform: scale(1.5);
  min-height: 100vh;
}

.banner-bg img {
  opacity: 0.75;
  animation: anim4 42s linear infinite;
}

@keyframes anim4 {
  0% {
    transform: translateY(0px);
  }

  10% {
    transform: translateY(-10px) rotate(-3deg);
  }

  20% {
    transform: translateY(-15px) rotate(-5deg);
  }

  30% {
    transform: translateY(-20px) rotate(-7deg);
  }

  40% {
    transform: translateY(-25px) rotate(-4deg);
  }

  50% {
    transform: translateY(-30px) rotate(-2deg);
  }

  60% {
    transform: translateY(-25px) rotate(-4deg);
  }

  70% {
    transform: translateY(-20px) rotate(-2deg);
  }

  80% {
    transform: translateY(-15px) rotate(0deg);
  }

  90% {
    transform: translateY(-10px) rotate(-2deg);
  }

  100% {
    transform: translateY(0px);
  }
}

.banner h1 {
  font-size: 80px;
  font-weight: 500;
  color: #fff;
  line-height: 1.25;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0px 0px 16px #ffffff80;
  margin-bottom: 20px;
}

.banner p {
  font-size: 24px;
  margin-bottom: 100px;
  text-shadow: 0px 0px 16px #ffffff80;
  text-align: center;
}

.go-down {
  font-size: 14px;
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  margin: 0 auto;
}

.go-down i {
  font-size: 16px;
  transform: rotate(90deg);
}

#astronaut1>img {
  display: block;
  right: 4%;
  animation: anim1 24s linear infinite;
  position: absolute;
  pointer-events: none;
  opacity: 0.9;
}

#astronaut2>img {
  display: block;
  left: 2%;
  position: absolute;
  animation: anim2 24s linear infinite;
  pointer-events: none;
  opacity: 0.9;
}

@keyframes anim1 {
  0% {
    transform: translateY(0px);
  }

  10% {
    transform: translateY(30px) rotate(10deg);
  }

  20% {
    transform: translateY(60px) rotate(20deg);
  }

  30% {
    transform: translateY(90px) rotate(30deg);
  }

  40% {
    transform: translateY(120px) rotate(20deg);
  }

  50% {
    transform: translateY(150px) rotate(30deg);
  }

  60% {
    transform: translateY(120px) rotate(40deg);
  }

  70% {
    transform: translateY(90px) rotate(10deg);
  }

  80% {
    transform: translateY(60px) rotate(20deg);
  }

  90% {
    transform: translateY(30px) rotate(10deg);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes anim2 {
  0% {
    transform: translateY(0px);
  }

  10% {
    transform: translateY(-30px) rotate(-10deg);
  }

  20% {
    transform: translateY(-60px) rotate(-20deg);
  }

  30% {
    transform: translateY(-90px) rotate(-10deg);
  }

  40% {
    transform: translateY(-120px) rotate(0deg);
  }

  50% {
    transform: translateY(-150px) rotate(-10deg);
  }

  60% {
    transform: translateY(-120px) rotate(0deg);
  }

  70% {
    transform: translateY(-90px) rotate(16deg);
  }

  80% {
    transform: translateY(-60px) rotate(10deg);
  }

  90% {
    transform: translateY(-30px) rotate(0deg);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes anim3 {
  0% {
    transform: translateY(0px);
  }

  10% {
    transform: translateY(-10px) rotate(-5deg);
  }

  20% {
    transform: translateY(-20px) rotate(-10deg);
  }

  30% {
    transform: translateY(-30px) rotate(-7deg);
  }

  40% {
    transform: translateY(-40px) rotate(0deg);
  }

  50% {
    transform: translateY(-50px) rotate(-7deg);
  }

  60% {
    transform: translateY(-40px) rotate(0deg);
  }

  70% {
    transform: translateY(-30px) rotate(12deg);
  }

  80% {
    transform: translateY(-20px) rotate(4deg);
  }

  90% {
    transform: translateY(-10px) rotate(0deg);
  }

  100% {
    transform: translateY(0px);
  }
}

/*--------------------------------------------------------------
# banner
--------------------------------------------------------------*/
.section-title {
  font-weight: 500;
  font-size: 54px;
  line-height: 1.25;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0px 0px 16px #ffffff80;
  color: #ffffff;
  margin-bottom: 20px;
}

p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.6;
  color: #fff;
}

.mb-20 {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  margin-top: 90px;
  padding-block: 0px 90px;
  text-align: center;
  position: relative;
}

.about h2 {
  margin-bottom: 20px;
}

.about p {
  max-width: 1170px;
  margin-inline: auto;
}

.about p:not(:last-child) {
  margin-bottom: 20px;
}

.about-bg {
  position: absolute;
  bottom: -210px;
  z-index: -1;
  width: 100%;
  mix-blend-mode: plus-lighter;
  opacity: 0.6;
}

.about-bg img {
  width: 100%;
}

.blend-plus {
  mix-blend-mode: plus-lighter;
}

.about-video {
  max-width: 720px;
  margin: 42px auto 0;
  /* background: linear-gradient(84.25deg, #5612b5 0%, #ab75f0 100%); */
  background: rgba(255, 255, 255, 0.2);
  padding: 8px;
  border-radius: 16px;
  display: flex;
  align-items: center;
}

.about-video video {
  border-radius: 12px;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Feature
--------------------------------------------------------------*/
.feature {
  background-image: url("../images/feature-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.feature-content {
  padding-inline: 60px;
}

.space-craft,
.satalite-img {
  animation: anim3 36s linear infinite;
}

.mb-77 {
  margin-bottom: 77px;
}

/*--------------------------------------------------------------
# Feature
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# global-coverage
--------------------------------------------------------------*/
.global-coverage {
  /* background-image: url("../images/global-coverage-bg.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat; */
  padding-block: 120px;
  text-align: center;
}

.global-coverage-bg {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: 0;
  z-index: -1;
  mix-blend-mode: color-dodge;
}

.global-coverage p {
  margin-bottom: 20px;
  max-width: 1170px;
  margin-inline: auto;
}

.map-img img {
  width: 100%;
  max-width: 520px;
}

/*--------------------------------------------------------------
# global-coverage
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
/* .contact {} */

.contact-elem {
  position: relative;
  overflow: hidden;
}

.contact-elem:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(9, 3, 71, 0) 80%, #08023f 90%);
  z-index: 1;
  bottom: 0;
}

.contact-form-wrapper {
  padding: 38px 60px;
}

.contact-form {
  padding: 42px;
  border-radius: 40px;
  box-shadow: 0px 0px 12px 0px #ffffff99;
  border: 1px solid #ffffff66;
}

form {
  margin-top: 30px;
}

form .row {
  row-gap: 30px;
}

.form-label {
  font-size: 16px;
  line-height: 100%;
  font-weight: 400;
  color: #fff;
  text-transform: capitalize;
}

.form-select,
.form-control {
  height: 55px;
  font-weight: 400;
  font-size: 18px;
  line-height: 100%;
  backdrop-filter: blur(4px);
  border: 1px solid #ffffff33;
  background-color: #ffffff1a;
  padding: 14px 20px;
  border-radius: 8px;
  color: #fff;
  box-shadow: none !important;
}

.form-control::placeholder {
  color: #908dae;
}

textarea {
  height: 100px !important;
}

option {
  background-color: #908dae;
}

/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# News Article
--------------------------------------------------------------*/
.news {
  padding: 120px 0;
}

.news .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  transition: 0.4s;
  position: relative;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  padding: 4px;
  background: linear-gradient(270deg, #ee741d, #5612b5, #ab75f0, #ee741d);
  background-size: 400% 400%;
  z-index: 2;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-move 2s linear infinite;
  opacity: 0
}

@keyframes border-move {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.news-card:hover {
  transform: scale(1.05);
  border-color: #ab75f0;
}

.news-card:hover::before {
  opacity: 1;
}

.news-img {
  position: relative;
}

.news-post {
  font-size: 14px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 9;
  background: #ffffffcc;
  border-radius: 6px;
  padding: 8px 12px;
}

.news-img img {
  width: 100%;
  border-radius: 4px;
  height: 260px;
  object-fit: cover;
}

.news p {
  font-size: 18px;
  margin-top: 20px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

/*--------------------------------------------------------------
# News Article
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# together
--------------------------------------------------------------*/
.together {
  position: relative;
  padding-block: 180px 170px;
}

.stars.together::after {
  content: "";
  background: linear-gradient(0deg, #08023f, transparent, #08023f);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.together-content {
  max-width: 810px;
}

.together-content p {
  font-size: 18px;
}

.universe-img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  /* animation: universeBlink 2s infinite, fade 2s infinite; */
  /* animation: anim4 36s linear infinite; */
  opacity: 0.35;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes universeBlink {

  0%,
  100% {
    stroke-dashoffset: 300;
    /* Path completely hidden */
  }

  50% {
    stroke-dashoffset: 0;
    /* Path fully visible */
  }
}

@keyframes fade {

  0%,
  100% {
    opacity: 1;
    /* Fully visible */
  }

  50% {
    opacity: 0.9;
    /* Fully transparent */
  }

}

/*--------------------------------------------------------------
# together
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
footer {
  position: relative;
  padding: 90px 40px;
  overflow: hidden;
}

footer:before {
  content: "";
  background: radial-gradient(50% 50% at 50% 50%, #fe31cd 0%, rgba(254, 49, 205, 0) 100%);
  height: 480px;
  bottom: -240px;
  left: 0;
  right: 0;
  position: absolute;
  z-index: -1;
  animation: blink 4s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 0.8;
    /* Initial color */
  }

  50% {
    opacity: 0.4;
    /* Blinking color */
  }
}

footer h4 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

footer p {
  font-size: 16px;
}

/* .footer-card {
  padding: 30px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid #ffffff33;
  background: #00000033;
  height: 100%;
} */

.footer-menu {
  padding-left: 0;
}

.footer-menu li {
  font-size: 12px;
  list-style: none;
  color: #fff;
  margin-bottom: 12px;
}

.footer-menu li:last-child {
  margin-bottom: 0;
}

.footer-menu a {
  font-size: 20px;
  font-weight: 300;
  line-height: 160%;
  color: #fff;
  font-family: "Geist", sans-serif;
  text-transform: capitalize;
}

.footer-social ul {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 20px;
}

.footer-social ul a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  backdrop-filter: blur(10px);
  color: #fff;
  border: 1px solid #ffffff33;
  background: #ffffff1a;
  height: 48px;
  border-radius: 0;
}

.header-social ul a:hover,
.footer-social ul a:hover {
  background-color: #5612b5;
}

.footer-social ul li:first-child a {
  border-radius: 8px 0 0 8px;
}

.footer-social ul li:last-child a {
  border-radius: 0 8px 8px 0;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 80px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-email i {
  color: #fff;
}

/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Custom Cursor
--------------------------------------------------------------*/

.service-title span:before,
.service-title span:after {
  content: "";
  margin: 0 auto;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  border: 3px solid #000;
  display: none;
  width: 300px;
  height: 300px;
  border-radius: 100%;
}

/* Custom cursor dots */
.custom-cursor-dot,
.custom-cursor-dot-outline {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transition: background 0.2s;
}

.custom-cursor-dot {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px 2px #fff3;
}

.custom-cursor-dot-outline {
  width: 10px;
  height: 10px;
  /* border: 2px solid #fff; */
  background: #ab75f0;
  border-radius: 50%;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  transition: border-color 0.2s, width 0.2s, height 0.2s;
}

/* falling Star */
.light {
  height: 100%;
  width: 100%;

  &:after,
  &:before {
    content: "";
    display: block;
    position: absolute;
  }
}

.star1 {
  animation: 3s linear 1s infinite alternate twinkle;
}

.star2 {
  animation: 4s linear 0s infinite alternate twinkle;
}

.star3 {
  animation: 3.5s linear 0.5s infinite alternate twinkle;
}

.star4 {
  animation: 1.25s linear 1.5s infinite alternate twinkle;
}

.star5 {
  animation: 4s linear 2s infinite alternate twinkle;
}

.star6 {
  animation: 2.5s linear 1s infinite alternate twinkle;
}

@keyframes twinkle {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

section.start-fall {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  animation: animateBg 50s linear infinite;
  z-index: 0;
  pointer-events: none;
}

@keyframes animateBg {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.start-fall-div {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.1), 0 0 0 8px rgba(255, 255, 255, 0.1), 0 0 20px rgba(255, 255, 255, 0.1);
  animation: animate 3s linear infinite reverse;
}

.start-fall-div::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateX(-100%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #fff);
}

@keyframes animate {
  0% {
    transform: rotate(315deg) translateX(0);
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    transform: rotate(315deg) translateX(-1000px);
    opacity: 0;
  }
}

.start-fall-1 {
  top: 0;
  right: 0;
  left: initial;
  animation-delay: 0s;
  animation-duration: 4s;
}

.start-fall-2 {
  top: 0;
  right: 600px;
  left: initial;
  animation-delay: 1s;
  animation-duration: 8s;
}

.start-fall-3 {
  top: 0px;
  right: 800px;
  left: initial;
  animation-delay: 3s;
  animation-duration: 12s;
}

.image-movement {
  transition: transform 0.2s ease;
  will-change: transform;
}

.partner-logo {
  display: block;
  perspective: 800px;
}

.partner-logo img {
  display: block;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
  transform-style: preserve-3d;
}

.partner-logo:hover img {
  transform: rotateY(360deg);
}

.loader {
  display: flex;
  background: #040122;
}

.planet-3-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
  filter: opacity(0.5);
  mix-blend-mode: color-dodge;
}

.page-link {
  padding: 12px 20px;
  font-size: 16px;
  background: transparent;
  color: #fff;
}

.active>.page-link,
.page-link.active {
  background: #fff;
  border-color: #fff;
  color: #08023f;
}

.page-link:hover {
  color: #08023f;
}