html {
  scroll-behavior: smooth;
}
.chart-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  height: 320px;
}
body {
  transition:
    background-color 0.3s,
    color 0.3s;
}
.hero-swiper {
  width: 100%;
}
.hero-swiper .swiper-slide {
  height: 160px;
}
.reveal-on-scroll {
  transform: translateY(22px);
  transition: transform 0.45s ease-out;
  will-change: transform;
}
.reveal-on-scroll.is-visible {
  transform: translateY(0);
}

.team-swiper {
  overflow: visible;
}

.team-swiper .swiper-slide {
  height: auto;
}

.team-swiper .swiper-slide > div:first-child {
  overflow: hidden;
}

.team-swiper .swiper-slide img {
  transition: transform 0.35s ease;
}

.team-swiper .swiper-slide:hover img {
  transform: scale(1.25);
}
