.Header {
  position: sticky;
  z-index: 11;
  top: 0;
  right: 0;
  left: 0;
  background-color: var(--clr-neutral-100);
}

.Header-inner {
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0 11px;
}

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

.Header-inner {
    flex-direction: row;
}
  }

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

.Header-inner {
    gap: 24px;
}
  }

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

.Header-inner {
    gap: 48px;
}
  }

@media screen and (max-width: 768px) {

.Header-inner {
    flex-direction: row;
    gap: 0;
    width: 100%;
    height: 76px;
    padding-top: 0;
    padding-bottom: 0;
}
  }

.Header-inner--main {
  position: relative;
}

.Header-inner-parentContainer {
  z-index: 3;
  display: flex;
  justify-content: space-between;
}

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

.Header-inner-parentContainer {
    width: auto;
}
  }

@media screen and (max-width: 768px) {

.Header-inner-parentContainer {
    justify-content: flex-end;
    padding: 0 20px;
}
  }

.Header-inner-container {
  display: flex;
  flex-direction: row-reverse;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

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

.Header-inner-container {
    flex-direction: row;
}
  }

.Header-inner--top {
  padding: 7px 0;
}

.Header-inner--top > .u-contentWidth {
    display: flex;
    justify-content: end;
  }

@media screen and (max-width: 768px) {

.Header-inner--top {
    display: none;
}
  }

@media screen and (max-width: 768px) {

.Header-logo {
    margin-left: 16px;
}
  }

.Header-logo svg {
    width: 95px;
    max-width: 95px;
  }

.LanguageMenu {
  position: relative;
  /* display: flex; */
  display: none;
  border: 1px solid var(--clr-border-default);
  border-radius: 8px;
  background: white;
  color: var(--clr-primary-02);
}

.LanguageMenu ul {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 0;
    padding: 4px 0;
    list-style-type: none;
  }

.LanguageMenu li {
    padding: 0 26px 0 8px;
    background-color: #ffffff;
  }

.LanguageMenu li:first-child {
      border-radius: 8px;
    }

.LanguageMenu a {
    padding: 0;
    text-decoration: none;
    color: var(--aknakn-dark-grey-1);
  }

.LanguageMenu .current a {
    border-radius: 10px;
    text-decoration: none;
    color: var(--clr-primary-02);
  }

.LanguageMenu .normal {
    position: absolute;
    top: 22px;
    right: -1px;
    left: -1px;
    display: none;
    padding-top: 8px;
    padding-bottom: 4px;
    border-right: 1px solid var(--clr-border-default);
    border-bottom: 1px solid var(--clr-border-default);
    border-left: 1px solid var(--clr-border-default);
    border-radius: 0 0 8px 8px;
    cursor: pointer;
  }

.LanguageMenu {

  .hidden {
    display: none;
  }
}

.LanguageMenu.open .normal {
    display: block;
  }

.LanguageMenu.open .LanguageMenu-icon {
    transform: rotate(180deg);
  }

.LanguageMenu-icon {
  position: absolute;
  top: 10px;
  right: 8px;
  width: 10px;
}

.LightSpeech {
  display: flex;
  align-items: center;
  /* margin: 0 16px; */
  margin-left: 16px;
}

.LightSpeech a {
  padding: 4px 8px;
  border: 1px solid var(--clr-border-default);
  border-radius: 8px;
  text-decoration: none;
  background-color: #ffffff;
  color: var(--clr-primary-02);
}

.hidden {
  display: none;
}
