.Header {
  position: fixed;
  z-index: 99;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding: 10px 24px;
  background-color: rgba(67, 79, 79, 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-magenta);
    }

.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-magenta);
    }

.Header-logo {
  display: none;
  flex-direction: row;
  -moz-column-gap: 1em;
       column-gap: 1em;
  align-items: flex-end;
}

.Header-logo .Text {
    margin-bottom: 5px;
    font-size: 0.6875rem;
    color: white;
  }

.Header-logo svg {
    min-width: 120px;
  }

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

.Header-logo svg {
      min-width: 150px;
  }
    }

@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 {
  margin: 8px 18px 0;

  font-size: 0.6875rem;
  color: white;
}

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

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