.navbar-brand {
  color: black !important;
}

.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-text-container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: rgb(184, 176, 176);
  /* background-color: rgb(250, 250, 250); */
}

.hero-text {
  padding: 16px;
}

.hero-text > span {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.5); 
  /* color: rgb(184, 176, 176); */
  font-weight: 500;
  font-family: Poppins, Arial, sans-serif;
}

.hero-text > h1 {
  color: white;
  /* color: black; */
  font-size: 48px;
  font-weight: 700;
  font-family: Poppins, Arial, sans-serif;
}

.hero-text > h2 {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.8);
  /** color: rgb(184, 176, 176); **/
  /* color: black; */
  font-weight: 400;
  font-family: Poppins, Arial, sans-serif;
}

.hero-image {
  width: 100%;
  height: 100vh;
}

.hero-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 600px) {
  .hero-section {
    grid-template-columns: 1fr;
  }
}
