.header {
  width: 100%;
  left: 0;
  top: 0;
  z-index: 1000;
  position: fixed;
  transition: all 600ms;
}
.header .dom1 {
  padding: 0 5%;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .dom1 .links {
  width: 55%;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  align-items: center;
}
.header .dom1 .links span {
  color: #CCCCCC;
}
.header .dom1 .links a {
  color: #1A1A1A;
  padding: 30px 15px;
  display: inline-block;
  position: relative;
  transition: all 600ms;
  font-weight: 700;
  font-size: 16px;
}
.header .dom1 .links a::before {
  content: "";
  display: block;
  background: #E71F19;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  transition: all 600ms;
}
.header .dom1 .links a:hover {
  color: #E71F19;
}
.header .dom1 .links a:hover::before {
  width: 100%;
}
.header .dom1 .links .active {
  color: #E71F19;
}
.header .dom1 .links .active::before {
  width: 100%;
}
.header .dom1 .r {
  display: flex;
  align-items: center;
}
.header .dom1 .r .line {
  margin: 0 15px;
  color: #CCCCCC;
}
.header .dom1 .r .search {
  cursor: pointer;
}
.header .dom1 .r .dr .lan {
  cursor: pointer;
  position: relative;
}
.header .dom1 .r .dr .lan .chose {
  position: absolute;
  left: -30px;
  top: 100%;
  background: black;
  text-align: center;
  width: calc(100% + 60px);
  padding: 5px 0;
  display: none;
  color: white;
  border-radius: 40px;
  font-size: 14px;
}
.header .dom1 .r .dr .lan:hover .chose {
  display: block;
}
.header .dom1 .r .email {
  color: #1A1A1A;
}

.pheader {
  display: none;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1002;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.pheader .menu {
  width: 100%;
  background-color: white;
  padding: 15px 0;
}
.pheader .menu a {
  width: 95%;
  display: block;
  margin: 0 auto;
}
.pheader .menu a img {
  display: block;
  width: 160px;
  object-fit: contain;
}
.pheader .menu .navbox {
  position: absolute;
  right: 2.5%;
  top: 50%;
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  border-radius: 50px;
}
.pheader .menu .navbox .line {
  width: 20px;
  height: 2px;
  background-color: black;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  position: absolute;
  left: 10px;
  top: 13px;
}
.pheader .menu .navbox .line:nth-child(2) {
  top: 19px;
}
.pheader .menu .navbox .line:nth-child(3) {
  top: 25px;
}
.pheader .menu .activeBox .line:nth-child(1) {
  transform: rotate(45deg);
  top: 19px;
}
.pheader .menu .activeBox .line:nth-child(2) {
  transform: translateX(30px);
  opacity: 0;
}
.pheader .menu .activeBox .line:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
}

.menuList {
  position: fixed;
  left: 0;
  top: 67px;
  width: 90%;
  padding: 20px 5% 0 5%;
  height: 100vh;
  z-index: 1001;
  background-color: #E71F19;
  flex-direction: column;
  align-items: center;
  transition: all 600ms;
  display: none;
}
.menuList .item {
  width: 90%;
}
.menuList .item a {
  color: white;
  display: block;
  font-size: 18px;
  text-align: left;
  padding: 13px 10px 13px 25px;
  border-bottom: 1px rgba(255, 255, 255, 0.5) solid;
  text-transform: uppercase;
}

.activeList {
  transform: translateY(0);
  display: flex;
  justify-content: flex-start;
  height: 100%;
  overflow: hidden;
}

.doSearch {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 20px 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  display: none;
}
.doSearch .close {
  position: absolute;
  left: 80%;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}
.doSearch input {
  width: 40%;
  outline: none;
  border: none;
  border-bottom: 1px solid black;
  padding: 10px 0;
  text-indent: 20px;
  font-size: 18px;
  border-radius: 30px;
  margin: 0 auto;
  display: block;
}
.doSearch a {
  position: absolute;
  right: 28%;
  top: 50%;
  transform: translateY(-50%);
}

.foot {
  background: #1C1D1F;
  padding: 0 5%;
}
.foot .dom1 {
  display: flex;
  justify-content: space-between;
  padding: 50px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.21);
  align-items: center;
}
.foot .dom1 .r {
  text-align: right;
}
.foot .dom1 .r p {
  color: white;
  font-size: 12px;
}
.foot .dom1 .r p:nth-child(2) {
  font-size: 24px;
  margin-top: 10px;
}
.foot .dom2 {
  display: flex;
  margin: 40px 0;
}
.foot .dom2 a {
  color: white;
  text-transform: uppercase;
}
.foot .dom2 span {
  color: white;
  margin: 0 30px;
}
.foot .copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}
.foot .copyright .l, .foot .copyright .r {
  color: #535353;
  font-size: 12px;
}
.foot .copyright .l a, .foot .copyright .r a {
  color: #535353;
}


@media screen and (max-width: 1700px) {
.header .dom1 .links a {
  color: #1A1A1A;
  padding: 30px 9px;
  display: inline-block;
  position: relative;
  transition: all 600ms;
  font-weight: 700;
  font-size: 15px;
}


}

@media screen and (max-width: 1500px) {
  .header .dom1 .links {
    width: 60%;
  }
  .header .dom1 .links a {
  color: #1A1A1A;
  padding: 30px 11px;
  display: inline-block;
  position: relative;
  transition: all 600ms;
  font-weight: 700;
  font-size: 16px;
}

.header .dom1 {
  padding: 0 1.5%;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
}
@media screen and (max-width: 1300px) {
.header .dom1 .links a {
  color: #1A1A1A;
  padding: 30px 5px;
  display: inline-block;
  position: relative;
  transition: all 600ms;
  font-weight: 700;
  font-size: 16px;
}

.header .dom1 {
  padding: 0 2.5%;
  background: #FFFFFF;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
}






@media screen and (max-width: 1200px) {
  .header {
    display: none;
  }

  .pheader {
    display: flex;
  }

  .foot .dom1 {
    padding: 25px 0;
  }
  .foot .dom1 .l img {
    width: 150px;
  }
  .foot .dom1 .r p:nth-child(2) {
    font-size: 18px;
  }
  .foot .dom2 {
    display: none;
  }
  .foot .copyright {
    padding: 15px 0;
    flex-direction: column;
    text-align: center;
    line-height: 2;
  }
}

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