.banner {
  position: relative;
  height: 16.25rem;
  overflow: hidden;
}
.banner h1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  color: var(--black-1, #061020);
  text-align: center;
  font-family: "Medium";
  font-size: 2.375rem;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  display: grid;
  align-items: center;
  justify-content: center;
  padding-left: 5rem;
  padding-right: 5rem;
}
.banner img {
  width: 100%;
  max-width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: auto !important;
}

.nameMobileH1 {
  display: none;
  color: var(--black-1);
  font-family: "Semi";
  font-size: 1.5rem;
  font-style: normal;
  line-height: normal;
  text-transform: uppercase;
  padding: 0px 1rem;
  margin-bottom: 0px;
}

@media screen and (max-width: 992px) {
  .banner {
    height: auto;
  }
  .banner h1 {
    font-size: 1.5rem;
  }
  .banner img {
    position: relative;
    top: 0px;
    transform: unset;
  }
}
@media screen and (max-width: 768px) {
  .banner {
    display: none;
  }
  .nameMobileH1 {
    display: block;
    padding: 1.25rem 0rem 1.25rem;
    margin: 0px 1rem;
    border-bottom: 1px solid var(--white-3, #ECF2F7);
  }
}

/*# sourceMappingURL=banner.css.map */
