@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;700&display=swap");
/*global*/
* {
  font-family: "Noto Sans TC", sans-serif;
  font-weight: 300;
}

a, .nav-link, a:hover, .nav-link:hover {
  color: #222222;
  text-decoration: none;
}

p {
  color: #222222;
  font-size: 18px;
  line-height: 1.8em;
}

img {
  max-width: 100%;
}

body {
  padding-top: 100px;
  background: url("../img/bg-body.png") no-repeat scroll top center/100% auto;
  overflow-x: hidden;
}
@media all and (max-width: 992px) {
  body {
    padding-top: 50px;
  }
}

body.page-service, body.page-knowledge, body.page-case, body.page-download {
  background: url("../img/bg-body2.png") no-repeat scroll top center/100% auto;
}

h1, h2 {
  font-weight: 700;
  font-size: 33px;
  margin-bottom: 20px;
}
@media all and (max-width: 992px) {
  h1, h2 {
    font-size: 28px;
  }
}
@media all and (max-width: 767px) {
  h1, h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

h3 {
  font-weight: 700;
  font-size: 24px;
  color: #FF9600;
}
@media all and (max-width: 992px) {
  h3 {
    font-size: 20px;
  }
}
@media all and (max-width: 767px) {
  h3 {
    font-size: 16px;
    letter-spacing: 0.1em;
  }
}

h4 {
  font-weight: 700;
  font-size: 20px;
}
@media all and (max-width: 992px) {
  h4 {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  h4 {
    font-size: 14px;
  }
}

.title-with-line-box p {
  font-size: 24px;
  font-weight: 400;
}
@media all and (max-width: 992px) {
  .title-with-line-box p {
    font-size: 20px;
  }
}
@media all and (max-width: 767px) {
  .title-with-line-box p {
    font-size: 14px;
    padding: 0 30px;
  }
}

.title-with-line {
  display: inline-block;
}
.title-with-line::before, .title-with-line::after {
  content: "";
  width: 50px;
  height: 5px;
  background: #FF9600;
  display: inline-block;
  position: relative;
  top: -0.5rem;
}
@media all and (max-width: 767px) {
  .title-with-line::before, .title-with-line::after {
    width: 36px;
    height: 3px;
  }
}
.title-with-line::before {
  margin-right: 15px;
}
.title-with-line::after {
  margin-left: 15px;
}

.read-more-title {
  border-bottom: 1px solid #A3A3A3;
}
.read-more-title.wrapper-lg {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.read-more-title h2 {
  position: relative;
}
.read-more-title h2::after {
  content: "";
  display: block;
  height: 5px;
  width: 100%;
  background: #FF9600;
  position: absolute;
  bottom: -21px;
}

.sub-title {
  font-size: 24px;
  font-weight: 400;
}
@media all and (max-width: 992px) {
  .sub-title {
    font-size: 20px;
  }
}
@media all and (max-width: 767px) {
  .sub-title {
    font-size: 14px;
  }
}

.btn-contact a {
  line-height: 50px;
  height: 50px;
  width: 150px;
  display: inline-block;
}
@media all and (max-width: 767px) {
  .btn-contact a {
    line-height: 40px;
    height: 40px;
    font-size: 14px;
  }
}
.btn-contact a div {
  font-weight: bold;
}
.btn-contact a div::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/icon-mail.png") no-repeat scroll center/100% auto;
  display: inline-block;
  margin-right: 8px;
  margin-top: 1px;
}

.see-more {
  display: flex;
  align-items: center;
  width: auto;
  transition: 0.3s;
}
.see-more span {
  font-size: 20px;
  font-weight: bold;
}
@media all and (max-width: 992px) {
  .see-more span {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .see-more span {
    font-size: 12px;
  }
}
.see-more::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 26px;
  height: 26px;
  background: url("../img/icon-see-more.png") no-repeat scroll center/cover;
  margin-left: 10px;
}
@media all and (max-width: 767px) {
  .see-more::after {
    width: 17px;
    height: 17px;
  }
}
.see-more:hover {
  color: #FF9600;
  transition: 0.3s;
}
.see-more:hover::after {
  animation-name: move-arrow;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
@keyframes move-arrow {
  0% {
    left: -8px;
    opacity: 0;
  }
  50% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: 8px;
    opacity: 0;
  }
}

.container {
  max-width: 1280px;
}
@media all and (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 20px;
  }
}

.wrapper-md, .wrapper-lg, .wrapper-sm {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media all and (max-width: 992px) {
  .wrapper-md, .wrapper-lg, .wrapper-sm {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.wrapper-md {
  max-width: 960px;
}

.wrapper-lg {
  max-width: 1100px;
}

.wrapper-sm {
  max-width: 630px;
}

.ani-btn {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.ani-btn div {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.ani-bot-default, .ani-bot-focus {
  top: 0;
  left: 0;
  transition: 0.3s;
}

.ani-bot-default {
  transform: translateY(0);
  background: #FFDC37;
}

.ani-bot-focus {
  transform: translateY(-100%);
  background: #ffffff;
}

.ani-btn:hover .ani-bot-default {
  transform: translateY(100%);
}

.ani-btn:hover .ani-bot-focus {
  transform: translateY(0);
}

.ani-btn-1 {
  width: 255px;
}
@media all and (max-width: 1200px) {
  .ani-btn-1 {
    width: 200px;
  }
}
@media all and (max-width: 992px) {
  .ani-btn-1 {
    width: 100%;
    margin-left: 0 !important;
  }
}

.spin-gear {
  position: absolute;
  width: 600px;
  top: 60px;
  left: -50px;
  z-index: -1;
}
@media all and (max-width: 992px) {
  .spin-gear {
    display: none;
  }
}
.spin-gear div {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}
.spin-gear .spin-gear-part1 {
  animation-name: spin1;
  animation-duration: 8000ms;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.spin-gear .spin-gear-part2 {
  animation-name: spin2;
  animation-duration: 5000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

.picture-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /*h1::after {
    content: "";
    display: block;
    height: 4px;
    width: 40px;
    background: $primary-color;
    margin: 15px 0;
    @include mb-width {
      display: none;
    }
  }*/
}
@media all and (max-width: 992px) {
  .picture-banner {
    height: 220px;
  }
}
@media all and (max-width: 767px) {
  .picture-banner {
    height: 200px;
    background-position: 70% 50%;
  }
}
.picture-banner h1 {
  font-size: 45px;
  color: #ffffff;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media all and (max-width: 992px) {
  .picture-banner h1 {
    font-size: 36px;
  }
}
@media all and (max-width: 767px) {
  .picture-banner h1 {
    font-size: 22px;
  }
}
.picture-banner .sub-title-eng {
  font-size: 24px;
  color: #ffffff;
  opacity: 0.6;
  letter-spacing: 0.1em;
}
@media all and (max-width: 992px) {
  .picture-banner .sub-title-eng {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .picture-banner .sub-title-eng {
    font-size: 14px;
  }
}
.picture-banner .sub-title {
  font-size: 20px;
  color: #ffffff;
  letter-spacing: 0.1em;
}
@media all and (max-width: 992px) {
  .picture-banner .sub-title {
    font-size: 18px;
  }
}

/*header*/
.navbar {
  background: #ffffff;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  transition: 0.3s;
}
.navbar .container {
  max-width: 100%;
  padding: 0;
}

@media all and (max-width: 992px) {
  .navbar .container {
    padding: 0;
  }
}
#ciaoli-nav.navbar-collapse {
  flex-grow: inherit;
}

#ciaoli-nav.navbar-collapse ul {
  align-items: center;
}

.navbar-brand {
  margin-left: 70px;
}
@media all and (max-width: 1200px) {
  .navbar-brand {
    margin-left: 20px;
  }
}
@media all and (max-width: 992px) {
  .navbar-brand {
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
  }
}
.navbar-brand img {
  max-width: 250px;
  transition: 0.3s;
}
@media all and (max-width: 1200px) {
  .navbar-brand img {
    max-width: 200px;
  }
}
@media all and (max-width: 992px) {
  .navbar-brand img {
    height: 40px;
  }
}

.nav-link {
  line-height: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  margin-left: 10px;
  position: relative;
  transition: 0.3s;
}
@media all and (max-width: 992px) {
  .nav-link {
    height: 55px !important;
    line-height: 55px !important;
  }
}
.nav-link.nav-contact div {
  font-size: 22px;
  font-weight: bold;
}
@media all and (max-width: 1200px) {
  .nav-link.nav-contact div {
    font-size: 22px;
  }
}
.nav-link:not(.nav-contact):hover {
  color: #FF9600;
}
.nav-link.nav-link.nav-contact {
  margin-left: 20px;
}
.nav-link.active {
  color: #FF9600;
}
.nav-link.active::after {
  content: "";
  width: calc(100% - 10px);
  height: 5px;
  background: #FF9600;
  display: block;
  position: absolute;
  left: 5px;
  bottom: 0;
}

.nav-link.nav-contact div::before {
  content: "";
  width: 25px;
  height: 25px;
  background: url("../img/icon-mail.png") no-repeat scroll center/cover;
  display: inline-block;
  margin-right: 10px;
}

.navbar.scrolldown .navbar-brand img {
  max-width: 180px;
}
.navbar.scrolldown .nav-link {
  height: 80px;
  line-height: 80px;
}

.navbar-toggler {
  width: 50px;
  height: 50px;
  background: #FFDC37;
  border-radius: 0;
}
.navbar-toggler .navbar-toggler-icon {
  width: 30px;
  height: 3px;
  background: #222222;
  position: relative;
  left: -2px;
  transition: 0.3s;
}
.navbar-toggler .navbar-toggler-icon::before, .navbar-toggler .navbar-toggler-icon::after {
  content: "";
  width: 30px;
  height: 3px;
  background: #222222;
  display: block;
  position: absolute;
  transform: rotate(0);
  transition: 0.3s;
}
.navbar-toggler .navbar-toggler-icon::before {
  top: -10px;
  left: 0;
}
.navbar-toggler .navbar-toggler-icon::after {
  bottom: -10px;
  left: 0;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon {
  background: transparent;
  transition: 0.3s;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::before {
  transform: rotate(-45deg);
  top: 0;
}
.navbar-toggler:not(.collapsed) .navbar-toggler-icon::after {
  transform: rotate(45deg);
  bottom: 0;
}

@media all and (max-width: 992px) {
  ul.navbar-nav {
    box-shadow: 0 3px 2px rgba(0, 0, 0, 0.1) inset;
  }
  .nav-item.nav-contact-block {
    width: 100%;
  }
  .nav-link {
    font-size: 14px;
  }
  .nav-link.nav-contact div {
    font-size: 14px;
  }
  .nav-link.nav-contact div::before {
    width: 20px;
    height: 20px;
    background-size: 20px auto;
  }
}
/*home slider*/
#home-slider .carousel-item {
  background-color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-position: center right;
  height: 100%;
  position: relaive;
  /*&.carousel-item-1 {
    background-image: url("../img/home-banner1.jpg");
    @include mb-width {
      background-image: url("../img/home-banner1-mb.jpg");
    }
  }

  &.carousel-item-2 {
    background-image: url("../img/home-banner2.jpg");
    @include mb-width {
      background-image: url("../img/home-banner2-mb.jpg");
    }
  }

  &.carousel-item-3 {
    background-image: url("../img/home-banner3.jpg");
    @include mb-width {
      background-image: url("../img/home-banner3-mb.jpg");
    }
  }*/
}
@media all and (max-width: 767px) {
  #home-slider .carousel-item {
    background-position: center;
  }
}
@media all and (max-width: 992px) {
  #home-slider .carousel-item::before {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    background: #ffffff;
    opacity: 0.6;
    left: 0;
    right: 0;
  }
}
#home-slider .carousel-item img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: inherit;
  position: absolute;
  right: 0;
}
@media all and (max-width: 992px) {
  #home-slider .carousel-item img {
    opacity: 0.4;
    width: 100%;
  }
}
#home-slider .carousel-inner {
  height: 550px;
  border-bottom: 3px solid #ffffff;
}
@media all and (max-width: 1200px) {
  #home-slider .carousel-inner {
    height: 400px;
  }
}
@media all and (max-width: 992px) {
  #home-slider .carousel-inner {
    height: 300px;
  }
}
@media all and (max-width: 767px) {
  #home-slider .carousel-inner {
    height: 200px;
  }
}
#home-slider .slider-text.wrapper-lg {
  position: absolute;
  top: 0;
  height: 550px;
  left: calc(50% - 550px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media all and (max-width: 1200px) {
  #home-slider .slider-text.wrapper-lg {
    height: 400px;
    left: 20px;
  }
}
@media all and (max-width: 992px) {
  #home-slider .slider-text.wrapper-lg {
    height: 250px;
    left: 0;
  }
}
@media all and (max-width: 767px) {
  #home-slider .slider-text.wrapper-lg {
    height: 200px;
  }
}
#home-slider .wrapper-lg.slider-text h5 {
  font-size: 33px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media all and (max-width: 992px) {
  #home-slider .wrapper-lg.slider-text h5 {
    text-align: center;
  }
}
@media all and (max-width: 767px) {
  #home-slider .wrapper-lg.slider-text h5 {
    font-size: 26px;
  }
}
#home-slider .wrapper-lg.slider-text h5::after {
  content: "";
  height: 4px;
  width: 40px;
  background: #FF9600;
  display: block;
  margin: 30px 0;
}
@media all and (max-width: 992px) {
  #home-slider .wrapper-lg.slider-text h5::after {
    display: none;
  }
}
#home-slider .wrapper-lg.slider-text p {
  font-size: 20px;
  letter-spacing: 0.1em;
}
#home-slider .carousel-indicators.wrapper-lg {
  justify-content: start;
  bottom: 35px;
}
@media all and (max-width: 1200px) {
  #home-slider .carousel-indicators.wrapper-lg {
    left: 20px;
  }
}
@media all and (max-width: 992px) {
  #home-slider .carousel-indicators.wrapper-lg {
    justify-content: end;
    left: 0;
    padding-right: 20px;
  }
}
@media all and (max-width: 767px) {
  #home-slider .carousel-indicators.wrapper-lg {
    bottom: 0;
  }
}
#home-slider .carousel-indicators [data-bs-target] {
  height: 5px;
  width: 35px;
  margin-right: 5px;
  border-radius: 99px;
  opacity: 1;
  border: 1px solid #222222;
  background: transparent;
}
@media all and (max-width: 992px) {
  #home-slider .carousel-indicators [data-bs-target] {
    height: 3px;
    width: 15px;
  }
}
#home-slider [data-bs-target]:hover, #home-slider .carousel-indicators .active {
  background: #222222;
}

/*home intro*/
.company-intro {
  position: relative;
  z-index: 1;
  padding-bottom: 120px;
}
@media all and (max-width: 1200px) {
  .company-intro {
    padding-top: 30px;
  }
}
@media all and (max-width: 992px) {
  .company-intro {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media all and (max-width: 767px) {
  .company-intro {
    padding-left: 0;
    padding-bottom: 80px;
  }
}

.company-intro-box {
  background: #ffffff;
  max-width: 900px;
  padding: 55px 40px 40px;
  border: 2px solid #ACACAC;
  box-shadow: 20px 20px 0 #FFDC37;
  margin-top: -40px;
}
@media all and (max-width: 1200px) {
  .company-intro-box {
    margin-top: 0;
  }
}
@media all and (max-width: 992px) {
  .company-intro-box {
    font-size: 16px;
    line-height: 2em;
  }
}
@media all and (max-width: 767px) {
  .company-intro-box {
    padding: 40px 30px 30px;
  }
}
.company-intro-box img {
  border: 3px solid #FF9600;
  border-radius: 5px;
}
@media all and (max-width: 992px) {
  .company-intro-box img {
    margin-bottom: 15px;
  }
}
.company-intro-box h3 {
  margin-bottom: 15px;
}
.company-intro-box p {
  font-size: 20px;
  line-height: 2.2em;
  margin-bottom: 0;
}
@media all and (max-width: 992px) {
  .company-intro-box p {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .company-intro-box p {
    font-size: 12px;
  }
}

@keyframes spin1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
/*home service*/
.service-list-group {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 60px;
}
.service-list-group .server-item {
  width: 20%;
  padding-bottom: 40px;
  text-align: center;
}
@media all and (max-width: 767px) {
  .service-list-group .server-item {
    width: 50%;
    padding-bottom: 20px;
  }
}
.service-list-group .server-item img {
  max-width: 80px;
  margin-bottom: 10px;
  transform: scale(1);
  transition: 0.3s;
}
.service-list-group .server-item:hover img {
  transform: scale(0.9);
  transition: 0.3s;
}

/*home progress*/
.work-progress {
  background: url("../img/bg-electric-left.png") no-repeat scroll top left/35vw auto, url("../img/bg-electric-right.png") no-repeat scroll top right/35vw auto;
  padding-top: 100px;
  margin-top: 60px;
}
@media all and (max-width: 992px) {
  .work-progress {
    background-size: 40vw auto;
    padding-top: 60px;
  }
}
@media all and (max-width: 767px) {
  .work-progress {
    background-size: 45vw auto;
    padding-top: 40px;
    margin-top: 30px;
  }
}

.swiper.work-progress-list {
  height: auto;
  padding: 0 40px;
  margin-top: 60px;
}
@media all and (max-width: 767px) {
  .swiper.work-progress-list {
    margin-top: 30px;
    padding: 0 20px;
  }
}

.swiper-wrapper {
  height: auto;
  transition-timing-function: linear !important;
}

.work-step {
  position: relative;
}
.work-step.with-space {
  padding-top: 15%;
}
.work-step img {
  filter: brightness(0.5);
  transition: 0.3s;
}
.work-step > div {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  flex-direction: column;
}
.work-step .step-num {
  font-size: 48px;
  font-weight: bold;
  color: #FFDC37;
  width: 100%;
  text-align: center;
  opacity: 1;
  transition: 0.3s;
}
@media all and (max-width: 1200px) {
  .work-step .step-num {
    font-size: 36px;
  }
}
@media all and (max-width: 767px) {
  .work-step .step-num {
    font-size: 20px;
  }
}
.work-step .step-num::after {
  width: 70%;
  content: "";
  height: 1px;
  background: #fff;
  display: block;
  margin: 0 auto 3px;
}
.work-step .step-text {
  font-size: 33px;
  color: #ffffff;
  opacity: 1;
  transition: 0.3s;
}
@media all and (max-width: 1200px) {
  .work-step .step-text {
    font-size: 24px;
  }
}
@media all and (max-width: 992px) {
  .work-step .step-text {
    font-size: 28px;
  }
}
@media all and (max-width: 767px) {
  .work-step .step-text {
    font-size: 14px;
  }
}
.work-step:hover img {
  filter: brightness(1);
}
.work-step:hover .step-num, .work-step:hover .step-text {
  opacity: 0;
}

/*home knowledge*/
.knowledge {
  padding-top: 100px;
  padding-bottom: 120px;
  background: url("../img/bg-shape1.jpg") no-repeat scroll bottom center/100% auto;
}
@media all and (max-width: 1200px) {
  .knowledge {
    padding-bottom: 80px;
  }
}
@media all and (max-width: 767px) {
  .knowledge {
    padding-bottom: 20px;
    margin-top: 30px;
  }
}

.knowledge-list {
  padding-top: 50px;
}
@media all and (max-width: 767px) {
  .knowledge-list {
    padding-top: 30px;
  }
}
.knowledge-list .knowledge-item {
  margin-bottom: 40px;
}
.knowledge-list .knowledge-item h3 {
  font-size: 28px;
  color: #222222;
  word-wrap: break-word;
  text-overflow: ellipsis;
  width: 100%;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media all and (max-width: 992px) {
  .knowledge-list .knowledge-item h3 {
    font-size: 24px;
  }
}
@media all and (max-width: 767px) {
  .knowledge-list .knowledge-item h3 {
    font-size: 20px;
    margin-top: 10px;
  }
}
.knowledge-list .knowledge-item .post-feature-image {
  position: relative;
}
.knowledge-list .knowledge-item .post-feature-image::after {
  content: "";
  position: absolute;
  display: block;
}
.knowledge-list .knowledge-item .post-feature-image.post-feature-image1::after {
  width: 29px;
  height: 42px;
  top: -5px;
  left: 7px;
  background: url(../img/feature-image-border1.png) no-repeat scroll center/cover;
}
.knowledge-list .knowledge-item .post-feature-image.post-feature-image2::after {
  width: 29px;
  height: 42px;
  right: 7px;
  bottom: -3px;
  background: url(../img/feature-image-border2.png) no-repeat scroll center/cover;
}
.knowledge-list .knowledge-item .post-feature-image.post-feature-image3::after {
  width: 42px;
  height: 29px;
  bottom: -5px;
  left: 7px;
  background: url(../img/feature-image-border3.png) no-repeat scroll center/cover;
}
.knowledge-list .knowledge-item img {
  border-radius: 5px;
}
.knowledge-list .knowledge-item .post-meta {
  font-size: 20px;
  color: #FF9600;
  font-weight: bold;
  margin-bottom: 10px;
}
@media all and (max-width: 767px) {
  .knowledge-list .knowledge-item .post-meta {
    font-size: 12px;
  }
}
.knowledge-list .knowledge-item .post-summary {
  margin-bottom: 0;
  text-align: justify;
}
@media all and (max-width: 992px) {
  .knowledge-list .knowledge-item .post-summary {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .knowledge-list .knowledge-item .post-summary {
    font-size: 12px;
  }
}

/*home showcase*/
.showcase {
  padding-top: 120px;
  background: #f1f1f1 url("../img/bg-shape2.jpg") no-repeat scroll top center/100% auto;
}
@media all and (max-width: 1200px) {
  .showcase {
    padding-bottom: 80px;
    margin-top: -1px;
  }
}
@media all and (max-width: 767px) {
  .showcase {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}

.showcase-list {
  padding-top: 60px;
}
.showcase-list .showcase-item {
  position: relative;
  width: calc(33.333333333% - 20px);
  background: #ffffff url("../img/bg-showcase-corner.png") no-repeat scroll right bottom/25px auto;
  border: 1px solid #9D9D9D;
  border-radius: 5px;
  padding: 0;
  margin: 0 10px;
}
@media all and (max-width: 767px) {
  .showcase-list .showcase-item {
    width: 100%;
    margin: 0 0 50px;
  }
}
.showcase-list .showcase-item .showcase-num {
  position: absolute;
  top: -35px;
  left: calc(50% - 35px);
  width: 70px;
  height: 70px;
  background: url("../img/number-tag.png") no-repeat scroll center/cover;
  color: #FFDC37;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 66px;
  display: block;
}
@media all and (max-width: 767px) {
  .showcase-list .showcase-item .showcase-num {
    top: -30px;
    width: 60px;
    height: 60px;
    font-size: 24px;
    line-height: 55px;
  }
}
.showcase-list .showcase-item .showcase-item-info {
  padding: 30px 20px;
}
@media all and (max-width: 767px) {
  .showcase-list .showcase-item .showcase-item-info {
    padding: 20px;
  }
}
.showcase-list .showcase-item h3 {
  font-size: 28px;
  color: #222222;
  word-wrap: break-word;
  text-overflow: ellipsis;
  width: 100%;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media all and (max-width: 992px) {
  .showcase-list .showcase-item h3 {
    font-size: 24px;
  }
}
@media all and (max-width: 767px) {
  .showcase-list .showcase-item h3 {
    font-size: 20px;
  }
}
.showcase-list .showcase-item .post-meta {
  font-size: 20px;
  color: #FF9600;
  font-weight: bold;
  margin-bottom: 10px;
}
@media all and (max-width: 767px) {
  .showcase-list .showcase-item .post-meta {
    font-size: 12px;
  }
}
.showcase-list .showcase-item .post-summary {
  margin-bottom: 0;
}
@media all and (max-width: 992px) {
  .showcase-list .showcase-item .post-summary {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .showcase-list .showcase-item .post-summary {
    font-size: 12px;
  }
}

/*home co-branding*/
.co-branding {
  background: linear-gradient(0deg, rgb(255, 255, 255) 50%, rgb(241, 241, 241) 100%);
  padding: 120px 0;
}
@media all and (max-width: 992px) {
  .co-branding {
    padding: 80px 0;
  }
}
@media all and (max-width: 767px) {
  .co-branding {
    padding: 0 0 80px;
  }
}

.co-branding-list-box {
  position: relative;
  padding: 60px 0;
}
@media all and (max-width: 992px) {
  .co-branding-list-box {
    padding: 40px 0;
  }
}
@media all and (max-width: 767px) {
  .co-branding-list-box {
    padding: 20px 0;
  }
}
.co-branding-list-box .swiper-button-prev, .co-branding-list-box .swiper-button-next {
  width: 37px;
  height: 37px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  position: absolute;
  top: calc(50% + 3px);
}
@media all and (max-width: 767px) {
  .co-branding-list-box .swiper-button-prev, .co-branding-list-box .swiper-button-next {
    height: 28px;
    width: 28px;
    top: calc(50% + 8px);
  }
}
.co-branding-list-box .swiper-button-prev:after, .co-branding-list-box .swiper-button-next:after {
  display: none;
}
.co-branding-list-box .swiper-button-prev {
  background-image: url("../img/slider-prev.png");
  left: 20px;
}
.co-branding-list-box .swiper-button-next {
  background-image: url("../img/slider-next.png");
  right: 20px;
}

.co-branding-list {
  width: calc(100% - 150px);
}
.co-branding-list .swiper-slide {
  text-align: center;
}
.co-branding-list img {
  max-width: 150px;
}
@media all and (max-width: 767px) {
  .co-branding-list img {
    max-width: 100%;
  }
}
.co-branding-list .swiper-button-next, .co-branding-list .swiper-button-prev {
  width: 37px;
}
@media all and (max-width: 767px) {
  .co-branding-list .swiper-button-next, .co-branding-list .swiper-button-prev {
    width: 28px;
  }
}
.co-branding-list .swiper-button-prev:after {
  content: "";
  height: 37px;
  width: 37px;
  background: url("../img/slider-prev.png") no-repeat scroll center/cover;
}

/*about banner*/
.page-about .picture-banner {
  background-image: url("../img/banner_about@3x.png");
}
@media all and (max-width: 767px) {
  .page-about .picture-banner {
    background-image: url("../img/banner_about_app@3x.png");
  }
}

.company-introduction {
  padding: 60px 0 80px;
}
@media all and (max-width: 767px) {
  .company-introduction {
    padding: 40px 0;
  }
}

.company-simple-intro-inner {
  padding: 0 50px;
}
@media all and (max-width: 767px) {
  .company-simple-intro-inner {
    padding: 20px 0 0 0;
  }
}
.company-simple-intro-inner p {
  line-height: 2em;
  text-align: justify;
  margin-top: 15px;
  margin-bottom: 35px;
}
@media all and (max-width: 992px) {
  .company-simple-intro-inner p {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .company-simple-intro-inner p {
    font-size: 14px;
  }
}

.company-features {
  position: relative;
}
.company-features #company-features-line-ani {
  position: absolute;
  width: calc(100% - 3px);
  top: 0;
  left: 0;
}
.company-features path.st0 {
  stroke-dasharray: 5000;
  stroke-dashoffset: -5000;
}
@keyframes offset {
  to {
    stroke-dashoffset: 0;
  }
}

@media screen and (min-width: 1366px) {
  .pc-ani-go path.st0 {
    animation: offset 2s linear forwards;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1365px) {
  .nb-ani-go path.st0 {
    animation: offset 2s linear forwards;
  }
}
@media screen and (max-width: 1023px) {
  .pad-ani-go path.st0 {
    animation: offset 2s linear forwards;
  }
}
/*about philosophy*/
.company-philosophy-list {
  margin-top: 60px;
}
@media all and (max-width: 767px) {
  .company-philosophy-list {
    margin-top: 30px;
  }
}
.company-philosophy-list .company-philosophy-item {
  padding: 0 30px;
}
.company-philosophy-list .company-philosophy-item p {
  font-size: 16px;
  text-align: justify;
  line-height: 2em;
  margin-top: 20px;
}

@media all and (max-width: 767px) {
  .company-philosophy-step.work-step .step-num {
    font-size: 36px;
  }
  .company-philosophy-step.work-step .step-num::after {
    margin: 10px auto 12px;
  }
  .company-philosophy-step.work-step .step-text {
    font-size: 36px;
  }
}
/*about benifits*/
.company-benefits-box {
  margin-top: 30px;
}

.company-benefits-boss {
  padding: 0 30px;
  position: relative;
}
@media all and (max-width: 992px) {
  .company-benefits-boss {
    order: 1;
    margin-bottom: 30px;
  }
}
.company-benefits-boss .company-benefits-boss-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("../img/company-benefits-boss-photo.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: scroll;
  background-size: auto 100%;
  -webkit-mask-image: url("../img/company-benefits-boss-mask.png");
          mask-image: url("../img/company-benefits-boss-mask.png");
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  transition: 0.6s;
}
.company-benefits-boss .company-benefits-boss-mask:hover {
  background-size: auto 110%;
  transition: 0.6s;
}

.company-benefits-list.left-side {
  text-align: right;
}
@media all and (max-width: 992px) {
  .company-benefits-list.left-side {
    text-align: left;
    order: 2;
  }
}
.company-benefits-list.left-side > div:first-child, .company-benefits-list.left-side > div:last-child {
  margin-right: -20px;
}
@media all and (max-width: 992px) {
  .company-benefits-list.left-side > div:first-child, .company-benefits-list.left-side > div:last-child {
    margin-right: 0;
  }
}
.company-benefits-list.right-side {
  text-align: left;
}
@media all and (max-width: 992px) {
  .company-benefits-list.right-side {
    order: 3;
  }
}
.company-benefits-list.right-side > div:first-child, .company-benefits-list.right-side > div:last-child {
  margin-left: -20px;
}
@media all and (max-width: 992px) {
  .company-benefits-list.right-side > div:first-child, .company-benefits-list.right-side > div:last-child {
    margin-left: 0;
  }
}

.company-benefits-item {
  margin-bottom: 30px;
}
@media all and (max-width: 767px) {
  .company-benefits-item {
    margin-bottom: 10px;
  }
}
.company-benefits-item h3 {
  color: #222222;
  font-size: 23px;
  word-break: keep-all;
}
@media all and (max-width: 767px) {
  .company-benefits-item h3 {
    font-size: 20px;
  }
}
.company-benefits-item h3 span {
  font-weight: bold;
  display: inline-block;
  margin-right: 8px;
  color: #FF9600;
}
.company-benefits-item .company-benefits-des {
  height: 4em;
  line-height: 2em;
}
@media all and (max-width: 767px) {
  .company-benefits-item .company-benefits-des br {
    display: none;
  }
}
@media all and (max-width: 767px) {
  .company-benefits-item .company-benefits-des {
    font-size: 14px;
  }
}

/*company certification*/
.company-certification {
  position: relative;
  padding-bottom: 60px;
  overflow: hidden;
}
.company-certification .spin-gear {
  z-index: 0;
  width: 300px;
  top: 40px;
  left: auto;
  right: 30px;
}
.company-certification .row {
  z-index: 1;
  position: relative;
}
.company-certification .company-certification-box {
  padding-left: 30px;
}
@media all and (max-width: 767px) {
  .company-certification .company-certification-box {
    padding: 0;
  }
}
.company-certification .company-certification-eng-dec {
  font-size: 60px;
  line-height: 1em;
  color: #ddd;
  font-weight: bold;
  font-style: italic;
  padding-left: 20px;
  text-transform: uppercase;
  margin-bottom: -5px;
}
@media all and (max-width: 767px) {
  .company-certification .company-certification-eng-dec {
    font-size: 38px;
    padding-left: 0;
    text-align: center;
  }
}
.company-certification .company-certification-img img {
  border: 3px solid #FF9600;
  border-radius: 5px;
}
@media all and (max-width: 992px) {
  .company-certification .company-certification-img img {
    margin-bottom: 20px;
  }
}
.company-certification .company-certification-list {
  margin-top: 30px;
}
@media all and (max-width: 767px) {
  .company-certification .company-certification-list {
    margin-top: 10px;
  }
}
.company-certification .company-certification-list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
.company-certification .company-certification-list li {
  font-size: 20px;
  border-bottom: 1px solid #A3A3A3;
  line-height: 3.5em;
  padding-left: 10px;
}
@media all and (max-width: 1200px) {
  .company-certification .company-certification-list li {
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .company-certification .company-certification-list li {
    font-size: 12px;
    text-align: left;
  }
}
.company-certification .company-certification-list li::before {
  content: "";
  width: 27px;
  height: 1em;
  display: inline-block;
  background: url("../img/icon-check.gif") no-repeat scroll center/100% auto;
  margin-right: 20px;
}
@media all and (max-width: 767px) {
  .company-certification .company-certification-list li::before {
    width: 18px;
    margin-right: 10px;
  }
}

/*company professional group*/
.company-professional-group {
  background: linear-gradient(0deg, rgb(255, 255, 255) 50%, rgb(241, 241, 241) 100%);
  padding-top: 80px;
}
@media all and (max-width: 767px) {
  .company-professional-group {
    padding-top: 30px;
  }
}
.company-professional-group .container {
  padding: 0 !important;
}

.company-professional-group-list-box .swiper-button-prev {
  left: -50px;
}
@media all and (max-width: 1200px) {
  .company-professional-group-list-box .swiper-button-prev {
    left: 20px;
  }
}
.company-professional-group-list-box .swiper-button-next {
  right: -50px;
}
@media all and (max-width: 1200px) {
  .company-professional-group-list-box .swiper-button-next {
    right: 20px;
  }
}
.company-professional-group-list-box .swiper-slide {
  opacity: 1;
  transition: 0.3s;
  position: relative;
  margin-top: 0;
  left: 0;
}
.company-professional-group-list-box .swiper-wrapper > .swiper-slide:nth-child(2n) {
  position: relative;
  margin-top: 30px;
}
.company-professional-group-list-box .swiper-slide.swiper-slide-active, .company-professional-group-list-box .swiper-slide.swiper-slide-duplicate-prev {
  opacity: 0.3;
  transition: 0.3s;
}
@media all and (max-width: 767px) {
  .company-professional-group-list-box [class=swiper-slide], .company-professional-group-list-box [class="swiper-slide swiper-slide-duplicate"] {
    opacity: 0.3;
    transition: 0.3s;
  }
}

/*company showcase*/
.company-showcase {
  padding: 80px 0 120px;
}
@media all and (max-width: 767px) {
  .company-showcase {
    padding: 40px 0 60px;
  }
}
.company-showcase .showcase-list {
  margin-bottom: 40px;
  align-items: start;
}
@media all and (max-width: 767px) {
  .company-showcase .showcase-list {
    margin-bottom: 0;
  }
}
.company-showcase .showcase-list .showcase-item:nth-child(2) {
  margin-top: 20px;
}

/*service progress*/
.service-progress {
  padding-top: 120px;
}
@media all and (max-width: 992px) {
  .service-progress {
    padding-left: 25px;
    padding-right: 25px;
  }
}
@media all and (max-width: 767px) {
  .service-progress {
    padding-top: 60px;
  }
}

.service-progress-line {
  width: 100%;
  height: 3px;
  position: absolute;
  background: #D9D9D9;
  top: calc(50% - 12px);
}
@media all and (max-width: 992px) {
  .service-progress-line {
    display: none;
  }
}

.service-progress-line2 {
  width: 100%;
  height: 3px;
  position: absolute;
  background: #FF9600;
  top: calc(50% - 12px);
}
@media all and (max-width: 992px) {
  .service-progress-line2 {
    display: none;
  }
}

.service-progress-step {
  margin-top: 80px;
  overflow: hidden;
  position: relative;
}
@media all and (max-width: 767px) {
  .service-progress-step {
    margin-top: 40px;
  }
}
@media all and (max-width: 767px) {
  .service-progress-step.wrapper-lg {
    padding: 20px 0 0 0;
  }
}

.service-progress-item {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media all and (max-width: 992px) {
  .service-progress-item {
    margin-bottom: 20px;
  }
}
@media all and (max-width: 767px) {
  .service-progress-item {
    flex-direction: row;
    padding: 0;
  }
}
.service-progress-item img {
  width: 93%;
  margin: 0 auto 60px;
  display: block;
  position: relative;
  z-index: 1;
}
@media all and (max-width: 767px) {
  .service-progress-item img {
    margin: 0 auto 40px;
  }
}
.service-progress-item.sink img {
  bottom: -30px;
}
@media all and (max-width: 767px) {
  .service-progress-item.sink img {
    bottom: 0;
  }
}
.service-progress-item .service-progress-item-dot {
  width: 18px;
  height: 18px;
  display: inline-block;
  margin: 0 auto;
  background: #FF9600;
  border-radius: 50%;
  margin-bottom: 20px;
  position: relative;
}
@media all and (max-width: 767px) {
  .service-progress-item .service-progress-item-dot {
    width: 12px;
    height: 12px;
    margin-top: 2.4em;
    margin-bottom: 0;
  }
}
.service-progress-item .service-progress-item-dot::before {
  content: "";
  height: 80px;
  width: 1px;
  border-right: 3px dashed #FF9600;
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 1px);
  z-index: 0;
}
@media all and (max-width: 767px) {
  .service-progress-item .service-progress-item-dot::before {
    width: 80px;
    height: 1px;
    border-right: none;
    border-top: 2px dashed #FF9600;
    left: auto;
    right: 100%;
    bottom: calc(50% - 1px);
  }
}
@media all and (max-width: 992px) {
  .service-progress-item .service-progress-item-dot::after {
    content: "";
    width: 500px;
    height: 3px;
    background: #FF9600;
    position: absolute;
    bottom: calc(50% - 1px);
    left: -300px;
  }
}
@media all and (max-width: 767px) {
  .service-progress-item .service-progress-item-dot::after {
    width: 2px;
    height: 500px;
    bottom: -300px;
    left: calc(50% - 1px);
  }
}
@media all and (max-width: 767px) {
  .service-progress-item .service-progress-item-img {
    width: calc(50% - 6px);
    padding-right: 20px;
    margin-top: -20px;
  }
}
@media all and (max-width: 767px) {
  .service-progress-item .service-progress-item-group {
    width: calc(50% - 6px);
    padding-left: 20px;
    text-align: left;
  }
}
.service-progress-item .service-progress-item-num {
  font-size: 24px;
  font-weight: bold;
  color: #FF9600;
  margin-bottom: 5px;
}
@media all and (max-width: 992px) {
  .service-progress-item .service-progress-item-num {
    font-size: 20px;
  }
}
@media all and (max-width: 767px) {
  .service-progress-item .service-progress-item-num {
    font-size: 16px;
    margin-bottom: 0px;
  }
}
.service-progress-item h3 {
  color: #222222;
  margin-bottom: 15px;
}
@media all and (max-width: 767px) {
  .service-progress-item h3 {
    margin-bottom: 10px;
  }
}
.service-progress-item p {
  font-size: 14px;
  text-align: justify;
  line-height: 2em;
}

/*service project*/
.service-project {
  padding-bottom: 120px;
}
@media all and (max-width: 767px) {
  .service-project {
    padding-bottom: 60px;
  }
}
.service-project .service-project-list {
  margin-top: 60px;
  margin-bottom: 60px;
  row-gap: 45px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media all and (max-width: 767px) {
  .service-project .service-project-list {
    margin-top: 30px;
    margin-bottom: 30px;
    row-gap: 30px;
  }
}
.service-project .service-project-list .service-project-item {
  width: calc(50% - 15px);
  position: relative;
  align-items: center;
  border: 1px solid #9D9D9D;
  border-radius: 5px;
  padding: 40px;
  background: url("../img/bg-showcase-corner.png") no-repeat scroll right bottom/25px auto;
}
@media all and (max-width: 767px) {
  .service-project .service-project-list .service-project-item {
    width: 100%;
    padding: 20px;
  }
}
.service-project .service-project-list .service-project-tag {
  position: absolute;
  top: -25px;
  left: calc(50% - 25px);
  width: 50px;
  height: 50px;
  background: url("../img/number-tag2.png") no-repeat scroll center/cover;
  color: #222222;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 50px;
  display: block;
}
@media all and (max-width: 767px) {
  .service-project .service-project-list .service-project-tag {
    font-size: 12px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    top: -15px;
    left: calc(50% - 15px);
  }
}
.service-project .service-project-list .row {
  align-items: center;
}
.service-project .service-project-list .service-project-item-img img {
  width: 75%;
}
.service-project .service-project-list .service-project-item-dec {
  border-left: 1px solid #9D9D9D;
  padding: 5px 0 5px 15px;
}
.service-project .service-project-list .service-project-item-dec h3 {
  font-size: 24px;
  color: #222222;
}
@media all and (max-width: 992px) {
  .service-project .service-project-list .service-project-item-dec h3 {
    font-size: 20px;
  }
}
@media all and (max-width: 767px) {
  .service-project .service-project-list .service-project-item-dec h3 {
    font-size: 14px;
  }
}
.service-project .service-project-list .service-project-item-dec p {
  margin-bottom: 0;
}
@media all and (max-width: 767px) {
  .service-project .service-project-list .service-project-item-dec p {
    font-size: 14px;
  }
}

/*knowledge title*/
.knowledge-title {
  padding: 120px 0 100px;
}
@media all and (max-width: 992px) {
  .knowledge-title {
    padding: 80px 0 60px;
  }
}
@media all and (max-width: 767px) {
  .knowledge-title {
    padding: 60px 0 40px;
  }
}

/*knowledge filter*/
.knowlogy-filter {
  background: #f1f1f1;
  padding: 30px 0 28px;
}
@media all and (max-width: 767px) {
  .knowlogy-filter {
    padding: 20px 0 18px;
  }
}
@media all and (max-width: 767px) {
  .knowlogy-filter .wrapper-sm {
    padding: 0;
  }
}

.search-group * {
  line-height: 48px;
}
@media all and (max-width: 767px) {
  .search-group * {
    line-height: 28px;
  }
}
.search-group .search-input {
  padding: 0 20px;
  border-width: 1px 0 1px 1px;
  border-color: #222222;
  width: 100%;
  font-size: 20px;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-border-radius: 0px;
  background: #ffffff;
}
@media all and (max-width: 767px) {
  .search-group .search-input {
    font-size: 12px;
    padding: 0 10px;
  }
}
.search-group .search-input:focus {
  border-radius: 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.15) inset;
}
.search-group .search-btn {
  width: 50px;
  height: 50px;
  border-width: 1px 1px 1px 0px;
  border-color: #222222;
  background: #ffffff url("../img/icon-search-btn.png") no-repeat scroll center/50% auto;
}
@media all and (max-width: 767px) {
  .search-group .search-btn {
    width: 30px;
    height: 30px;
  }
}

.fliter-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 45px;
  width: 100%;
  border: 1px solid #222222;
  height: 50px;
  color: #222222;
  font-size: 20px;
  font-weight: bold;
  text-indent: calc(50% - 3.2em);
  padding-right: 15px;
  background: #ffffff url("../img/icon-dropdown.png") no-repeat scroll calc(50% + 3.5em) center/15px auto;
}
@media all and (max-width: 767px) {
  .fliter-select {
    height: 30px;
    line-height: 25px;
    background-size: 10px auto;
    font-size: 12px;
  }
}
.fliter-select.fliter-select2 {
  padding-right: 0;
  text-indent: 0;
  background: #ffffff;
}
.fliter-select.fliter-select2 button#dropdownMenuButton1 {
  display: block;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
  height: 100%;
}
@media all and (max-width: 767px) {
  .fliter-select.fliter-select2 button#dropdownMenuButton1 {
    font-size: 12px;
    margin-top: -0.3rem;
  }
}
.fliter-select.fliter-select2 button#dropdownMenuButton1::after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../img/icon-dropdown.png) no-repeat scroll center/15px auto !important;
  color: transparent;
  vertical-align: 0.1em;
}
@media all and (max-width: 767px) {
  .fliter-select.fliter-select2 button#dropdownMenuButton1::after {
    position: relative;
    top: 0.1rem;
  }
}
.fliter-select.fliter-select2 .dropdown-menu {
  width: 100%;
}
.fliter-select.fliter-select2 .dropdown-item {
  text-align: center;
}

/*filter result title*/
.filter-title {
  padding: 60px 0 0;
}
@media all and (max-width: 767px) {
  .filter-title {
    padding: 20px 20px 0;
  }
}
.filter-title h1::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.1em;
  background: url(../img/icon-filter-result.png) no-repeat scroll center/cover;
  position: relative;
  top: 0.15em;
}
@media all and (max-width: 767px) {
  .filter-title h1 {
    margin-bottom: 0;
    text-align: center;
  }
}

/*knownoloy post list*/
.knowledge-post-list {
  padding: 0px 0 80px;
}
@media all and (max-width: 767px) {
  .knowledge-post-list {
    padding: 0px 15px 60px;
  }
}

.knowledge-post-item {
  padding: 25px;
  border-bottom: 1px solid #A3A3A3;
}
.knowledge-post-item .post-item-img img {
  border-radius: 5px;
}
@media all and (max-width: 767px) {
  .knowledge-post-item .post-item-img img {
    width: 50%;
    margin-bottom: 15px;
  }
}
.knowledge-post-item .post-title {
  font-size: 28px;
  color: #222222;
  word-wrap: break-word;
  text-overflow: ellipsis;
  width: 100%;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media all and (max-width: 992px) {
  .knowledge-post-item .post-title {
    font-size: 24px;
  }
}
@media all and (max-width: 767px) {
  .knowledge-post-item .post-title {
    font-size: 20px;
  }
}
.knowledge-post-item .post-meta {
  font-size: 20px;
  color: #FF9600;
  font-weight: bold;
  margin-bottom: 10px;
}
@media all and (max-width: 992px) {
  .knowledge-post-item .post-meta {
    font-size: 18px;
  }
}
@media all and (max-width: 767px) {
  .knowledge-post-item .post-meta {
    font-size: 12px;
  }
}
.knowledge-post-item .post-summary {
  margin-bottom: 0;
  text-align: justify;
}
@media all and (max-width: 992px) {
  .knowledge-post-item .post-summary {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .knowledge-post-item .post-summary {
    font-size: 12px;
    margin-bottom: 15px;
  }
}

.post-pagination {
  margin-top: 60px;
}
@media all and (max-width: 767px) {
  .post-pagination {
    margin-top: 30px;
  }
}
.post-pagination ul {
  margin: 0 auto;
}
.post-pagination .page-link {
  border: none;
  color: #A3A3A3;
  font-size: 20px;
}
@media all and (max-width: 767px) {
  .post-pagination .page-link {
    font-size: 14px;
  }
}
.post-pagination .page-link.active {
  font-weight: bold;
  color: #FF9600;
}
.post-pagination .page-link.active::after {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #FF9600;
  position: relative;
  left: 3px;
  top: 5px;
}

/*post template*/
.post-container {
  position: relative;
  overflow: hidden;
  padding-top: 120px;
  background: url("../img/bg-body3.png") no-repeat scroll center 320px/100% auto, url("../img/bg-body2.png") no-repeat scroll top center/100% auto;
}
@media all and (max-width: 767px) {
  .post-container {
    padding-top: 60px;
  }
}
.post-container .spin-gear {
  width: 300px;
  z-index: 0;
  left: auto;
  right: 80px;
}

.post-template-inner, .post-go-back {
  max-width: 760px;
  margin: 0 auto 60px;
}
@media all and (max-width: 767px) {
  .post-template-inner, .post-go-back {
    padding: 0 30px;
    margin: 0 auto 30px;
  }
}

.post-go-back {
  display: flex;
  align-items: center;
}
@media all and (max-width: 767px) {
  .post-go-back {
    padding: 0 30px;
  }
}
.post-go-back::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 26px;
  background: url("../img/icon-see-more2.png") no-repeat scroll center/cover;
  margin-right: 5px;
}
@media all and (max-width: 767px) {
  .post-go-back::before {
    width: 12px;
    height: 12px;
  }
}
.post-go-back a {
  font-size: 20px;
  font-weight: bold;
}
@media all and (max-width: 767px) {
  .post-go-back a {
    font-size: 12px;
  }
}
.post-go-back ahover {
  color: #FF9600;
}

.post-template-inner .post-title {
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media all and (max-width: 767px) {
  .post-template-inner .post-title {
    font-size: 20px;
  }
}
.post-template-inner .post-meta {
  font-size: 18px;
  font-weight: bold;
  color: #FF9600;
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .post-template-inner .post-meta {
    font-size: 12px;
  }
}
.post-template-inner .post-feature-img img {
  border-radius: 5px;
}
.post-template-inner .post-content {
  padding: 30px 20px;
  overflow: hidden;
}
@media all and (max-width: 767px) {
  .post-template-inner .post-content {
    padding: 20px 0 0;
  }
}
.post-template-inner .post-content * {
  max-width: 100%;
}
.post-template-inner .post-content p {
  margin-bottom: 40px;
  line-height: 2em;
}
@media all and (max-width: 767px) {
  .post-template-inner .post-content p {
    font-size: 12px;
  }
}

/*post template recommend*/
.recommend-post {
  border-top: 1px solid #A3A3A3;
  padding: 20px 20px 60px;
  margin-top: 15px;
}
@media all and (max-width: 767px) {
  .recommend-post {
    padding: 20px 0;
  }
}
.recommend-post artical {
  padding: 0 8px;
}
.recommend-post .recommend-post-item {
  display: block;
  border-radius: 5px;
  border: 1px solid #A3A3A3;
  height: 100%;
}
@media all and (max-width: 767px) {
  .recommend-post .recommend-post-item {
    margin-bottom: 30px;
  }
}
.recommend-post .recommend-post-item .recommend-post-info {
  padding: 20px 15px;
}
.recommend-post .recommend-post-item .recommend-post-info .post-title {
  font-size: 20px;
  color: #222222;
  letter-spacing: 0;
}
.recommend-post .recommend-post-item .recommend-post-info .post-meta {
  font-size: 14px;
  margin-bottom: 10px;
}
.recommend-post .recommend-post-item .recommend-post-info .post-summary {
  font-size: 14px;
  margin-bottom: 0;
  text-align: justify;
}
@media all and (max-width: 767px) {
  .recommend-post .recommend-post-item .recommend-post-info .post-summary {
    font-size: 12px;
  }
}

/*case timeline*/
.case-timeline {
  position: relative;
  margin-top: 30px;
  margin-bottom: 60px;
  padding: 40px 0 60px;
}
@media all and (max-width: 767px) {
  .case-timeline {
    margin-top: 0;
    padding: 0;
    margin-bottom: 0;
  }
}
.case-timeline .timeline-vr {
  height: calc(100% + 80px);
  width: 3px;
  background: #FF9600;
  position: absolute;
  left: calc(50% - 1px);
  top: -40px;
}
.case-timeline .timeline-vr::before, .case-timeline .timeline-vr::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #FF9600;
}
.case-timeline .timeline-vr::before {
  top: -10px;
  left: -6px;
}
.case-timeline .timeline-vr::after {
  bottom: -10px;
  left: -6px;
}
.case-timeline .timeline-box {
  display: flex;
  align-items: start;
}
@media all and (max-width: 767px) {
  .case-timeline .timeline-box {
    flex-wrap: wrap;
  }
}
.case-timeline .timeline-box .time-line-item {
  width: 50%;
  padding: 0 70px;
  position: relative;
}
@media all and (max-width: 992px) {
  .case-timeline .timeline-box .time-line-item {
    padding: 0 30px;
  }
}
@media all and (max-width: 767px) {
  .case-timeline .timeline-box .time-line-item {
    width: 100%;
    margin-bottom: 40px;
  }
}
.case-timeline .timeline-box .time-line-item::after {
  content: "";
  display: block;
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #FF9600;
  right: -8px;
  top: 50%;
}
@media all and (max-width: 767px) {
  .case-timeline .timeline-box .time-line-item::after {
    display: none;
  }
}
.case-timeline .timeline-box .time-line-item:last-child {
  margin-top: 80px;
}
@media all and (max-width: 767px) {
  .case-timeline .timeline-box .time-line-item:last-child {
    margin-top: 0;
  }
}
.case-timeline .timeline-box .time-line-item:last-child::after {
  right: auto;
  left: -7px;
}
.case-timeline .timeline-box .time-line-item:first-child::after {
  right: -8px !important;
  left: auto !important;
}
.case-timeline .timeline-box .time-line-item .time-line-item-link {
  border: 1px solid #A3A3A3;
  border-radius: 5px;
  display: block;
}
.case-timeline .timeline-box .time-line-item .time-line-item-num {
  position: absolute;
  top: -35px;
  left: calc(50% - 35px);
  width: 70px;
  height: 70px;
  background: url("../img/number-tag.png") no-repeat scroll center/cover;
  color: #FFDC37;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 66px;
  display: block;
}
@media all and (max-width: 767px) {
  .case-timeline .timeline-box .time-line-item .time-line-item-num {
    width: 50px;
    height: 50px;
    left: calc(50% - 25px);
    line-height: 45px;
    font-size: 22px;
    top: -25px;
  }
}

.time-line-item-info {
  padding: 30px 20px 25px;
  background: url("../img/bg-showcase-corner.png") no-repeat scroll right bottom/25px auto;
}
@media all and (max-width: 767px) {
  .time-line-item-info {
    padding: 20px 20px 25px;
  }
}
.time-line-item-info .post-title {
  font-size: 28px;
  color: #222222;
  word-wrap: break-word;
  text-overflow: ellipsis;
  width: 100%;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media all and (max-width: 992px) {
  .time-line-item-info .post-title {
    font: 24px;
  }
}
@media all and (max-width: 767px) {
  .time-line-item-info .post-title {
    font-size: 20px;
  }
}
.time-line-item-info .post-meta {
  font-size: 18px;
  font-weight: bold;
  color: #FF9600;
}
@media all and (max-width: 767px) {
  .time-line-item-info .post-meta {
    font-size: 12px;
  }
}
.time-line-item-info .post-summary {
  margin-top: 10px;
  text-align: justify;
  margin-bottom: 0;
}
@media all and (max-width: 992px) {
  .time-line-item-info .post-summary {
    font: 16px;
  }
}
@media all and (max-width: 767px) {
  .time-line-item-info .post-summary {
    font-size: 12px;
  }
}

/*case filter*/
.case-filter {
  position: absolute;
  top: -30px;
  right: 70px;
  width: 200px;
}
@media all and (max-width: 767px) {
  .case-filter {
    position: relative;
    top: auto;
    right: auto;
    width: 150px;
    margin: 0 auto 60px;
  }
}

/*case pagination*/
.page-case .post-pagination {
  padding: 60px 0 120px;
}
@media all and (max-width: 767px) {
  .page-case .post-pagination {
    padding: 0 0 60px;
    margin-top: 0;
  }
}

/*download filter*/
.download-filter {
  margin-top: 30px;
}
.download-filter.wrapper-md {
  padding: 0;
}
.download-filter ul {
  list-style: none;
  margin: 0;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
}
@media all and (max-width: 767px) {
  .download-filter ul {
    flex-wrap: nowrap;
    overflow-x: scroll;
    justify-content: start;
    padding: 0 15px;
  }
}
.download-filter ul::-webkit-scrollbar {
  display: none;
}
.download-filter li a {
  color: #222222;
  font-size: 20px;
  padding: 6px 15px 7px;
  border: 2px solid #ccc;
  margin: 0 8px 15px;
  display: block;
  border-radius: 99px;
  transition: 0.3s;
}
@media all and (max-width: 992px) {
  .download-filter li a {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .download-filter li a {
    font-size: 12px;
    margin: 0 6px 0;
    word-break: keep-all;
    white-space: pre;
  }
}
.download-filter li a.active {
  border-color: #FF9600;
  color: #FF9600;
  font-weight: bold;
  transition: 0.3s;
}
.download-filter li a:hover {
  border-color: #FF9600;
  color: #FF9600;
  transition: 0.3s;
}

/*download list*/
.download-item {
  padding: 20px 0;
  border-bottom: 1px solid #A3A3A3;
}
@media all and (max-width: 992px) {
  .download-item {
    margin: 0 15px;
  }
}
.download-item h3 {
  color: #222222;
  font-size: 28px;
}
@media all and (max-width: 992px) {
  .download-item h3 {
    font-size: 24px;
  }
}
@media all and (max-width: 767px) {
  .download-item h3 {
    font-size: 20px;
  }
}
.download-item p {
  font-size: 18px;
  margin-bottom: 0;
}
@media all and (max-width: 767px) {
  .download-item p {
    font-size: 12px;
  }
}
.download-item .download-link {
  display: flex;
  align-items: center;
  justify-content: end;
}
@media all and (max-width: 767px) {
  .download-item .download-link {
    align-items: start;
    flex-direction: column;
  }
}
.download-item .update-date {
  font-size: 18px;
  font-weight: bold;
  color: #FF9600;
}
@media all and (max-width: 767px) {
  .download-item .update-date {
    font-size: 12px;
    margin-bottom: 5px;
  }
}
.download-item .download-btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-left: 10px;
  background: #FFDC37 url("../img/icon-link.png") no-repeat scroll center/30px auto;
  transition: 0.3s;
}
@media all and (max-width: 767px) {
  .download-item .download-btn {
    width: 33px;
    height: 33px;
    background-size: 17px auto;
    margin-left: 0;
  }
}
.download-item .download-btn:hover {
  background-color: #FF9600;
  transition: 0.3s;
}

/*download pagination*/
.page-download .post-pagination {
  padding: 20px 0 140px;
}
@media all and (max-width: 767px) {
  .page-download .post-pagination {
    padding: 20px 0 60px;
  }
}

/*contact banner*/
.page-contact .picture-banner {
  background-image: url("../img/banner_contact2@3x.png");
}
@media all and (max-width: 767px) {
  .page-contact .picture-banner {
    background-image: url("../img/banner_contact_app@3x.png");
  }
}

/*contact info*/
.contact-block {
  padding: 80px 0;
}
@media all and (max-width: 767px) {
  .contact-block {
    padding: 40px 0 60px;
  }
}

.contact-list {
  padding-top: 60px;
}
@media all and (max-width: 767px) {
  .contact-list {
    padding-top: 30px;
  }
}

.contact-item {
  text-align: center;
}
.contact-item img {
  max-width: 70px;
}
.contact-item h3 {
  font-size: 28px;
  color: #222222;
}
@media all and (max-width: 992px) {
  .contact-item h3 {
    font-size: 24px;
  }
}
@media all and (max-width: 767px) {
  .contact-item h3 {
    font-size: 20px;
    margin-top: 10px;
  }
}
@media all and (max-width: 992px) {
  .contact-item p {
    font-size: 16px;
  }
}
@media all and (max-width: 767px) {
  .contact-item p {
    font-size: 12px;
  }
}

/*contact us*/
.page-contact footer::before {
  display: none;
}

.contact-us {
  background: url("../img/bg-contact-form.jpg") no-repeat scroll center/cover;
  padding: 80px 0;
  position: relative;
}
@media all and (max-width: 767px) {
  .contact-us {
    padding: 60px 0;
  }
}
.contact-us::before {
  content: "";
  width: 36px;
  height: 36px;
  display: block;
  background: #ffffff;
  transform: rotate(45deg);
  position: absolute;
  left: calc(50% - 18px);
  top: -18px;
}

.contact-map {
  padding-right: 70px;
}
@media all and (max-width: 992px) {
  .contact-map {
    padding-right: 0;
    padding-left: 0;
    margin-bottom: 30px;
  }
}
.contact-map iframe {
  border: 2px solid #FFDC37 !important;
  border-radius: 5px;
}

.contact-form h2 {
  color: #ffffff;
}
.contact-form h2::before {
  content: "";
  width: 28px;
  height: 28px;
  display: inline-block;
  margin-right: 10px;
  background: url("../img/icon-chatbox.png") no-repeat scroll center/100% auto;
}
.contact-form .input-group {
  margin-bottom: 12px;
}
.contact-form h5 {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
}
.contact-form h5:not(.not-required)::after {
  content: "*";
  color: #FFDC37;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  background: transparent;
  border-radius: 5px !important;
  border: 1px solid #ffffff;
  padding: 10px;
  color: #fff;
}
.contact-form input:focus, .contact-form textarea:focus {
  background: #ffffff;
  color: #222222;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1) inset;
}
.contact-form input {
  height: 40px;
}
.contact-form .captcha-group {
  display: flex;
  align-items: center;
  width: 100%;
}
.contact-form .captcha-group input {
  width: 50%;
  margin-right: 5px;
}
.contact-form .captcha-group .captcha img {
  height: 35px;
  margin-right: 5px;
}
.contact-form .captcha-group .captcha-refresh {
  border: none;
  background: transparent;
  color: #AFAFAF;
  text-decoration: underline;
}
.contact-form .captcha-group .captcha-refresh::before {
  content: "";
  width: 23px;
  height: 23px;
  background: url("../img/icon-refresh.png") no-repeat scroll center/100% auto;
  display: inline-block;
  position: relative;
  top: 5px;
  margin-right: 5px;
}
@media all and (max-width: 767px) {
  .contact-form .captcha-group .captcha-refresh span {
    display: none;
  }
}
.contact-form input[type=submit] {
  width: 160px;
  height: 50px;
  background: #FFDC37;
  color: #222222;
  font-size: 20px;
  font-weight: bold;
  border: none;
  border-radius: 0 !important;
  margin: 30px auto;
  display: block;
  transition: 0.3s;
}
@media all and (max-width: 767px) {
  .contact-form input[type=submit] {
    font-size: 12px;
    width: 120px;
    height: 40px;
  }
}
.contact-form input[type=submit]:hover {
  background: #ffffff;
  transition: 0.3s;
}

/*footer*/
footer {
  background: #121211;
  padding: 100px 0 60px;
  position: relative;
  overflow: hidden;
}
footer * {
  color: #ffffff;
}
footer::before {
  content: "";
  width: 36px;
  height: 36px;
  display: block;
  background: #ffffff;
  transform: rotate(45deg);
  position: absolute;
  left: calc(50% - 18px);
  top: -18px;
}
footer .company-contact-info {
  border-left: 2px solid #fff;
  padding-left: 50px;
}
@media all and (max-width: 992px) {
  footer .company-contact-info {
    border: 0;
    padding-left: 30px;
  }
}
@media all and (max-width: 767px) {
  footer .company-contact-info {
    margin-bottom: 30px;
  }
}
footer .company-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media all and (max-width: 992px) {
  footer .company-brand {
    padding-bottom: 20px;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 20px;
  }
}
@media all and (max-width: 767px) {
  footer .company-brand {
    border: none;
  }
}
@media all and (max-width: 767px) {
  footer .company-brand::after {
    content: "";
    width: 120px;
    height: 2px;
    background: #fff;
    margin-top: 40px;
  }
}
footer .company-brand img {
  max-width: 137px;
  margin-bottom: 20px;
}
footer .company-brand a {
  border: 1px solid #ffffff;
  border-radius: 99px;
  display: inline-block;
  padding: 3px 15px 5px;
  transition: 0.3s;
}
footer .company-brand a::before {
  content: "";
  background: url("../img/social-fb.png") no-repeat scroll center/auto 13px;
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-right: 5px;
}
footer .company-brand a:hover {
  background: #FF9600;
  transition: 0.3s;
  border-color: #FF9600;
  color: #ffffff;
}
@media all and (max-width: 767px) {
  footer .quick-link {
    padding-left: 30px;
  }
}
@media all and (max-width: 767px) {
  footer .quick-link ul li {
    line-height: 3em;
  }
}
footer ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
footer ul li {
  line-height: 2em;
}
footer ul a:hover {
  color: #FFDC37;
}

.copyright {
  margin-top: 40px;
  text-align: center;
  font-size: 14px;
}
@media all and (max-width: 767px) {
  .copyright {
    font-size: 8px;
  }
}
.copyright a:hover {
  color: #FFDC37;
}

/*float menu*/
#float-contact-menu {
  position: fixed;
  bottom: 80px;
  right: 65px;
  z-index: 500;
  width: 60px;
  height: 60px;
}
@media all and (max-width: 767px) {
  #float-contact-menu {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 40px;
  }
}

.contact-box {
  position: relative;
  width: 100%;
  height: 100%;
}
.contact-box *:hover {
  cursor: pointer;
}
.contact-box .contact-menu-toggle {
  width: 100%;
  height: 100%;
  background: url("../img/icon-float-menu.png") no-repeat scroll center/cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  transition: 0.3s;
}
.contact-box .contact-menu-social {
  display: block;
  width: 70%;
  height: 70%;
  position: absolute;
  z-index: 0;
  left: 15%;
  top: 15%;
  transition: 0.3s;
}
@media all and (max-width: 767px) {
  .contact-box .contact-menu-social {
    width: 130%;
    height: 130%;
    left: -16%;
    top: -16%;
    opacity: 0;
  }
}
.contact-box.active .contact-menu-toggle {
  background-image: url("../img/icon-float-menu-active.png");
}
.contact-box.active .contact-menu-social1 {
  top: -55%;
  left: -70%;
}
@media all and (max-width: 767px) {
  .contact-box.active .contact-menu-social1 {
    opacity: 1;
    top: -430%;
    left: -16%;
  }
}
.contact-box.active .contact-menu-social2 {
  top: -90%;
}
@media all and (max-width: 767px) {
  .contact-box.active .contact-menu-social2 {
    opacity: 1;
    top: -150%;
    left: -16%;
  }
}
.contact-box.active .contact-menu-social3 {
  top: -55%;
  left: 100%;
}
@media all and (max-width: 767px) {
  .contact-box.active .contact-menu-social3 {
    opacity: 1;
    top: -290%;
    left: -16%;
  }
}

@media all and (max-width: 992px) {
  .wow {
    transition-property: none !important;
    transform: none !important;
    animation: none !important;
  }
}/*# sourceMappingURL=style.css.map */

/*# 20230608 */
.showcase-list .showcase-item .showcase-num{
    z-index: 1;
}
.fit_img{
    overflow: hidden;
    position: relative;
    width: 100%;
    padding-top: 60%;
    margin: 0 auto;
}
.fit_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    -o-object-fit: cover;
    object-fit: cover;
}
.showcase-list .showcase-item:nth-of-type(n+4){
    margin-top: 50px;
}
@media (max-width: 767px){
    .showcase-list .showcase-item:nth-of-type(n+4){
        margin-top: inherit;
    }
}
/*20230614 add*/
@media (max-width: 767px){
    .knowledge-post-item .post-item-img.w100per img{
        width: 100%;
        height: auto;
    }
}