.hero {
  padding-top: 50px;
  padding-bottom: 1px;
  position: relative;
  height: 100vh;
  height: 100dvh;
  max-height: 640px;
}
@media (min-width: 768px) {
  .hero {
    height: initial;
    max-height: 640px;
    padding-top: 96px;
  }
}
.hero .container {
  height: 100%;
}
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(20, 20, 20, 0.8);
}
.hero-content {
  position: relative;
  color: var(--bs-white);
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
@media (min-width: 768px) {
  .hero-content {
    display: block;
    height: auto;
    margin-top: 72px;
    margin-bottom: 119px;
    max-width: 1000px;
  }
}
.hero-content__title {
  text-transform: uppercase;
}
@media (min-width: 992px) {
  .hero-content__title span {
    white-space: nowrap;
  }
}
.hero-content__subtitle {
  font-size: 16px;
  margin-bottom: 16px;
}
@media (min-width: 768px) {
  .hero-content__subtitle {
    font-size: 18px;
  }
}
.hero-content__list {
  list-style: none;
  padding: 0;
}
.hero-content__list li {
  position: relative;
  padding-left: 22px;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .hero-content__list li {
    font-size: 18px;
  }
}
.hero-content__list li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #00CABF;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}
@media (max-width: 575.98px) {
  .hero-content__btn {
    width: 100%;
  }
}
