.get-in-touch {
  font-size: 4rem;
  font-size: clamp(4rem, 2.8rem + 6vw, 10rem);
}

.animated-text-action-wrap {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  display: block !important;
  max-width: 460px;
  margin-top: 40px;
  transition: all ease-in 0.2s;
}
.animated-text-action-wrap:hover {
  background-color: oxycolor(16);
}
.animated-text-action-wrap:hover div {
  color: white !important;
}

.animated-text-action {
  display: inline-block !important;
  white-space: nowrap;
  animation: scrollText 15s linear infinite;
  padding-right: 2em; /* spacing between repeated texts */
}

@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
