/* slider */
/* section two */

.animate-marquee{
 width: fit-content;
  will-change: transform;

}

/* section third */
.six-parallax-img-wrap,
.six-parallax-row > div > div:not(.six-parallax-img-wrap) {
    will-change: transform, opacity;
}

.parallax-img {
    will-change: transform;
    border-radius: 15px !important;
    overflow: hidden;
}

/* section five */
.journey-year-btn {
    color: #ffffff;
    transition: color 0.3s ease;
}

.journey-year-btn.is-active {
    color: #CC1F4B;
}

.journey-anim {
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.journey-anim.journey-slide-hidden {
    opacity: 0;
    transform: translateX(24px);
}

.accordion-icon-vert {
  transition: transform 0.25s ease;
}

.accordion-toggle[aria-expanded="true"] .accordion-icon-vert {
  transform: scaleY(0);
}

@keyframes float-updown {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}

.float-updown {
  animation: float-updown 3.5s ease-in-out infinite;
}