header{
  z-index: 100;
}
#goom_logo{
  height: 8%;
  width: 8%;
}
#connect_or_not{
    display: none;
}

.site-header {
  position: relative;
  background-color: black; }

.site-header__wrapper {
  padding-top: 1rem;
  padding-bottom: 1rem;}

  @media (min-width: 810px) {
    .site-header__wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 0;
      padding-bottom: 0; } }
@media (min-width: 810px) {
  .nav__wrapper {
    display: flex; } }

@media (max-width: 809px) {
  .site-header{
    height: 75px;
  }
  #connect_or_not{
    display: inline;
  }
  #goom_logo {
    width: 80px;
    height: 20px;
    margin-top: 10px;
  }
  .site-header__wrapper {
    /*border-bottom: 3px solid red;*/}
  .nav__wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: -1;
    background-color: black;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease-out, opacity 0.3s ease-out; }
    .nav__wrapper.active {
      visibility: visible;
      opacity: 1;
      transform: translateY(0); } }

.nav__item a {
  display: block;
  padding: 1.5rem 1rem;
  white-space: nowrap; }

.nav__toggle {
  display: none; }
  @media (max-width: 809px) {
    .nav__toggle {
      display: block;
      position: absolute;
      right: 1rem;
      top: 1rem; } }
