.hero-section {
  height: 100dvh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  max-width: 1920px;
  margin: auto;
}

/* video */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: -1;
  /* display: none; */
}

.hero-section .container {
  height: 100%;
}

.hero-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 50px;
  height: 100%;
  justify-content: end;
  transition: padding-bottom 0.4s ease;
}
.hero-title-description-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: gap 0.4s ease;
}

.hero-content-wrapper .black-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
/* Responsive */
@media (max-width: 768px) {
  .hero-content-wrapper {
    padding-bottom: 24px;
  }
  .hero-title-description-wrapper {
    gap: 12px;
  }
}
