@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

.non-header {
  position: fixed;
  background: var(--blue);
  left: 0;
  width: 100%;
  z-index: 999;
  height: 88px;
}

.non-header helix-core-layout-container::part(inner-container) {
  max-width: 992px;
}

.non-header helix-core-layout-container helix-core-grid::part(grid) {
  margin-bottom: 0;
}

.non-header .menu-button {
  display: none;
}

.non-header .navigation-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 17px;
}

.non-header .navigation-wrapper .logo {
  min-width: 56px;
  display: flex;
  align-items: center;
  margin-left: 5px;
  cursor: pointer;
}

.non-header .navigation-wrapper .logo helix-core-image {
  display: block;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
}

.non-header .navigation-wrapper .logo helix-core-image::part(image) {
  width: 100%;
  height: 100%;
}

.non-header .navigation-wrapper .main-navigation ul {
  display: flex;
  min-width: 800px;
  justify-content: space-between;
}

.non-header .navigation-wrapper .main-navigation ul li a {
  text-decoration: none;
  color: var(--white);
  letter-spacing: 0.4px;
  margin-bottom: 0;
  font-weight: 300;
}

.non-header .navigation-wrapper .main-navigation ul li.active a {
  font-weight: 700
}

@media only screen and (min-width: 1300px) {
  .non-header helix-core-layout-container::part(inner-container) {
    max-width: 1180px;
  }

  .non-header .navigation-wrapper .main-navigation ul {
    min-width: 870px;
    margin-right: 30px;
  }

  .non-header .navigation-wrapper .logo {
    margin-left: 100px;
  }
}

@media only screen and (min-width: 1024px) {
  .non-header .navigation-wrapper .main-navigation ul li a div {
    margin: 0 !important;
  }
  
  .scroll-down helix-core-link-list ul li a div {
  	margin: 5px 0 0 !important;
  }
}

@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .non-header .navigation-wrapper .main-navigation ul {
    min-width: 714px;
  }
}

@media only screen and (max-width: 1023px) {
  .non-header helix-core-layout-container::part(inner-container) {
    padding: 0;
  }

  .non-header {
    height: 64px;
  }

  .non-header .menu-button {
    position: relative;
    width: 95px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgb(255, 255, 255);
    font-weight: 700;
    cursor: pointer;
    z-index: 5;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(255, 255, 255);
    padding: 0px 10px;
    margin-right: 16px;
    margin-top: 3px;
  }

  .menu-button helix-core-content p {
    --helix-core-type-preset-6-paragraph-font-size: 16px;
    --helix-core-type-preset-6-paragraph-font-family: "Noto Sans", sans-serif;
    --helix-core-type-preset-6-paragraph-font-weight: 700;
    color: var(--white)
  }

  .non-header .navigation-wrapper .main-navigation.active {
    top: 10px;
  }

  .non-header .navigation-wrapper .logo {
    min-width: 40px;
    margin-left: 16px;
  }

  .non-header .navigation-wrapper {
    padding-top: 10px
  }

  .non-header .navigation-wrapper .logo helix-core-image {
    display: block;
    width: 40px;
    height: 40px;
  }

  .non-header .navigation-wrapper .main-navigation {
    flex-basis: 100%;
    background: var(--primary-blue);
    position: relative;
    width: 100%;
    top: -100vh;
    height: calc(-64px + 100vh);
    transition-property: top;
    transition-duration: 0.5s;
    padding: 24px 40px;
    z-index: 999;
  }

  .non-header .navigation-wrapper .main-navigation ul {
    display: flex;
    min-width: unset;
    justify-content: space-between;
    flex-basis: 100%;
    flex-direction: column;
  }

  .non-header .navigation-wrapper .main-navigation ul li {
    margin-bottom: 28px;
  }

  .menu-button {
    display: block;
  }

  .menu-button::after {
    content: '';
    position: absolute;
    background: url('/images/3596f9d6727ddabc0fc40c14945cba64.svg') no-repeat center center;
    width: 18px;
    height: 12px;
    right: 8px;
    top: 12px;
  }

  .menu-button.active::after {
    content: '';
    position: absolute;
    background: url('/images/a9537d89054407bd4e9d595cb0e30cc4.svg') no-repeat center center;
    width: 14px;
    height: 15px;
    right: 11px;
    top: 12px;
  }

  .menu-button.active .menu,
  .menu-button .close {
    display: none;
  }

  .menu-button.active .close {
    display: block;
  }
}

@media (min-width: 320px) and (max-width: 999px) and (orientation: landscape) {
  .non-header .navigation-wrapper .main-navigation {
    top: -100vw;;
    overflow-y: auto;
  }
}

.non-header .navigation-wrapper .main-navigation[data-gjs-type="default"] {
  top: 64px;
}

.menu-button[data-gjs-type="default"],
.menu-button .menu[data-gjs-type="helix-core-content"],
.menu-button .close[data-gjs-type="helix-core-content"] {
  display: block;
}

.height0 {
  height: 0;
}

.non-header[data-gjs-type="default"] {
  position: static;
}