footer {
  position: relative;
  width: 100%;
  height: 130px;
  background-color: #000;
  padding: 25px 0 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  footer {
    height: 160px;
    padding-bottom: 70px;
  }
}
footer .gradient-line {
  position: absolute;
  top: 0;
  left: 0;
  right: auto;
  bottom: auto;
  width: 100%;
  height: 4px;
  background: repeating-linear-gradient(to right, #EC008C 0%, #FF6700 50%, #EC008C 100%);
  background-size: 200vw 200vw;
  animation: v2_GradientLine 2s infinite linear forwards;
  transition: opacity 0.3s;
}
@keyframes v2_GradientLine {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 200vw;
  }
}
@media (max-width: 1200px) {
  footer .gradient-line {
    bottom: -54px;
  }
}
footer .logo {
  display: block;
  width: 170px;
  margin: 0 auto;
}
footer .logo svg {
  width: 100%;
}
footer p {
  text-align: center;
  font-size: 16px;
  color: #fff;
  margin-top: 10px;
  font-weight: 400;
}
@media (max-width: 768px) {
  footer p {
    margin-top: 0;
  }
}/*# sourceMappingURL=footer.css.map */