/*** Mixins & Default Styles ***/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Yanone Kaffeesatz", sans-serif, 微軟正黑體 !important;
}
img{width: 100%;}
a {
  text-decoration:none;
  color: #000;
}
/*** Navigation Styles ***/
nav {
  width: 100vw;
  height: 240px;
  display: flex!important;
  justify-content: space-between;
  padding: 0 6%;
  position: fixed;
  z-index: 10;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
nav.navShadow {
  box-shadow: 0 4px 30px -5px rgba(0, 0, 0, 0.2);
  height: 100px;
  background-color: #fff;
}
.brand,
.menu,
.menu-ul {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
          align-items: center;
          margin: 0;
}
.logo img {
  width: 600px;
}
nav.navShadow .logo img {
  width: 300px;
}
/*** Menu Styles ***/
.menu-li {
  margin-left: 20px;
}
.menu-li-Language {
  border-right: solid 1px #666;
  padding-right: 15px;
}
li.menu-li-Language a {
  padding-right: 5px;
}
.menu-li a {
  font-size: 25px;
  color: #666;
}
.menu-li a:hover{
  color: #ec8e25;
}
.menu-li a img {
  width: 40px;
}
.menu-li-ul {
  display: flex;
  justify-content: center;
}
.menu-li-ul li {
  padding: 0 5px;
}
.menu-toggle {
  width: 55px;
  height: 55px;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  border-radius: 50%;
  cursor: pointer;
  display: none;
}
.menu-toggle:hover .bar {
  width: 25px;
}
.menu-toggle.closeMenu .bar {
  width: 25px;
}
.menu-toggle.closeMenu .bar:first-child {
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.menu-toggle.closeMenu .bar:nth-child(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}
.menu-toggle.closeMenu .bar:last-child {
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

.bar {
  width: 25px;
  height: 2px;
  background: #efa24b;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.bar:nth-child(2) {
  width: 20px;
  margin: 5px 0;
}
.bar:last-child {
  width: 15px;
}

footer {
  color: #fff;
  background: #2b2e35;
  padding: 10px 0;
  font-size: 14px;
}

/*** Responsive Menu For Smaller Device ***/
@media screen and (max-width: 1565px){
  .logo img {width: 500px;}
}
@media screen and (max-width: 1440px){
  nav{padding: 0 2%;}
  .logo img {width: 450px;}
  .menu-li a {font-size: 18px;}
}
@media screen and (max-width: 1024px){
  .logo img {width: 250px;}
  nav{height: 120px;}
}
@media screen and (max-width: 1123px){
  .logo img {width: 350px;}
}
@media screen and (max-width: 1119px){
  .logo img {width: 290px;}
}
@media screen and (max-width: 954px){
  .logo img {width: 235px;}
}
@media screen and (max-width: 899px){
  .menu-li {
    margin-left: 10px;
  }
  .menu-li a {
    font-size: 15px;
  }
  .menu-li a img {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .menu-toggle {
    display: -webkit-box;
    display: flex;
  }
  nav.navShadow .logo img {
    width: 250px;
  }
  .menu-ul {
    display: inline-block;
    width: 100vw;
    height: 0;
    background: #fff;
    position: absolute;
    top: 100px;
    left: 0;
    box-shadow: 0 5px 30px -4px rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  ul.showMenu {
    height: 700px;
    overflow: hidden;
    padding-top: 40px;
  }
  ul.showMenu .menu-li {
    height: 60px;
    opacity: 1;
    visibility: visible;
  }
  .menu-li-ul li {
    padding: 0 20px;
}
  .menu-li {
    width: 100%;
    height: 80px;
    float: left;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    margin-left: 0;
    -webkit-transition: all 0.3s 0.1s;
    transition: all 0.3s 0.1s;
  }

  #head-line {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

@media screen and (max-width: 425px){
  .logo img, nav.navShadow .logo img{width: 200px;}
  nav, nav.navShadow{
    height: 80px;
  }
  .menu-ul {
    top: 80px;
  } 
}