<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/**/
header {
  width: 100%;
  margin: 0px;
  padding: 0px;
  height: 88px;
  position: absolute;
  /* position: fixed; */
  background: var(--navy-blue);
  display: flex !important;
  justify-content: center;
  align-items: center;
  top: 0;
  z-index: 99;
}
.flexHeaderHome{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
}
.logoContainer{
  max-width: 150px;
}
.solicita_tarjeta{
  margin-top: 8px;
}
.solicita_tarjeta a{
  color: var(--sky-blue);
  text-decoration: none;
}
.solicita_tarjeta a:hover{
  color: #fff;
  text-decoration: none;
}
/*Mobile*/

@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;
  }
  .solicita_tarjeta{
    margin-top: 3px;
  }
}

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

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