.hero.is-background {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100vh; /* Full viewport height */
  position: relative;
}

.hero.is-background::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.1); /* Adjust the opacity for dimming effect */
  z-index: 1;
}

.hero.is-background .hero-body {
  position: relative;
  z-index: 2;
}

.footer {
  background-color: #090a0c !important;
  padding: 1.5rem 1.5rem !important;
}
.footer strong {
  color: #ffffff !important;
}
