.Header-above {
  position: relative;
  z-index: 100;
  padding: 6px;
  font-size: 1rem;
  background: rgb(107, 103, 91);
}
.Header-above a {
    color: white;
  }
.Header-above div {
    display: flex;
    justify-content: flex-end;
  }
.Header {
  position: fixed;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 10px 24px;
  background-color: rgba(107, 103, 91, 0.7);
}
.Header-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  row-gap: 8px;
  justify-content: space-between;
}
.Header-burgerMenu {
  display: flex;
  align-items: center;
  justify-content: center;
}
.Header-burger {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  background: transparent;
}
.Header-burger:hover .Header-burgerLine {
      background-color: var(--clr-orange);
    }
.Header-burgerLine {
  display: block;
  width: 30px;
  height: 1px;
  border-radius: 4px;
  background-color: #ffffff;
  transition: background-color 0.25s ease-in-out;
}
.Header-burgerLine:nth-of-type(1) {
  margin-left: 15px;
}
.Header-burgerLine:nth-of-type(2) {
  margin-left: 8px;
}
.Header-right {
  display: flex;
  gap: 5px;
}
.Header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  aspect-ratio: 1 / 1;
}
.Header-icon svg {
    width: 100%;
  }
.Header-icon svg path {
      stroke: white;
      transition: stroke 0.25s ease-in-out;
    }
.Header-icon:hover svg path {
      stroke: var(--clr-orange);
    }
.Header-logo {
  display: none;
  flex-direction: row;
  -moz-column-gap: 1em;
       column-gap: 1em;
  align-items: flex-end;
}
.Header-logo .Text {
    max-width: 120px;
    font-size: 0.875rem;
    color: white;
  }
.Header-logo svg {
    min-width: 77px;
  }
@media screen and (min-width: 600.02px) {
.Header-logo {
    display: flex;
}
  }
.Header-logo--mobile {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  align-items: flex-start;
}
@media screen and (min-width: 600.02px) {
.Header-logo--mobile {
    display: none;
}
  }
.Header-logo-text--mobile.Text {
  max-width: 120px;
  margin: 8px 10px 0;
  font-size: 0.875rem;
  color: white;
}
@media screen and (min-width: 600.02px) {
.Header-logo-text--mobile.Text {
    display: none;
}
  }
