<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.header-wrapper {
  display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-between;
	align-items: stretch;
	align-content: stretch;
  padding: 25px 15px;
}

nav {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  ul li {
    list-style: none;
    display: inline;
    padding: 15px;
  }
  
  a {
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 125%;
    color: #949199;
    text-decoration: none;
  }
  
  a:hover {
    color: #7ACB88;
  }

  .desktop-menu {
    position: relative;
    bottom: 10px;
  }
  
  .burger-menu-wrapper {
    display: none;
  }

  @media only screen and (max-width: 600px) {
    div.burger-menu-wrapper {
      display: inline;
      position: relative;
      bottom: 10px;
    }

    ul.desktop-menu {
      display: none;
    }
  }
  @media only screen and (max-height: 670px) {
    .header-wrapper {
      padding: 25px 15px 15px;
    }
  }
  
</pre></body></html>