body p{
font-size:1.3rem;
}

.hero-video {
  position: relative;
  width: 100%;
  /*height: 100vh;*/
  min-height:/* 560px*/;
  overflow: hidden;
  color: #fff;
}

.hero-video__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.hero-video__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.hero-video__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;

}

.hero-video__sub {
  margin: 0 0 16px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
}

.hero-video__title {
  margin: 0 0 20px;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0.04em;
}

.hero-video__title span {
  display: block;
}

.hero-video__text {
  margin: 0 0 32px;
  font-size: 1.8rem;
  line-height: 1.2;
}

.hero-video__btn {
  display: inline-block;
  padding: 10px 32px;
  background: #ffffff;
  color: #111111;
  text-decoration: none;
  font-weight: 700;
  border-radius: 9999px;
  transition: opacity 0.3s ease;
  font-size: 1.5rem;
}

.hero-video__btn:hover {
  opacity: 0.95;
}

