.loader {
  height: 100vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.hero-section {
  position: relative;
  z-index: 1;
  height: 200vh;
  overflow: hidden;
  padding: 0 2rem;
  opacity: 0;
}

.hero-section .sticky-container {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
}

.hero-section .sticky-container .hero-magic {
  transform: translate(-45%, 0px) scale(0.1, 0.1);
}

.hero-section .sticky-container .hero-logic {
  transform: translate(45%, 0px) scale(0.1, 0.1);
}

.hero-section .sticky-container .hero-magic,
.hero-section .sticky-container .hero-logic,
.hero-section .sticky-container .orbit-div .orbit {
  width: 100%;
}

.magic-div,
.logic-div,
.orbit-div {
  width: 33.33%;
}

.hero-section .sticky-container .orbit-div .heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  color: white;
  position: absolute;
  font-family: var(--font-light);
  opacity: 1;
  mix-blend-mode: color-burn;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero-section .sticky-container .orbit-div .text1 {
  font-size: 2rem;
  color: white;
  text-align: center;
}

.hero-section .sticky-container .orbit-div .text2 {
  font-size: 5rem;
  text-align: center;
}

.hero-section .sticky-container .orbit-div .text3 {
  font-size: 2rem;
  text-align: center;
}

.hero-section .sticky-container .maglo-img {
  opacity: 0;
  position: absolute;
  width: 300px;
  height: 107px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1200px) {
  .hero-section .sticky-container .orbit-div .orbit {
    width: 100%;
  }
  .hero-section .sticky-container .orbit-div .heading .text1 {
    font-size: 1.5rem;
  }
  .hero-section .sticky-container .orbit-div .heading .text2 {
    font-size: 3.5rem;
  }
  .hero-section .sticky-container .orbit-div .heading .text3 {
    font-size: 1.2rem;
    word-spacing: 7px;
  }
}
@media (max-width: 480px) {
  .hero-section .sticky-container .orbit-div .orbit {
    width: 100%;
  }
  .hero-section .sticky-container .orbit-div .heading .text1 {
    font-size: 1.2rem;
  }
  .hero-section .sticky-container .orbit-div .heading .text2 {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
  .hero-section .sticky-container .orbit-div .heading .text3 {
    font-size: 1rem;
    word-spacing: -10px;
  }

  svg.sigma-orbit {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .orbit-div .orbit {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}

.sigma-orbit {
  display: none;
}

.chevrons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.chevrondown {
  width: 12px;
  height: 12px;
  border: solid #ccc;
  border-width: 0 2px 2px 0;
  display: inline-block;
  transform: rotate(45deg);
  opacity: 1;
}
.chevrondown:nth-child(odd) {
  animation: chevron-merge-bounce 1.6s infinite;
}
.chevrondown:nth-child(even) {
  animation: chevron-merge-bounce 1.6s infinite 0.2s;
}
@keyframes chevron-merge-bounce {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
  }
  50% {
    transform: translateY(10px) rotate(45deg);
    opacity: 0.3;
  }
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 1;
  }
}

.loader-magic,
.loader-logic,
.loader-plus,
.hero-magic,
.hero-logic,
.orbit,
.sigma-orbit,
.heading span {
  will-change: transform, opacity, filter;
}
