<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*Generals*/
.inner {
  max-width: 960px;
  width: 90%;
  margin: 0px auto;
}

/**/
header {
  width: 100%;
  margin: 0px;
  padding: 0px;
  height: 88px;
  position: relative;
  background: var(--navy-blue);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* header .inner img{
    width: 220px;
    height: auto;
    margin: 0px 0px;
} */
/*Mobile*/
.featuredMobileImg {
  display: none;
}

@media screen and (max-width: 1024px) {
  header {
    height: 48px;
    text-align: center;
  }

  header img {
    max-width: 197px;
  }

  header .inner img {
    width: 90px;
    height: auto;
    margin: 0px 0px;
  }
}

@media screen and (max-width: 414px) {
  header {
    height: 48px;
    text-align: center;
  }

  header img {
    max-width: 165px;
  }
}</pre></body></html>