@font-face {
  font-family: 'Poppins';
  src: url('../fonts/Poppins-Regular.eot');
  src: url('../fonts/Poppins-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Poppins-Regular.woff2') format('woff2'), url('../fonts/Poppins-Regular.woff') format('woff'), url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Georgia';
  src: url('../fonts/Georgia.eot');
  src: url('../fonts/Georgia.eot?#iefix') format('embedded-opentype'), url('../fonts/Georgia.woff2') format('woff2'), url('../fonts/Georgia.woff') format('woff'), url('../fonts/Georgia.ttf') format('truetype');
  font-weight: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Georgia';
  src: url('../fonts/Georgia-Bold.eot');
  src: url('../fonts/Georgia-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Georgia-Bold.woff2') format('woff2'), url('../fonts/Georgia-Bold.woff') format('woff'), url('../fonts/Georgia-Bold.ttf') format('truetype');
  font-weight: bold;
  font-display: swap;
}
body {
  font-family: "Poppins";
  max-width: 1920px;
  --color: #007cc2;
  --font: 'Georgia';
  background-color: #f2f0ea;
  font-weight: normal;
  margin: 0 auto;
}
.font1 {
  font-family: var(--font);
}
.container {
  width: 100%;
  max-width: 1750px;
}
.body-overflow-box {
  position: relative;
  left: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header {
  z-index: 21;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
}
#header.home {
  color: #FFFFFF;
}
#header.active .nav {
  background-color: #000000;
}
#header.inner.active .nav {
  background-color: #e1dbcb;
}
#header .h-top {
  position: relative;
  z-index: 1;
}
#header .h-top .line {
  height: 17px;
  width: 1px;
  background-color: currentColor;
}
#header .nav {
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
#header .nav .ui.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 auto;
}
#header .nav .ui.menu .logo {
  display: inline-block;
  margin-left: auto;
  margin-right: 0;
  vertical-align: middle;
}
#header .nav .ui.menu .menu-box {
  display: inline-block;
  vertical-align: middle;
  margin-left: auto;
  margin-right: 0;
}
#header .nav .ui.menu .menu-box > div {
  height: 100%;
}
#header .nav .ui.menu .menu-box ul.menu {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#header .nav .ui.menu .menu-box ul.menu > li {
  font-size: 22px;
  font-family: var(--font);
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  float: left;
  position: relative;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#header .nav .ui.menu .menu-box ul.menu > li + li {
  margin-right: 70px;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover {
  color: var(--color);
}
#header .nav .ui.menu .menu-box ul.menu > li > a {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu {
  -webkit-perspective: 500px;
  -moz-perspective: 500px;
  perspective: 500px;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  transform-style: preserve-3d;
  text-align: left;
  position: absolute;
  font-size: 14px;
  background: #fff;
  top: 100%;
  left: -10px;
  width: 180px;
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  -moz-transform: rotate3d(1, 0, 0, -90deg);
  -ms-transform: rotate3d(1, 0, 0, -90deg);
  -o-transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0 0;
  -moz-transform-origin: 0 0 0;
  -ms-transform-origin: 0 0 0;
  transform-origin: 0 0 0;
  opacity: 0;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
  transition: opacity 0.3s, -webkit-transform 0.5s;
  -moz-transition: transform 0.5s, opacity 0.3s, -moz-transform 0.5s;
  transition: transform 0.5s, opacity 0.3s;
  transition: transform 0.5s, opacity 0.3s, -webkit-transform 0.5s, -moz-transform 0.5s;
  -webkit-transition: -webkit-transform 0.5s, opacity 0.3s;
  -moz-transition: -moz-transform 0.5s, opacity 0.3s;
  -webkit-box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 8px 10px rgba(0, 0, 0, 0.2);
  border-bottom: 3px solid var(--color);
  display: none \9;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li {
  display: block;
  float: none;
  padding: 8px 15px;
  color: black;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  text-transform: capitalize;
  position: relative;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li a {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li ul {
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  display: none;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover {
  background: #222;
  color: white;
}
#header .nav .ui.menu .menu-box ul.menu > li ul.sub-menu li:hover > ul {
  display: block;
}
#header .nav .ui.menu .menu-box ul.menu > li:hover ul.sub-menu {
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
  transform: rotate3d(0, 0, 0, 0);
  -webkit-transform: rotate3d(0, 0, 0, 0);
  -moz-transform: rotate3d(0, 0, 0, 0);
  -ms-transform: rotate3d(0, 0, 0, 0);
  -o-transform: rotate3d(0, 0, 0, 0);
  display: block \9;
}
#header .nav .ui.menu .h-search {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0;
  margin-right: 0;
  cursor: pointer;
  cursor: hand;
}
#header .nav .search-box {
  line-height: normal;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: none;
}
#header .nav .search-box form {
  position: absolute;
  top: 45%;
  left: 50%;
  width: 60%;
  margin-left: -30%;
}
#header .nav .search-box form input {
  background: none;
  outline: none;
  border: none;
}
#header .nav .search-box form input[type="text"] {
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  font-size: 26px;
  color: #000;
  padding: 10px 0;
}
#header .nav .search-box form input[type="submit"] {
  width: 22px;
  height: 22px;
  background: url(../images/tc-zoom.png) no-repeat;
  position: absolute;
  right: 15px;
  top: 20px;
}
#header .nav .search-box form input[type="submit"]:hover {
  opacity: 0.7;
  filter: alpha(opacity=70);
}
#header .nav .search-box .close {
  width: 30px;
  height: 30px;
  background: url(../images/close.png) no-repeat;
  position: absolute;
  right: 25px;
  top: 15px;
  cursor: pointer;
}
#banner .slick-arrow {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50px;
  height: 80px;
  color: transparent;
  border: none;
  z-index: 1;
  outline: none;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  opacity: 0;
}
#banner .slick-arrow:hover {
  background-color: var(--color);
}
#banner:hover .slick-arrow {
  opacity: 1;
}
#banner .slick-prev {
  background: url("../images/banner-btn-l.png") no-repeat center center rgba(0, 0, 0, 0.3);
  left: 15px;
}
#banner .slick-next {
  background: url("../images/banner-btn-r.png") no-repeat center center rgba(0, 0, 0, 0.3);
  right: 15px;
}
#banner ul.slick-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
#banner ul.slick-dots li {
  width: 30px;
  height: 30px;
  display: inline-block;
  margin: 0 10px;
  border-radius: 100%;
  border: 6px solid white;
  background-color: var(--color);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner ul.slick-dots li button {
  display: none;
}
#banner ul.slick-dots li.slick-active {
  border-color: var(--color);
  background-color: white;
}
#banner .slick-slide .content {
  display: none;
}
#banner .slick-active .content {
  display: block;
}
.wpulike.wpulike-default {
  display: none;
}
.prodet-page .wpulike.wpulike-default,
.newdet-page .wpulike.wpulike-default {
  display: inline-block;
}
.post-views-box {
  position: relative;
  margin-left: 20px;
}
.post-views-box .wp_ulike_btn.wp_ulike_put_image:after {
  background-image: url(../images/fw.png) !important;
  -webkit-filter: none;
  filter: none;
}
.wpulike {
  z-index: 10;
}
.wpulike.post-views-box {
  z-index: 5;
}
#banner .nivo-directionNav a {
  width: 40px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
  color: transparent;
  overflow: hidden;
  text-indent: -999em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#banner .nivo-directionNav a {
  opacity: 0;
}
#banner:hover .nivo-directionNav a {
  opacity: 1;
}
#banner .nivo-directionNav a:hover {
  background-color: var(--color);
}
#banner .nivo-directionNav a.nivo-prevNav {
  background-image: url(../images/banner-btn-l.png);
  left: 40px;
}
#banner .nivo-directionNav a.nivo-nextNav {
  background-image: url(../images/banner-btn-r.png);
  right: 40px;
}
#banner .theme-default .nivo-controlNav {
  position: absolute;
  bottom: 20px;
  left: 50%;
  width: auto !important;
}
#banner .theme-default .nivo-controlNav a {
  width: 25px  !important;
  height: 25px !important;
  background: #fff !important;
  border: 7px solid #7d7d7d !important;
  border-radius: 100% !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  margin: 0 8px !important;
}
#banner .theme-default .nivo-controlNav a.active {
  border-color: var(--color) !important;
}
html.mobile {
  overflow: hidden;
}
html.mobile .body-overflow-box {
  position: relative;
  right: 280px;
}
#mobile {
  position: fixed;
  top: 0;
  right: -280px;
  width: 280px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: none;
  z-index: 200;
  height: 100%;
}
#mobile:before {
  content: '';
  width: 200%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.13);
  z-index: -1;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .mobile-logo {
  position: absolute;
  right: 100%;
  width: 100vw;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: #111;
  -o-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}
#mobile .mobile-logo img {
  max-height: 30px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: middle;
}
#mobile #menu-on {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  position: absolute;
  right: 100%;
  top: 0;
  cursor: pointer;
  cursor: hand;
  z-index: 1;
}
#mobile #menu-on i {
  width: 23px;
  height: 2px;
  background: #222;
  display: block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
}
#mobile #menu-on i.line1 {
  top: 12px;
}
#mobile #menu-on i.line2 {
  top: 19px;
}
#mobile #menu-on i.line3 {
  top: 26px;
}
#mobile .menu-content {
  width: 100%;
  height: 100%;
  display: block;
  background: #222;
  padding: 40px 10% 60px;
  overflow-y: auto;
  color: white;
}
#mobile .menu-content::-webkit-scrollbar {
  width: 3px;
  border-radius: 1.5px;
}
#mobile .menu-content::-webkit-scrollbar-button {
  display: none;
}
#mobile .menu-content::-webkit-scrollbar-track {
  background-color: #222;
}
#mobile .menu-content::-webkit-scrollbar-thumb {
  background-color: #eee;
}
#mobile .menu-content h3 {
  font-size: 20px;
  color: inherit;
  text-transform: capitalize;
  margin-bottom: 10px;
}
#mobile .menu-content h3 i {
  font-size: 16px;
  position: relative;
  top: -1px;
}
#mobile .menu-content .menu-logo {
  display: block;
}
#mobile .menu-content .menu-logo img {
  margin: 0 auto;
}
#mobile .menu-content .menu-list {
  margin: 40px 0;
}
#mobile .menu-content .menu-list ul li {
  font-size: 15px;
  color: inherit;
  text-transform: uppercase;
  line-height: 20px;
}
#mobile .menu-content .menu-list ul li a {
  padding: 8px 0;
  display: block;
}
#mobile .menu-content .menu-list ul li a:hover {
  color: var(--color);
  text-decoration: underline;
}
#mobile .menu-content .menu-list ul li li a {
  position: relative;
  padding-left: 15px;
  font-size: 13px;
  line-height: 18px;
}
#mobile .menu-content .menu-list ul li li a:after {
  content: '';
  width: 6px;
  height: 1px;
  background: white;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#mobile .menu-content .menu-list ul li li li a {
  padding-left: 25px;
}
#mobile .menu-content .menu-list ul li li li a:after {
  width: 12px;
}
#mobile .menu-content .mob-search form {
  position: relative;
}
#mobile .menu-content .mob-search form input {
  width: 100%;
  height: 45px;
  line-height: 45px;
  border-radius: 5px;
  border: none;
  padding: 0 15px;
  font-size: 14px;
  color: black;
}
#mobile .menu-content .mob-search form input[type="submit"] {
  width: 45px;
  height: 45px;
  background: url("../images/icon-search-white.png") no-repeat center center #222;
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
}
#mobile .menu-content .mob-yuy {
  margin: 40px 0;
}
#mobile .menu-content .mob-yuy ul li {
  margin-bottom: 10px;
  color: inherit;
  font-size: 14px;
}
#mobile .menu-content .mob-yuy ul li img {
  max-width: 40px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
#mobile .menu-content .mob-share ul li {
  width: 30px;
  height: 30px;
  border-radius: 3px;
  background: #333;
  display: inline-block;
  text-align: center;
  line-height: 30px;
  color: white;
  font-size: 14px;
  margin-right: 3px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
#mobile .menu-content .mob-share ul li:hover {
  background: var(--color);
}
#mobile .menu-content #menu-off {
  margin-top: 40px;
  cursor: pointer;
  cursor: hand;
}
#mobile.active {
  right: 0;
}
#mobile.active:before {
  left: 0;
}
#mobile.active #menu-on i.line1 {
  -webkit-transform: translateX(-50%) rotateZ(45deg);
  -moz-transform: translateX(-50%) rotateZ(45deg);
  -ms-transform: translateX(-50%) rotateZ(45deg);
  transform: translateX(-50%) rotateZ(45deg);
  top: 12px;
  margin-left: 3px;
}
#mobile.active #menu-on i.line2 {
  opacity: 0;
}
#mobile.active #menu-on i.line3 {
  -webkit-transform: translateX(-50%) rotateZ(-45deg);
  -moz-transform: translateX(-50%) rotateZ(-45deg);
  -ms-transform: translateX(-50%) rotateZ(-45deg);
  transform: translateX(-50%) rotateZ(-45deg);
  top: 28px;
  margin-left: 3px;
}
#mobile.white .mobile-logo {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  background: white;
}
#mobile.white .menu-content {
  background: white;
  color: black;
}
#mobile.white .menu-content .menu-list ul li li a:after {
  background: black;
}
#mobile.white .menu-content .mob-search form input {
  border: 1px solid black;
}
#mobile.white .menu-content .mob-search form input[type="submit"] {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}
@media screen and (max-width: 1000px) {
  #banner,
  .inner-banner {
    margin-top: 40px;
  }
}
#spotlight.show {
  display: inline-block;
  background: rgba(0, 0, 0, 0.3) !important;
}
#spotlight .scene img {
  border: 10px solid white !important;
  border-radius: 10px;
}
#spotlight .header {
  background: black !important;
}
@-webkit-keyframes wgl_scroll_text {
  from {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@-moz-keyframes wgl_scroll_text {
  from {
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes wgl_scroll_text {
  from {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
  }
}
#banner {
  background-position: center bottom;
  background-size: 100% auto;
  background-color: #161514;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#banner .bg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: -1;
}
#banner .bg img {
  opacity: 0;
}
#banner .content {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 5%;
}
#banner .left {
  gap: 1.5em;
}
#banner h2 {
  font-size: 5.5vw;
  font-family: var(--font);
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: inherit;
  white-space: nowrap;
  -webkit-animation: wgl_scroll_text 40s linear infinite;
  -moz-animation: wgl_scroll_text 40s linear infinite;
  animation: wgl_scroll_text 40s linear infinite;
}
#banner h2 span {
  display: inline;
  color: #FFFFFF;
}

.baseline {
  border-bottom: 1px solid #a29c8a;
}
.home-1 .bg {
  width: 140%;
  height: 100%;
  left: -30%;
  bottom: -10%;
  background-image: url(../images/mask-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.home-1 .box {
  min-height: 100vh;
}
.home-1 .desc {
  max-width: 380px;
}
.home-1 .list ul {
  margin: -19px;
}
.home-1 .list li {
  padding: 19px;
}
.home-1 .list li > div {
  border-radius: 10px;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-1 .list li .arrow {
  right: 0;
  top: 0;
  opacity: 0;
  -webkit-transition: opacity .5s ease;
  -moz-transition: opacity .5s ease;
  transition: opacity .5s ease;
}
.home-1 .list li .icon {
  width: 90px;
  border-radius: 50%;
  background-color: #e1dbcb;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.home-1 .list li .icon img {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-1 .list li .name {
  line-height: 1.5;
  min-height: 3em;
  font-weight: bold;
}
.home-1 .list li .text {
  line-height: 24px;
}
.home-1 .list li.active > div {
  background-color: rgba(1, 86, 171, 0.2);
}
.home-1 .list li.active .arrow {
  opacity: 1;
}
.home-1 .list li.active .icon {
  background-color: #007cc2;
}
.home-1 .list li.active .icon img {
  -webkit-filter: invert(1);
  filter: invert(1);
}
.baseBtn {
  height: 3.4em;
  line-height: 3.4;
  border-radius: 1.7em;
  color: #000000;
  background-color: #FFFFFF;
  padding: 0 1.5em;
  min-width: 13.5em;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.baseBtn:hover {
  color: #FFFFFF;
  background-color: #007cc2;
}
.home-2 .box {
  padding-right: 5.25%;
}
.home-2 .left > div {
  height: 100%;
  background-color: #e1dbcb;
}
.home-2 .right img {
  border-radius: 1em;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-2 .right .arrow {
  width: 8.6%;
  right: 5%;
  bottom: 5%;
  font-size: 0;
}
.home-2 .list li {
  position: relative;
}
.home-2 .list li::before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #a29c8a;
}
.home-2 .list li::after {
  content: "";
  position: absolute;
  width: 0;
  left: 0;
  bottom: 0;
  border-bottom: 1px solid #000000;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-2 .list li:hover::after {
  width: 100%;
}
@-webkit-keyframes ro {
  from {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes ro {
  from {
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes ro {
  from {
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.home-3 .text-editor_wrapper {
  font-size: 12vw;
  font-family: var(--font);
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  gap: inherit;
  -webkit-animation: wgl_scroll_text 50s linear infinite;
  -moz-animation: wgl_scroll_text 50s linear infinite;
  animation: wgl_scroll_text 50s linear infinite;
  white-space: nowrap;
  opacity: .12;
}
.home-3 .text-editor_wrapper > span {
  color: #f2f0ea;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.home-3 .year {
  line-height: 1.2;
  background: -webkit-linear-gradient(left, #ebd6cc 50%, #007cc2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.home-3 .year span {
  display: block;
  font-size: 1.94em;
}
.home-3 .play {
  cursor: pointer;
}
.home-3 .play text {
  -webkit-transform-origin: center;
  -moz-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-animation: 10s ro linear infinite;
  -moz-animation: 10s ro linear infinite;
  animation: 10s ro linear infinite;
}
.home-4{
  position: relative;
}
.home-4 .bgCont{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-4 .bgCont li{
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.home-4 .list ul {
  border-left: 3px solid #d7d1cc;
}
.home-4 .list li {
  margin-left: -3px;
  border-bottom: 1px solid #d7d1cc;
  position: relative;
  -webkit-transition: background-color 0.5s ease, border-bottom-color 0.5s ease;
  -moz-transition: background-color 0.5s ease, border-bottom-color 0.5s ease;
  transition: background-color 0.5s ease, border-bottom-color 0.5s ease;
}
.home-4 .list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 16px;
  height: 0;
  background-color: #3391c7;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-4 .list li .text {
  line-height: 2;
}
.home-4 .list li .text > div {
  min-height: 6em;
}
.home-4 .list li.active {
  background-color: rgba(0, 124, 194, 0.1);
  border-color: #3391c7;
}
.home-4 .list li.active::before {
  top: 0;
  height: 100%;
}
.home-4 .list li.active .name {
  color: #3391c7;
}
.home-4 .list li.active .text {
  color: #3391c7;
}
.home-5 .box .icon {
  width: 100px;
  background-color: #e1dbcb;
  border-radius: 50%;
  -webkit-transition: background-color 0.5s ease;
  -moz-transition: background-color 0.5s ease;
  transition: background-color 0.5s ease;
}
.home-5 .box .icon img {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-5 .box .icon img.pos {
  left: 0;
  top: 0;
  -webkit-transform: scale(0.6);
  -moz-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transform-origin: 80% 80%;
  -moz-transform-origin: 80% 80%;
  -ms-transform-origin: 80% 80%;
  transform-origin: 80% 80%;
}
.home-5 .box .name {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-5 .box .text {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-5 .box:hover .icon {
  background-color: #007cc2;
}
.home-5 .box:hover .icon img.pos {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}
.home-5 .box:hover .name {
  color: #007cc2;
}
.home-5 .box:hover .text {
  color: #007cc2;
}
.home-6 {
  background-image: url(../images/home6-bg.jpg);
  background-attachment: fixed;
  background-position: center;
}
.home-6 .list ul {
  margin: 0 -45px;
}
.home-6 .list li {
  padding: 0 45px;
}
.home-6 .list li .img {
  border-radius: 28px;
  margin: auto;
}
.home-6 .list li:nth-of-type(1) .img {
  max-width: 67%;
  padding-top: 87%;
}
.home-6 .list li:nth-of-type(2) {
  margin-top: 30%;
}
.home-6 .list li:nth-of-type(2) .img {
  padding-top: 62%;
}
.home-6 .list li:nth-of-type(3) {
  margin-top: -2%;
}
.home-6 .list li:nth-of-type(3) .img {
  padding-top: 120%;
}
.home-7 {
  overflow: hidden;
}
.home-7 .slick-list {
  overflow: visible;
  padding-right: 8%;
}
.home-7 .box .img {
  padding-top: 70%;
  border-radius: 22px;
}
.home-7 .box.even .img {
  padding-top: 116%;
}
.home-7 .box .baseBtn {
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  opacity: 0;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.home-7 .box:hover .baseBtn {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
.cta-border-arrow {
  min-width: 20px;
  width: 8.85svw;
}
.cta-border-arrow img {
  width: 100%;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.cta-border-arrow .arrow {
  position: absolute;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  width: 59%;
}
.cta-border-arrow:hover .cta-border-arrow-border {
  -webkit-transform: scale(0.7);
  -moz-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}
.cta-border-arrow:hover .arrow {
  -webkit-transform: scale(0.8) rotate(0);
  -moz-transform: scale(0.8) rotate(0);
  -ms-transform: scale(0.8) rotate(0);
  transform: scale(0.8) rotate(0);
}
@-webkit-keyframes scaleAnimation {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes scaleAnimation {
  from {
    -moz-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -moz-transform: scale(0.7);
    transform: scale(0.7);
  }
  to {
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes scaleAnimation {
  from {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.7);
    -moz-transform: scale(0.7);
    transform: scale(0.7);
  }
  to {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    transform: scale(1);
  }
}
.arrow-link {
  width: 28px;
  margin-right: 12px;
  overflow: hidden;
}
.arrow-link img {
  width: 100%;
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.arrow-link .arrow {
  position: absolute;
  width: 53%;
}
.arrow-link .arrow-bis {
  -webkit-transform: translate(-188.67%);
  -moz-transform: translate(-188.67%);
  -ms-transform: translate(-188.67%);
  transform: translate(-188.67%);
}
.link-with-arrow span {
  -webkit-transition: .5s ease;
  -moz-transition: .5s ease;
  transition: .5s ease;
}
.link-with-arrow:hover .arrow-link .arrow {
  -webkit-transform: translate(188.67%);
  -moz-transform: translate(188.67%);
  -ms-transform: translate(188.67%);
  transform: translate(188.67%);
}
.link-with-arrow:hover .arrow-link .arrow-bis {
  -webkit-transform: translate(0);
  -moz-transform: translate(0);
  -ms-transform: translate(0);
  transform: translate(0);
}
.link-with-arrow:hover span {
  -webkit-transform: translate(5%, 0px);
  -moz-transform: translate(5%, 0px);
  -ms-transform: translate(5%, 0px);
  transform: translate(5%, 0px);
}
#footer {
  background-color: #FFFFFF;
  overflow: hidden;
}
#footer .bg {
  width: 140%;
  height: 100%;
  left: -30%;
  bottom: -20%;
  background-image: url(../images/mask-bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
#footer .footer-top {
  border-bottom: 1px solid #a29c8a;
}
#footer .footer-top .Tit {
  line-height: 1.2;
}
#footer .footer-center .footer-block {
  max-width: 40%;
}
#footer .footer-bottom img.login {
  height: 18px;
}
@media (max-width: 1700px) {
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 19px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li + li {
    margin-right: 57px;
  }
  .home-1 .list ul {
    margin: -16px;
  }
  .home-1 .list li {
    padding: 16px;
  }
  .home-6 .list ul {
    margin: 0 -37px;
  }
  .home-6 .list li {
    padding: 0 37px;
  }
}
@media (max-width: 1450px) {
  #header .nav .ui.menu .logo {
    width: 200px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 18px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li + li {
    margin-right: 52px;
  }
  .home-1 .list ul {
    margin: -14px;
  }
  .home-1 .list li {
    padding: 14px;
    width: 33.33%;
  }
  .home-1 .box {
    min-height: auto;
  }
  .home-1 .list li .text {
    height: auto!important;
  }
  .home-6 .list ul {
    margin: 0 -33px;
  }
  .home-6 .list li {
    padding: 0 33px;
  }
}
@media (max-width: 1250px) {
  #nav-height {
    display: none;
  }

  #header .nav .ui.menu .menu-box ul.menu > li {
    font-size: 16px;
  }
  #header .nav .ui.menu .menu-box ul.menu > li + li {
    margin-right: 42px;
  }
  .home-1 .list ul {
    margin: -12px;
  }
  .home-1 .list li {
    padding: 12px;
  }
  .home-6 .list ul {
    margin: 0 -27px;
  }
  .home-6 .list li {
    padding: 0 27px;
  }
}
@media (max-width: 1000px) {
  .home-1 .desc {
    max-width: 100%;
  }
  .home-1 .list ul {
    margin: -10px;
  }
  .home-1 .list li {
    padding: 10px;
    width: 50%;
  }
  .home-1 .bg {
    height: 40%;
    bottom: -5%;
  }
  .home-2 .box {
    padding-left: 5%;
    padding-right: 5%;
  }
  .home-2 .left > div {
    padding: 5%;
  }
  .home-4 {
    background-position: left;
  }
  .home-4 .list {
    width: 70%;
  }
  .home-6 .list ul {
    margin: 0 -23px;
  }
  .home-6 .list li {
    padding: 0 23px;
  }
  .hide-1000 {
    display: none;
  }
  .cta-border-arrow {
    width: 40%!important;
  }
  #footer .footer-top {
    display: block;
  }
  #footer .footer-center .footer-block {
    max-width: 100%;
  }
}
@media (max-width: 700px) {
  .home-1 .list ul {
    margin: -9px;
  }
  .home-1 .list li {
    padding: 9px;
  }
  .home-4 .list {
    width: 100%;
  }
  .home-4 .list li::before {
    width: 5px;
  }
  .home-6 .list ul {
    margin: 0 -20px;
  }
  .home-6 .list li {
    padding: 0 20px;
  }
}
@media (max-width: 500px) {
  .home-1 .list li {
    width: 100%;
  }
  .home-6 .list ul {
    margin: -20px;
  }
  .home-6 .list li {
    padding: 20px;
    width: 100%;
    margin-top: 0!important;
  }
  .home-6 .list li:nth-of-type(1) .img {
    max-width: 100%;
    padding-top: 120%;
  }
}


.inner-banner span.h2 {
  font-family: var(--font);
}

hr {
  background-color: #575757;
}
.inner-page .text {
  color: #444;
}
.inner-page .slideBox .slideBoxLeft {
  width: 22%;
  padding-left: 5%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
}
.inner-page .slideBox .slideBoxLeft .nav a {
  padding: .7em 0;
  border-bottom: 1px solid #707070;
}
.inner-page .slideBox .slideBoxLeft .nav a i {
  font-size: 1.3em;
  line-height: 1;
}
.inner-page .slideBox .slideBoxLeft .nav a.active,
.inner-page .slideBox .slideBoxLeft .nav a:hover {
  font-weight: bold;
}
.inner-page .slideBox .slideBoxLeft .nav a i.on {
  transform: rotate(45deg);
}
.inner-page .slideBox .slideBoxLeft .nav ul ul {
  padding-left: 1em;
  margin: 1em 0;
  display: none;
}
.inner-page .slideBox .slideBoxRight {
  width: 78%;
}

.inner-page .slideBox .slideBoxRight .text p{
  margin-bottom: 10px;
}

.inner-page .m-page div {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: .5em;
}
.inner-page .m-page div a,
.inner-page .m-page div span {
  width: 2.5em;
  height: 2.5em;
  border: 1px solid #eee;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #666;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.inner-page .m-page div a:hover,
.inner-page .m-page div span.current {
  background-color: var(--color);
  color: white;
  border-color: var(--color);
}
.about-page {
  overflow: hidden;
}
.about-page .about-1 .box .left {
  width: 46%;
  padding-left: 4%;
}
.about-page .about-1 .box .left .top span.h4 {
  line-height: 1;
  margin-right: .2em;
}
.about-page .about-1 .box .left .text {
  letter-spacing: .04em;
  font-weight: 300;
}
.about-page .about-1 .box .left .text em {
  color: var(--color);
  font-weight: bold;
}
.about-page .about-1 .box .left .text p {
  margin-top: 1.8em;
}
.about-page .about-1 .box .right {
  width: 54%;
}
.about-page .about-2 {
  position: relative;
  z-index: 1;
}
.about-page .about-2 .list .slick-list {
  overflow: unset;
}
.about-page .about-2 .list ul .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.about-page .about-2 .list ul .slick-track .slick-slide {
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-2 .list ul .slick-track .slick-slide.slick-active {
  opacity: 1;
}
.about-page .about-2 .list ul li {
  display: block !important;
}
.about-page .about-2 .list ul li .box {
  padding: 5% 5% 20%;
  color: white;
  position: relative;
  z-index: 1;
  border-radius: 5px;
}
.about-page .about-2 .list ul li .box:before,
.about-page .about-2 .list ul li .box:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: inherit;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.about-page .about-2 .list ul li .box:after {
  background-image: url("");
  background-position: center top 45px;
  background-repeat: no-repeat;
  background-size: 96% auto;
  -webkit-filter: brightness(0) invert(1) opacity(0.15);
  filter: brightness(0) invert(1) opacity(0.15);
  opacity: 0;
}
.about-page .about-2 .list ul li .box:before {
  background-color: var(--color);
}
.about-page .about-2 .list ul li .box span.h6 {
  line-height: 1.6;
  height: 3.2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -moz-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.about-page .about-2 .list ul li .box hr {
  background-color: white;
}
.about-page .about-2 .list ul li .box .text {
  color: inherit;
  line-height: 2.2;
  height: 11em;
  overflow: hidden;
  font-weight: 300;
}
.about-page .about-2 .list ul li:hover {
  height: 0;
}
.about-page .about-2 .list ul li:hover .box:before,
.about-page .about-2 .list ul li:hover .box:after {
  opacity: 1;
}
.about-page .about-2 .list ul li:hover .box .text {
  overflow: unset;
  height: auto;
}
.about-page .about-3 .top hr {
  width: 60%;
  margin-left: auto;
  margin-right: 0;
}
.about-page .about-3 .box .text {
  width: 42%;
  padding-left: 6%;
  color: #363636;
  letter-spacing: .04em;
  font-weight: 300;
}
.about-page .about-3 .box .list {
  width: 58%;
}
.about-page .about-3 .box .list .slickBtn .prev {
  left: -2%;
}
.about-page .about-3 .box .list .slickBtn .next {
  right: -2%;
  left: auto;
}
.culture-page .culture-1 .options {
  line-height: 1;
  width: 1050px;
  max-width: 100%;
}
.culture-page .culture-1 .options a {
  width: 100%;
  border-bottom: 1px solid #8a8a8a;
  position: relative;
}
.culture-page .culture-1 .options a:after {
  content: '';
  height: 3px;
  width: 15%;
  background-color: black;
  position: absolute;
  left: 0;
  bottom: -1px;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.culture-page .culture-1 .options a.active:after,
.culture-page .culture-1 .options a:hover:after {
  width: 100%;
  background-color: var(--color);
}
.culture-page .culture-1 .box .left {
  width: 35%;
  margin-right: 3%;
}
.culture-page .culture-1 .box .center {
  width: 29%;
  padding: 3.5% 0;
}
.culture-page .culture-1 .box .center .text {
  line-height: 1.8;
  letter-spacing: .04em;
  color: #363636;
}
.culture-page .culture-1 .box .center .text p {
  margin-top: 1.2em;
}
.culture-page .culture-1 .box .center .text p:first-child {
  margin-top: 0;
}
.culture-page .culture-1 .box .right {
  width: 26%;
}
.culture-page .culture-1 .core .left {
  width: 21%;
  padding: 0 3.5%;
}
.culture-page .culture-1 .core .left .nav {
  line-height: 1.6;
  gap: .7em;
}
.culture-page .culture-1 .core .left .nav span {
  border-bottom: 3px solid transparent;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  cursor: pointer;
  cursor: hand;
}
.culture-page .culture-1 .core .left .nav span.active {
  border-color: var(--color);
  font-weight: bold;
  text-transform: uppercase;
  color: var(--color);
}
.culture-page .culture-1 .core .right {
  width: 79%;
  position: relative;
}
.culture-page .culture-1 .core .right .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.culture-page .culture-1 .core .right .slide.active {
  z-index: 1;
  opacity: 1;
  position: static;
}
.culture-page .culture-1 .core .right .textarea {
  width: 45%;
  padding: 6%;
  background-color: #e3ebf1;
  position: relative;
  z-index: 1;
}
.culture-page .culture-1 .core .right .img {
  width: 55%;
  margin-left: -4%;
}
.culture-page .culture-2 {
  overflow: hidden;
}
.culture-page .culture-2 .slick-list {
  overflow: unset;
}
.culture-page .culture-2 .list {
  padding: 0 20%;
}
.culture-page .culture-2 .list a.img-box span {
  position: absolute;
  left: 0;
  bottom: 0;
  color: white;
  padding: 1em;
}
.culture-page .culture-3 .list ul li {
  padding: 2%;
  width: 20%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: relative;
  z-index: 1;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.culture-page .culture-3 .list ul li:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color);
  opacity: 0;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  z-index: -1;
}
.culture-page .culture-3 .list ul li span.h3 {
  line-height: 1.2;
  font-style: italic;
  font-weight: 900;
  margin-bottom: -0.1em;
  color: var(--color);
}
.culture-page .culture-3 .list ul li span.h4 {
  color: #626262;
  line-height: 2;
}
.culture-page .culture-3 .list ul li.active {
  width: 40%;
  color: white;
}
.culture-page .culture-3 .list ul li.active:before {
  opacity: 1;
}
.culture-page .culture-3 .list ul li.active span.h3,
.culture-page .culture-3 .list ul li.active span.h4,
.culture-page .culture-3 .list ul li.active .text {
  color: inherit;
}
.culture-page .culture-3 .list ul li.active .text {
  display: block;
}
.path-page .path-1 .left {
  width: 39%;
  padding: 0 8%;
}
.path-page .path-1 .right {
  width: 61%;
}
.path-page .path-2 {
  margin-top: -5.2%;
}
.path-page .path-2 .left {
  width: 61%;
}
.path-page .path-2 .left .list {
  padding: 0 0 0;
  background-color: #f8f8f8;
}
.path-page .path-2 .left .list li {
  position: relative;
  padding: 4% 10%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.path-page .path-2 .left .list li span.h2 {
  color: rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 8%;
  left: 3%;
  line-height: 1;
  display: block;
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.path-page .path-2 .left .list li span.h6 {
  line-height: 1.2;
}
.path-page .path-2 .left .list .slick-current li {
  color: white;
  background-color: var(--color);
}
.path-page .path-2 .left .list .slick-current li span.h2 {
  color: rgba(110, 120, 245, 0.12);
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  transform: scale(1.3);
}
.path-page .path-2 .left .list .slick-current li .text {
  color: inherit;
}
.path-page .path-2 .right {
  width: 39%;
  padding: 0 8% 0 4%;
}
.path-page .path-2 .right .year {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 2.2em;
  margin-top: 20%;
}
.path-page .path-2 .right .year span.txt {
  color: transparent;
  -webkit-text-stroke: 1px #cdd7df;
  line-height: 1;
  -webkit-writing-mode: tb;
  -ms-writing-mode: tb;
  writing-mode: tb;
  white-space: nowrap;
  position: absolute;
  left: 100%;
  top: 50%;
  -webkit-transform: translateY(-63%);
  -moz-transform: translateY(-63%);
  -ms-transform: translateY(-63%);
  transform: translateY(-63%);
}
.path-page .path-2 .right .year ul .slick-list {
  margin: 0 -2em;
  padding: 0 2em;
}
.path-page .path-2 .right .year li {
  width: auto !important;
  padding: 1em 0;
  position: relative;
  line-height: 1;
}
.path-page .path-2 .right .year li span {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  display: block;
  cursor: pointer;
  cursor: hand;
}
.path-page .path-2 .right .year li:before,
.path-page .path-2 .right .year li:after {
  content: '';
  width: 1px;
  height: 0;
  background-color: var(--color);
  position: absolute;
  left: 50%;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.path-page .path-2 .right .year li:before {
  top: -0.9em;
}
.path-page .path-2 .right .year li:after {
  bottom: -0.9em;
}
.path-page .path-2 .right .year .slick-current li:before,
.path-page .path-2 .right .year .slick-current li:after {
  height: 1.2em;
}
.path-page .path-2 .right .year .slick-current span {
  -webkit-transform: scale(2.4);
  -moz-transform: scale(2.4);
  -ms-transform: scale(2.4);
  transform: scale(2.4);
  color: var(--color);
}
.path-page .path-3 img {
  max-width: 91.33333333%;
}
.path-page .path-4 {
  color: white;
}
.path-page .path-4 span.h2 {
  line-height: 1;
}
.path-page .path-4 .text {
  color: inherit;
  margin-bottom: .7em;
}
.path-page .path-4 span.h6 {
  line-height: 1.2;
  text-transform: uppercase;
}
.path-page .path-4 li {
  position: relative;
  z-index: 1;
}
.path-page .path-4 li:before {
  content: '';
  width: 70%;
  left: 15%;
  top: 0;
  border-radius: 20px;
  background-color: #25509e;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  position: absolute;
  height: 100%;
  z-index: -1;
  opacity: 0;
}
.path-page .path-4 li:hover:before {
  opacity: 1;
}
.product-yd-page .yd .left {
  width: 78%;
}
.product-yd-page .yd .right {
  width: 22%;
  padding-right: 5%;
  position: -webkit-sticky;
  position: sticky;
  top: 100px;
  font-weight: 500;
  padding-left: .7%;
}
.product-yd-page .yd .right:after {
  content: '';
  width: 1px;
  height: 90%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: black;
}
.product-yd-page .yd .right span.h3 {
  max-width: 3.5em;
  display: block;
  margin-left: auto;
  margin-right: 0;
  margin-bottom: 2em;
  line-height: 1.66666667;
  margin-top: -0.3em;
}
.product-yd-page .yd .right .nav {
  color: #727272;
}
.product-yd-page .yd .right .nav ul li {
  margin-bottom: 1.5em;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-yd-page .yd .right .nav ul li:hover,
.product-yd-page .yd .right .nav ul li.active {
  font-size: 1.3em;
  color: var(--color);
}
.product-yd-page .list ul li a.img-box {
  padding-top: 55%;
}
.product-yd-page .list ul li.grid-span a.img-box {
  padding-top: 30%;
}
.product-yd-page .list ul li a.img-box:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: inherit;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-yd-page .list ul li a.img-box:hover:before {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}
.product-yd-page .list ul li span.h6 {
  line-height: 1.2;
}
.product-yd-page .list ul li span.h6 i {
  font-size: 0.76470588em;
}
.product-yd-page .solutions ul li .textarea {
  width: 52%;
  padding-left: 6%;
}
.product-yd-page .solutions ul li .textarea span.h3 {
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
}
.product-yd-page .solutions ul li .textarea span.h3:hover {
  color: var(--color);
}
.product-yd-page .solutions ul li .textarea a.more {
  background-color: #545454;
}
.product-yd-page .solutions ul li .textarea a.more:hover {
  background-color: var(--color);
}
.product-yd-page .solutions ul li .img {
  width: 48%;
}
.product-yd-page .solutions ul li .img span.h6 {
  bottom: 0;
  left: 0;
  width: 100%;
  padding: .6em;
  background-color: rgba(0, 0, 0, 0.18);
  text-align: center;
  border-radius: inherit;
  color: white;
  -webkit-transition: .5s;
  -moz-transition: .5s;
  transition: .5s;
  line-height: 1.2;
}
.product-yd-page .solutions ul li .img:hover span.h6 {
  background-color: black;
}
.prodet-page .proImg .left {
  padding: 0 4%;
  position: sticky;
  top: 150px;
}
.prodet-page .proImg .left img {
  width: 100%;
}
.prodet-page .proImg .left .slickBtn {
  font-size: inherit;
}
.prodet-page .proImg .left .slickBtn .prev {
  left: 0;
}
.prodet-page .proImg .left .slickBtn .next {
  right: 0;
  left: auto;
}
.contact-page .contact-1 .h2 img {
  max-height: 1em;
}
.contact-page .contact-1 .box {
  padding: 5%;
  color: white;
}
.contact-page .contact-1 .box input,
.contact-page .contact-1 .box textarea {
  padding: .8em 1em;
  border: none;
  background-color: white;
  width: 100%;
  display: block;
  color: black;
}
.contact-page .contact-1 .box input::-webkit-input-placeholder, .contact-page .contact-1 .box textarea::-webkit-input-placeholder {
  color: #666;
}
.contact-page .contact-1 .box input:-moz-placeholder, .contact-page .contact-1 .box textarea:-moz-placeholder {
  color: #666;
}
.contact-page .contact-1 .box input::-moz-placeholder, .contact-page .contact-1 .box textarea::-moz-placeholder {
  color: #666;
}
.contact-page .contact-1 .box input:-ms-input-placeholder, .contact-page .contact-1 .box textarea:-ms-input-placeholder {
  color: #666;
}
.contact-page .contact-1 .box input::placeholder,
.contact-page .contact-1 .box textarea::placeholder {
  color: #666;
}
.contact-page .contact-1 .box button {
  border: none;
  margin-top: 2em;
}
.contact-page .contact-1 .info {
  padding: 5%;
  border: 1px solid #333;
  border-top: none;
}
.contact-page iframe {
  border: none;
}
.contact-page .contact-2 {
  background-color: var(--color);
  color: white;
}
.contact-page .contact-2 .share a {
  width: 2em;
  height: 2em;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  color: var(--color);
  transition: .5s;
}
.contact-page .contact-2 .share a:hover {
  background-color: black;
  color: white;
}
.news-page .list li {
  border-bottom: 1px solid #666;
}
@media screen and (max-width: 1250px) {
  .path-page .path-4 .txt-center img,
  .about-page .about-2 .txt-center img {
    max-height: 50px;
  }
  .path-page {
    margin-top: 60px;
  }
}
@media screen and (max-width: 1000px) {
  .product-yd-page .yd .right,
  .inner-page .slideBox .slideBoxLeft {
    display: none;
  }
  .product-yd-page .yd .left,
  .inner-page .slideBox .slideBoxRight {
    width: 100%;
  }
  .culture-page .culture-1 .box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .culture-page .culture-1 .box .center {
    width: 60%;
  }
  .culture-page .culture-1 .box .right {
    width: 100%;
  }
  .culture-page .culture-1 .core .right .textarea {
    padding: 5% !important;
  }
  .culture-page .culture-1 .core .right .img {
    margin-left: 0;
  }
  .certificates-page .top .right {
    text-align: left;
  }
  .certificates-page .top .right img {
    max-height: 50px;
  }
  .about-page .about-2 .list ul li .box .text {
    overflow: unset;
    height: auto;
  }
  .prodet-page .proImg .left {
    position: relative;
    top: 0;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 700px) {
  .product-yd-page .list ul li.grid-span a.img-box {
    padding-top: 55%;
  }
  .contact-page iframe {
    height: 240px;
  }
  .culture-page .culture-1 .core .left {
    display: none;
  }
  .culture-page .culture-1 .core .right {
    width: 100%;
  }
  .culture-page .culture-1 .core .right .slide {
    position: static;
    opacity: 1;
    margin-top: 15px;
  }
  .culture-page .culture-1 .box .center {
    width: 100%;
  }
  .culture-page .culture-1 .box .left {
    width: 100%;
  }
  .culture-page .culture-3 .list ul li {
    width: 100% !important;
  }
  .culture-page .culture-3 .list ul li .text {
    display: block;
  }
  .culture-page .culture-3 .list ul {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .path-page .path-2 .right {
    display: none;
  }
  .path-page .path-2 .left {
    width: 100%;
  }
  .path-page .path-3 img {
    max-width: none;
    width: 100%;
  }
  .path-page .path-2 {
    margin-top: 0;
  }
  .product-yd-page .solutions ul li .textarea {
    width: 100%;
    padding-left: 0;
  }
  .product-yd-page .solutions ul li .img {
    width: 100%;
  }
  .product-yd-page .solutions ul li {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
  }

  .manufacturing-page .manufacturing-1 .wid-85 {
    width: 100%;
  }
  .contact-page .text {
    width: 100%;
  }
  .certificates-page .top .right img {
    max-height: 30px;
  }
  .about-page .about-2 .list ul li .box .text {
    line-height: 1.6;
  }
  .about-page .about-2 {
    overflow: hidden;
  }
  .about-page .about-2 .list {
    margin-right: -70%;
  }
  .path-page .path-4 .txt-center img,
  .about-page .about-2 .txt-center img {
    max-height: 40px;
  }
}
.mbx {
  text-align: left;
}



.seoPublic .title {
  font-family: var(--font);
}

.seoPublic .Auxil-about .box .right div.h3 {
  font-family: var(--font);
}