header {
  position: fixed;
  padding: 0 10% !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  background-image: linear-gradient(to top, #002243, #1d3e8b);
}

header nav {
  padding: 0 15px !important;
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

header nav .logo {
  width: 200px;
  position: relative;
  text-align: center;
}

header nav .logo a {
  display: block;
}

header nav .logo a h1 {
  background-image: url(../images/logo-cn.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  width: 340px;
  height: 55px;
  text-indent: 101%;
  white-space: nowrap;
  overflow: hidden;
}

header nav .logo a h1:lang(zh-tw) {
  background-image: url(../images/logo-cn.png);
}

header nav .logo a h1:lang(en) {
  background-image: url(../images/logo-en.png);
}

header nav .logo a h1:lang(ko) {
  background-image: url(../images/logo-en.png);
}

.nav-wrapper {
  width: calc( 100% - 200px);
  display: flex;
  justify-content: flex-end;
}

.nav-wrapper ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  list-style-type: none;
  padding: 0;
  position: relative;
  margin: 0;
  line-height: 60px;
}

.nav-wrapper li.global {
  display: flex;
  background-color: #E9E9E9;
  height: 30px;
  line-height: 20px;
  padding: 5px;
  margin-left: 25px;
  border-radius: 5px;
}

.nav-wrapper li.global a {
  font-weight: bold;
  padding: 0 6px;
  color: #003161;
}

.nav-wrapper li.global a:nth-child(1) {
  border-right: 2px solid #423356;
}

.nav-wrapper li.global a:hover {
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  opacity: 0.5;
}

#nav:checked + .nav-btn {
  transform: rotate(45deg);
}

#nav:checked + .nav-btn i {
  background: #ffffff;
  transition: transform 0.2s ease;
}

#nav:checked + .nav-btn i:nth-child(1) {
  transform: translateY(6px) rotate(180deg);
}

#nav:checked + .nav-btn i:nth-child(2) {
  opacity: 0;
}

#nav:checked + .nav-btn i:nth-child(3) {
  transform: translateY(-6px) rotate(90deg);
}

#nav:checked ~ .nav-wrapper {
  z-index: 9990;
  opacity: 1;
  display: block;
}

#nav:checked ~ .nav-wrapper ul li a {
  opacity: 1;
  transform: translateX(0);
}

.hidden {
  display: none;
}

.nav-wrapper a {
  display: block;
  font-size: 20px;
  text-decoration: none;
  padding: 7px 0px 7px 25px;
  font-weight: 400;
  color: #ffffff;
}

.target {
  position: absolute;
  border-bottom: 4px solid transparent;
  z-index: -1;
  transform: translateX(-60px);
}

.nav-wrapper a, .target {
  transition: all .35s ease-in-out;
}

@media screen and (max-width: 1440px) {
  header {
    padding: 0px 5% !important;
  }
}

@media screen and (max-width: 1024px) {
  header {
    padding: 0px 5% !important;
  }
  .nav-wrapper a {
    font-size: 17px;
    padding: 7px 0px;
  }
}

@media screen and (max-width: 864px) {
  header {
    padding: 11px 15px !important;
  }
  header nav .logo a h1 {
    width: 230px;
  }
  .nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: #003161f2;
    opacity: 0;
    display: none;
    transition: all 0.2s ease;
  }
  .nav-wrapper ul {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
  }
  .nav-wrapper ul li {
    display: block;
    float: none;
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  .nav-wrapper ul:nth-child(1) a {
    transition-delay: 0.2s;
  }
  .nav-wrapper ul:nth-child(2) a {
    transition-delay: 0.3s;
  }
  .nav-wrapper ul:nth-child(3) a {
    transition-delay: 0.4s;
  }
  .nav-wrapper ul:nth-child(4) a {
    transition-delay: 0.5s;
  }
  .nav-wrapper ul a {
    padding: 10px 24px;
    opacity: 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1.2px;
    transform: translateX(-20px);
    transition: all 0.2s ease;
    font-size: 20px;
  }
  .nav-wrapper li.global {
    margin: 0 auto;
    width: 50%;
    text-align: center;
    justify-content: center;
  }
  .nav-btn {
    position: fixed;
    right: 20px;
    top: 10px;
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 9999;
    border-radius: 50%;
  }
  .nav-btn i {
    display: block;
    width: 24px;
    height: 3px;
    background: #f7f7f7;
    border-radius: 2px;
    margin-left: 14px;
  }
  .nav-btn i:nth-child(1) {
    margin-top: 18px;
    margin-bottom: 3px;
  }
  .nav-btn i:nth-child(3) {
    margin-top: 3px;
  }
}

@media screen and (max-width: 768px) {
  .target {
    position: initial;
    display: none;
  }
}

@media screen and (max-width: 450px) {
  .nav-wrapper ul li {
    text-align: center;
  }
}
/*# sourceMappingURL=menu.css.map */