.home-hero {
  width: 100%;
  padding: 180px 0 0;
}

.home-hero-intro {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  z-index: 1;
}

.hero-title {
  font-weight:700;
  font-size: var(--f48);
  text-align: center;
  max-width: 1125px;
  margin: 0 auto;
}

.hero-heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}


.home-hero-points {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}

.home-hero-points ul {
  display: flex;
  gap: 16px;
}

.home-hero-points h1 {
  font-size: var(--f18);
  text-align: center;
}

.home-hero-points li {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  padding-left: 15px;

}

.home-hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  width: 1px;
  height: 15px;
  background: #222;
}

.home-hero-points li>p {
  display: contents;

}

.home-hero-points li i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gm-theme);
  color: #fff;
  font-size: 12px;
}



.home-hero-points li p:has(img) {
  display: none;
}

.home-hero-video {
  width: 100%;
}

.home-hero-video-cover {
  position: relative;
  width: 100%;
  min-height: 500px;
  overflow: hidden;
}

.home-hero-video-cover img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}



.home-hero-video-play-wrap {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  width: 126px;
  height: 126px;
}

.home-hero-video-play-ring,
.home-hero-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.home-hero-video-play-ring {
  width: 126px;
  height: 126px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.32);
  z-index: 0;
  pointer-events: none;
}

.home-hero-video-play {
  width: 88px;
  height: 88px;
  border: 0;
  background: rgba(0, 91, 172, 0.92);
  color: #fff;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: visible;
  pointer-events: auto;
  box-shadow: 0 18px 80px  rgba(0, 92, 172, 0.639);
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.home-hero-video-play::before,
.home-hero-video-play::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid  rgba(0, 92, 172, 0.639);
  background: rgba(255, 255, 255, 0.08);
  pointer-events: none;
  animation: homeHeroPlayRipple 2.6s linear infinite;
}

.home-hero-video-play::after {
  animation-delay: 1.3s;
}

.home-hero-video-play:hover,
.home-hero-video-play:focus-visible {
  transform: translate(-50%, -50%) scale(1.06);
  background: var(--gm-theme);
  box-shadow: 0 22px 44px rgba(0, 92, 172, 0.639);
}

.home-hero-video-play:focus-visible {
  outline: none;
}

.home-hero-video-play i {
  position: relative;
  z-index: 1;
  font-size: 30px;
  line-height: 1;
}

@keyframes homeHeroPlayRipple {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  70% {
    opacity: 0.16;
  }

  100% {
    transform: scale(1.9);
    opacity: 0;
  }
}

.home-hero-video-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 20, 33, 0.72);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.home-hero-video-modal[hidden] {
  display: none;
}

.home-hero-video-dialog {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: #000;
  border-radius: 20px;
  overflow: hidden;
}

.home-hero-video-player {
  display: block;
  width: 100%;
  height: auto;
}

.home-hero-video-close {
  position: absolute;
  top: 10px;
  right: 14px;
  z-index: 2;
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (min-width: 1000px) {
  .home-hero-points {
    flex-direction: row;
  }

  .home-hero-video-cover {
    min-height: 780px;
  }

  .home-hero-video-cover img {
    min-height: 780px;
  }

  .home-hero-video-play-wrap {
    bottom: 40%;
  }
}