.nsd-hero {
  position: relative;
  width: 100%;
  min-height: var(--hero-height, 60vh);
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: end;
}

.nsd-hero-inner {
  position: relative;
  z-index: 1;
  padding: 0 3rem 1rem 3rem !important;
  color: #fff;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
}

.nsd-hero .nsd-hero-title {
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
  color: white;
  text-align: right;
  font-size: 2.5rem;
}

/* Responsive Small Screens */
@media screen and (max-height: 620px) and (min-width: 1000px) {
  .nsd-hero {
    min-height: 90vh;
  }
}

/* Responsive Mobile Portrait */
@media screen and (max-width: 767px) {
  .nsd-hero .nsd-hero-title {
    font-size: 2rem;
  }
}

/* Responsive Mobile Landscape */

@media screen and (max-width: 767px) and (max-height: 400px) {
  .nsd-hero {
    min-height: 80vh;
  }
}