.products {
  position: relative;
  background: #F4F4F4;
  padding: 80px;
  min-height: calc(100vh - 240px);
  display: grid;
  -webkit-align-content: space-between;
  align-content: space-between;
}
.products-wrap {
  max-width: calc(100vw - 240px);
  margin: auto;
}
.products-title {
  position: relative;
  z-index: 2;
  padding-left: 20px;
  border-left: #999 solid 1px;
  font-weight: normal;
  color: #000;
  line-height: 1.2;
  margin-bottom: 40px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.products-title .tw {
  font-size: 1.25rem;
}
.products-title .en {
  font-size: 0.75rem;
}
.products-title-inner {
  margin-right: 10px;
  overflow: hidden;
}
.products-title-inner span {
  display: block;
  -moz-transform: translateY(40px);
  -ms-transform: translateY(40px);
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -moz-transition: -moz-transform 0.6s;
  -o-transition: -o-transform 0.6s;
  -webkit-transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
}
.show .products-title-inner span {
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -webkit-transform: translateY(0);
  transform: translateY(0);
}
.products-wrapinner {
  position: relative;
}
.products-list {
  position: relative;
  box-shadow: 0 0 10px rgba(244, 244, 244, 0.3);
  overflow: hidden;
}
.products-list:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fdfdfd;
  z-index: 5;
  -moz-transition: width 0.6s;
  -o-transition: width 0.6s;
  -webkit-transition: width 0.6s;
  transition: width 0.6s;
}
.show .products-list:after {
  width: 0;
}
.products-group {
  position: relative;
  box-shadow: 0 0 10px rgba(244, 244, 244, 0.3);
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
}
.products-item {
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  background: #FFF;
  height: auto;
  margin: 10px;
  flex: 0 0 calc(50% - 20px);
}
.products-content {
  flex-grow: 1;
  opacity: 0;
  -moz-transition: opacity 0.6s 1s;
  -o-transition: opacity 0.6s 1s;
  -webkit-transition: opacity 0.6s;
  -webkit-transition-delay: 1s;
  transition: opacity 0.6s 1s;
}
.swiper-slide-active .products-content {
  opacity: 1;
}
.products-inner {
  margin: auto;
}
.products-subtitle {
  color: #000;
  font-size: 1rem;
  font-weight: normal;
}
.products-img {
  position: relative;
  width: 50%;
}
.products-img:after {
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  -moz-transition: width 0.6s 0.6s;
  -o-transition: width 0.6s 0.6s;
  -webkit-transition: width 0.6s;
  -webkit-transition-delay: 0.6s;
  transition: width 0.6s 0.6s;
}
.swiper-slide-active .products-img:after {
  width: 0;
}
.products-img img {
  width: 80%;
  margin: auto;
}
.products-menu {
  position: relative;
  z-index: 5;
  text-align: center;
  opacity: 0;
  -moz-transition: opacity 0.6s 0.3s;
  -o-transition: opacity 0.6s 0.3s;
  -webkit-transition: opacity 0.6s;
  -webkit-transition-delay: 0.3s;
  transition: opacity 0.6s 0.3s;
}
.products-menu.show {
  opacity: 1;
}
.products-btn {
  font-size: 0.75em;
  background: #d1d1d1;
  display: inline-block;
  line-height: 30px;
  padding: 0 10px;
  -moz-transform: skewX(-30deg);
  -ms-transform: skewX(-30deg);
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
}
.products-btn a {
  -moz-transform: skewX(30deg);
  -ms-transform: skewX(30deg);
  -webkit-transform: skewX(30deg);
  transform: skewX(30deg);
  display: block;
}
.products-btn a:before {
  margin-right: 5px;
}
.products-btn.active a {
  color: #000;
}
.products-btn:hover {
  background: #999;
}
.products-prev, .products-next {
  position: absolute;
  top: 50%;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  background: #d1d1d1;
  z-index: 5;
  cursor: pointer;
  opacity: 0;
  -moz-transition: opacity 0.6s 0.3s;
  -o-transition: opacity 0.6s 0.3s;
  -webkit-transition: opacity 0.6s;
  -webkit-transition-delay: 0.3s;
  transition: opacity 0.6s 0.3s;
}
.show .products-prev, .show .products-next {
  opacity: 1;
}
.products-prev:hover, .products-next:hover {
  background: #999;
}
.products-prev:hover:before, .products-next:hover:before {
  border-color: #000;
}
.products-prev:before, .products-next:before {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  top: 12px;
  left: 12px;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.products-prev {
  left: -40px;
}
.products-prev:before {
  border-left: #666 solid 1px;
  border-bottom: #666 solid 1px;
}
.products-next {
  right: -40px;
}
.products-next:before {
  border-right: #666 solid 1px;
  border-top: #666 solid 1px;
}

.btn {
  display: -ms-flexbox;
  display: flex;
  padding-top: 80px;
  -webkit-justify-content: center;
  justify-content: center;
}

.title-line-t, .title-line-r {
  position: absolute;
  background: #666;
  top: -1px;
}
.title-line-b, .title-line-l {
  position: absolute;
  background: #666;
  bottom: -1px;
}
.title-line-t, .title-line-b {
  -moz-transition: width 0.4s 0.2s;
  -o-transition: width 0.4s 0.2s;
  -webkit-transition: width 0.4s;
  -webkit-transition-delay: 0.2s;
  transition: width 0.4s 0.2s;
}
.title-line-l, .title-line-r {
  -moz-transition: height 0.2s;
  -o-transition: height 0.2s;
  -webkit-transition: height 0.2s;
  transition: height 0.2s;
}
.title-line-t {
  left: -1px;
  width: 0%;
  height: 1px;
}
.title-line-r {
  right: -1px;
  width: 1px;
  height: 0%;
}
.title-line-b {
  right: -1px;
  height: 1px;
  width: 0%;
}
.title-line-l {
  left: -1px;
  width: 1px;
  height: 0%;
}
.title-btn {
  width: 200px;
}
.title-btn a {
  position: relative;
  display: block;
  padding: 15px 30px;
  border: #999 solid 1px;
  font-size: 0.75em;
  letter-spacing: 5px;
  text-align: center;
}
.title-btn a:hover .title-line-t, .title-btn a:hover .title-line-b {
  -moz-transition-delay: 0s;
  -o-transition-delay: 0s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  width: 100%;
  padding: 0 1px;
}
.title-btn a:hover .title-line-r, .title-btn a:hover .title-line-l {
  height: 100%;
  padding: 1px 0;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
}

.footer-wrap {
  background: #fefefe;
}

.top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  color: #666;
}
.top:hover {
  cursor: pointer;
  color: #000;
}

@media screen and (min-width: 1450px) {
  .products-wrap {
    max-width: 1200px;
  }
}
@media screen and (max-width: 1100px) {
  .swiper-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .show .products-content {
    opacity: 1;
  }
  .show .products-img:after {
    width: 0;
  }
  .products-img img {
    width: 100%;
  }
  .products-arrow {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .products {
    padding: 40px;
  }
  .products-wrap {
    max-width: calc(100vw - 80px);
  }
  .products-btn a:before {
    content: none;
  }
  .products-item {
    flex: 0 0 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}
@media screen and (max-width: 640px) {
  .products {
    min-height: calc(100vh - 80px);
    padding: 40px 10px;
  }
  .products-wrap {
    max-width: calc(100vw - 20px);
  }
  .products-title {
    display: block;
    line-height: 2;
  }
  .products-item {
    display: block;
  }
  .products-img {
    margin: 0 auto;
  }
  .products-img img {
    width: 100%;
  }
  .products-content {
    text-align: left;
    padding: 0 10px 25px;
  }
}
@media screen and (max-width: 460px) {
  .products-img {
    width: 80%;
  }
  .products-menu {
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .products-btn {
    margin: 10px;
    width: 33%;
  }
}
