.pin-spacer {
  max-width: 100%;
}

.history {
  color: var(--dark-blue);
  overflow: hidden;
  max-width: 100dvw;
}

.history::after {
  content: attr(data-text);
  position: absolute;
  bottom: 32px;
  left: 55%;
  color: var(--light-gray);
  font-size: calc(100px + (144 - 100) * ((100vw - 320px) / (1440 - 320)));
  line-height: 1.1;
  font-weight: 600;
  text-wrap: nowrap;
  transform: translateX(var(--translate-x-on-scroll));
}

.history::after::-webkit-scrollbar {
  height: 0;
}

.history::after::-webkit-scrollbar-thumb {
  background: transparent;
}

.history::-webkit-scrollbar {
  height: 0;
}

.history::-webkit-scrollbar-thumb {
  background: transparent;
}

.history-step {
  width: 100%;
  min-width: 60%;
  padding: 30dvh 0;
}

.bar {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: var(--dark-blue);
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 500px;
  background-color: var(--dark-blue);
  width: 20px;
  height: 20px;
}

.history-step h4 {
  max-width: 150px;
  text-align: center;
  height: 28px;
}

.think {
  width: 100%;
  height: fit-content;
  padding-bottom: 244px;
  padding-top: 169px;
  top: 169px;
}

.ellipse-to-bg-container {
  top: 92%;
  left: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  background-color: transparent;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

@media screen and (min-width: 900px) {
  .history-step h4 {
    max-width: unset;
  }
}

@media screen and (max-width: 900px) {
  .ellipse-to-bg-container {
    height: 140%;
  }
}

.ellipse-to-bg {
  top: 0%;
  left: 50%;
  width: 100px;
  height: 100px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--dark-blue);
  transform: translate(-50%, 0);
  transform-origin: center top;
}

.needs {
  color: var(--white);
}

.teammate img {
  width: 100%;
  max-width: 160px;
}

.clients {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.clients-list {
  display: flex;
  column-gap: 64px;
  width: fit-content;
  height: fit-content;
  will-change: transform;
  user-select: none;
}

.client {
  width: 128px;
  height: 128px;
}

@media screen and (max-width: 900px) {
  .teammates {
    flex-direction: column;
  }

  .teammate img {
    max-width: 120px;
  }

  .client {
    width: 100px;
    height: 100px;
  }
}

@media screen and (max-width: 560px) {
  .clients-list {
    column-gap: 32px;
  }

  .teammate img {
    max-width: 80px;
  }

  .client {
    width: 80px;
    height: 80px;
  }
}
