.orbiter {
  --core-radius: 10vw;
  --orbiter-radius: calc( var(--core-radius) * 8);
  width: var(--orbiter-radius);
  height: var(--orbiter-radius);
}
.orbiter circle {
  cx: calc(var(--orbiter-radius) / 2);
  cy: calc(var(--orbiter-radius) / 2);
}
.orbiter .core {
  fill: rgba(255, 255, 255, 0.0666666667);
  r: calc(var(--core-radius));
}
.orbiter .orbit {
  --orbit-radius: 15vw;
  fill: transparent;
  r: var(--orbit-radius);
}
.orbiter .orbit.dashed {
  stroke-width: 2px;
  stroke: rgba(255, 255, 255, 0.0666666667);
  stroke-dasharray: 32;
}
.orbiter .satellite {
  --leap-duration: 10s;
  --satellite-core-distance: 100px;
  --satellite-radius: 2vw;
  --start-rotation: 0deg;
  fill: rgba(255, 255, 255, 0.0666666667);
  r: calc(var(--satellite-radius));
  cx: calc(var(--orbiter-radius) / 2 + var(--satellite-core-distance));
  animation: orbitCircle var(--leap-duration) linear infinite forwards;
  transform-origin: 50% 50%;
  transition: 0.15s;
}
.orbiter .satellite.border {
  stroke-width: 2px;
  stroke: rgba(255, 255, 255, 0.0666666667);
  fill: transparent;
}

@keyframes orbitCircle {
  from {
    transform: rotate(var(--start-rotation));
  }
  to {
    transform: rotate(calc(var(--start-rotation) + 360deg));
  }
}
.fx {
  --fx-asset-x: 0%;
  --fx-asset-y: 0%;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  overflow: hidden;
  z-index: -1;
}
.fx > :first-child {
  transform: translate(var(--fx-asset-x), var(--fx-asset-y));
}

.fx.center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  --fx-asset-x: 0%;
  --fx-asset-y: 0%;
}

#hero-orbiter {
  right: 0px;
  bottom: 0px;
  transform: translateY(30%);
  --fx-asset-x: 50%;
  --fx-asset-y: 0%;
}
@media screen and (max-width: 1024px) {
  #hero-orbiter {
    top: 0px;
    transform: unset;
  }
}

#scroll-indicator {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
}
#scroll-indicator img {
  height: 5rem;
}

.big-hex {
  height: auto;
  display: flex;
  justify-content: center;
}
.big-hex img {
  opacity: 0.2;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#big-hex-1 {
  width: 50%;
  left: -25%;
  top: -20vh;
}

#big-hex-2 {
  width: 50vh;
  right: 0%;
  bottom: 0%;
  --fx-asset-x: 50%;
  --fx-asset-y: 50%;
}

.text-glow {
  text-shadow: 0 4px 24px rgba(255, 255, 255, 0.1333333333);
}

#first-call {
  padding: var(--spacing-xlarge);
  position: relative;
  --marker-distance: -1vw;
  --marker-length: 5vw;
}
#first-call::before, #first-call::after {
  content: "";
  width: var(--marker-length);
  height: var(--marker-length);
  position: absolute;
  border: solid rgba(255, 255, 255, 0.5333333333);
}
#first-call::before {
  border-width: 1px 0 0 1px;
  top: var(--marker-distance);
  left: var(--marker-distance);
}
#first-call::after {
  border-width: 0 1px 1px 0;
  bottom: var(--marker-distance);
  right: var(--marker-distance);
}

.place-markers {
  position: relative;
  --marker-distance: -1vw;
  --marker-length: 5vw;
}
.place-markers::before, .place-markers::after {
  content: "";
  width: var(--marker-length);
  height: var(--marker-length);
  position: absolute;
  border: solid rgba(255, 255, 255, 0.5333333333);
}
.place-markers::before {
  border-width: 1px 0 0 1px;
  top: var(--marker-distance);
  left: var(--marker-distance);
}
.place-markers::after {
  border-width: 0 1px 1px 0;
  bottom: var(--marker-distance);
  right: var(--marker-distance);
}

#testimonials-radial-gradient {
  --blur-amount: 150px;
  width: 50vh;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-image: radial-gradient(var(--fade-sec-acc));
  filter: blur(var(--blur-amount));
}

#content > #hero {
  height: 90vh;
  padding-bottom: 15vh;
}

#content section.lp-section {
  gap: 4rem;
}
#content section.lp-section.-column {
  flex-direction: column;
  gap: 2rem;
}
#content section.lp-section.-column .text-box {
  text-align: center;
}
#content section.lp-section > * {
  flex: 1;
}

section.lp-section {
  height: -moz-fit-content;
  height: fit-content;
  padding: 5vh var(--side-padding);
  position: relative;
}

.content-box img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .content-box {
    min-width: 100%;
  }
}

.text-box {
  display: block;
  text-align: left;
  font-size: 1rem;
  color: #fff;
}
.text-box h1, .text-box h2, .text-box h3 {
  font-family: "Archivo";
  font-size: 3em;
  margin-bottom: var(--spacing-xlarge);
  font-weight: 600;
}
.text-box p {
  color: var(--text-color-100);
  font-size: 1.2em;
  line-height: 1.6em;
  font-weight: 300;
  font-family: "Poppins";
}

#hero > .text-box h1, #hero > .text-box h2, #hero > .text-box h3 {
  font-size: 3.5em;
  margin-bottom: var(--spacing-small);
}
#hero > .text-box button .ti {
  margin-left: 1rem;
  margin-top: calc(0px - var(--spacing-small));
}

.image-window {
  display: grid;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background-color: #1A1C2C;
  border-radius: var(--spacing-medium);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  grid-template-rows: auto 1fr;
  max-width: 100%;
}
.image-window .dots {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: var(--spacing-medium);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.image-window .dots .dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  margin-left: var(--spacing-small);
}
.image-window .dots .dot:nth-of-type(1) {
  background-color: var(--success);
}
.image-window .dots .dot:nth-of-type(2) {
  background-color: var(--warning);
}
.image-window .dots .dot:nth-of-type(3) {
  background-color: var(--error);
}

.angle {
  --angle-x: 0deg;
  --angle-y: 0deg;
  transform: perspective(1000px) rotatey(var(--angle-y)) rotatex(var(--angle-x));
}
.angle.angle-tl {
  --angle-x: 5deg;
  --angle-y: -15deg;
}
.angle.angle-tr {
  --angle-x: 5deg;
  --angle-y: 15deg;
}

#cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-xlarge);
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 768px) {
  #cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 520px) {
  #cards-container {
    grid-template-columns: 1fr;
  }
}

.hiveum-card {
  width: 100%;
  position: relative;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1333333333);
  padding: 0;
}
.hiveum-card .fx {
  top: 0;
  left: 50%;
  --fx-asset-x: -50%;
  --fx-asset-y: -50%;
}
.hiveum-card header {
  padding: var(--spacing-large);
  width: 100%;
  overflow: hidden;
  position: relative;
}
.hiveum-card header > span.ti {
  font-size: 3rem;
  color: #fff;
}
.hiveum-card main {
  padding: var(--spacing-large);
}
.hiveum-card h3 {
  font-size: var(--header-size-400);
  margin-bottom: var(--spacing-medium);
  font-weight: 600;
  color: #fff;
  font-family: "Archivo";
}
.hiveum-card p {
  font-size: var(--text-size-200);
}
.hiveum-card img {
  width: 6rem;
}

.sutil-heading {
  padding: var(--spacing-small) 0;
  letter-spacing: 1ch;
  text-shadow: -4px 0 0px rgba(255, 255, 255, 0.0196078431), 4px 0 0px rgba(255, 255, 255, 0.0196078431);
  position: relative;
}
.sutil-heading::after {
  --w: 2rem;
  width: var(--w);
  position: absolute;
  height: 1px;
  border-radius: 1px;
  background: radial-gradient(var(--fade-acc-sec));
  bottom: -2px;
  left: calc(50% - var(--w) / 2);
}

#testimonials {
  min-height: 100vh;
  padding-top: 10vh;
  padding-bottom: 10vh;
}
@media screen and (max-width: 1024px) {
  #testimonials {
    min-height: -moz-fit-content;
    min-height: fit-content;
  }
}
#testimonials .fx {
  top: 0;
  left: 0;
}

.testimonial {
  max-width: 40%;
  display: flex;
  align-items: flex-end;
  gap: var(--spacing-medium);
}
@media screen and (max-width: 1024px) {
  .testimonial {
    max-width: 100%;
  }
}
.testimonial div:first-child {
  flex: 1;
}
.testimonial.fromLeft {
  flex-direction: row-reverse;
}
.testimonial .message-balloon {
  background: rgba(0, 0, 0, 0.8666666667);
  box-shadow: 0px 16px 64px rgba(0, 0, 0, 0.1333333333);
  padding: var(--spacing-large);
  box-shadow: 0 0 0 var(--spacing-small) rgba(255, 255, 255, 0.0666666667);
  color: #fff;
  font-size: var(--text-size-300);
  transform-origin: 1000% 100%;
}
.testimonial.fromLeft .message-balloon {
  transform-origin: 0% 100%;
}
.testimonial .photo {
  width: 3rem;
  height: 3rem;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
  background: rgba(255, 255, 255, 0.0666666667);
}

.tabs {
  color: var(--text-100);
  font-size: var(--text-size-200);
}

.tab {
  font-family: "Archivo", "Poppins", "Arial", serif;
  font-weight: 500;
  transition: 0.15s;
  position: relative;
  padding: var(--spacing-medium);
}
.tab::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  bottom: 0;
  left: 0;
  background-image: var(--fade);
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.tab.notify::before {
  content: "";
  position: absolute;
  right: var(--spacing-medium);
  top: 0;
  width: var(--spacing-medium);
  height: var(--spacing-medium);
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 24px var(--accent), 0 0 24px var(--secondary);
  background: var(--secondary);
}
.tab.active {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.0666666667);
}
.tab.active::after {
  transform: scaleX(1);
}
.tab:hover {
  color: #fff;
}
.tab:hover::after {
  transform: scaleX(1);
}

.tabbing .page {
  transition: 0.15s;
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .tabbing .page:nth-child(odd) {
    flex-direction: column-reverse;
  }
}
.tabbing .page.active {
  visibility: visible;
  opacity: 1;
}/*# sourceMappingURL=landing_page.css.map */