.footer {
  background: url("/img/footer.jpg") no-repeat;
  background-position: bottom center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.footer-cols {
  padding: 15vh 0;
  display: grid;
  grid-template-columns: 25% 12% 12% 12% 30%;
  justify-content: space-between;
}

.footer-cols ul li {
  list-style: none;
  margin-bottom: 20px;
}

.footer-cols ul li a {
  color: var(--color-white);
  transition: 0.3s all;
  display: flex;
  align-items: center;
  font-size: 14px;
}

.footer-cols ul li a::before {
  content: url("/img/btn-arrow.svg");
  width: 0px;
  display: flex;
  position: relative;
  transition: 0.3s all;
  opacity: 0;
}

.footer-cols ul li a:hover {
  color: var(--color-secondary);
}

.footer-cols ul li a:hover:before {
  width: 10px;
  margin-right: 10px;
  opacity: 1;
}

.logo-footer {
  position: absolute;
  max-width: 500px;
  left: -5%;
  bottom: -30%;
}

.footer .title {
  font-size: 20px;
  margin-bottom: 20px;
  text-shadow: 0 0 20px hsla(0, 0%, 100%, 0.4);
  position: relative;
}

.copyright {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright p,
.copyright a {
  font-size: 12px;
  text-align: center;
  color: var(--color-white);
}

.div-height {
  display: flex;
  width: 1px;
  height: 10px;
  background: var(--color-white);
  margin: 0px 5px;
}

.footer .coming-soon {
  background: var(--color-secondary);
  padding: 5px;
  border-radius: 10px;
  font-size: 10px;
  line-height: 100%;
  position: absolute;
  left: 30px;
}

.buy-lumia {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 550px;
  max-height: 200px;
  padding: 30px;
  box-sizing: border-box;
  border-radius: 30px;
  background: linear-gradient(270deg, #000 -12.83%, #080b2c 83.28%);
  border: 1px solid #16203e;
  align-items: center;
  overflow: hidden;
  position: relative;
  transition: 0.3s all;
}

.buy-lumia:hover {
  border-color: #ffffff;
  box-shadow: 0px 0px 20px #ffffff4d;
}

.buy-lumia:hover h3,
.buy-token {
  transition: 0.3s all;
}

.buy-lumia:hover h3 {
  text-shadow: 0 0 20px hsla(0, 0%, 100%, 0.4);
}

.buy-lumia:hover .buy-token {
  filter: brightness(1.5);
}

.lumia-tokens {
  width: 100%;
  height: 200px;
  left: 0;
  top: 0;
  position: absolute;
  z-index: 2;
}

.lumia-tokens img {
  position: absolute;
  animation: slide-top 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite both;
}

.lumia-tokens img:nth-child(1) {
  top: 5%;
  left: 30%;
}

.lumia-tokens img:nth-child(2) {
  right: 5%;
  top: 10%;
  animation-delay: 0.5s;
}

.lumia-tokens img:nth-child(3) {
  right: 40%;
  bottom: 2%;
  animation-delay: 0.75s;
}

.buy-cta {
  background: transparent;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 3;
}

.buy-cta img {
  margin-left: -140px;
  transition: 0.3s all;
}

.buy-cta:hover img {
  margin-left: -100px;
}

.stars-vid {
  position: absolute;
  top: 10px;
  left: 0px;
  width: 180px;
  z-index: 1;
  mix-blend-mode: lighten;
}

@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
