.home-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
}

.home-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 0;
}

.dark-overlay {
  position: absolute;
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  z-index: 1;
}

.home-header-tagline-desc {
  font-size: 22px;
  color: white;
  font-family: 'Inter';
  color: white;
  z-index: 2;
  font-weight: 400;
  text-shadow: 0px 0px 4px rgba(225, 225, 225, 0.4);
  letter-spacing: -3%;
  margin: 0;
  width: 100%;
  line-height: 150%;
}

.home-header-tagline {
  font-size: 38px;
  font-family: 'Sen';
  font-weight: 700;
  border-bottom: 8px solid #ff9900;
  color: white;
  margin: 0;
}

.home-header-tagline-section {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 96px;
  bottom: 15%;
  width: 508px;
  gap: 24px;
  z-index: 2;
}

@media (max-width: 1080px) {
  .home-header-tagline {
    font-size: 28px;
  }
  .home-header-tagline-desc {
    font-size: 20px;
  }
}
@media (max-width: 720px) {
  .home-header-tagline-section {
    position: relative;
    width: 85%;
    z-index: 2;
    text-align: center;
    left: unset;
    bottom: -10%;
    gap: 16px;
  }

  .home-header-tagline {
    font-size: 24px;
  }
  .home-header-tagline-desc {
    font-size: 16px;
  }
}
