/* Shared Brokers hero for Spanish and English registration pages. */
.broker-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(430px, 52vw, 650px);
  overflow: hidden;
  background: #173f57;
}

.broker-hero__background,
.broker-hero__background::after,
.broker-hero__background img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.broker-hero__background {
  z-index: -1;
}

.broker-hero__background img {
  display: block;
  object-fit: cover;
  object-position: center 45%;
}

.broker-hero__background::after {
  content: "";
  background: linear-gradient(180deg, rgba(7, 30, 44, .42) 0%, rgba(7, 30, 44, .18) 44%, rgba(7, 30, 44, .5) 100%);
}

.broker-hero__content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: 180px 24px 90px;
  color: #fff;
}

.broker-hero__eyebrow {
  margin: 0 0 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .16em;
}

.broker-hero h1 {
  margin: 0;
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
  font-size: clamp(48px, 7vw, 92px);
  font-weight: 600;
  line-height: .9;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, .3);
}

.broker-hero__rule {
  display: block;
  width: min(180px, 50%);
  height: 2px;
  margin: 28px auto 0;
  background: #d8b96a;
}

.broker-registration {
  padding: 96px 0;
}

@media (max-width: 991px) {
  .broker-hero {
    min-height: 500px;
  }

  .broker-hero__content {
    padding-top: 145px;
    padding-bottom: 72px;
  }

  .broker-registration {
    padding: 72px 0;
  }
}

@media (max-width: 575px) {
  .broker-hero {
    min-height: 430px;
  }

  .broker-hero__eyebrow {
    font-size: 10px;
  }
}