.mainHero {
  display: flex;
  justify-content: space-between;
  padding-top: 20vh;
  min-height: 80vh;
  padding-bottom: 20vh;
  box-sizing: border-box;
}

.textArt {
  display: flex;
  flex-direction: column;
  align-items: self-start;
  gap: 25px;
}

@media only screen and (min-width: 729px) {
  .mainHero {
    justify-content: center;
  }
  .textArt {
    align-items: center;
    text-align: center;
  }
}

.textArt h1 {
  margin: 0;
  font-size: 3rem;
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.textArt .in {
    background: linear-gradient(216deg, #f72a2a, #f7a12a, #d12af7);
    background-size: 600% 600%;

    animation: gradient 10s var(--cubic-bezier) infinite,
    swipeIn 0.3s var(--cubic-bezier) forwards;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.textArt .out {
    background: linear-gradient(216deg, #f72a2a, #f7a12a, #d12af7);
    background-size: 600% 600%;

    animation: gradient 10s var(--wayout-cubic-bezier) infinite,
      swipeOut 0.3s var(--wayout-cubic-bezier) forwards;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.textArt .disabled {
    display: none;
}

@keyframes swipeIn {
  0% {
    opacity: 0;
    translate: 0px 30px;
  }
  100% {
    opacity: 1;
    translate: 0px 0px;
  }
}

@keyframes swipeOut {
  100% {
    opacity: 0;
    translate: 0px -30px;
  }
  0% {
    opacity: 1;
    translate: 0px 0px;
  }
}

@media only screen and (min-width: 729px) {
  .heroExplainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
  }
}

@media only screen and (max-width: 729px) {
  .heroExplainer {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    gap: 25px;
  }
  .heroExplainer .rs,
  .heroExplainer .ls {
    height: fit-content;
    width: 100%;
  }

  .heroExplainer .rs svg,
  .heroExplainer .ls svg {
    /* width: 100%; */
    min-width: 32px;
    height: fit-content;
    max-width: 100%;
  }
}

.heroExplainer .ls {
  width: 100%;
}
.heroExplainer .rs {
  width: 100%;
}

.heroExplainer .rs svg,
.heroExplainer .ls svg {
  max-width: 100%;
}

.container {
}

#try-bitvault-mobile {
  display: none;
}

#try-bitvault-mobile:target {
  position: fixed;
  z-index: 999;
  display: flex;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}

#try-bitvault-mobile:target .modal {
  width: 400px;
  background-color: white;
  border-radius: 12px;
  padding: 12px;
  color: black;
  text-align: center;
}

.newHero {
  width: 100%;
  background-color: white;
  color: black;
}

.pixyDust {
  width: 100%;
  z-index: -1;
  -khtml-user-select: none;
  -o-user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

.mainPort {
  padding-bottom: 100px;
}
.whitePort {
  background-image: url(/assets/pixy-dust.svg);
  background-size: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  background-repeat: no-repeat;
}
