html {
  scroll-behavior: smooth;
}

.font-inter {
  font-family: "Inter", sans-serif;
}

.font-space {
  font-family: "Space Grotesk", sans-serif;
}

.footer-logo {
  width: 330px;
  height: auto;
  margin: 96px auto 16px;
  max-width: 80%;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-track {
  animation: scroll-left 5s linear infinite;
  will-change: transform;
}

.shadow {
  box-shadow: 3px 3px 0px 0px #000000;
}

.services-bg {
  background-color: #e2f591;
  opacity: 1;
  background-image: linear-gradient(#ceee48 2px, transparent 2px),
    linear-gradient(to right, #ceee48 2px, #e2f591 2px);
  background-size: 40px 40px;
}

.contact-bg {
  background-color: #c0dbff;
  opacity: 1;
  background-image: linear-gradient(#a0a6e9 1px, transparent 1px),
    linear-gradient(to right, #a0a6e9 1px, #c0dbff 1px);
  background-size: 40px 40px;
}

.button-active {
  background-color: #ceee48;
  box-shadow: 3px 3px 0px 0px #000000;
}

#about,
#process {
  scroll-margin-top: 230px;
}

#services,
#contact {
  scroll-margin-top: 100px;
}

.client-logo {
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.25));
}

.cm-carousel-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: cm-marquee var(--cm-speed, 20s) linear infinite;
}

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