header.header {
  padding: 30px 10px;
  position: relative;
  width: 100%;
  height: 100px;
  /* background-color: white; */
  transition: all .6s;
}

header.header.active {
  height: 70px;
}

header.header .logo {
  width: 120px;
  display: block;
  margin-left: 15px;
  margin-top: 15px;
}

header.header .logo img {
  width: 100%;
}

header.header .ham {
  width: 50px;
  height: 50px;
  background-color: #fd4f00;
  border-radius: 50%;
  position: relative;
}

header.header .ham span {
  width: 25px;
  height: 5.5px;
  background-color: white;
  border-radius: 20px;
  display: block;
  position: absolute;
  -webkit-transition: all .3s;
  transition: all .3s;
}

header.header .ham span:nth-child(1) {
  left: 13px;
  top: 15px;
}

header.header .ham span:nth-child(2) {
  bottom: 18px;
  left: 13px;
}

header.header .ham.active span:nth-child(1) {
  -webkit-transform: rotate(45deg) translateX(5px) translateY(5px);
  transform: rotate(45deg) translateX(5px) translateY(5px);
}

header.header .ham.active span:nth-child(2) {
  -webkit-transform: rotate(-45deg) translateX(3px) translateY(-4px);
  transform: rotate(-45deg) translateX(3px) translateY(-4px);
}

header.header .outlinks {
  position: absolute;
  right: 2rem;
}

header.header .pc-nav {
  /* width: 55%; */
  position: relative;
  float: right;
}

header.header .pc-nav li {
  float: left;
  padding: 0 2%;
  text-align: center;
  position: relative;
}

header.header .pc-nav li:after {
  content: '/';
  position: absolute;
  right: 0;
  top: 0;
}

header.header .pc-nav li:last-child:after {
  content: '';
}

header.header .pc-nav li a {
  -webkit-transition: all .3s;
  transition: all .3s;
}

header.header .pc-nav li:hover a {
  color: #fd4f00;
}

header.header .pc-nav li:nth-child(1) ul.sub li:nth-child(2) {
  border-bottom: 0;
}

header.header .pc-nav li:nth-child(1) ul.sub:before {
  left: 30%;
}

header.header .pc-nav li:nth-child(3) ul.sub li:nth-child(3) {
  border-bottom: 0;
}

header.header .pc-nav li:nth-child(3) ul.sub:before {
  left: 20%;
}

header.header .pc-nav li:nth-child(7) ul.sub {
  right: 0;
}

header.header .pc-nav li:nth-child(7) ul.sub li:nth-child(2) {
  border-bottom: 0;
}

header.header .pc-nav li:nth-child(7) ul.sub:before {
  right: 20%;
}

.ham_menu {
  width: 100%;
  position: relative;
  z-index: 9;
  display: none;
  /* top: 100px; */
}



.ham_menu .content ul {
  width: 100%;
  margin: 0 auto;
  position: relative;
  text-align: left;
}

.ham_menu .content ul li {
  width: 100%;
  padding: 1rem 0 1rem 4rem;
}

.ham_menu .content ul li a {
  color: white;
  font-size: 17px;
}

.ham_menu .content ul li:nth-child(1) {
  background-color: #717076;
}

.ham_menu .content ul li:nth-child(2) {
  background-color: #77767b;
}

.ham_menu .content ul li:nth-child(3) {
  background-color: #7d7c81;
}

.ham_menu .content ul li:nth-child(4) {
  background-color: #838287;
}

.ham_menu .content ul li:nth-child(5) {
  background-color: #89888d;
}

.ham_menu .content ul li:nth-child(6) {
  background-color: #8e8d92;
}

.ham_menu .content ul li:nth-child(7) {
  background-color: #949496;
}

.ham_menu .content ul li:nth-child(8) {
  background-color: #9a9a9c;
}

.ham_menu .content ul li:nth-child(9) {
  background-color: #a0a0a0;
}

@media (min-width: 992px) {
  header.header {
    max-width: 1300px;
    margin: 0 auto;
  }

  header.header .logo {
    width: 161px;
  }

  header.header .pc-nav li {
    padding: 0 10px;
  }
}

@media (min-width: 1200px) {
  header.header .pc-nav li {
    padding: 0 20px;
  }
}

.english {
  color: #fd4f00;
  display: block;
  width: 76px;
  height: 31px;
  line-height: 30px;
  border: 2px solid #fd4f00;
  transition: all .3s;
  text-align: center;
}

.english:hover {
  background-color: #fd4f00;
  color: white;
}

/*# sourceMappingURL=header.css.map */