* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.site-header {
  background-color: #fff;
  color: #09090b;
  box-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  font-family: "Montserrat", sans-serif;
}

.site-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  position: relative;
}

.site-header__brand {
  font-size: 1.25rem;
  font-weight: bold;
}

.site-header__logo {
  height: 51px;
  width: auto;
}

.site-header__toggle {
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #09090b;
  cursor: pointer;
  display: flex;
}

.site-header__toggle svg {
  height: 32px;
}

.site-header__menu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #333;
  display: none;
  flex-direction: column;
}

.site-header__menu li {
  list-style: none;
}

.site-header__menu li a {
  display: block;
  padding: 1rem;
  color: #09090b;
  text-decoration: none;
  font-size: 18px;
  transition: border-color 0.2s ease;
}

@media (min-width: 1110px) {
  .site-header__toggle {
    display: none;
  }

  .site-header__wrapper {
    flex-wrap: nowrap;
  }

  .site-header__menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    width: auto;
    background: none;
    margin-bottom: 0px;
  }

  .site-header__menu li {
    position: relative;
  }

  .site-header__menu li a {
    padding: 1rem 1.5rem;
    border-top: none;
  }
}
