@charset "utf-8";
.color-red { color: #e30e1f; }
/* Grid */
.container{
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.sticky-thumb{
  position: fixed;
  top: 100px;
  width: 100%;
}
.bg-gray{
  background-color: #f9f8f7;
}
.bg-yellow{
  background-color: #ffd503;
}
.bg-navy{
  background-color: #0a253e;
}
.row{
  margin-left: 40px;
  margin-right: 40px;
}
.col-p-1, .col-p-2, .col-p-3, .col-p-4, .col-p-5, .col-p-6{
  display: grid;
  grid-gap: 30px;
}
.col-p-1{
  grid-template-columns: repeat(1,1fr);
}
.col-p-2{
  grid-template-columns: repeat(2,1fr);
}
.col-p-3{
  grid-template-columns: repeat(3,1fr);
}
.col-p-4{
  grid-template-columns: repeat(4,1fr);
}
.col-p-5{
  grid-template-columns: repeat(5,1fr);
}
.col-p-6{
  grid-template-columns: repeat(6,1fr);
}

/* common style */
h2{
  background-color: #ffe100;
  padding: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.6rem;
}
h3{
  font-size: 2rem;
  padding: 0.5rem;
  font-weight: 800;
  text-transform: capitalize;
  border-bottom: 6px solid #ffe100;
}
.point-block{
  display: inline-block;
  background-color: #ffe100;
  padding: 0.5rem 3rem;
  text-align: center;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 2.2rem;
}
.btn_box{
  display: inline-block;
  background-color: #ffe100;
  height: 2.2em;
  padding: 0 2em;
  border: 0;
}
.btn_stroke{
  background-color: #fff;
  height: 2.2em;
  padding: 0 3em;
  border: 3px solid #ffe100;
}
/* table style */
table{
  border-collapse: collapse;
  border-bottom: 3px solid #e3e3e3;
}
table caption{ opacity: 0; height: 1px; }
.tbl_wrap .tbl-vertical th{ width: 30%; }
.tbl_wrap .tbl-vertical{ border-top: 3px solid #e3e3e3; min-width: 800px; margin-bottom: 0.5em; }
th{
  background: #ffe110;
  padding: 12px 30px;
  font-weight: 800;
  border-left:1px solid #d9be00; border-right:1px solid #d9be00; border-bottom:1px solid #d9be00;
}
tr td{
  border: 1px solid #e3e3e3;
}
tr:nth-child(even){
  background: #f9f8f7;
}
tr:last-child{ border: 0; }
td{
  padding: 8px 2em;
  text-align: center;
}

ul.gray-list{
  width: 100%;
  background: #f9f8f7;
  padding: 1.6em;
  border-radius: 30px;
  list-style-type: circle;
  padding-left: 3.6em;
  margin: 1em 0;
}
ul.gray-list li{
  padding-bottom: 0.5em;
}

/* .col-12, .col-4, .col-3, .col-2{
  padding-left: 30px;
  padding-right: 30px;
}
.col-12{
  width: 100%;
  background-color: pink;
}
.col-4{
  width: 25%;
  background: springgreen;
}
.col-3{
  width: 33.3333%;
  background-color: paleturquoise;
}
.col-2{
  width: 16.6666%;
  background-color: orangered;
} */


/* header */
header{
  background-color: #fff;
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
  border-bottom: 1px solid #e3e3e3;
  transition: all 0.3s ease-in-out;

  z-index: 999;
}
header.scroll-off{
  background: transparent;
  border: 0;
  transition: all 0.3s ease-in-out;
}
header .row{ position: relative; }
header .logo{
  float: left;
  margin-right: 1em;
}
header .logo a{
  background: rgba(0, 0, 0, 0.0);
  width: 164px;
  display: inline-block;
  line-height: 100px;
}
header .logo img{
  width: 100%;
  transition: all 0.3 ease;
}
.nav-m-open{ display: none; }
.nav-p, .nav-m{
  position: relative;
}
.nav-m{ display: none; opacity: 0; }
.nav-p nav{
}
.nav-p nav > ul{
  float: left;
  position: relative;
  margin-left:30px;
}
.nav-p nav > ul > li{
  float: left;
}
.nav-p nav > ul > li > a{
  display: inline-block;
  height: 100px;
  line-height: 100px;
  padding: 0 0.8em;
  color: #0a253e;
  font-size: 1.16rem;
}
header.scroll-off .nav-p nav > ul > li > a{
  color: #fff;
}
.nav-p nav > ul > li:nth-child(1) > a{
  padding-left: 0;
}
.nav-p nav > ul > li > ul{
  background-color: #fff;
  overflow: hidden;
  max-height: 0;
  position: absolute;
  transition: max-height 0.3s;
  -webkit-transition: max-height 0.3s;
  top: 100px;
  border-left: 1px solid #e3e3e3;
  border-right: 1px solid #e3e3e3;
}
.nav-p nav > ul > li > ul > li a{
  color: #54575a;
}
.nav-p nav > ul > li:hover > a{
  /* border-bottom: 6px solid #ffe100; */
}
.nav-p nav > ul > li:hover ul{
  max-height: 1000px;
  border: 1px solid #e3e3e3;
  border-top: 0;
  -webkit-transition: all ease  .5s;
  -o-transition: all ease  .5s;
  transition: all ease  .5s;
}
.nav-p nav > ul > li ul li a{
  display: inline-block;
  width: 100%;
  min-width: 200px;
  padding: 0.7em 1.1em;
}
.nav-p nav > ul > li:hover:after{
  display: block;
}
.nav-p nav > ul > li:after{
  content: '';
  display: none;
  width: 100%;
  height: 4px;
  background-color: #ffe100;
  position: relative;
  left: 0;
  bottom: 30px;
}
.nav-p nav > ul > li ul li a:hover{
  color: #bf8c53;
}
header .hd-right{
  float: right;
/*   height: 100px;
line-height: 100px; */
}
header .hd-right > div{
  display: inline-block;
  vertical-align: middle;
}
header .hd-right .search-bar{
  position: relative;
}
header .hd-right .search-bar input{
  background: transparent;
  width: 100px;
  height: 32px;
  border: 1px solid #a7a7a7;
  border-radius: 6px;
  line-height: 32px;
  font-size: 0.8rem;
  color: #b7b7b7;
  padding-left: 0.6em;
  margin-right: 6px;
}
header .hd-right .search-bar button[type=submit]{
  position: absolute;
  top: 42px;
  background: transparent;
  border: 0;
  color: #b7b7b7;
  right: 12px;
}
header .hd-right .search-bar input:focus{
  width: 120px;
}
header .hd-right .sns-list{
  position: absolute;
  right: 0;
  top: -26px;
  height: 28px;
}
header .hd-right .sns-list a{
  font-size: 22px;
  color: #b7b7b7;
}
header .hd-right .sns-list a:hover{
  color: #0a253e;
}

header.scroll-off .hd-right .sns-list a:hover{
  color: #ffe100;
}
.btn_lang{
  display: inline-block;
  font-size: 0.8rem;
  background-color: #e3e3e3;
  border-radius: 6px;
  width: 46px;
  height: 24px;
  text-align: center;
  line-height: 24px;
}
.btn_lang:hover{
  background-color: #ffe100;
}
.btn_lang.on{
  background-color: #ffe100;
  font-weight: bold;
}
.lang-m{ display: none; }
.btn-page-top{
  font-weight: 900;
  font-size: 1.2rem;
  letter-spacing: -1px;
  color: #0a253e;
  display: inline-block;
  padding: 0.2rem 0.4rem;
  float: right;
}
.btn-page-top:before{
  content: '\f106';
  font-family: "Font Awesome 5 Free";
  position: relative;
  margin-right: 8px;
  color: #bf8c53;
}
/* intro */
.swiper-container {
  background: #0a253e;
  width: 100%;
  height: 770px;
  margin-left: auto;
  margin-right: auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /*background: #0a253e;*/
  height: 100%;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;

  background-position: center;
  background-size: cover;
}
.swiper-slide:after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  /*background: rgba(10, 37, 62, 0.75);*/
}
..swiper-slide2 {
  text-align: center;
  font-size: 18px;
  background: #0a253e;
  height: 100%;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  opacity:0;
  background-position: center;
  background-size: cover;
}
.swiper-slide2:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(10, 37, 62, 0.75);
}
.swiper-button-next, .swiper-button-prev{
  color: #fff !important;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
  width: 82px;
  height: 6px;
  border-radius: 0;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
  margin-bottom: 3em;
}
:root{
  --swiper-theme-color: #ffe100 !important;
}
.slide-wrap{
  width: 80%;
  max-width: 1440px;
  z-index: 10;
  margin-top: 2em;
}
.slide-wrap h2{
  background: transparent;
  color: #fff;
  font-size: 3.2em;
  width: 80%;
  margin: 0 auto;
}
.slide-wrap h2 span{
  display: inline-block;
  /*
  background-color: #ffe100;
  */
  color: #fff;
  padding: 0 0.6em;
}
.slide-wrap p{
  color: #fff;
  font-size: 1rem;
  width: 70%;
  margin: 0 auto;
  margin-top: 1em;
}
.slide-wrap .btn_box{
  font-weight: 700;
  font-size: 1rem;
  height: 2.8em;
  line-height: 2.8em;
  text-indent: -6px;
  letter-spacing: -0.04rem;
  margin-top: 1.5em;

  transition: all ease .5s;
}
.slide-wrap .btn_box:after{
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  position: relative;
  left: 6px;

  transition: all ease .5s;
}
.slide-wrap .btn_box:hover:after{
  left: 10px;
}
.slide-img-1{
  background-image: url("../img/slide-img-1.jpg");
}
.slide-img-2{
  background-image: url("../img/slide-img-2.jpg");
}
.slide-img-3{
  background-image: url("../img/slide-img-3.jpg");
}
.slide-img-4{
  background-image: url("../img/main14mm_back.png");
  /*max-width:1920px;*/
}
.slide-img-5{
  background-image: url("../img/slide-img-5.png");
  /*max-width:1920px;*/
}
.slide-img-6{
  background-image: url("../img/slide-img-6-pc.png");
  /*max-width:1920px;*/
}

.slide-img-7{
  background-image: url("../img/DS-CLS9_Back.png");
  /*max-width:1920px;*/
}

.slide-img-8{
  background-image: url("../img/DS-OLBS_Back_PC.png");
  /*max-width:1920px;*/
}

.slide-img-9{
  background-image: url("../img/230504_IPO_back.png");
  /*max-width:1920px;*/
}

.slide-img-10{
  background-image: url("../img/slide-img-10_pc.png");
  /*max-width:1920px;*/
}

.slide-img-11{
    background-image: url("../img/240419_main_VCM_Back.png");
    /*max-width:1920px;*/
}
  
.slide-img-12{
    background-image: url("../img/240520_main_DC_BACK.png");
    /*max-width:1920px;*/
}
.slide-img-13{
  background-image: url("../img/240814_main_13.png");
  /*max-width:1920px;*/
}
.slide-img-15{
  background-image: url("../img/slide-img-15_pc.png");
  /*max-width:1920px;*/
}
.slide-img-16{
  background-image: url("../img/slide-img-16_pc.png");
  /*max-width:1920px;*/
}
.slide-img-17{
  background-image: url("../img/slide-img-17_pc.png");
  /*max-width:1920px;*/
}
.slide-img-18{
  background-image: url("../img/slide-img-18_pc.png");
  /*max-width:1920px;*/
}

.link_geo {position:absolute; bottom:80px; left:45%;}
.mainDevice_PC {display:block;}
.mainDevice_Mobile {display:none;}
@media (max-width: 769px) {
	.slide-img-4{
		background-image: url("../img/main14mm_mobile_back.png");
	}
	.slide-img-5{
	  background-image: url("../img/slide-img-5-mobile.png");
	  /*max-width:1920px;*/
	}
	.slide-img-6{
	  background-image: url("../img/slide-img-6-mobile.png");
	  /*max-width:1920px;*/
	}
	.slide-img-7{
	  background-image: url("../img/DS-CLS9_Back_Mobile.png");
	  /*max-width:1920px;*/
	}
	.slide-img-8{
	  background-image: url("../img/DS-OLBS_Back_Mobile.png");
	  /*max-width:1920px;*/
	}
	.slide-img-9{
	  background-image: url("../img/230504_IPO_mobile_back.png");
	  /*max-width:1920px;*/
	}
	.slide-img-10{
	  background-image: url("../img/slide-img-10_mo.png");
	  /*max-width:1920px;*/
	}
    .slide-img-11{
        background-image: url("../img/240419_main_VCM_mobile_Back.png");
        /*max-width:1920px;*/
  }
    .slide-img-12{
        background-image: url("../img/240520_main_DC_BACK.png");
        /*max-width:1920px;*/
  }
    .slide-img-13{
        background-image: url("../img/240814_main_13_Mo.png");
        /*max-width:1920px;*/
  }
  .slide-img-15{
    background-image: url("../img/slide-img-15_mo.png");
    /*max-width:1920px;*/
  }
  .slide-img-16{
    background-image: url("../img/slide-img-16_mo.png");
    /*max-width:1920px;*/
  }
  .slide-img-17{
    background-image: url("../img/slide-img-17_mo.png");
    /*max-width:1920px;*/
  }
  .slide-img-18{
    background-image: url("../img/slide-img-18_mo.png");
    /*max-width:1920px;*/
  }  
	.slide-img-4 > .slide-wrap > p > center > img, .slide-img-5 > .slide-wrap > p > center > img {
		max-width:350px !important; height:auto !important; width:auto !important;
	}
	.link_geo {position:absolute; bottom:30px; left:40%;}
	.mainDevice_PC {display:none;}
	.mainDevice_Mobile {display:block;}
	.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
	  width: 42px;
	  height: 6px;
	  border-radius: 0;
	}
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 10px;
    left: 0;
    width: 100%;
}
.swiper-pagination {
    position: absolute;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0,0,0);
    z-index: 10;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}
/* products */
.intro-products, .updates{
  background: #f9f8f7;
  padding: 6em 0;
}
.intro-products .prd-grid{
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows : 10px;
}
.intro-products .prd{
  overflow: hidden;
  padding: 40px;
  background-color: #fff;
  height: 440px;
  position: relative;
  transition: all ease .3s;
}
.intro-products .title{
}
.intro-products .title h2, .values h2, .updates h2{
  display: inline-block;
  text-align: center;
  padding: 0 0.6em;
  margin-bottom: 0.6em;
}
.intro-products .title p{ font-size: 1rem; }
.intro-products .all{
  width: 100%;
  height: 240px;
  background: url("../img/product-img-all.jpg") no-repeat;
  background-position: center right;
  background-size: 60%;
  background-color: #ffe100;

  -webkit-transition: background-size .3s ease-out;
  -moz-transition: background-size .3s ease-out;
  -ms-transition: background-size .3s ease-out;
  -o-transition: background-size .3s ease-out;
  transition: background-size .3s ease-out;

}
.intro-products .all a{
  height: 100%;
  font-size: 2rem;
  font-weight: 800;
  transition: all ease .5s;
  padding-left: 40px;
  line-height: 240px;
  display: block;
}
.intro-products .all a span{
  display: block;
  margin-top: 12%;
}
.intro-products .all a i{
  position: relative;
  left: 6px;
  transition: all ease .5s;
}
.intro-products .btn_box{
  font-weight: 700;
  font-size: 0.9rem;
  height: 3.2em;
  line-height: 3.2em;
  text-indent: -6px;
  letter-spacing: -0.04rem;

  transition: all ease .5s;
}
.intro-products .btn_box:after{
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  position: relative;
  left: 6px;

  transition: all ease .5s;
}
.intro-products .prd h4{
  margin-bottom: 0.8em;
  width: 60%;
  font-size: 1.8rem;
  font-weight: 800;
}

.intro-products .prd:hover{
  box-shadow: 0 14px 28px rgba(25,43,57,0.10), 0 10px 10px rgba(25,43,57,0.08);
  transition: all ease .3s;
}
.intro-products .prd img{
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all ease .3s;
}
.intro-products .prd:hover img{
  width: 105%;
  left: -2%;
  transition: all ease .3s;
}
.intro-products .prd:hover .btn_box{
  text-indent: -2px;
}
.intro-products .prd:hover .btn_box:after{
  left: 14px;
}
.intro-products .all:hover a i{
  left: 18px;
  transition: all ease .5s;
}
.intro-products .all:hover{
  background-size: 100%;
  background-size: 68%;
  box-shadow: 0 14px 28px rgba(25,43,57,0.10), 0 10px 10px rgba(25,43,57,0.08);
}

/* values */
.values, .footer-body{
  padding: 6em 0;
}
.values .item > div{
  padding: 2em;
  text-align: center;
  display: grid;
  grid-template-rows: 3fr 1fr;
  grid-gap: 1em;
  border-radius: 3em;
  margin-bottom: 2em;
  transition: all ease .5s;
}
.values .item:hover > div{
  -webkit-box-shadow: 2px 14px 28px rgba(25,43,57,0.10), 0 10px 10px rgba(25,43,57,0.08);
  box-shadow: 2px 14px 28px rgba(25,43,57,0.10), 0 10px 10px rgba(25,43,57,0.08);
  transition: all ease .5s;
}
.values .item img{
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform: scale(0.9);
  margin: 0 auto;
  transition: all ease .5s;
}
.values .item:hover img{
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition: all ease .5s;
}
.values .item h5{
  font-weight: 800;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}
.values .item p{
  width: 94%;
  margin: 0 auto;
  line-height: 1.4;
}

/* latest updates */
.updates a{
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.updates .left{
  background-color: #0a253e;
  background: url("../img/update-img-1.jpg") no-repeat;
  background-size: auto 100%;
  background-position: center;

  transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.updates .left a{
  padding: 40px;

  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0a253e+0,0a253e+100&0+35,1+80 */
  background: -moz-linear-gradient(top,  rgba(10,37,62,0) 0%, rgba(10,37,62,0) 35%, rgba(10,37,62,1) 80%, rgba(10,37,62,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(10,37,62,0) 0%,rgba(10,37,62,0) 35%,rgba(10,37,62,1) 80%,rgba(10,37,62,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(10,37,62,0) 0%,rgba(10,37,62,0) 35%,rgba(10,37,62,1) 80%,rgba(10,37,62,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000a253e', endColorstr='#0a253e',GradientType=0 ); /* IE6-9 */
}
.updates .left .item{
  position: absolute;
  bottom: 40px;
  width: 95%;
}
.updates .item .date{
  color: #bf8c53;
  font-size: 0.95em;
  margin: 0.4em 0;
}
.updates .left .item span{
  display: inline-block;
  padding: 0.5em 2.8em 0.5em 40px;
  margin-left: -40px;
  margin-bottom: 0.2em;
  background: #ffe110;
  font-weight: 700;
  font-size: 1.1rem;
}
.updates .left .item h5{
  color: #fff;
  font-size: 2em;
}
.updates .right a{
  background: #fff;
  margin-top: 30px;

  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;

  background: url("../img/update-img-2.jpg") no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
.updates .right a { max-height:143px; }
.updates .right a .item-wrap{
  background: rgba(10,37,62,0.8);
  overflow: hidden;
  padding: 20px;
}
.updates .right a:nth-child(1){
  margin-top: 0;
}
.updates .right a:hover{
  box-shadow: 0 14px 28px rgba(25,43,57,0.10), 0 10px 10px rgba(25,43,57,0.08);
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
}
.updates .right .item{
  width: 95%;
}
.updates .right .item span{
  display: inline-block;
  background: #ffe110;
  padding: 0.4em 1em;
  font-weight: 700;
}
.updates .right .item h5{
  color: #f9f8f7;
}

.updates .left-2nd a{
  background: #fff;
  margin-top: 30px;

  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background: url("../img/update-img-2.jpg") no-repeat;
  -webkit-background-size: cover;
  background-size: cover;

}
.updates .left-2nd a { max-height:143px; }
.updates .left-2nd a .item-wrap{
  background: rgba(10,37,62,0.8);
  overflow: hidden;
  padding: 20px;
}
.updates .left-2nd a:nth-child(1){
  margin-top: 0;
}
.updates .left-2nd a:hover{
  box-shadow: 0 14px 28px rgba(25,43,57,0.10), 0 10px 10px rgba(25,43,57,0.08);
  -webkit-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -o-transform: scale(1.02);
  transform: scale(1.02);
}
.updates .left-2nd .item{
  width: 95%;
}
.updates .left-2nd .item span{
  display: inline-block;
  background: #ffe110;
  padding: 0.4em 1em;
  font-weight: 700;
}
.updates .left-2nd .item h5{
  color: #f9f8f7;
}
.updates .left:hover{
  background-size: auto 108%;
  box-shadow: 0 14px 28px rgba(25,43,57,0.30), 0 10px 10px rgba(25,43,57,0.20);
}

/* footer */
footer{
  background-color: #0a253e;
  color: #f9f8f7;
}
footer a{
  color: #e3e3e3;
  font-weight: 300;
}
.tail-m{ display: none; }
.footer-body .item > a{
  font-weight: 700;
  display: block;
  margin-bottom: 2em;
  font-size: 1rem;
}
.footer-body .item .last{
  margin-top: 4em;
}
.footer-body .item ul li a{
  display: block;
  margin-bottom: 0.8em;
}
.footer-body .item ul li a:hover{
  text-decoration: underline;
}
.footer-body .sns-list{
  margin-top: 2em;
}
.footer-body .sns-list a{
  font-size: 1.8em;
  display: inline-block;
  margin-right: 6px;
  color: #b7b7b7;
}
.footer-body .sns-list a:hover{
  color: #fff;
}
.footer-tail{
  background-color: #111;
  text-align: center;
  font-weight: 100;
  font-size: 0.8em;
  padding: 0.8em 0;
}

/* ************************************************** */
/* ************* product selection guide ************ */
/* ************************************************** */


.pg-title{
  position: relative; padding: 4.2em 0;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center;
  margin-top: 100px;
}

.pg-title h2{
  text-align: center;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  position: relative;
  z-index: 2;
  font-size: 3.6rem;
  text-transform: capitalize;
}
.pg-title:after{
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(10, 37, 62, 0.86);
}
.psg-wrap .pg-title{
  background-image: url("../img/pg-title-psg.jpg");
}
.pdt-main-wrap .pg-title, .pdt-mid-wrap .pg-title{
  background-image: url("../img/pg-title-pdt.jpg");
}
.app-main-wrap .pg-title{
  background-image: url("../img/pg-title-app.jpg");
}
.down-wrap .pg-title{
  background-image: url("../img/pg-title-dw.jpg");
}
.tech-wrap .pg-title, .tech-guide-wrap .pg-title{
  background-image: url("../img/pg-title-tech.jpg");
}
.com-main-wrap .pg-title{
  background-image: url("../img/pg-title-com-2.jpg");
}
.com-about-wrap .pg-title{
  background-image: url("../img/pg-title-com-2.jpg");
}
.com-global-wrap .pg-title{
  background-image: url("../img/pg-title-global.jpg");
  background-position: center 100%;
}
.gal-theater-wrap .pg-title{
  background-image: url("../img/pg-title-thea-2.jpg");
  background-position: center center;
}
.gal-theater-wrap .pg-title:after{
  background: rgba(10, 37, 62, 0.66);
}
.com-contact-wrap .pg-title{
  background-image: url("../img/pg-title-contact.jpg");

}

.pg-path{
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}
.pg-path a{ color: #fff; }
.pg-path a:after{
  content: '>';
  padding: 0 2px 0 5px;
}
.pg-path a:last-child:after{
  content: '';
}
.psg-wrap h3{
  margin-top: 1.2em;
  margin-bottom: 1em;
  display: inline-block;
}
.spec{
  margin: 1em 0;
  display: table;
  border-collapse: collapse;
  border-top: 3px solid #e3e3e3;
  border-bottom: 3px solid #e3e3e3;
}
.spec div{
  display: table-row;
  border-bottom: 1px solid #e3e3e3;
}
.spec dt{
  padding: 1.2em 1.4em;
  font-weight: 700;
  background: #f9f8f7;
  width: 20%;
  display: table-cell;
  font-size: 1em;
}
.spec dd{
  display: table-cell;
  padding: 0.6em 1.4em;
  vertical-align: middle;
  line-height: 1.8;
  font-size: 0.95em;
}
.spec .exam{
  padding: 0.3em 1.4em;
  font-style: italic;
}
.howto{ line-height: 1.6; }
.howto div{ margin-bottom: 3em; }
.howto h4{
  font-weight: 800;
  margin-bottom: 0.6em;
  color: #0f365a;
}
.howto p{ margin-bottom: 1em; text-indent: 6px; }
.howto ul{
  width: 100%;
  max-width: 400px;
  background: #f9f8f7;
  padding: 1.6em;
  border-radius: 30px;
  list-style-type: circle;
  padding-left: 3.6em;
  margin: 1em 0;
}
.howto ul li{
  padding-bottom: 0.5em;
}
.select-question ul{
  list-style: none;
  max-width: 520px;
  width: 38%;
  display: inline-block;
  margin-right: 2%;
  vertical-align: top;
}
.select-question img{
  width: 59%;
  max-width: 800px;
}
.note span{
  display: inline-block;
  float: left;
  padding: 0.2em 0.8em;
  background-color: #e30e1f;
  color: #fff;
  font-weight: 700;
  margin-bottom: 1em;
}
.note span i{ margin-right: 5px; }
.note p{
  display: inline-block;
  width: 90%;
  padding-left: 1em;
  text-indent: 0;
  color: #e30e1f;
}
/* ************************************************** */
/* ************* Prodicts Main ************ */
/* ************************************************** */
.pdt-main-wrap{ background-color: #f9f8f7; }
.pdt-main-wrap .container{ padding: 4em 0; }
.pdt-wrap{
  background-color: #fff;
  padding: 40px;
  height: 500px;
  margin: 30px 0;
  overflow: hidden;
  position: relative;
  transition: all ease .5s;
}
.pdt-wrap img{
  position: absolute;
  right: -100px;
  width: 50%;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.pdt-wrap .pdt-container{
  width: 55%;
  position: relative;
  height: 100%;
}
.pdt-wrap .pdt-container p{
  margin: 1em 0.4em;
  line-height: 1.8;
  font-size: 1em;
  word-wrap: break-word;
  white-space: pre-wrap;
}
.pdt-wrap .btn_box{
  font-weight: 700;
  font-size: 0.9rem;
  height: 3.2em;
  line-height: 3.2em;
  text-indent: -6px;
  letter-spacing: -0.04rem;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 3em;

  transition: all ease .5s;
}
.pdt-wrap:hover{
  box-shadow: 0 14px 28px rgba(25,43,57,0.10), 0 10px 10px rgba(25,43,57,0.08);
  transition: all ease .5s;
}
.pdt-wrap .btn_box:after{
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  position: relative;
  left: 6px;

  transition: all ease .5s;
}
.pdt-wrap .btn_box:hover:after{
  left: 14px;
}

/* ************************************************** */
/* ************* product mid ************ */
/* ************************************************** */

.pdt-mid-top{
  background: #f9f8f7;
}
.pdt-mid-wrap .container{ padding: 3em 0; }
.needpopup img{ width: 100%; }
.pdt-mid-top .mid-desc p{ font-size: 1rem; line-height: 1.6; word-wrap: break-word; word-break:  break-word; text-indent: 1em; padding-bottom: 1em; }
.pdt-mid-top .mid-img img{ width: 100%; }
.pdt-mid-top .mid-list{ overflow: hidden; }
.pdt-mid-top .mid-list a{
  height: 2.6em;
  line-height: 2.6em;
  font-size: 0.95rem;
  margin-bottom: 10px;
  width: 500px;
}
.pdt-mid-top .mid-list a i{
  margin-left: 10px;
  transition: all ease .5s;
}
.pdt-mid-top .mid-list a:hover i{ margin-left: 20px; transition: all ease .5s; }
 #productConfig{ margin-bottom: 2em; }
.pdt-mid-wrap h3{ margin-bottom: 1em; }
.pdt-mid-wrap .item-top p{ font-size: 1rem; line-height: 1.6; word-wrap: break-word; word-break:  break-word; text-indent: 1em; padding-bottom: 1em; }
.pdt-mid-wrap .item-top p span{ color: #bf8c53; }
.pdt-mid-wrap .item-top img{ width: 100%; }

div.gallery {border: 1px solid #e3e3e3; overflow: hidden;}
div.gallery:hover {border: 1px solid #e3e3e3;}
div.gallery .desc{
  font-weight: 700;
  word-wrap: break-word;
  word-break: break-word;
  font-size: 1.1rem;
}
div.gallery:hover .desc {background-color:#ffe100; -webkit-transition: all 500ms ease-out;-moz-transition: all 500ms ease-out;-o-transition: all 500ms ease-out;transition: all 500ms ease-out; -ms-text-align-last: auto; }
div.gallery img {width: 100%;height: auto;   -webkit-transition: all ease .5s; -o-transition: all ease .5s; transition: all ease .5s;}
div.gallery:hover img{
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);

  -webkit-transition: all ease .5s;
  -o-transition: all ease .5s;
  transition: all ease .5s;
}
.desc {padding: 15px; text-align: center; background-color:#fff;}
div.gallery .desc span{ display: block; font-size: 1rem; }

.cB::after {display:block; content:''; clear:both;}
.responsive_gallery {padding: 0 6px;float: left;width: 24.99999%; margin-top:15px;}

/* ************************************************** */
/* ************* Product Detail ************ */
/* ************************************************** */

.pdt-detail-wrap{ margin-top: 100px; }
.pdt-detail-top{
  background: #f9f8f7;
  padding: 4em 0;
}
.pdt-detail-top .pg-path{ text-align: left; margin-bottom: 0.6em; margin-left: 0.6em; }
.pdt-detail-top .pg-path a{ color: #7b7b7b; }
.pdt-detail-top h2{
  font-size: 3rem;
  padding: 0.3em;
  margin-bottom: 1.4rem;
  text-transform: capitalize;
}
.pdt-detail-top p{
  font-size: 1rem; line-height: 1.6; word-wrap: break-word; word-break:  break-word; text-indent: 1em; padding-bottom: 1em;
}
.pdt-detail-top h2 span{ display: block; font-size: 2rem; text-transform: capitalize; }
.pdt-detail-top img{ width: 100%; }
.hlight{ color: #bf8c53; }
.pdt-detail-nav{ background: #0a253e; width: 100%;}
.pdt-detail-nav ul{ overflow: hidden; }
.pdt-detail-nav ul li{ float: left; }
.pdt-detail-nav ul li a{ color: #fff; display: block; padding: 1em 1.4em; font-weight: 400; -webkit-transition: all ease .3s; -o-transition: all ease .3s; transition: all ease .3s; }
.pdt-detail-nav ul li a:hover{ color: #111; background: #ffe110; -webkit-transition: all ease .3s; -o-transition: all ease .3s; transition: all ease .3s; }
.pdt-detail-nav ul li a.active{
  color: #111;
  background: #ffe110;
}
.sticky{
  position: fixed;
  top: 100px;
  z-index: 990;
}
.sticky + .pdt-detail-content{
  margin-top: 100px;
}
.pdt-detail-content{ margin: 4em 0; }
.pdt-detail-content .section{ margin-bottom: 5em; clear: both; }
.pdt-detail-content .section:after{ content: ''; clear: both; width: 100%; height: 1px; }
.pdt-detail-content .section h4{
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.6em;
  color: #0a253e;
}
.tab_menu{
  overflow: hidden;
  border-bottom: 6px solid #ffe110;
}
.tab_menu li{
  float: left;
}
.tab_menu li a{
  display: block;
  padding: 0.6em 3em;
  font-size: 1rem;
  background: #d7d7d7;
  color: #777;
  border-right: 3px solid #fff;
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}
.tab_menu li:last-child a{
  border-right: none;
}
.tab_menu li.on a{
  background: #ffe110;
  color: #111;
  font-weight: 700;
  border-radius: 20px 20px 0 0;
}
.cont{
  padding: 3em 1em;
  overflow: hidden;
}
.cont .left, .cont .right{ float: left; }
.cont .left img, .cont .right img{ width: 100%; max-width: 1000px; display: block; margin: 0 auto; }
.cont .left{
  width: 23%;
  border: 1px solid #e3e3e3;
}
.cont .right{
  width: 77%;
}
.speed-thrust-curves, .torque-curves{ display: block; width: 100%; max-width: 1200px; margin: 0 auto; }
.draw-3d .btn_box{
  font-size: 1.8em;
  line-height: 2em;
  font-weight: 700;
  margin-top: 1em;
  width: 30%;
  text-align: center;
}
.draw-3d div{
  display: inline-block;
  vertical-align: top;
  background: #f9f8f7;
  width: 65%;
  margin-left: 1.4em;
  border-radius: 2em;
  border: 1px solid #e3e3e3;
}
.draw-3d div img{
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  display: block;
}
.pdt-detail-content .option{
  overflow: hidden;
  margin-bottom: 4em;
  padding-bottom: 4em;
  border-bottom: 3px solid #e3e3e3;
}
.pdt-detail-content .option:last-child{ border: none; padding-bottom: 0; }
.pdt-detail-content .option h5, .pdt-detail-content .option .opt-img{ /* float: left; */ }
.pdt-detail-content .option h5{
  width: 100%;
  color: #2d3e50;
}
.pdt-detail-content .option h5:before{
  content: '\f0c8';
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  color: #ffe110;
  margin-right: 0.5em;
}
.pdt-detail-content .option .opt-img{
  width: 100%;
}
.pdt-detail-content .option .opt-img img{ width: 100%; max-width: 1200px; display: block; margin: 0 auto;}
.btn-top{
  background: #ffe110;
  border: 0;
  font-size: 2rem;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  display: none;
}
.opt-teflon{
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.opt-teflon img{
  width: 45%;
  max-width: 500px;
  margin-left: 3%;
}
.opt-teflon > div{
  display: inline-block;
  line-height: 1.6;
  width: 50%;
  vertical-align: middle;
  font-size: 1.05em;
  padding: 5% 3%;
  background: #f7f8f9;
  border-radius: 50px;
  border:1px solid #efefef;
}
.opt-teflon > div p{
  margin-bottom: 0.8em;
}

/* ************************************************** */
/* ************* Applications Main ************ */
/* ************************************************** */
.app-main-wrap .container{
  padding: 3em 0;
}
.app-list a:hover div{
  box-shadow: 0 14px 28px rgba(25,43,57,0.10), 0 10px 10px rgba(25,43,57,0.08);
  transition: all ease .5s;
}
.app-list a:hover .app-item{
  transition: all ease .3s;
  background-size: 105%;
}
.app-item{
  float: left;
  width: 31%;
  margin: 0.8%;
  position: relative;
  border: 1px solid #efefef;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100%;
  transition: all ease .3s;
}
.app-item:after{
  content: "";
  display: block;
  padding-bottom: 100%;
}
.app-item .inner{
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 5%;
}
.app-detail-wrap .pg-title{
  height: 420px;
  -webkit-background-size: 100%;
  background-size: 100%;
  background-position: center bottom;
}
.app-detail-wrap .pg-container{
  position: absolute;
  width: 100%;
  bottom: 20%;
}
.app-detail-wrap .pg-title:after{
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0a253e+0,0a253e+100&0+35,1+80 */
  background: -moz-linear-gradient(top,  rgba(10,37,62,0) 0%, rgba(10,37,62,0) 0%, rgba(10,37,62,1) 80%, rgba(10,37,62,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  rgba(10,37,62,0) 0%,rgba(10,37,62,0) 0%,rgba(10,37,62,1) 80%,rgba(10,37,62,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  rgba(10,37,62,0) 0%,rgba(10,37,62,0) 0%,rgba(10,37,62,1) 80%,rgba(10,37,62,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000a253e', endColorstr='#0a253e',GradientType=0 ); /* IE6-9 */

}
.app-detail-wrap .row{
  padding-top: 3em;
  padding-bottom: 3em;
  text-align: center;
}
.app-detail-wrap h3{
  display: inline-block;
  text-align: center;
  margin-bottom: 1em;
}
.app-detail-wrap h4{
  font-size: 2.2rem;
  padding-bottom: .6em;
  font-weight: 800;
}
.app-detail-wrap h5{
  color: #0f365a;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1em;
}
.app-detail-wrap p{
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 4em;
  line-height: 1.6;
}
.app-motor-list{
  padding: 2em;
}
.app-motor-list img{
  width: 54%;
  margin-right: 3%;
}
.app-motor-list ul{
  display: inline-block;
  width: 40%;
  padding-top: 4em;
  padding-bottom: 4em;
  vertical-align: middle;
  text-align: left;
}
.app-motor-list ul li{
  padding-bottom:0.8rem;
}
.certi-list > div{
  float: left;
  width: 15%;
  margin: 1rem .5%;
}
.certi-list div h6{
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1em;
  font-weight: 700;
  color: #0f365a;
  padding: 0 .5em;
}
.certi-list div a{
  width: 100%;
  display: block;
  background: #fff;
  position: relative;
  border-radius: 50%;
  overflow: hidden;

  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}
.certi-list div a:after{
  content: "";
  display: block;
  padding-bottom: 100%;
}
.certi-list div a img{
  width: 66%;
  display: block;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: 50%;

  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);

  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}
.certi-list div a .overlay{
  position: absolute;
  width: 100%;
  height: 25%;
  bottom: -25%;
  background: rgba(25, 43, 57, 0.88);
  text-align: center;
  padding-top: 6px;
  color: #efefef;
  z-index: 1;

  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}
.certi-list div a:hover{
  box-shadow: 0 14px 28px rgba(25,43,57,0.30), 0 10px 10px rgba(25,43,57,0.10);
}
.certi-list div a:hover img{
  width: 78%;
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}
.certi-list div a:hover .overlay{
  bottom: 0;
}
.app-adv{ padding: 2em 0; }
.app-adv .row > div{
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-top: 4em;
}
.app-adv .row > div img{
  width: 37.3333%;
  max-width: 300px;
  margin-left: 4%;
  float: right;
}
.app-adv .row > div:nth-child(odd) img{
  margin-left: 0;
  margin-right: 4%;
  float: left;
}
.app-adv .row > div:nth-child(1){
  margin-top: 0;
  padding-top: 0;
  border: 0;
}
.app-adv .row > div > div{
  width: 58%;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  height: 300px;
}
.app-adv .row > div > div > div{
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}
.app-adv .row > div > div p{
  margin-bottom: 0;
}
.pdt-related{
  overflow: hidden;
  padding: 40px;
  background-color: #fff;
  position: relative;
  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
  width: 48%;
  height: 300px;
  border-radius: 40px;
  float: left;
  margin: .8%;
}
.pdt-related:hover{
  box-shadow: 0 14px 28px rgba(25,43,57,0.10), 0 10px 10px rgba(25,43,57,0.08);
  transition: all ease .3s;
}
.pdt-related h5{
  margin-bottom: 0.8em;
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
  text-align: left;
  position: relative;
  z-index: 2;
}
.pdt-related .btn_box{
  font-weight: 700;
  font-size: 0.9rem;
  height: 3.2em;
  line-height: 3.2em;
  text-indent: -6px;
  letter-spacing: -0.04rem;

  transition: all ease .5s;

  position: absolute;
  z-index: 3;
  left: 40px;
}
.pdt-related .btn_box:after{
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  position: relative;
  left: 6px;

  transition: all ease .5s;
}
.pdt-related:hover .btn_box{
  text-indent: -2px;
}
.pdt-related:hover .btn_box:after{
  left: 14px;
}
.pdt-related img{
  width: 78%;
  position: absolute;
  right: -5%;
  bottom: 0;
  transition: all ease .3s;
}
.pdt-related:hover img{
  width: 82%;
  transition: all ease .3s;
}
.app-main-wrap{
  background: #f9f8f7;
}
.app-cate > div{
  display: flex;
  background: #fff;
  padding: 2em;
  margin-bottom: 3em;
  transition: all ease .3s;
}
.app-cate > div:nth-child(even){
  flex-direction: row-reverse;
}
.app-cate > div:hover{
  box-shadow: 0 14px 28px rgba(25,43,57,0.10), 0 10px 10px rgba(25,43,57,0.08);
  transition: all ease .3s;
}
.app-cate > div img{
  width: 50%;
}
.app-cate > div > div{
  width: 50%;
  padding-left: 2em;
}
.app-cate > div:nth-child(even) > div{
  padding: 0;
  padding-right: 2em;
}
.app-cate h2{
  margin-bottom: 1.4rem;
  font-size: 2.4em;
}
.app-cate p{
  font-size: 1.04rem;
  margin-bottom: 0.6em;
  text-indent: 0.4em;
  line-height: 1.6;
  padding: 0 0.2em;
}

/* ************************************************** */
/* ************* Downloads Main ************ */
/* ************************************************** */
.down-wrap .container{
  margin-top: 2em;
  margin-bottom: 2em;
}
.category{ overflow: hidden; }
.category li{
  float: left;
  width: 25%;
}
.category li a{
  display: block;
  font-size: 1.1rem;
  padding: 0.6em 0;
  color: #f9f8f7;
  background: #0a253e;
  border-right: 1px solid #ccc;
  text-align: center;
}
.category li:last-child a{ border: 0; }
.cate-list{
  padding-top: 2em;
  padding-bottom: 3em;
  text-align: center;
}
.cate-list:last-child{ border: 0; }
.cate-list div{
  display: inline-block;
  width: 19.4444%;
  margin-right: 0.2%;
}
.cate-list div:last-child{ margin-right: 0; }
.cate-list div a{
  display: block;
  width: 100%;
  position: relative;
  text-align: center;
  background-position: center;
  background-size: auto 100%;
  border: 1px solid #ededed;

  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}
.cate-list div a img{
  display: block;
  width: 150px;
  position: absolute;
  top: 50%;
  left: 50%;

  -webkit-transform: translate(-50%, -70%);
  -ms-transform: translate(-50%, -70%);
  -o-transform: translate(-50%, -70%);
  transform: translate(-50%, -70%);

  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}
.cate-list div a:hover{
  border-color: #ffd503;
  background-size: auto 120%;

  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}
.cate-list div a:hover h4{
  color: #2d3e50;
  background-color: #ffe110;
}
.cate-list div a:hover img{
  width: 170px;

  -webkit-transition: all ease .3s;
  -o-transition: all ease .3s;
  transition: all ease .3s;
}
.cate-list div a h4{
  display: block;
  text-align: center;
  width: 100%;
  position: absolute;
  bottom: 0;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  background-color: #0a253e;
  padding: 1em;
}
.cate-list div a:after{
  content: "";
  display: block;
  padding-bottom: 100%;
}
.down-list .img-down-hover{
  width: 26%;
  max-width: 352px;
  display: block;
  vertical-align: top;
  margin-right: 2%;
  border: 1px solid #ccc;
  float: left;
}
.down-list .img-down-hover img{
  width: 100%;
  display: block;
  position: relative;
  background-color: #fff;
}
.down-list table{
  width: 72%;
  max-width: 980px;
  float: right;
}
.down-list th:nth-child(1){ width: 54%; }
.down-list th:nth-child(2){ width: 10%; }
.down-list th:nth-child(3){ width: 13%; }
.down-list th:nth-child(4){ width: 23%; }
.down-list td{ padding: 10px 2em; }
.down-list i{ color: #0a253e; font-size: 1.1rem; }
.down-list a:hover{
  color: #bf8c53;
}
.down-list a img{ display: none; }
.down-list .btn_box{
  height: 2.6em;
  line-height: 2.6em;
  font-weight: 600;
}
.down-list .btn_box:after{
  content: '\f019';
  font-family: "Font Awesome 5 Free";
  position: relative;
  font-weight: 600;
  color: #0a253e;
  left: 10px;
  font-size: 1.1rem;
}
.down-list .btn_box:hover{
  color: #fff;
  background-color: #0a253e;
}
.down-list .btn_box:hover:after{
  color: #fff;
}
.down-wrap .vg{
  background: #0a253e;
  height: 320px;
  overflow: hidden;
  position: relative;
  margin-bottom: 3em;
}
.down-wrap .vg > div{
  position: absolute;
  top: 50%;
  left: 4%;
  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.down-wrap .vg > div h4{
  font-size: 3.2em;
  color: #fff;
}
.down-wrap .vg > div a{
  height: 3.4em;
  line-height: 3.4em;
  font-weight: 700;
  padding: 0 4em;
  margin-top: 2em;
  background: #ffe110;
  font-size: 1.1rem;
}
.down-wrap .vg > div a:after{
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  position: relative;
  left: 10px;
  transition: all ease .5s;
}
.down-wrap .vg > div a:hover:after{
  left: 18px;
}
.down-wrap .vg img{
  position: absolute;
  width: 70%;
  max-width: 900px;
  right: -5%;
  top: 50%;

  -webkit-transform: translateY(-50%);
     -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}
.vg-select{
  text-align: center;
  background: #f7f8f9;
  margin-top: 1em;
  margin-bottom: 2em;
  border-radius: 1em;
  overflow: hidden;
}
.vg-cate{
  display: inline-block;
  margin: 1em 0;
  margin-right: 1em;
  padding-right: 1em;
  border-right: 1px solid #ccc;
}
.vg-cate:last-child{
  border-right: 0;
  margin-right: 0;
  padding-right: 0;
}
.vg-cate select{
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  padding: 0.3em 0.8em;
}
.vg-para{
  text-align: center;
  margin-bottom: 2em;
}

/* ************************************************** */
/* ************* Technology Main ************ */
/* ************************************************** */
dd ul{
  margin-left: 1em;
  margin-top: 1em;
  margin-bottom: 1em;
}
.tech-wrap .container{ margin: 2em auto; }
.tech-wrap img{
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.tech-wrap .spec img{
  margin: 0;
  max-width: 600px;
}
.tech-wrap .tbl_wrap .tbl-vertical{ border: 0; width: 100%; margin-top: 1em; }
.tech-wrap .tbl_wrap .tbl-vertical th:nth-child(1){
  width: 49%;
}
.tech-wrap .tbl_wrap .tbl-vertical th{ width: 17%; }
.tech-wrap table{ border: 0; }
.tech-wrap tr:nth-child(even){ background: #fff; }
.tech-wrap table img{ max-width: 500px; }
.spec-vertical{
  border-top: 3px solid #e3e3e3;
  border-bottom: 3px solid #e3e3e3;
}
.spec-vertical h5{
  padding: 1.2em 1.4em;
  font-weight: 700;
  background: #f9f8f7;
  width: 100%;
  font-size: 1em;
}
.spec-vertical > div{
  padding: 1em 1.4em;
  vertical-align: middle;
  line-height: 1.8;
  font-size: 0.95em;
}
.Installation-Guide img {width:100%; height:auto; margin: 0; max-width:700px; }
.tech-guide{ margin-top: 2em; }
.tech-guide h3{ margin-bottom: 1em; }
.tech-guide h4{
  font-weight: 800;
  color: #0f365a;
  text-align: center;
}
.tech-guide img{
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
#Installation-Guide img{
  max-width: 700px; margin: 0 auto;
}
.tech-guide .row > div{ margin-bottom: 4em; }
#Stepping-Sequence table{
  width: 100%;
}
.stepping-table{
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 3em;
  position: relative;
}
.stepping-table:before{
  content: '\f30b extend CW \f30b';
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  display: block;
  position: absolute;
  font-size: 1.1rem;
  top: 50%; left: -90px;
  -webkit-transform: rotateZ(90deg);
     -moz-transform: rotateZ(90deg);
      -ms-transform: rotateZ(90deg);
       -o-transform: rotateZ(90deg);
          transform: rotateZ(90deg);
}
.stepping-table:after{
  content: '\f30b retract CCW \f30b';
  font-weight: 600;
  font-family: "Font Awesome 5 Free";
  display: block;
  position: absolute;
  font-size: 1.1rem;
  top: 50%; right: -90px;
  -webkit-transform: rotateZ(-90deg);
     -moz-transform: rotateZ(-90deg);
      -ms-transform: rotateZ(-90deg);
       -o-transform: rotateZ(-90deg);
          transform: rotateZ(-90deg);
}
#Operation-Guides ul{
  list-style: decimal;
  max-width: 1200px;
  width: 100%;
  display: block;
  background: #f9f8f7;
  padding: 2em;
  border-radius: 30px;
  padding-left: 4.6em;
  margin: 1em auto;
  line-height: 1.8;
  border: 1px solid #cfcfcf;
}
#Operation-Guides ul li{
  padding-bottom: 0.5em;
}

/* ************************************************** */
/* ************* Gallery Main ************ */
/* ************************************************** */
.gal-theater-wrap .bg-gray{
  background-color: #e3e3e3;
}
.gal-theater-wrap .container{
  padding: 3em 0;
}
.m-video-wrap{
  display: none;
}
.video-wrap{
  overflow: hidden;
  background: #fff;
  border: 1px solid #cecece;
}
.video-section{
  width: 70%;
  height: 480px;
  float: left;
  position: relative;
}
.video-section video{
  width: 100%;
  height: 100%;
  background: #000;
}
.video-list{
  width: 30%;
  float: left;
  height: 480px;
  overflow:hidden;
}
.video-list ul{
  width: 100%;
  height: 100%;
  overflow:hidden;
  overflow-y:scroll;
}
.video-list ul::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
.video-list ul::-webkit-scrollbar-track {
  background-color: #efefef;
}
.video-list ul::-webkit-scrollbar-thumb {
  border-radius: 1em;
  background-color: #bbb;
}
.video-list ul::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}
.video-list ul > div{
  padding: .45em 1.15em;
  background: #0a253e;
  color: #f9f8f7;
  font-size: 1.16rem;
  font-weight: 700;
  letter-spacing: -1px;
}
.video-list ul > div i{
  margin-left: 8px;
}
.video-list ul li{
  cursor: pointer;
  padding: .55em 1.2em;
  border-bottom: 1px solid #ececec;
  color: #555;

  -webkit-transition: all ease .3s;
     -moz-transition: all ease .3s;
      -ms-transition: all ease .3s;
       -o-transition: all ease .3s;
          transition: all ease .3s;
}
.video-list ul li:hover{
  background: #e3e3e3;
  color: #111;

  -webkit-transition: all ease .3s;
     -moz-transition: all ease .3s;
      -ms-transition: all ease .3s;
       -o-transition: all ease .3s;
          transition: all ease .3s;
}
.video-list ul li:before{
  content: '\f04b';
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  position: relative;
  left: -60px;
  transition: all ease .5s;
  font-size: 0.8rem;
  color: #fff;
}
.video-list ul li:hover:before{
  left: -8px;
  color: #0a253e;
}
.video-list ul li.active{
  background: #ffe110;
  color: #111;
  border-bottom: 1px solid #ffe110;
}
.video-list ul li.active:before{
  left: -8px;
  color: #0a253e;
}
.video-content{
  border: 1px solid #cecece;
  border-top: 0;
}
.video-desc{
  background: #fff;
  padding: 1em 1.4em;
  font-size: 0.95rem;
}
.video-desc h3{
  font-size: 1.65rem;
  padding: 0 0.5rem;
  border: 0;
}
.video-desc > div{
  padding: 0.5rem 0.6rem;
}
.video-desc p{
  line-height: 1.6;
  padding-bottom: 0.2rem;
  color: #454545;
}
.video-desc .btn_box{
  line-height: 2.2em;
  font-weight: 700;
  margin-top: 1em;
}
.m-video-contents .video-desc{
  margin-bottom: 1.2em;
  border: 1px solid #cecece;
}
.m-video-contents video{
  width: 100%;
  height: 380px;
  background: #000;
  margin-bottom: 1em;
}

/* ************************************************** */
/* ************* Company Main ************ */
/* ************************************************** */
.com-main-wrap .pg-title{
  /* padding: 8em 0; */
  background-position: 0 92%;
}
.com-main-wrap .container{
  padding: 3em 0;
}
.com-intro h2{
  background-color: rgba(0, 0, 0, 0);
  padding: 0;
  width: 30%;
  float: left;
  font-size: 2.4rem;
  letter-spacing: -1px;
}
.com-intro div{
  float: left;
  width: 70%;
}
.com-intro p{
  line-height: 1.6;
  margin-top: 0.6em;
}
#About-Dings{ overflow: hidden; }
#About-Dings .container{
  padding-bottom: 2em;
}
#About-Dings > img{
  display: block;
  width: 98%;
  margin: 0 auto;
  position: relative;
  top: 1em;
}
.noti-list{
  margin-top: 3em;
}
.noti-list .noti-container{
  width: 48%;
  margin-right: 2%;
  display: inline-block;
  padding: 2em 2.4em;
  position: relative;
  height: 440px;

  background-repeat: no-repeat;
  background-position: bottom center;
  background-size: 100%;
}
.noti-list .noti-container:nth-child(even){ margin: 0; }
.noti-list .noti-container:nth-child(1){ margin-bottom: 2%; }
.noti-list .noti-container:after{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0; left: 0;

  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#0a253e+0,0a253e+100&0+35,1+80 */
  background: -moz-linear-gradient(bottom,  rgba(10,37,62,0) 0%, rgba(10,37,62,0) 20%, rgba(10,37,62,1) 75%, rgba(10,37,62,1) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(bottom,  rgba(10,37,62,0) 0%,rgba(10,37,62,0) 20%,rgba(10,37,62,1) 75%,rgba(10,37,62,1) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to top,  rgba(10,37,62,0) 0%,rgba(10,37,62,0) 20%,rgba(10,37,62,1) 75%,rgba(10,37,62,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000a253e', endColorstr='#0a253e',GradientType=0 ); /* IE6-9 */
}
.noti-list .noti-content{
  position: relative;
  z-index: 1;
  color: #fff;
}
.noti-list .noti-content h3{
  border: 0;
  padding: 0;
  width: 60%;
}
.noti-list .noti-content p{
  line-height: 1.6;
  margin-top: 1em;
}
.com-main-wrap .btn_box{
  padding: 0 3em;
  height: 2.8rem;
  line-height: 2.8rem;
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 2em;
}
.com-main-wrap .btn_box:after{
  content: '\f054';
  font-family: "Font Awesome 5 Free";
  position: relative;
  left: 6px;
  transition: all ease .5s;
}
.com-main-wrap .btn_box:hover:after{
  left: 10px;
  transition: all ease .5s;
}
#Global-Sales-Network{
  color: #f9f8f7;
  overflow: hidden;
  position: relative;
  padding-bottom: 14em;
}
#Global-Sales-Network .com-intro{
  position: relative;
  z-index: 2;
}
#Global-Sales-Network img{
  position: absolute;
  left: 5%;
  bottom: -30%;
  z-index: 1;
}
@media (max-width: 769px){
#Global-Sales-Network img{
  position: absolute;
  bottom:20px;
  z-index: 1;
  width:90%;
}
}
#Global-Sales-Network ul{
  margin-top: 1em;
  font-size: 0.9rem;
  list-style: circle;
  margin-left: 2%;
}
#Global-Sales-Network ul li{
  float: left;
  width: 25%;
  padding: 0.2em 0;
}
#Global-Sales-Network ul li strong{
  color: #ffe110;
}
#Contact-Us{
  position: relative;
  overflow: hidden;
}
#Contact-Us h2{
  display: inline-block;
  margin-bottom: 1em;
  font-size: 2.2rem;
}
#Contact-Us ul{
  list-style: circle;
  margin-left: 2%;
  margin-top: 1em;
}
#Contact-Us ul li{
  padding: 0.2em 0;
}
#Contact-Us .com-contact{
  width: 50%;
  float: left;
  margin-right: 2%;
}
#Contact-Us img{
  width: 48%;
  float: left;
}
.com-about-wrap .pg-title{
  padding: 8em 0;
  background-position: 100% 2%;
}
.com-about-wrap .pg-title h2 img{
  max-width: 470px;
  vertical-align: sub;
}
.com-about-wrap .pg-title:after{
  background: rgba(10, 37, 62, 0.56);
}
.com-about-wrap .container{
  padding-top: 2em;
  padding-bottom: 3em;
}
.about-intro{
  text-align: center;
}
.about-intro img{ width: 100%; }
blockquote{
  margin: 3rem auto;
  padding: 30px;
  width: 100%;
  max-width: 600px;
  font-size: 2rem;
  font-weight: 900;
  background-color: #FFE110;
  color: #111;
  box-shadow: 0 5px 2px rgba(25, 43, 57,0.4);
  position: relative;
}
.quotes{
  position: absolute;
  color: rgba(255,255,255,0.6);
  font-size: 5rem;
  font-weight: 700;
}
.leftq{
  top: -25px;
  left: 5px;
}
.rightq{
  bottom: -10px;
  right: 5px;
}
.about-intro p{
  width: 65%;
  margin: 0 auto;
  padding-bottom: 1.8rem;
  line-height: 1.8;
}
.about-intro .name{
  color: #666;
  font-weight: 700;
}
.com-introduction > div{
  width: 50%;
  margin-right: 2%;
  float: left;
}
.com-introduction > div h3{
  margin-bottom: 1.2em;
}
.com-introduction > div p{
  padding-bottom: 1rem;
  line-height: 1.6;
}
.com-introduction img{
  width: 48%;
}
.world-map img{
  display: block;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.com-global-wrap .container{
  padding-top: 1em;
  padding-bottom: 2em;
}
.location-nav ul{
  overflow: hidden;
  padding: 2em 0;
}
.location-nav ul li{
  float: left;
  width: 25%;
}
.location-nav ul li a{
  display: block;
  text-align: center;
  padding: 0.6em 0;
  font-size: 1.2rem;
  font-weight: 700;
  border: 1px solid #e3e3e3;
  width: 94%;
  margin: 0 auto;

  -webkit-transition: all ease .3s;
     -moz-transition: all ease .3s;
      -ms-transition: all ease .3s;
       -o-transition: all ease .3s;
          transition: all ease .3s;
}
.location-nav ul li a span{
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #bf8c53;
}
.location-nav ul li a i{
  display: block;
  margin-top: 4px;
  color: #e7ac32;
}
.location-nav ul li a:hover{
  border-color: #ffe110;
  background-color: #ffe110;

  -webkit-transition: all ease .3s;
     -moz-transition: all ease .3s;
      -ms-transition: all ease .3s;
       -o-transition: all ease .3s;
          transition: all ease .3s;
}
.location-wrap{
  position: relative;
  overflow: hidden;
}
.location-part{
  margin: 2em 0;
  overflow: hidden;
  border-bottom: 1px solid #ececec;
}
.location-part h2{
  width: 32%;
  margin-right: 2%;
  float: left;
  font-size: 1.4rem;
  padding: 0.5rem 1em;
  background-color: #fff;
  border-right: 8px solid #ffe110;
}
.location-part > div{
  width: 66%;
  float: left;
  padding-bottom: 1em;
  /* border-bottom: 1px solid #ececec; */
}
.location-part > div p{
  margin-bottom: 0.6rem;
}
.location-part > div p strong{
  font-weight: 700;
  display: inline-block;
  width: 84px;
}
.location-part > div p a{
  color: #bf8c53;
  text-decoration:  underline;
}
.branch .location-part h2{
  border-right: 8px solid #2d3e50;
}
.com-contact-wrap .container{
  padding: 3em 0;
}
.contact-form{
  width: 70%;
  margin-right: 2%;
  float: left;
  background-color: #fff;
  padding: 2rem;
}
.contact-form:hover, .contact-form:focus{
  box-shadow: 0 14px 28px rgba(25,43,57,0.10), 0 10px 10px rgba(25,43,57,0.08);
  transition: all ease .3s;
}
.contact-field{
  width: 28%;
  float: left;
}
.contact-form .required:before{
  content: '\f621';
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  margin-right: 6px;
  font-size: 0.5rem;
  display: inline;
  vertical-align: middle;
  color: #bf8c53;

  transition: all ease .5s;
}
.contact-form h3{
  padding-top: 0;
  margin-bottom: 0.8rem;
}
.contact-form p{
  margin-bottom: 1.6rem;
  margin-left: 0.6rem;
  line-height: 1.6;
}
.contact-form form fieldset > div{
  margin-bottom: 1.4rem;
}
.contact-form form label{
  display: inline-block;
  width: 16%;
  min-width: 140px;
}
.contact-form form input, .contact-form form textarea{
  width: 80%;
  display: inline-block;
  padding: 0.6rem;
  border: 1px solid #cecece;
  border-radius: 6px;
  outline: 0;
}
.contact-form form textarea{
  vertical-align: top;
  resize: vertical;
  min-height: 240px;
}
.contact-form form button[type="submit"]{
  display: block;
  background: #ffe110;
  border: 0;
  border-radius: 0;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto;
  padding: 0.8rem 0;
  width: 74%;
  transition: all ease .5s;
}
.contact-form form button[type="submit"] i{
  position: relative;
  left: 6px;
  transition: all ease .5s;
}
.contact-form form button[type="submit"]:hover i{
  left: 12px;
  transition: all ease .5s;
}
.contact-field > div{
  background-color: #fff;
  margin-bottom: 1em;
  padding: 2rem;
}
.contact-field > div:hover{
  box-shadow: 0 14px 28px rgba(25,43,57,0.10), 0 10px 10px rgba(25,43,57,0.08);
  transition: all ease .3s;
}
.contact-field h3{
  border: 0;
  background: #ffe110;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
}
.contact-field > div p{
  line-height: 1.6;
  padding: 0 0.2rem;
  margin-bottom: 0.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #dfdfdf;
  color: #454545;
}
.contact-field > div p:last-child{
  border: 0;
  margin: 0;
  padding: 0 0.2rem;
}

/* ************************************************** */
/* ************************************************** */
/* ************************************************** */
/* ************* Media query ************ */
/* ************************************************** */
/* ************************************************** */
/* ************************************************** */
/* resize header style */
@media screen and (min-width: 1401px){
  header .hd-right{
    height: 100px;
    line-height: 100px;
  }
}
@media screen and (min-width: 1301px) and (max-width: 1400px){
  header .hd-right{
  }
  header .hd-right .search-bar{
    position: absolute;
    right: 0;
    top: 38px;
  }
  header .hd-right .search-bar button[type=submit]{
    right: 14px;
    top: 5px;
  }
  header .hd-right .languge{
    position: absolute;
    display: block;
    top: 6px;
    right: 68px;
  }
  header .hd-right .languge .btn_lang{
    display: block;
    float: left;
    margin-left: 4px;
  }
  header .hd-right .sns-list{
    right: 8px;
    top: 2px;
  }
}
/* tablet header */
@media all and (max-width: 1300px){
  header{ height: 80px; }
  header .logo{ float: none; margin-right: 0; }
  header .logo a{ line-height: 80px; display: block; margin: 0 auto; }
  .nav-p{ display: none; }
  .scroll-off .nav-m-open{ color: #fff; transition: all ease .5s; }
  .lang-m{
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0 2em;
    display: block;
    position: absolute;
    background: #ffe110;
    line-height: 80px;
  }
  .nav-m-open{
    display: block;
    color: #0a253e;
    font-size: 2em;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 18px;
    transition: all ease .5s;
  }
  .nav-m{
    display: none;
    background-color: #fff;
    width: 100%;
    height: 100%;

    position: fixed;
    margin-top: 80px;
    right: -100%;
    top: 0;
    float: left;
    transition: all ease .5s;
    z-index: 10;
  }
  .nav-m:after{
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: #f9f8f7;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    border-left: 1px solid #e3e3e3;
  }
  .nav-m nav > ul > li > a{
    display: block;
    padding: 0.8em 1em;
    border-bottom: 1px solid #e3e3e3;
    font-size: 1.1em;
    font-weight: 700;
    width: 50%;
    color: #0a253e;
  }
  .nav-m nav > ul > li > a span{
    display: block;
    width: 100%;
    position: relative;
  }
  .nav-m nav > ul > li.on > a{
    background: #ffe110;
    color: #0a253e;
    border-bottom: 1px solid #ffe110;
  }
  .nav-m nav > ul > li.on > a span:after{
    content: '\f054';
    font-family: "Font Awesome 5 Free";
    position: absolute;
    right: 0;
    transition: all ease .5s;
  }
  .nav-m nav > ul > li > ul{
    width: 50%;
    position: absolute;
    top: 0;
    left: 50%;
    display: none;
    opacity: 0;
    z-index: 9;
    transition: all ease .5s;
  }
  .nav-m nav > ul > li > ul > li > a{
    display: block;
    border-bottom: 1px solid #e3e3e3;
    padding: 0.6em 1em;
    font-size: 0.9rem;
    color: #333;
  }
  .nav-m nav > ul > li > ul > li > ul{
    display: none;
    border-bottom: 1px solid #e3e3e3;
    padding: 0.4em 0;
    list-style-type: circle;
    background: #e3e3e3;
  }
  .nav-m nav > ul > li > ul > li > ul > li > a{
    display: block;
    color: #666;
    font-size: 0.9rem;
    padding: 0.6em 1em;
  }
  .nav-m li.open > a{
    background: #0a253e;
    color: #f9f8f7 !important;
    border-bottom: 1px solid #0a253e !important;
  }
  .nav-m nav .plus:after{
    /* content: '\f067';
    font-family: "Font Awesome 5 Free";
    font-weight: 600; */
    content: "+";
    position: relative;
    left: 6px;
    transition: all ease .5s;
  }
  .nav-m nav li.open .plus:after{
    content: "-";
  }
  .slide-wrap{ width: 100%; }
  .pg-title{ margin-top: 80px; }
  .spec dt{ width: 24%; }
  .pdt-wrap{
    padding: 30px;
  }
  .pdt-wrap .pdt-container{
    width: 60%;
  }
  .pdt-detail-wrap{ margin-top: 80px; }
  .tbl_wrap {width: 100%; overflow-x: scroll; padding-bottom: 0.3em; }
  .tbl_wrap table{ width: 100%; }
  .tbl_wrap .tbl_guide {display: block; padding: 20px 0 0 0; color: #0f8095; font-size: 13px; line-height: 130%;}
  .tbl_wrap .tbl{width: auto; min-width: 1200px;  font-size: 0.95rem;}
  .tbl_wrap::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  .tbl_wrap::-webkit-scrollbar-track {
    background-color: #efefef;
  }
  .tbl_wrap::-webkit-scrollbar-thumb {
    border-radius: 1em;
    background-color: #ccc;
  }
  .tbl_wrap::-webkit-scrollbar-button {
    width: 0;
    height: 0;
  }
  .pdt-detail-nav ul li{
    width: 33.3333%;
  }
  .sticky{ top: 80px; }
  .sticky + .pdt-detail-content{
    margin-top: 80px;
  }

}
@media all and (max-width: 1200px){
  .pdt-detail-nav ul li{ width: 50%; }
  .pdt-detail-nav ul li a{ font-size: 0.85rem; }
  .vg-cate{
    width: 48%;
    margin: 0;
    padding: 1em 0;
  }
  .vg-cate:nth-child(1){ padding-bottom: 0; }
  .vg-cate:nth-child(2){
    border: 0;
    padding-right: 0;
    margin-right: 0;
    padding-bottom: 0;
  }
}
/* tablet contents */
@media all and (max-width: 1024px){
  .swiper-container{ height: 640px; }
  /* slide */
  .slide-wrap h2{
    font-size: 2.8em;
  }
  .slide-wrap p{
    width: 70%;
  }
  .intro-products .all{
    height: auto;
  }
  .intro-products .all a{
    padding: 44px 40px;
    line-height: 0;
    font-size: 1.6rem;
  }
  .intro-products .prd{
    height: 360px;
  }
  .intro-products .prd h4{
    width: 100%;
  }
  .intro-products .title p{ font-size: 0.8rem; }

  /* dings values */
  .values .item > div{
    padding: 0;
    display: block;
    margin-bottom: 1em;
  }
  .values .item h5{
    display: block;
    margin-top: 1em;
    height: 3.2em;
  }
  .values .item.icon-1 h5, .values .item.icon-3 h5, .values .item.icon-4 h5{ line-height: 3.2em; }
  .values .item:hover > div{
    -webkit-box-shadow: none;
    box-shadow: none;
    transition: all ease .5s;
  }
  .spec dt{ width: 32%; }
  .howto ul{
    max-width: 800px;
    margin: 1em auto;
  }
  .select-question ul{
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 1.8em;
  }
  .select-question img{
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-top: 2em;
  }
  .pdt-wrap{
    height: auto;
    min-height: 420px;
  }
  .pdt-wrap .btn_box{
    position: relative;
  }
  .pdt-wrap .pdt-container{ width: 62%; }
  .pdt-wrap img{
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    width: 60%;
    min-width: 500px;
    top: unset;
    bottom: 10%;
    right: -4%;
  }
  .pdt-wrap .pdt-container p{
    background: rgba(255, 255, 255, 0.75);
    padding-right: 10px;
  }
  .pdt-wrap img{
    position: relative;
    right: 0;
    width: 100%;
    min-width: 0;
  }
  .pdt-wrap .pdt-container{ width: 100%; }
  .pdt-wrap .pdt-container h3{
    font-size: 1.4em;
  }
  .pdt-wrap .btn_box{
    width: 100%;
    margin: 0 auto;
    display: block;
    text-align: center;
    font-size: 1rem;
  }
  .pdt-mid-top .col-p-2, .item-top.col-p-2{
    display: block;
  }
  .pdt-mid-top .mid-img img, .pdt-mid-wrap .item-top img{
    display: block;
    width: auto;
    margin: 0 auto;
  }
  .pdt-mid-top .mid-list{ margin-top: 2em; }
  .pdt-mid-top .mid-list ul li{
    display: block;
    float: left;
    width: 50%;
  }
  .pdt-mid-top .mid-list a{
    width: 98%;
    margin: 3px auto;
  }
  .pdt-mid-top .mid-list a:hover i{
    margin-left: 10px;
  }
  div.gallery:hover img{ -webkit-transform: none; -ms-transform: none; -o-transform: none; transform: none; }
  .responsive_gallery {width: 49.99999%;margin: 6px 0;}
  .pdt-detail-content .option h5, .pdt-detail-content .option .opt-img{ float: none; }
  .pdt-detail-content .option h5{ font-size: 1.4rem; margin-bottom: 0.6em; width: 100%; }
  .pdt-detail-content .option .opt-img{ width: 100%;}
  .pdt-detail-content .option .opt-img img{ margin: 0 auto; }
  .pdt-detail-top{ padding: 2em 0; }
  .pdt-detail-top .col-p-2{ display: block; }
  .pdt-detail-top h2{ font-size: 2rem; }
  .pdt-detail-top h2 span{ display: inline-block; }
  .pdt-detail-top img{ display: block; width: 100%; max-width: 800px; margin: 0 auto;}
  .draw-3d .btn_box{
    display: block;
    width: 70%;
    margin: 1em auto;
    text-align: center;
    font-size: 1.4em;
  }
  .draw-3d div{
    width: 100%;
    margin: 0;
  }
  /* applications */
  .app-item{
    width: 48%;
  }
  .app-detail-wrap .pg-title{
    height: 320px;
  }
  .app-detail-wrap .pg-container{
    bottom: 10%;
  }
  .app-detail-wrap p{
    margin-bottom: 2em;
  }
  .app-motor-list img{
    margin: 0;
    width: 88%;
  }
  .app-motor-list ul{
    display: block;
    width: 100%;
    margin: 0 auto;
    margin-top: 3em;
    padding-top: 3em;
    padding-bottom: 3em;
  }
  .certi-list > div{
    width: 26%;
    margin: 1rem 3%;
  }
  .app-adv .row > div{
    width: 100%;
  }
  .pdt-related{
    float: none;
    width: 100%;
    margin: 3% 0;
  }
  .pdt-related img{
    width: auto;
    height: 80%;
    right: -6%;
  }
  .pdt-related:hover img{
    width: auto;
    height: 80%;
  }
  .app-cate > div{
    display: block;
  }
  .app-cate > div img{
    display: block;
    width: 100%;
    max-width: 854px;
    margin: 0 auto;
    margin-bottom: 1em;
  }
  .app-cate > div > div{
    width: 100%;
    padding: 0;
  }
  .app-cate > div:nth-child(even) > div{
    padding: 0;
  }
  .cate-list{ padding: 0; }
  .cate-list div{
    width: 49%;
    margin-right: 1%;
    margin-bottom: 1%;
  }
  .cate-list div a:after{
    padding-bottom: 70%;
  }
  .cate-list div:nth-child(2){
    margin-right: 0;
  }
  .down-wrap .vg img{
    width: 54%;
  }
  .down-list .img-down-hover{ display: none; }
  .down-list table{
    width: 100%;
    float: none;
    max-width: 100%;
  }
  .stepping-table{ width: 700px; }
  .responsive-tbl{
    overflow-x: scroll;
    padding-left: 38px;
    padding-bottom: 1em;
  }
  .responsive-tbl::-webkit-scrollbar {
    width: 6px;
    height: 6px;
  }
  .responsive-tbl::-webkit-scrollbar-track {
    background-color: #efefef;
  }
  .responsive-tbl::-webkit-scrollbar-thumb {
    border-radius: 1em;
    background-color: #ccc;
  }
  .responsive-tbl::-webkit-scrollbar-button {
    width: 0;
    height: 0;
  }
  .gal-theater-wrap .container{
    padding: 1em 0;
  }
  .pc-video-wrap{ display: none; }
  .m-video-wrap{ display: block; }
  .m-video-category{
    position: relative;
    overflow: hidden;
    border: 1px solid #cecece;
    border-bottom: 0;
    margin-bottom: 1em;
  }
  .m-video-category li{
    width: 50%;
    float: left;
  }
  .m-video-category li a{
    display: block;
    text-align: center;
    padding: 0.6em 0;
    background: #fff;
    border-bottom: 1px solid #cecece;
    border-right: 1px solid #cecece;
  }
  .m-video-category li a:hover{
    background: #ececec;
  }
  .m-video-category li.active a{
    background: #ffe110;
    font-weight: 700;
  }
  .m-video-category li:nth-child(even) a{
    border-right: 0;
  }
  #Operation-Guides ul{
    padding-left: 3.6em;
  }
  .com-intro h2{
    font-size: 1.8rem;
  }
  #Contact-Us .com-contact{
    width: 100%;
    float: none;
    margin-bottom: 2em;
  }
  #Contact-Us h2{
    font-size: 2rem;
    display: block;
    text-align: center;
  }
  #Contact-Us ul{
    margin-left: 5%;
  }
  #Contact-Us img{
    width: 100%;
    float: none;
  }
  .com-about-wrap .pg-title h2 img{
    max-width: 300px;
  }
  .com-about-wrap h3{
    font-size: 1.8rem;
  }
  blockquote{
    font-size: 1.8rem;
  }
  .com-introduction > div{
    width: 100%;
    float: none;
    margin: 0;
  }
  .com-introduction img{
    width: 100%;
  }
  .contact-form{
    width: 100%;
    float: none;
  }
  .contact-field{
    width: 100%;
    float: none;
    margin-top: 2rem;
  }
  .contact-field > div{
    width: 49%;
    float: left;
    margin-right: 2%;
  }
  .contact-field > div:nth-child(even){
    margin-right: 0;
  }
  .contact-form form label{
    margin-bottom: 0.4rem;
  }
  .contact-form form input, .contact-form form textarea{
    width: 100%;
  }
  .footer-body{ font-size: 0.85rem; }
}
@media all and (max-width: 900px){
  .vg-select{
    padding: 1em 0;
  }
  .vg-cate{
    width: 100%;
    margin: 0;
    padding: 0;
    margin-bottom: 1em;
    border: 0;
  }
  .vg-cate:nth-child(2){
    border: 0;
    padding-right: 0;
    margin-right: 0;
  }
  .vg-cate:last-child{
    margin-bottom: 0;
  }
}
/* mobile */
@media all and (max-width: 769px){
  /* p{ -ms-word-break: break-all !important; word-break: break-all !important; } */
  .col-p-1, .col-p-2, .col-p-3, .col-p-4, .col-p-5, .col-p-6{ display: block; }
  .row{
    margin-left: 20px;
    margin-right: 20px;
  }
  header{ height: 60px; }
  header .logo a{
    line-height: 60px;
    width: 120px;
  }
  .lang-m{ line-height: 60px; padding: 0 1em; }
  .nav-m{
    margin-top: 60px;
  }
  .nav-m-open{
    margin-top: 8px;
  }
  .nav-m nav > ul > li > ul > li > a{
    padding: 0.4em 0.8em;
  }
  .nav-m nav > ul > li > ul > li > ul{
    padding: 0.2em 0;
  }
  .nav-m nav > ul > li > ul > li > ul > li > a{
    padding: 0.3em 0.8em;
  }
  .intro-products, .updates{ padding: 4em 0; }
  .values, .footer-body{ padding: 4em 0; }

  .swiper-container{
    height: 80vh;
  }
  .slide-wrap h2{
    width: 80%;
    font-size: 1.4em;
  }
  .slide-wrap p{
    font-size: 0.9em;
  }
  .swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction{
    margin-bottom: 1em;
  }

  .intro-products .title h2, .values h2, .updates h2{
    display: block;
    font-size: 2.2em
  }

  /* products */
  .intro-products .title p{ margin-bottom: 20px; }
  .intro-products .prd-grid{
    display: block;
  }
  .intro-products .prd{
    margin-bottom: 20px;
    padding: 20px;
    height: auto;
  }
  .intro-products .prd h4{
    font-size: 1.5rem;
  }
  .intro-products .btn_box{
    line-height: 0;
    height: 2.8em;
  }
  .intro-products .all a{
    padding: 30px 20px;
    font-size: 1.4rem;
  }

  /* dings values */
  .values .item > div{

  }
  .values .item img{ display: block; width: 40%; }
  .values .item.icon-1 h5, .values .item.icon-3 h5, .values .item.icon-4 h5{ line-height: normal; }
  .values .item h5{
    height: auto;
    margin: 0.5em 0;
  }
  .values .item{
    padding-bottom: 3em;
    margin-bottom: 3em;
    border-bottom: 6px solid #ffe110;
  }
  .values .item:nth-child(4){
    border: 0;
  }

  /* latest updates */
  .updates .left{
    -webkit-background-size: cover;
    background-size: cover;
    height: 320px;
    margin-bottom: 20px;
  }
  .updates .left a{ padding: 20px; }
  .updates .left .item{ bottom: 20px; }
  .updates .left .item h5{ font-size: 1.4em; }
  .updates .left .item span{ font-size: 1em; }
  .updates .right a{ margin-top: 20px; }
  .updates .right .item{ width: 100%; }
  .updates .right .item span{ font-size: 0.9em; }
  .updates .right .item h5{ font-size: 1.2em; }
  .updates .left-2nd a{ margin-top: 20px;  margin-bottom:20px;}
  .updates .left-2nd .item{ width: 100%; }
  .updates .left-2nd .item span{ font-size: 0.9em; }
  .updates .left-2nd .item h5{ font-size: 1.2em; }
  .pg-path{ padding: 0 0.6em; font-size: 0.8rem; }
  .pdt-detail-top .pg-path{ margin-left: 0; font-size: 0.75rem; }
  .pg-title{ margin-top: 60px; padding: 2.4em 0; }
  .pg-title h2{ font-size: 1.6rem; }
  .psg-wrap h3, .tech-guide-wrap h3{ width: 100%; font-size: 1.2rem; }
  .spec{ display: block; }
  .spec div{ display: block; }
  .spec dt{ display: block; width: 100%; padding: 0.8em 1.4em; }
  .spec dd{ display: block; }
  .pdt-main-wrap .container{ padding: 2em 0; }

  /* product mid */
  .pdt-mid-wrap h3{ font-size: 1.2rem; }
  .pdt-mid-top .mid-list ul li{
    display: block;
    float: none;
    width: 100%;
  }
  .pdt-mid-top .mid-list a{
    width: 90%;
    display: block;
    margin: 0 auto;
    margin-bottom: 10px;
    height: 3em;
    line-height: 3em;
    padding: 0;
    text-align: center;
    font-size: 0.8rem;
  }
  .pdt-mid-wrap .item-top img{ margin-bottom: 1em; }
  .pdt-detail-top img{  width: 100%; max-width: none; }
  .pdt-mid-top .mid-list a:hover i{
    margin-left: 10px;
  }
  .pdt-detail-wrap{ margin-top: 60px; }
  .howto h4{ font-size: 1rem; margin-right: 0.5em; margin-left: 0.5em; text-align: left; }
  .sticky{ position: static;}
  .sticky + .pdt-detail-content{
    margin-top: 4em;
  }
  .pdt-detail-nav ul li{ width: 100%; }
  .pdt-detail-nav ul li a{ font-size: 0.85rem; padding: 0.8em 1em; }
  .pdt-detail-top h2{ font-size: 1.6rem; }
  .pdt-detail-top h2 span{ font-size: 1.1rem; }
  .tab_menu li { width: 33.3333%; }
  .tab_menu.tab-4 li { width: 25%; }
  .tab_menu li a{ font-size: 0.8rem; padding: 0.6em 0; text-align: center; width: 100%; border-right: 1px solid #fff; }
  .pdt-detail-content .section h4{ font-size: 1.3rem; }
  .pdt-detail-content .option h5{ font-size: 1.1rem; }
  /* applications */
  .app-item{
    width: 100%;
  }
  /* footer */
  .tail-p{ display: none; }
  .tail-m{ display: block; }
  .tail-m .item{ margin-bottom: 2em; }
  .tail-m .item > a{
    display: block;
    position: relative;
    border-bottom: 1px solid #e3e3e3;
    padding-bottom: 6px;
    margin-bottom: 1em;
  }
  .tail-m .item > a i{
    position: absolute;
    right: 0;
    transition: all ease .3s;
  }
  .tail-m .item ul li a{ padding-left: 4px; }
  .tail-m .item > ul{
    display: none;
  }
  .tbl_wrap {width: 100%; overflow: hidden; overflow-x: scroll;}
  .tbl_wrap .tbl_guide {display: block; padding: 20px 0 0 0; color: #0f8095; font-size: 13px; line-height: 130%;}
  .tbl_wrap .tbl{width: auto; min-width: 1000px; font-size: 0.85rem;}
  .intro-products .prd img{ width: 100%; position: relative; }
  .intro-products .prd:hover{ box-shadow: none; }
  .intro-products .prd:hover img{ width: 100%; left: 0; }
  .pdt-mid-top .mid-img img, .pdt-mid-wrap .item-top img{
    width: 100%;
  }
  .cont .left, .cont .right{ float: none; }
  .cont .left img, .cont .right img{ max-width: none; }
  .cont .left{ width: 40%; margin: 0 auto; margin-bottom: 2em; }
  .cont .right{ width: 100%; }
  .responsive_gallery {width: 100%;}
  .draw-3d .btn_box{ font-size: 1.2em; }
  .opt-teflon img{
    display: block;
    width: 96%;
    max-width: 500px;
    margin: auto;
  }
  .opt-teflon > div{
    display: block;
    width: 98%;
    margin: 0 auto;
  }
  .opt-teflon > div p{
    font-size: 1rem;
  }
  .app-detail-wrap .pg-title{
    height: 220px;
  }
  .app-detail-wrap .pg-container{
    bottom: 6%;
  }
  .app-detail-wrap h4{
    font-size: 1.4rem;
  }
  .app-detail-wrap p{
    width: 96%;
  }
  .app-motor-list img{
    margin: 0;
    width: 90%;
  }
  .app-motor-list ul{
    width: 100%;
  }
  .app-detail-wrap h3{
    font-size: 1.2rem;
  }
  .certi-list > div{
    width: 34.3333%;
    margin: 1rem 7%;
  }
  .app-detail-wrap h5{
    font-size: 1.4rem;
    margin-bottom: .6em;
  }
  .app-adv .row > div{
    border-top: 2px solid #efefef;
    margin-top: 3em;
    padding-top: 2em;
  }
  .app-adv .row > div img{
    width: 300px;
    margin: 0 auto;
    float: none;
  }
  .app-adv .row > div:nth-child(odd) img{
    float: none;
    margin: 0;
  }
  .app-adv .row > div > div{
    width: 80%;
    height: auto;
    margin-top: 2em;
  }
  .app-adv .row > div > div > div{
    position: relative;
    top: 0;
    -webkit-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
  }
  .pdt-related{
    height: auto;
  }
  .pdt-related h5{
    font-size: 1.2rem;
  }
  .pdt-related .btn_box{
    display: block;
    left: 0;
    position: relative;
  }
  .pdt-related img{
    width: 100%;
    height: auto;
    position: relative;
    right: 0;
  }
  .pdt-related:hover img{
    width: 100%;
    height: auto;
  }
  .app-cate h2{
    font-size: 1.4rem;
  }
  .app-cate p{
    font-size: 1rem;
  }
  .cate-list div{
    margin: 0;
    margin-bottom: 1em;
    width: 100%;
  }
  .cate-list div a{
    background-size: 100%;
  }
  .cate-list div a:after{
    padding-bottom: 50%;
  }
  .cate-list div a:hover{
    background-size: 108%;
  }
  .cate-list div a h4{
    font-size: 1rem;
    padding: 1.2em;
  }
  .down-wrap .vg{ text-align: center; height: 360px; }
  .down-wrap .vg > div{
    position: relative;
    top: 0; left: 0;
    text-align: center;
    margin-top: 2em;

    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
  }
  .down-wrap .vg > div h4{
    font-size: 1.8rem;
  }
  .down-wrap .vg > div a{
    height: 2.6em;
    line-height: 2.6em;
    margin-top: 1em;
  }
  .down-wrap .vg img{
    width: 93%;
    position: relative;
    margin-top: 2em;
    top: 0; left: 0;

    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
  }
  .down-list table{
    width: 100%;
    max-width: 100%;
    display: block;
    float: none;
    display: block;
    border-top: 3px solid #e3e3e3;
  }
  .down-list thead{ display: none; }
  .down-list tbody{ display: block; }
  .down-list tr{
    display: block;
    width: 100%;
    padding: 1em 0;
  }
  .down-list td{
    display: block;
    width: 100%;
  }
  .down-list td a{
    display: inline-block;
    font-size: 1.1rem;
  }
  .down-list a img{
    display: block;
    width: 200px;
    margin: 0 auto;
    margin-bottom: 0.6em;
    border: 1px solid #dadada;
  }
  .down-list td:nth-child(2){
    font-size: 0.85rem;
    padding: 0;
    padding-top: 1em;
  }
  .down-list i{ font-size: 0.9rem; }
  .down-list td:nth-child(3){ font-size: 0.9rem; }
  .com-main-wrap .container{
    padding: 2em 0
  }
  .com-intro h2{
    float: none;
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 1em;
    text-align: center;
  }
  .com-intro div{
    float: none;
    width: 100%;
  }
  .com-main-wrap .btn_box{
    padding: 0;
    display: block;
    width: 42%;
    margin: 0 auto;
    margin-top: 2em;
    text-align: center;
  }
  .com-about-wrap .pg-title h2 img{
    max-width: 280px;
  }
  .com-about-wrap h3{
    font-size: 1.36rem;
  }
  .about-intro p{ width: 90%; }
  .location-nav ul li a{ font-size: 1.1rem; }
  .location-part h2{ padding-left: 0.5rem; font-size: 1.3rem; }
  .location-nav ul li{
    width: 50%;
    margin-bottom: 1em;
  }
  .com-global-wrap h3{
    font-size: 1.4rem;
  }
  .location-part{
    margin: 1.4em 0;
    padding-bottom: 1em;
  }
  .location-part h2{
    font-size: 1.3rem;
    border-right: 0;
    border-bottom: 8px solid #ffe110;
    width: 100%;
    margin-bottom: 1em;
  }
  .location-part > div{
    width: 100%;
    float: none;
    padding: 0 0.6em;
  }
  .location-part > div{
    overflow: hidden;
  }
  .location-part > div p{
    overflow: hidden;
  }
  .location-part > div p strong{
    display: block;
    float: left;
    width: 23%;
    margin-right: 2%;
  }
  .location-part > div p span{
    display: block;
    width: 75%;
    float: left;
  }
  .branch .location-part h2{
    border-right: 0;
    border-bottom: 8px solid #2d3e50;
  }
  .video-desc h3{
    font-size: 1.3rem;
  }
  .m-video-category li{
    float: none;
    width: 100%;
  }
  .m-video-category li a{
    border-right: 0;
  }
  .com-contact-wrap .container{
    padding: 2em 0;
  }
  .contact-form h3{
    font-size: 1.4rem;
  }
  .contact-form form button[type="submit"]{
    width: 100%;
  }
  .contact-field > div{
    width: 100%;
    float: none;
    margin: 0;
  }
  .contact-field h3{
    font-size: 1.2rem;
  }
}
.tab-bar {padding-bottom: 50px; }
.tab-bar li {border: 1px solid #ddd; border-right: none; box-sizing: border-box; float: left; text-align: center; font-size: 18px; padding: 13px 0; background:#fff;}
.tab-bar li:last-child {border-right: 1px solid #ddd;}
.tab-bar li:hover, .tab-bar li.on {background:#ffe110;}
.tab-bar li:hover a, .tab-bar li.on a {color: #0a253e;}
.tab-bar li a {position: relative;}

.tab-bar2 li {width: 50%;}
.tab-bar3 li {width: 33.33333%;}
.tab-bar4 li {width: 25%;}
.tab-bar5 li {width: 20%;}
.tab-bar6 li {width: 16.6%;}
.tab-content table {border:1px solid #e3e3e3}
@media (max-width: 769px) {
.tab-bar li {font-size:14px;}
}
.tbl_wrap table {
  /*min-width:1100px; */
  max-width:100%;
}
.tbl_wrap .tbl_guide {display:none;}

@media all and (max-width: 1024px) and (orientation: landscape){
  .pg-title{
    padding: 2em 0;
  }
  .pdt-main-wrap .container{
    padding: 1em 0;
  }
}

.cB:after {content:''; display:block; clear:both;}
.Product-Description { width:100%; max-width:1102px; }
.Product-Description li:nth-child(1) {float:left;}
.Product-Description li:nth-child(2) {float:right;}
@media (max-width:768px) {
	.Product-Description li:nth-child(1) {display:block; width:100%;}
	.Product-Description li:nth-child(2) {display:block; float:left; width:100%;}
}

p.bu1 {background: #f8f8f8; padding: 15px 20px; margin: 0 0 15px 0; font-size: 18px; color: #3f3f3a; border-radius: 5px;}