/* =========================================================
   FOOTER
   ========================================================= */

.fixed-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: transparent;
  z-index: 100;

  overflow: hidden;
  white-space: nowrap;
}

.description-footer {
  display: inline-block;
  padding-left: 100%;
  font-size: 3vh;
  color: rgb(0, 0, 0);

  animation: marquee 10s linear infinite;
  will-change: transform;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
