a {
  text-decoration: none;
  color: #2b2929;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
}
.page {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.pageTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  position: absolute;
  margin-top: -30px;
  height: 60px;
  width: 200px;
  background-color: red;
  color: white;
}
.nvbar {
  display: flex;
  justify-content: space-between;
  margin: auto;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0px 20px;
}
.nvbar .logo {
  margin: 10px 0px;
}
.nvbar ul.links {
  width: 700px;
  display: flex;
  align-self: flex-end;
  font-size: 20px;
  color: #383737;
  justify-content: space-between;
  line-height: 60px;
  margin-bottom: 5px;
}
.nvbar ul.links li a {
  display: block;
  height: 55px;
  border-bottom: solid 5px white;
  cursor: pointer;
}
.nvbar ul.links li a.active {
  display: block;
  border-bottom: solid 5px red;
}
.nvbar ul.links li a:hover {
  color: red;
}
.nvbar ul.links li .down-menu {
  position: absolute;
  margin-left: -10px;
  border: solid 1px #e4e1e1;
  background: #fff;
  width: 100px;
  display: none;
}
.nvbar ul.links li .down-menu li {
  margin: 0px 10px;
}
.nvbar ul.links li:hover .down-menu {
  display: block;
}
.menu-toggle {
  display: none;
  border: 0px;
  background: transparent;
  padding: 6px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 3px;
  background: #333333;
  border-radius: 2px;
}
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  z-index: 999;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100%;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.2s ease;
  z-index: 1000;
  padding: 16px;
  box-shadow: 2px 0px 12px rgba(0, 0, 0, 0.15);
}
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.mobile-menu-header img {
  height: 36px;
}
.menu-close {
  border: 0px;
  background: transparent;
  font-size: 26px;
  line-height: 26px;
  cursor: pointer;
}
.mobile-links {
  list-style: none;
  padding: 0;
  margin: 10px 0px 0px 0px;
}
.mobile-links li {
  margin: 6px 0px;
}
.mobile-links a {
  display: block;
  padding: 8px 0px;
  color: #2b2929;
}
.mobile-links a.active {
  color: red;
}
.mobile-links .down-menu {
  list-style: none;
  padding: 4px 0px 4px 12px;
  margin: 0;
  border-left: 2px solid #f0f0f0;
}
.mobile-links .down-menu li a {
  font-size: 14px;
  color: #555555;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open .mobile-menu {
  transform: translateX(0);
}
body.menu-open .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 901px) {
  .mobile-menu,
  .mobile-menu-overlay {
    display: none;
  }
  .nvbar ul.links li .down-menu {
    width: auto;
    min-width: 120px;
    white-space: nowrap;
  }
  .nvbar ul.links li .down-menu a {
    white-space: nowrap;
  }
}
.posbar {
  display: flex;
  width: 100%;
  align-items: center;
  border-bottom: 1px solid silver;
  flex-wrap: wrap;
  padding: 0px 4px;
}
.posbar .left {
  flex-grow: 1;
  flex-shrink: 1;
  color: gray;
  line-height: 30px;
}
.posbar .right {
  display: flex;
  justify-content: flex-end;
  width: 400px;
  line-height: 40px;
}
.posbar .right a {
  font-size: 16px;
  margin: 0px 20px;
  color: #333232;
  text-decoration: none;
}
.posbar .right .current {
  color: red;
}
.posbar .right .current::after {
  width: 200px;
  height: 2px;
  position: absolute;
  top: 10;
  left: 0px;
  border-bottom: 4px solid red;
}
.section {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 1200px;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 20px 0px;
  padding: 0px 20px;
}
.section .content {
  width: 100%;
}
.section .bar {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 20px 0px;
}
.section .bar .title {
  font-size: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.section .bar .title span {
  margin-left: 10px;
  font-size: 20px;
  font-weight: normal;
  color: gray;
}
.section .bar .title div:first-child {
  width: 20px;
  height: 20px;
  border: 1px solid red;
  background-color: red;
}
.section:first-child {
  margin-top: 0px;
}
.more {
  text-indent: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  height: 30px;
  width: 120px;
  cursor: pointer;
}
.footer {
  display: flex;
  justify-content: center;
  background-color: #413f3f;
  align-items: flex-start;
  width: 100%;
}
.footer .content {
  display: flex;
  width: 100%;
  max-width: 1200px;
  justify-content: space-between;
  margin: 40px 0px;
  height: 200px;
  padding: 0px 20px;
}
.footer .content .left {
  flex-direction: column;
  width: 268px;
  color: #a1a1a1;
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  border-right: #666464 solid 1px;
}
.footer .content .center {
  align-items: flex-start;
  margin: 0px 60px;
  color: #a1a1a1;
  display: flex;
  flex-grow: 1;
  flex-shrink: 1;
  justify-content: space-around;
  border-right: #666464 solid 1px;
}
.footer .content .center .col {
  display: flex;
  flex-direction: column;
  width: 20%;
}
.footer .content .center .col a {
  color: #a1a1a1;
  line-height: 30px;
}
.footer .content .center .col a:hover {
  color: #FFFFFF;
}
.footer .content .center .col .title {
  font-size: 15px;
  line-height: 40px;
  font-weight: bold;
}
.footer .content .right {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 150px;
  color: #a1a1a1;
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
}
.footer .content .right img {
  width: 120px;
}
.popmenu {
  display: flex;
  flex-direction: column;
  width: 100px;
  background-color: white;
}
.homecontact {
  display: none;
}
.homejobs {
  display: none;
}
@media (max-width: 900px) {
  .nvbar {
    flex-direction: row;
    align-items: center;
    padding: 10px 16px;
  }
  .nvbar .logo {
    width: auto;
  }
  .nvbar ul.links {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }
  .posbar .right {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .posbar .right a {
    margin: 0px 16px 8px 0px;
  }
  .footer .content {
    flex-direction: column;
    height: auto;
    gap: 20px;
  }
  .footer .content .left,
  .footer .content .center,
  .footer .content .right {
    width: 100%;
    border-right: 0px;
  }
  .footer .content .center {
    margin: 0px;
    justify-content: space-between;
  }
  .footer .content .center .col {
    width: 45%;
    margin-bottom: 10px;
  }
  .pageTitle {
    display: none;
  }
  .homecontact {
    display: flex;
  }
  .homejobs {
    display: flex;
  }
  img[style*="height:550px"],
  img[style*="height: 550px"] {
    height: auto !important;
  }
  [style*="width: 1200px"],
  [style*="width:1200px"] {
    width: 100% !important;
    max-width: 1200px;
    padding-left: 16px;
    padding-right: 16px;
    box-sizing: border-box;
  }
}
@media (max-width: 640px) {
  .nvbar ul.links li {
    width: calc(50% - 12px);
  }
  .nvbar ul.links li a {
    height: auto;
    border-bottom: 0px;
    padding: 6px 0px;
  }
  .nvbar ul.links li a.active {
    border-bottom: 0px;
    color: red;
  }
  .nvbar ul.links li .down-menu {
    position: static;
    border: 0px;
    width: 100%;
    display: block;
    margin-left: 0px;
    padding-bottom: 6px;
  }
  .nvbar ul.links li .down-menu li {
    margin: 0px;
  }
  .section {
    padding: 0px 16px;
  }
  .footer .content {
    padding: 0px 16px;
  }
}
<!--ºÄÊ±1774436329.9699Ãë-->