.infinite-scroller {
  overflow: hidden;
}

.infinite-scroller .scrollable {
  display: flex;
  width: fit-content;
  animation: slide-to-left 30s linear infinite;
}

.infinite-scroller.pause-on-hover .scrollable:hover {
  animation-play-state: paused;
}

@keyframes slide-to-left {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.infinite-scroller .scrollable > div {
  display: flex;
  align-items: center;
  justify-content: space-around;
  min-width: 100vw;
}

.infinite-scroller .scrollable > div > * {
  margin: 0 20px;
}

.contac-title {
  color: #F8602B;
}

.contact-div {
  color: #0A7BD1;
}

#btn-3 {
  background-color: #f8602b;
}

:root {
  --primary: #1c262f;
  --primary-light: #212d37;
  --secondary: #0ee951;
  --tertiary: #00dabf;
  --gradient: linear-gradient(to right, #0ee951, #00dabf);
}

