#btn-up {
  right: unset;
  left: 22px;
}

#lang-nav {
  left: unset;
  right: 22px;
}

.hero-contact a {
  margin: 0 auto 0 40px;
}

.come-as-you-are .container div:nth-of-type(2) p {
  transform: translateX(5%);
}

@keyframes marquee {
  0% {
    transform: translateX(-10%);
  }
  50% {
    transform: translateX(110%);
  }
  100% {
    transform: translateX(-10%);
  }
}

.text-wrapper {

  a {

    &:hover {

      span {
        transform: translateX(-50%);
      }
    }
  }
}

@keyframes carousel {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(50% - 10px));
  }
}
