.home-banner {
  background-color: rgb(23, 33, 72);
  position: relative;
  height: 90vh;
  display: flex;
  box-shadow: inset 0px 0px 100px rgba(0, 0, 0, 1);
}

.home-banner-image-container {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.home-banner-image-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.home-banner-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-banner-info {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);

  margin: 0;
  z-index: 1;

  width: 70vw;
  text-align: left;
}

.home-banner-title {
  font-family: Monda, Arial;
  color: rgb(255, 255, 255);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: bolder;
  margin-top: 0px;
  margin-bottom: 0px;

  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.home-banner-title-strong {
  color: white;
}

.home-banner-description {
  font-family: Monda, Arial;
  color: rgb(201, 210, 222);
  font-size: clamp(1.2rem, 2vw, 2rem);
}

.hero-intro,
.hero-main {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

.hero-count {
  font-family: Monda, Arial;
  color: white;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: bold;
  margin: 0;
}

#hero-number {
  color: #eec168;
  text-shadow: 0 0 15px rgba(243, 221, 177, 0.3);
}

.hero-intro-sub {
  font-family: Monda, Arial;
  color: rgb(201, 210, 222);
  font-size: clamp(1.2rem, 2vw, 2rem);
}
