.page-header-block {
  height: 100vh;
  display: flex;
  align-items: center;
  padding-left: 5vw;
  padding-right: 5vw;
}

.header-text h1 {
  color: var(--primary);
  font-size: 80px;
  font-weight: bold;
}

.header-text p {
  font-size: 20px;
  margin-top: 10px;
}

.header-image-wrapper {
  position: relative;
  height: 100vh;
}

.header-image {
  position: sticky;
  top: 100px;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
}
.why-choose-us {
  display: flex;
  min-height: 100vh;
}

.image-fixed {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 50%;
  overflow: hidden;
}

.image-fixed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-scroll {
  width: 50%;
  padding: 60px 40px;
}

.point {
  color: var(--primary);
  margin-bottom: 120px;
}

.point h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.point p {
  font-size: 16px;
  line-height: var(--line-height);
}

.point {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.point.show {
  opacity: 1;
  transform: translateY(0);
}
.running-points {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
  background: var(--secondary);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 2000;
  transition: transform 0.4s ease;
}

.running-wrapper {
  white-space: nowrap;
}

.running-track {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  animation: scroll-left 18s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.running-points.hide {
  /* top: 0;
  transform: translateY(-100%); */
  display: none;
}
