/* CSS Document */

/* ---------- header ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 100;
  transition: all 0.3s ease-in-out;
}
header:after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: rgba(255,255,255,.1);
  content: "";
}

.header-logo {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 200;
}
.header-logo a {
  display: block;
  padding: 35px 40px 0;
}
.header-logo a img {
  width: 150px;
  filter: brightness(50);
}

/* menu trigger */
.header-menu-toggle {
  display: none;
  position: fixed;
  top: 12px;
  right: 20px;
  width: 40px;
  height: 40px;
  font-family: "montserrat-regular", sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  line-height: 40px;
  transition: all 0.3s ease-in-out;
}
.header-menu-toggle:hover,
.header-menu-toggle:focus {
  color: #fff;
}
.header-menu-toggle span {
  display: block;
  position: absolute;
  top: 50%;
  left: 8px;
  right: auto;
  bottom: auto;
  margin-top: -1px;
  width: 24px;
  height: 2px;
  background: #ababab;
  font: 0/0 a;
  color: transparent;
  transition: all 0.5s ease-in-out;
}
.header-menu-toggle span::before,
.header-menu-toggle span::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  content: "";
  transition: all 0.5s ease-in-out;
}
.header-menu-toggle span::before {
  top: -9px;
}
.header-menu-toggle span::after {
  bottom: -9px;
}
.header-menu-toggle.is-clicked span {
  background: rgba(255,255,255,0);
  transition: all 0.1s ease-in-out;
}
.header-menu-toggle.is-clicked span::before,
.header-menu-toggle.is-clicked span::after {
  background-color: white;
}
.header-menu-toggle.is-clicked span::before {
  top: 0;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}
.header-menu-toggle.is-clicked span::after {
  bottom: 0;
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg);
}

/* navigation */
#header-nav-wrap {
  position: absolute;
  top: 0;
  right: 0;
}
#header-nav-wrap .header-main-nav {
  float: left;
  padding-right: 40px;
  font-size: 18px;
}
#header-nav-wrap .header-main-nav li {
  display: inline-block;
  padding: 0 28px;
}
#header-nav-wrap .header-main-nav li a {
  display: inline-block;
  padding: 0 4px;
  color: #fff;
  line-height: 98px;
}
#header-nav-wrap .header-main-nav li a:hover {
  color: #f98441;
}
#header-nav-wrap .header-main-nav li a.current {
  border-bottom: 2px solid #f98441;
  color: #f98441;
}

/* search */
.header-search {
  float: left;
  padding: 30px 15px;
  height: 40px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.header-search .search-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("../img/search-ico.png") no-repeat center;
  background-size: 16px;
  border: none;
}

/* language */
.header-language {
  float: left;
  position: relative;
  padding: 30px 40px;
  height: 40px;
  border-left: 1px solid rgba(255,255,255,.1);
}
.header-language a.language-btn {
  position: relative;
  display: inline-block;
  padding-right: 18px;
  font-size: 14px;
  color: #fff;
  line-height: 40px;
}
.header-language a.language-btn .ico {
  display: inline-block;
  margin: 0 5px -5px 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: url("../img/language-ico.png") no-repeat center;
  background-size: cover;
}
.header-language a.language-btn:after {
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 10px;
  height: 5px;
  background: url("../img/language-arrow.png");
  background-size: cover;
  content: "";
}
.header-language ul {
  position: absolute;
  top: 76px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px 16px;
  border-radius: 5px;
  background: #fff;
  box-shadow: 0 0 16px rgba(0,0,0,0.1);
  z-index: 200;
  display: none;
}
.header-language li {
  font-size: 15px;
  white-space: nowrap;
  line-height: 32px;
  text-align: center;
}

/* header scroll top */
header.on {
  background: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,.05);
}
header.on:after {
  background: rgba(0,0,0,.05);
}
header.on .header-logo a img {
  filter: none;
}
#header.on #header-nav-wrap .header-main-nav li a {
  color: #333;
}
#header.on #header-nav-wrap .header-main-nav li a:hover {
  color: #f98441;
}
#header.on #header-nav-wrap .header-main-nav li a.current {
  color: #f98441;
}
header.on .header-search {
  border-left: 1px solid rgba(0,0,0,.05);
}
header.on .header-search .search-btn {
  filter: brightness(0.4);
}
header.on .header-language {
  border-left: 1px solid rgba(0,0,0,.05);
}
header.on .header-language a.language-btn {
  color: #666;
}
header.on .header-language a.language-btn .ico {
  filter: brightness(0.4);
}
header.on .header-language a.language-btn:after {
  filter: brightness(0.6);
}

/* responsive */
@media only screen and (max-width: 1280px) {
  #header-nav-wrap .header-main-nav li {
    padding: 0 20px;
  }
}

@media only screen and (max-width: 1024px) {
  #header {
    height: 64px;
  }

  .header-logo a {
    padding: 20px 20px 0;
  }
  .header-logo a img {
    width: 56px;
  }

  #header-nav-wrap {
    display: none;
    top: 0;
    left: 0;
    right: 0;
    padding: 100px 40px 40px;
    background: #103d8a;
    box-shadow: 0 0 24px rgba(0,0,0,0.1);
  }
  #header-nav-wrap .header-main-nav {
    float: none;
    padding-right: 0;
  }
  #header-nav-wrap .header-main-nav li {
    display: block;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  #header-nav-wrap .header-main-nav li a {
    display: block;
    padding: 16px 0;
    color: #fff;
    line-height: 20px;
  }
  #header-nav-wrap .header-main-nav li.current a {
    border-bottom: none;
  }

  .header-bar {
    position: static;
    background: #121212;
  }
  .header-search {
    float: none;
    padding: 20px 0;
    height: auto;
    border-left: none;
  }
  .header-search .search-btn {
    display: inline-block;
    width: 100%;
    height: 48px;
    border-radius: 5px;
    background: url("../img/search-ico.png") no-repeat center rgba(255,255,255,0.05);
    background-size: 16px;
  }

  .header-language {
    float: none;
    padding: 0;
    height: 40px;
    border-left: 0;
  }
  .header-language a.language-btn {
    display: none;
  }
  .header-language ul {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    padding: 0;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 5px;
    background: none;
    box-shadow: none;
    display: flex;
  }
  .header-language li {
    flex: 1;
    line-height: 44px;
  }
  .header-language li a {
    display: block;
    color: #fff;
  }

  .header-menu-toggle {
    display: block;
  }
  
  #header.on:after {
    background: rgba(255,255,255,.1);
  }
  #header.on #header-nav-wrap .header-main-nav li a {
    color: #fff;
  }
  #header.on .header-search {
    border-left: 0;
  }
  #header.on .header-search .search-btn {
    filter: none;
  }
  #header.on .header-language {
    border-left: 0;
  }
}

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

/* make sure the menu is visible on larger screens */
@media only screen and (min-width: 1025px) {
  #header-nav-wrap {
    display: block !important;
  }
}

/* mobile language */
.mobile-language {
  display: none;
  position: fixed;
  top: 12px;
  right: 80px;
  color: #666;
  line-height: 40px;
  z-index: 1000000;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .mobile-language {
    display: block;
  }
}

/* mobile search*/
.mobile-search {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  padding: 12px 20px;
  background: rgba(38,94,191,0.6);
  z-index: 100;
}
.form-search {
  padding: 0 8px 0 36px;
  width: 100%;
  height: 32px;
  box-sizing: border-box;
  border-radius: 6px;
  border: 0;
  background: url("../img/mobile-search-ico.png") no-repeat 10px center #fff;
  background-size: 16px;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .mobile-search {
    display: block;
  }
}

/* ---------- footer ---------- */
footer {
  background: #262930;
  font-size: 14px;
  color: #fff;
}

.footer-con {
  padding: 80px 0 40px;
}

.footer-contact {
  float: left;
  width: 36%;
}

.footer-logo h2 {
  font-size: 24px;
  font-weight: normal;
  color: #fff;
}

.footer-contact-item {
  padding-top: 32px;
}
.footer-contact-item li {
  padding-bottom: 20px;
}
.footer-contact-item h4 {
  font-size: 14px;
  font-weight: normal;
  color: #fff;
}
.footer-contact-item p {
  color: #7b808f;
  line-height: 180%;
}

.footer-sns {
  padding-top: 20px;
}
.footer-sns li {
  float: left;
  position: relative;
  margin-right: 8px;
}
.footer-sns li a.ico {
  display: inline-block;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background-color: rgba(255,255,255,0.05);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
}
.footer-sns li a.weixin {
  background-image: url("../img/weixin-ico.png");
}
.footer-sns li a.douyin {
  background-image: url("../img/douyin-ico.png");
}
.footer-sns li a.workweixin {
  background-image: url("../img/workweixin-ico.png");
}
.footer-sns li a.tel {
  background-image: url("../img/tel-ico.png");
}
.footer-sns a.linkedin {
  background-image: url("../img/linkedin-ico.png");
}
.footer-sns a.whatsapp {
  background-image: url("../img/whatsapp-ico.png");
}
.footer-sns a.wechat {
  background-image: url("../img/facebook.jpg");
}
.footer-sns a.youtube {
  background-image: url("../img/youtube-ico.png");
}

.footer-sns li a:hover {
  background-color: rgba(255,255,255,0.2);
}
.footer-sns .weixin-qrcode {
  display: none;
	position: absolute;
	left: 0;
  bottom: 56px;
	width: 160px;
}
.footer-sns .weixin-qrcode:before {
	position: absolute;
	left: 10px;
	bottom: -8px;
	width: 16px;
	height: 8px;
	background: url("../img/footer-popup-arrow.png");
  background-size: 16px;
  content: "";
}
.footer-sns .weixin-qrcode img {
  width: 100%;
  border-radius: 8px;
}
.footer-sns .douyin-qrcode {
  display: none;
	position: absolute;
	left: -44px;
  bottom: 56px;
	width: 160px;
}
.footer-sns .douyin-qrcode:before {
	position: absolute;
	left: 54px;
	bottom: -8px;
	width: 16px;
	height: 8px;
	background: url("../img/footer-popup-arrow.png");
  background-size: 16px;
  content: "";
}
.footer-sns .douyin-qrcode img {
  width: 100%;
  border-radius: 8px;
}
.footer-sns .workweixin-qrcode {
  display: none;
	position: absolute;
	left: 50%;
  bottom: 56px;
  transform: translateX(-50%);
	width: 160px;
}
.footer-sns .workweixin-qrcode:before {
	position: absolute;
	left: 50%;
	bottom: -8px;
  margin-left: -8px;
	width: 16px;
	height: 8px;
	background: url("../img/footer-popup-arrow.png");
  background-size: 16px;
  content: "";
}
.footer-sns .workweixin-qrcode img {
  width: 100%;
  border-radius: 8px;
}
.footer-sns .tel-number {
  display: none;
	position: absolute;
	left: 50%;
  bottom: 56px;
  transform: translateX(-50%);
	width: 160px;
}
.footer-sns .tel-number:before {
	position: absolute;
	left: 50%;
	bottom: -8px;
  margin-left: -8px;
	width: 16px;
	height: 8px;
	background: url("../img/footer-popup-arrow.png");
  background-size: 16px;
  content: "";
}
.footer-sns .tel-number img {
  width: 100%;
  border-radius: 8px;
}

.footer-nav {
  float: right;
  background: url("../img/footer-map.png") no-repeat right bottom;
  background-size: 240px;
}
.footer-nav .item {
  float: left;
  margin-right: 60px;
}
.footer-nav .item:last-child {
  margin-right: 0;
}
.footer-nav .item h4 {
  padding-top: 5px;
  font-size: 15px;
  font-weight: normal;
}
.footer-nav .item h4 a {
  color: #fff;
}
.footer-nav .item ul {
  padding-top: 24px;
}
.footer-nav .item li {
  padding: 6px 0;
}
.footer-nav .item li a {
  color: #7b808f;
}
.footer-nav .item li a:hover {
  color: #fff;
}

.footer-btm {
  padding: 24px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #7b808f;
  overflow: hidden;
}
.footer-btm .copyright {
  float: left;
}
.footer-btm .beian {
  float: right;
}
.footer-btm .beian a {
  color: #7b808f;
}

/* responsive */
@media only screen and (max-width: 1024px) {
  .footer-con {
    padding: 40px 0 20px;
  }

  .footer-contact {
    float: none;
    width: auto;
  }

  .footer-logo h2 {
    font-size: 18px;
  }

  .footer-contact-item {
    padding-top: 28px;
  }
  .footer-contact-item li {
    padding-bottom: 12px;
  }
  .footer-contact-item p {
    line-height: 160%;
  }

  .footer-sns {
    padding-top: 12px;
  }

  .footer-nav {
    display: none;
  }

  .footer-btm {
    padding: 20px 0 40px;
  }
  .footer-btm .copyright {
    float: none;
  }
  .footer-btm .beian {
    float: none;
  }
}

/* ---------- side bar ---------- */
.side-bar {
  position: fixed;
  right: 20px;
  bottom: 200px;
  padding: 0 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 100;
}
.side-bar li {
  position: relative;
  padding: 8px 0;
  border-bottom: 1px solid #efefef;
}
.side-bar li:last-child {
  border-bottom: 0;
}
.side-bar a.ico {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px;
  vertical-align: middle;
  filter: brightness(0.3);
}
.side-bar a.weixin {
  background-image: url("../img/weixin-ico.png");
}
.side-bar a.douyin {
  background-image: url("../img/douyin-ico.png");
}
.side-bar a.workweixin {
  background-image: url("../img/workweixin-ico.png");
}
.side-bar a.tel {
  background-image: url("../img/tel-ico.png");
}
.side-bar a.linkedin {
  background-image: url("../img/linkedin-ico.png");
}
.side-bar a.whatsapp {
  background-image: url("../img/whatsapp-ico.png");
}
.side-bar a.wechat {
  background-image: url("../img/facebook.jpg");
}
.side-bar a.youtube {
  background-image: url("../img/youtube-ico.png");
}
.side-bar a.gotop {
  background-image: url("../img/gotop-ico.png");
}
.side-bar a:hover {
  background-color: rgba(255,255,255,0.2);
}

.side-bar .side-weixin-qrcode {
  display: none;
	position: absolute;
  top: 50%;
	right: 56px;
  transform: translateY(-50%);
	width: 160px;
}
.side-bar .side-weixin-qrcode:before {
	position: absolute;
	top: 50%;
	right: -8px;
  transform: translateY(-50%);
	width: 8px;
	height: 16px;
	background: url("../img/sns-popup-arrow.png");
  background-size: 8px;
  content: "";
}
.side-bar .side-weixin-qrcode img {
  width: 100%;
  border-radius: 8px;
}
.side-bar .side-douyin-qrcode {
  display: none;
	position: absolute;
  top: 50%;
	right: 56px;
  transform: translateY(-50%);
	width: 160px;
}
.side-bar .side-douyin-qrcode:before {
	position: absolute;
	top: 50%;
	right: -8px;
  transform: translateY(-50%);
	width: 8px;
	height: 16px;
	background: url("../img/sns-popup-arrow.png");
  background-size: 8px;
  content: "";
}
.side-bar .side-douyin-qrcode img {
  width: 100%;
  border-radius: 8px;
}
.side-bar .side-workweixin-qrcode {
  display: none;
	position: absolute;
  top: 50%;
	right: 56px;
  transform: translateY(-50%);
	width: 160px;
}
.side-bar .side-workweixin-qrcode:before {
	position: absolute;
	top: 50%;
	right: -8px;
  transform: translateY(-50%);
	width: 8px;
	height: 16px;
	background: url("../img/sns-popup-arrow.png");
  background-size: 8px;
  content: "";
}
.side-bar .side-workweixin-qrcode img {
  width: 100%;
  border-radius: 8px;
}
.side-bar .side-tel-number {
  display: none;
	position: absolute;
  top: 50%;
	right: 56px;
  transform: translateY(-50%);
	width: 160px;
}
.side-bar .side-tel-number:before {
	position: absolute;
	top: 50%;
	right: -8px;
  transform: translateY(-50%);
	width: 8px;
	height: 16px;
	background: url("../img/sns-popup-arrow.png");
  background-size: 8px;
  content: "";
}
.side-bar .side-tel-number img {
  width: 100%;
  border-radius: 8px;
}

/* responsive */
@media only screen and (max-width: 768px) {
  .side-bar {
    right: 0;
    bottom: 120px;
    padding: 0 4px;
    border-radius: 8px 0 0 8px;
  }
  .side-bar li {
    padding: 4px 0;
  }
  .side-bar a.ico {
    background-size: 16px;
  }
}

/* ---------- messages ---------- */
.side-messages {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}
.messages-btn {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: url("../img/message-ico.png") no-repeat center #265ebf;
  background-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* responsive */
@media only screen and (max-width: 768px) {
  .side-messages {
    right: 8px;
    bottom: 8px;
  }
  .messages-btn {
    width: 48px;
    height: 48px;
    background-size: 24px;
  }
}

.text_ul_user {
  padding: 35px 15px;
  border-left: 1px solid rgba(0,0,0,.05);
  float:left;
  height: 30px;
}
.text_ul_user img {
  width: 25px;
  border-radius: 10px;
}