.Header-above {
  position: relative;
  z-index: 100;
  padding: 6px;
  font-size: 1rem;
  background: rgb(173, 212, 212);
}

.Header-above a {
    color: rgb(67, 79, 79);
  }

.Header-above div {
    display: flex;
    justify-content: flex-end;
  }

.Header {
  position: fixed;
  z-index: 99;
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 10px 24px;
  background-color: rgba(67, 79, 79, 0.7);
}

.Header-inner {
  display: flex;
  flex-direction: row;
  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-burgerLine {
  display: block;
  width: 30px;
  height: 1px;
  border-radius: 4px;
  background-color: #ffffff;
}

.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-logo {
  display: none;
}

@media screen and (min-width: 600.02px) {

.Header-logo {
    display: block;
}
  }

.Header-logo--mobile {
  display: block;
}

@media screen and (min-width: 600.02px) {

.Header-logo--mobile {
    display: none;
}
  }
