.c4y-abp {
  position: relative;
  width: 100%;
  background: transparent;
  margin-top: 4rem;
  padding-top: 3rem;
  padding-bottom: 8rem;
}

.c4y-abp__inner {
  width: 100%;
  max-width: var(--global-content-width, 1152px);
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.c4y-abp__line {
  height: 1px;
  background: rgb(228, 231, 236);
  margin: 0 0 2.25rem;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.c4y-abp__desc {
  margin: 0 auto 2.25rem !important;
  max-width: 820px;
  text-align: center;
  color: rgb(107, 114, 128) !important;
  font-size: 16px !important;
  line-height: 24px !important;
  font-weight: 400 !important;
  opacity: 0;
  transform: translate3d(0, 20px, 0);
}

.c4y-abp__wrap {
  overflow: hidden;
  width: 100%;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
}

@keyframes c4y-abp-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.c4y-abp__track {
  display: flex;
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  width: max-content;
  animation: c4y-abp-scroll var(--c4y-abp-dur, 26s) linear infinite paused;
  will-change: transform;
}

.c4y-abp__track:hover {
  animation-play-state: paused;
}

.c4y-abp__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  flex-shrink: 0;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.c4y-abp__item img {
  width: auto;
  height: clamp(24px, 2.8vw, 44px);
  max-width: clamp(96px, 16vw, 280px);
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.48;
  transition: filter .25s ease, opacity .25s ease;
}

.c4y-abp__item:hover img,
.c4y-abp__item img:hover {
  filter: none;
  opacity: 1;
}

.c4y-abp__item span {
  color: rgba(20, 31, 56, 0.30);
  font-size: clamp(22px, 3.8vw, 66px);
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  transition: color .25s ease;
}

.c4y-abp__item span:hover {
  color: rgba(20, 31, 56, 0.44);
}

.c4y-abp.c4y-abp--visible .c4y-abp__wrap {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.16s;
}

.c4y-abp.c4y-abp--visible .c4y-abp__line {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.c4y-abp.c4y-abp--visible .c4y-abp__desc {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: 0.08s;
}

.c4y-abp.c4y-abp--visible .c4y-abp__track {
  animation-play-state: running;
}

.c4y-abp.c4y-abp--visible .c4y-abp__item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (max-width: 1023px) {
  .c4y-abp {
    margin-top: 3rem;
    padding-top: 2.25rem;
    padding-bottom: 6rem;
  }

  .c4y-abp__desc {
    font-size: 16px !important;
    line-height: 24px !important;
    margin-bottom: 1.75rem !important;
  }
}

@media (max-width: 639px) {
  .c4y-abp {
    margin-top: 2.5rem;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }

  .c4y-abp__desc {
    font-size: 16px !important;
    line-height: 24px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .c4y-abp__track {
    animation: none;
  }
}
