html,body{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif, "Noto Sans TC", sans-serif, "Noto Sans SC", sans-serif;
}

/* 整個捲軸 */
::-webkit-scrollbar { width: 10px; height: 10px;}
/* 捲軸的軌道 */
::-webkit-scrollbar-track { background: #CBCBCB; }
/*捲軸尚未滑到的軌道*/
::-webkit-scrollbar-track-piece{ background: #CBCBCB; }
/* 滑動的區塊 */
::-webkit-scrollbar-thumb { background: rgb(0, 104, 183);}
/* 滑鼠移到滑動的區塊上 */
::-webkit-scrollbar-thumb:hover { background: rgb(0, 104, 183); }

/* nav */
.nav_scroll{
  background-color: rgba(255, 255, 255, 0) !important;
  transition: 0.6s;
  box-shadow: none !important;
}
.navbar-default{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  background-color: rgba(255, 255, 255, 1);
  transition: 0.6s;
  padding: 10px 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.nav_block{
  width: 1420px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 12px;
}
.logo{
  background: url('../image/logo.svg') left center no-repeat;
  width: 145px;
  height: 80px;
  cursor: pointer;
  background-size: contain;
}
.open_logo{
  background: url('../image/logo_w.svg') left center no-repeat;
  width: 145px;
  height: 80px;
  cursor: pointer;
  background-size: contain;
}
.lang_inquiry{
  margin-left: auto;
  margin-right: 15px;
  display: flex;
  align-items: center;
}
#index .nav_scroll .lang_btn{
  border: solid 1px #fff;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.lang_btn{
  border: solid 1px #282828;
  background-color: rgba(0, 0, 0, 1);
  color: #fff;
  border-radius: 25px;
  display: flex;
  align-items: center;
  padding: 12px 20px;
  margin-right: 15px;
}
.lang_btn:hover{
  color: #fff;
}
.lang_btn:focus{
  color: #fff;
}
.lang_btn::before{
  content: "";
  background: url('../image/lang_icon.svg');
  display: block;
  width: 24px;
  height: 24px;
  background-size: cover;
  margin-right: 10px;
}
.lang_btn::after{
  content: "";
  background: url('../image/drop_arrow.svg') no-repeat center;
  width: 10px;
  height: 6px;
  display: inline-block;
  background-size: cover;
  margin-bottom: 2px;
  margin-left: 5px;
}
#index .nav_scroll .cart{
  border: solid 1px #fff;
  background-color: rgba(255, 255, 255, 0.2);
}
.cart{
  position: relative;
  width: 50px;
  height: 50px;
  border: solid 1px #d9d9d9;
  background-color: transparent;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#index .nav_scroll .cart_icon{
  background: url('../image/cart.svg') no-repeat center;
}
.cart_icon{
  background: url('../image/cart_b.svg') no-repeat center;
  width: 24px;
  height: 24px;
  margin-left: -3px;
  margin-top: 3px;
}
#index .nav_scroll .cart_point{
  background-color: #fff;
}
.cart_point{
  width: 5px;
  height: 5px;
  border-radius: 100%;
  background-color: #0068b7;
  position: absolute;
  right: 20px;
  top: 8px;
  display: none;
  animation: hasitem 1s infinite;
}
.has_item .cart_point{
  display: block;
}
@keyframes hasitem{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.togglebar{
  display: flex;
  align-items: center;
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  justify-content: center;
  flex-direction: column;
  width: 50px;
  height: 50px;
  cursor: pointer;
  position: relative;
  z-index: 99;
  background-color: #0068b7;
  border-radius: 100%;
}
.togglebar:hover{
  background-color: #0068b7;
}
.togglebar i{
  -webkit-transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0.42, 0, 0.58, 1);
  display: block;
  width: 24px;
  height: 2px;
  background-color: #fff;
  margin: 2px auto;
}
.togglebar.active{
  background-color: transparent;
}
.togglebar.active i{
  transform: rotate(45deg) translate(4px, 4px);
}
.togglebar.active i:nth-child(2){
  opacity: 0;
}
.togglebar.active i:nth-child(3){
  transform: rotate(-45deg) translate(4px, -4px);
}
.nav_box{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 10px 24px;
}
.nav_inner{
  max-width: 1420px;
  margin: auto;
  height: 100%;
}
.nav_link_block{
  display: flex;
  align-items: center;
  height: 100%;
  padding-bottom: 50px;
}
.nav_row{
  width: 100%;
  height: 60%;
  overflow-y: auto;
  overflow-x: hidden;
}
.nav_col_block{
  border-right: solid 1px rgba(255, 255, 255, 0.3);
}
.nav_col_block:nth-last-child(1){
  border-right: none;
}
.nav_inner_block{
  display: flex;
  flex-direction: column;
  padding: 0px 50px;
}
.nav_inner_block a{
  color: #fff;
  text-decoration: none;
}
.nav_top{
  display: inline-block;
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.25;
}
.nav_link{
  display: inline-block;
  font-size: 18px;
  font-weight: 200;
  margin-bottom: 20px;
  line-height: 1.25;
}
.lang_drop{
  margin-top: 0px !important;
  left: 50% !important;
  transform: translateX(-56%);
  background-color: #0068b7;
  min-width: 100px;
}
.lang_drop .dropdown-item{
  color: #fff;
  transition: all 0.4s ease-in-out;
}
.lang_drop .dropdown-item:hover{
  background-color: transparent;
  color: #fff;
  opacity: 0.6;
}

@media(max-width: 1599px){
  .nav_inner_block{
    padding: 0px 30px;
  }
  .nav_top{
    font-size: 28px;
    margin-bottom: 20px;
  }
  .nav_link{
    font-size: 18px;
    margin-bottom: 15px;
  }
}
@media(max-width: 1499px){
  .logo{
    width: 130px;
    height: 70px;
  }
  .open_logo{
    width: 130px;
    height: 70px;
  }
  .nav_inner_block{
    padding: 0px 20px;
  }
  .nav_top{
    font-size: 24px;
    margin-bottom: 15px;
  }
  .nav_link{
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media(max-width: 1299px){
  .logo{
    width: 120px;
    height: 60px;
  }
  .open_logo{
    width: 120px;
    height: 60px;
  }
  .lang_btn{
    padding: 7px 15px;
  }
  .lang_btn::before{
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .cart{
    width: 40px;
    height: 40px;
  }
  .cart_icon{
    width: 22px;
    height: 22px;
    margin-left: -3px;
    margin-top: 3px;
  }
  .cart_point{
    width: 4px;
    height: 4px;
    right: 16px;
    top: 5px;
  }
  .togglebar{
    width: 42px;
    height: 42px;
  }
  .togglebar i{
    width: 20px;
    height: 2px;
    margin: 2px auto;
  }
  .nav_inner_block{
    padding: 0px 15px;
  }
  .nav_top{
    font-size: 20px;
    margin-bottom: 15px;
  }
  .nav_link{
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media(max-width: 991px){
  .nav_inner_block{
    padding: 0px;
  }
}
@media(max-width: 767px){
  .logo{
    width: 100px;
    height: 50px;
  }
  .open_logo{
    width: 100px;
    height: 50px;
  }
  .lang_btn{
    padding: 4.5px 10px;
    font-size: 14px;
  }
  .lang_btn::before{
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }
  .lang_btn::after{
    margin-bottom: 0px;
  }
  .cart{
    width: 35px;
    height: 35px;
  }
  .cart_icon{
    width: 20px;
    height: 20px;
    margin-left: -3px;
    margin-top: 3px;
  }
  .cart_point{
    width: 4px;
    height: 4px;
    right: 13px;
    top: 5px;
  }
  .togglebar{
    width: 36px;
    height: 36px;
  }
  .togglebar i{
    width: 18px;
    height: 2px;
    margin: 1.5px auto;
  }
  .togglebar.active i{
    transform: rotate(45deg) translate(3.5px, 3.5px);
  }
  .togglebar.active i:nth-child(3){
    transform: rotate(-45deg) translate(3.5px, -3.5px);
  }
  .nav_row{
    height: 70%;
  }
  .nav_top{
    font-size: 18px;
    margin-bottom: 15px;
  }
  .nav_link{
    font-size: 14px;
    margin-bottom: 10px;
  }
  .lang_drop .dropdown-item{
    font-size: 14px;
  }
}
@media(max-width: 575px){
  .navbar-default{
    padding: 5px 12px;
  }
  .logo{
    width: 85px;
    height: 45px;
  }
  .open_logo{
    width: 85px;
    height: 45px;
  }
  .lang_inquiry{
    margin-right: 10px;
  }
  .lang_btn{
    margin-right: 10px;
  }
  .nav_box{
    padding: 5px 24px;
  }
  .nav_row{
    height: auto;
    max-height: 90%;
  }
  .nav_col_block{
    border: none;
  }
  .nav_inner_block{
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    padding-bottom: 5px;
    margin-bottom: 12px;
  }
  .nav_top{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .nav_link{
    font-size: 14px;
    margin-bottom: 7px;
  }
}
@media(max-width: 390px){
  .logo{
    width: 80px;
    height: 40px;
  }
  .open_logo{
    width: 80px;
    height: 40px;
  }
  .lang_btn{
    padding: 5px 8px;
    font-size: 12px;
  }
  .lang_btn::before{
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
  .lang_btn::after{
    margin-bottom: 0px;
  }
  .cart{
    width: 30px;
    height: 30px;
  }
  .cart_icon{
    width: 18px;
    height: 18px;
    margin-left: -3px;
    margin-top: 3px;
  }
  .cart_point{
    width: 4px;
    height: 4px;
    right: 11px;
    top: 3px;
  }
  .togglebar{
    width: 32px;
    height: 32px;
  }
  .togglebar i{
    width: 15px;
    height: 2px;
    margin: 1.5px auto;
  }
  .togglebar.active i{
    transform: rotate(45deg) translate(3.5px, 3.5px);
  }
  .togglebar.active i:nth-child(3){
    transform: rotate(-45deg) translate(3.5px, -3.5px);
  }
}

/* banner */
.index_block{
  padding: 0px;
}
.banner_block{
  overflow: hidden;
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
}
.banner_tblock{
  max-width: 990px;
  text-align: center;
  position: absolute;
  z-index: 2;
  padding: 0px 24px;
}
.banner_tblock .btitle_1{
  font-size: 52px;
  color: #fff;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}
.banner_tblock .btitle_2{
  font-size: 24px;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0px;
  font-weight: 300;
}
.banner_cover{
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
/* Dots */
.banner_slick.slick-dotted.slick-slider{
  margin-bottom: 0px !important;
}
.banner_slick .slick-dots li{
  width: 12px;
  height: 12px;
  margin: 10px 0px;
}
.banner_slick .slick-dots li button{
  width: 12px;
  height: 12px;
}
.banner_slick .slick-dots{
  bottom: 0px;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 4;
  padding: 0px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  margin: auto;
}
.banner_slick .slick-dots li button:before{
  font-size: 8px;
  line-height: 10px;
  width: 12px;
  height: 12px;
  opacity: 0.5;
  color: #fff;
}
.banner_slick .slick-dots li.slick-active button:before{
  opacity: 1;
  color: #fff;
}
@media(max-width: 1499px){
  .banner_tblock .btitle_1{
    font-size: 48px;
  }
  .banner_tblock .btitle_2{
    font-size: 24px;
  }
}
@media(max-width: 1299px){
  .banner_tblock{
    max-width: 800px;
  }
  .banner_tblock .btitle_1{
    font-size: 42px;
  }
  .banner_tblock .btitle_2{
    font-size: 20px;
  }
}
@media(max-width: 1099px){
  .banner_tblock{
    max-width: 650px;
  }
  .banner_tblock .btitle_1{
    font-size: 36px;
  }
  .banner_tblock .btitle_2{
    font-size: 20px;
  }
}
@media(max-width: 991px){
  .banner_tblock{
    max-width: 600px;
  }
  .banner_tblock .btitle_1{
    font-size: 28px;
  }
  .banner_tblock .btitle_2{
    font-size: 18px;
  }
}
@media(max-width: 767px){
  .banner_tblock{
    max-width: 500px;
  }
  .banner_tblock .btitle_1{
    font-size: 24px;
    margin-bottom: 10px;
  }
  .banner_tblock .btitle_2{
    font-size: 18px;
  }
}
@media(max-width: 575px){
  .banner_tblock{
    max-width: 400px;
  }
  .banner_tblock .btitle_1{
    font-size: 20px;
  }
  .banner_tblock .btitle_2{
    font-size: 16px;
  }
  .banner_slick.slick-dotted.slick-slider{
    margin-bottom: 0px !important;
  }
  .banner_slick .slick-dots li{
    width: 10px;
    height: 10px;
    margin: 5px 0px;
  }
  .banner_slick .slick-dots li button{
    width: 10px;
    height: 10px;
  }
  .banner_slick .slick-dots{
    padding: 0px 12px;
  }
  .banner_slick .slick-dots li button:before{
    font-size: 6px;
    line-height: 10px;
    width: 10px;
    height: 10px;
  }
}
@media(max-width: 390px){
  .banner_tblock{
    max-width: 100%;
  }
  .banner_tblock .btitle_1{
    font-size: 18px;
  }
  .banner_tblock .btitle_2{
    font-size: 14px;
  }
}
@media(max-width: 350px){
  .banner_tblock .btitle_1{
    font-size: 16px;
    margin-bottom: 5px;
  }
  .banner_tblock .btitle_2{
    font-size: 12px;
  }
}

/* index_product */
.product_area{
  position: relative;
  z-index: 1;
  margin-top: -100px;
}
.index_product{
  max-width: 1420px;
  margin: auto;
  align-items: center;
}
.h_p_left{
  padding: 150px 0px;
}
.h_p_left img{
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.3));
}
.h_p_left::after{
  content: "";
  position: absolute;
  width: 42%;
  height: 100%;
  background-color: #0068b7;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
  border-radius: 0px 10px 10px 0px;
}
.h_p_right{
  padding: 100px 0px 155px 65px;
  overflow: hidden;
}
.h_p_title{
  margin-bottom: 30px;
}
.index_title_sm{
  font-size: 24px;
  color: #0068b7;
  margin-bottom: 10px;
  font-weight: 500;
}
.index_title_lg{
  font-size: 36px;
  color: #282828;
  font-weight: 600;
}
.h_p_text{
  font-size: 16px;
  color: #282828;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-height: 24px;
  height: 72px;
  margin-bottom: 0px;
}
.h_p_btn{
  margin-top: 30px;
}
.link_btn{
  display: inline-block;
  color: #fff;
  font-size: 18px;
  background-color: #0068b7;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 30px;
  font-weight: 300;
  transition: all 0.4s ease-in-out;
}
.link_btn:hover{
  background-color: #282828;
  color: #fff;
}
/* arrow */
.product_t_slick .slick-prev{
  width: 56px;
  height: 56px;
  left: 0px;
  right: auto;
  z-index: 1;
  top: auto;
  bottom: 0px;
  margin-bottom: -115px;
}
.product_t_slick .slick-prev:before{
  content: '';
  background-image: url('../image/prev_arrow.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: left bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.product_t_slick .slick-next{
  width: 56px;
  height: 56px;
  right: auto;
  left: 80px;
  z-index: 1;
  top: auto;
  bottom: 0px;
  margin-bottom: -115px;
}
.product_t_slick .slick-next:before{
  content: '';
  background-image: url('../image/next_arrow.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: right bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.product_t_slick .slick-next:hover:before{
  content: '';
  background-image: url('../image/next_arrow_h.svg');
  background-size: cover;
}
.product_t_slick .slick-prev:hover:before{
  content: '';
  background-image: url('../image/prev_arrow_h.svg');
  background-size: cover;
}

@media(max-width: 1499px){
  .product_area{
    margin-top: -80px;
  }
  .h_p_left{
    padding: 130px 0px;
  }
  .h_p_right{
    padding: 80px 0px 135px 50px;
  }
}
@media(max-width: 1299px){
  .product_area{
    margin-top: -65px;
  }
  .h_p_left{
    padding: 100px 0px;
  }
  .h_p_right{
    padding: 65px 0px 130px 30px;
  }
  .h_p_title{
    margin-bottom: 20px;
  }
  .index_title_sm{
    font-size: 20px;
  }
  .index_title_lg{
    font-size: 32px;
  }
  .h_p_btn{
    margin-top: 20px;
  }
  .link_btn{
    font-size: 16px;
    padding: 10px 30px;
  }
  .product_t_slick .slick-prev{
    width: 52px;
    height: 52px;
    margin-bottom: -100px;
  }
  .product_t_slick .slick-prev:before{
    width: 50px;
    height: 50px;
  }
  .product_t_slick .slick-next{
    width: 52px;
    height: 52px;
    left: 70px;
    margin-bottom: -100px;
  }
  .product_t_slick .slick-next:before{
    width: 50px;
    height: 50px;
  }
}
@media(max-width: 1199px){
  .product_area{
    margin-top: -50px;
  }
  .h_p_left{
    padding: 80px 0px;
  }
  .h_p_right{
    padding: 50px 0px 115px 0px;
  }
  .h_p_title{
    margin-bottom: 15px;
  }
  .index_title_sm{
    font-size: 18px;
    margin-bottom: 5px;
  }
  .index_title_lg{
    font-size: 28px;
  }
}
@media(max-width: 991px){
  .h_p_left::after{
    width: 36%;
  }
  .product_area{
    margin-top: -30px;
  }
  .h_p_left{
    padding: 50px 0px;
  }
  .h_p_right{
    padding: 50px 0px 100px 0px;
  }
  .h_p_title{
    margin-bottom: 5px;
  }
  .index_title_sm{
    font-size: 16px;
    margin-bottom: 0px;
  }
  .index_title_lg{
    font-size: 24px;
    margin-bottom: 0px;
  }
  .h_p_text{
    font-size: 14px;
    -webkit-line-clamp: 3;
    line-height: 20px;
    height: 60px;
  }
  .h_p_btn{
    margin-top: 10px;
  }
  .link_btn{
    font-size: 14px;
    padding: 8px 30px;
  }
  .product_t_slick .slick-prev{
    width: 42px;
    height: 42px;
    margin-bottom: -75px;
  }
  .product_t_slick .slick-prev:before{
    width: 40px;
    height: 40px;
  }
  .product_t_slick .slick-next{
    width: 42px;
    height: 42px;
    left: 55px;
    margin-bottom: -75px;
  }
  .product_t_slick .slick-next:before{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 767px){
  .product_area{
    margin-top: 0px;
  }
  .product_p_slick{
    text-align: center;
  }
  .h_p_left{
    padding: 50px 0px 0px 0px;
  }
  .h_p_left img{
    width: 80% !important;
  }
  .h_p_left::after{
    width: 100%;
    height: 40%;
    border-radius: 0px;
  }
  .h_p_right{
    padding: 30px 0px 100px 0px;
  }
}
@media(max-width: 575px){
  .h_p_left::after{
    height: 30%;
  }
  .index_title_sm{
    font-size: 14px;
  }
  .index_title_lg{
    font-size: 20px;
  }
}

/* index_about */
.about_area{
  background-color: #f5f5f5;
  margin-top: -100px;
}
.index_about{
  max-width: 1420px;
  margin: auto;
  padding: 200px 0px 150px 0px;
  align-items: flex-end;
}
.h_a_text{
  font-size: 16px;
  color: #282828;
  margin-bottom: 0px;
}
.h_a_btn{
  text-align: end;
}
.fact_area{
  margin-top: 100px;
}
.fact_block .fact_text{
  border-bottom: solid 1px #d9d9d9;
}
.fact_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 30px;
  padding-bottom: 10px;
  font-weight: 500;
}
.fact_num{
  font-size: 72px;
  color: #0068b7;
  line-height: 1;
  font-weight: 500;
  display: flex;
  align-items: baseline;
}
@media(max-width: 1499px){
  .about_area{
    margin-top: -80px;
  }
  .index_about{
    padding: 150px 0px 130px 0px;
  }
  .fact_area{
    margin-top: 80px;
  }
}
@media(max-width: 1299px){
  .about_area{
    margin-top: -65px;
  }
  .index_about{
    padding: 130px 0px 100px 0px;
  }
  .fact_area{
    margin-top: 65px;
  }
  .fact_num{
    font-size: 68px;
  }
}
@media(max-width: 1199px){
  .about_area{
    margin-top: -50px;
  }
  .index_about{
    padding: 100px 0px 80px 0px;
  }
  .fact_area{
    margin-top: 50px;
  }
  .fact_text{
    font-size: 16px;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
  .fact_num{
    font-size: 58px;
  }
}
@media(max-width: 991px){
  .about_area{
    margin-top: -30px;
  }
  .index_about{
    padding: 80px 0px 50px 0px;
  }
  .h_a_text{
    font-size: 14px;
  }
  .fact_area{
    margin-top: 30px;
  }
  .fact_text{
    font-size: 14px;
    margin-bottom: 20px;
    padding-bottom: 5px;
  }
  .fact_num{
    font-size: 48px;
  }
}
@media(max-width: 767px){
  .about_area{
    margin-top: 0px;
  }
  .index_about{
    padding: 50px 0px;
  }
  .h_a_btn{
    text-align: start;
    margin-top: 15px;
  }
  .fact_area{
    margin-top: 30px;
  }
  .fact_text{
    font-size: 14px;
    margin-bottom: 5px;
    padding-bottom: 5px;
  }
  .fact_num{
    font-size: 36px;
  }
}
@media(max-width: 575px){
  .fact_area{
    margin-top: 20px;
  }
  .fact_block{
    text-align: center;
    border-bottom: solid 1px #d9d9d9;
    margin-top: 10px;
  }
  .fact_block .fact_text{
    border-bottom: none;
  }
  .fact_text{
    font-size: 14px;
    margin-bottom: 8px;
    padding-bottom: 0px;
  }
  .fact_num{
    font-size: 28px;
    justify-content: center;
  }
  .fact_num .counter{
    margin-bottom: 10px;
  }
}

/* index_media */
.index_media{
  max-width: 1670px;
  margin-left: auto;
  padding: 150px 0px;
  position: relative;
}
.media_right{
  padding-right: 0px;
}
.media_slick{
  position: static !important;
}
.media_slick .slick-list{
  padding-right: 100px;
}
.media_block{
  padding: 0px 12px;
}
.media_item{
  text-decoration: none;
}
.media_item .media_pic{
  overflow: hidden;
  width: 100%;
  padding-bottom: 60%;
  position: relative;
  border-radius: 10px;
}
.media_item .media_pic img{
  transform: scale(1,1);
  transition: all 0.4s ease-in-out;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.media_item:hover .media_pic img{
  transform: scale(1.05,1.05);
}
.media_title{
  font-size: 18px;
  color: #282828;
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 24px;
  height: 48px;
  margin-bottom: 0px;
  margin-top: 15px;
}
.m_date_type{
  display: flex;
  align-items: center;
  margin-top: 5px;
}
.media_date{
  font-size: 14px;
  color: #0068b7;
  margin-bottom: 0px;
}
.media_type{
  font-size: 14px;
  color: #0068b7;
  border: solid 1px #d9d9d9;
  padding: 1px 8px;
  border-radius: 15px;
  margin-left: 10px;
}
.progress {
  display: block;
  width: 80%;
  height: 1px;
  border-radius: 2px;
  overflow: hidden;
  background-color: #d9d9d9;
  background-image: linear-gradient(to right, #0068b7, #0068b7);
  background-repeat: no-repeat;
  background-size: 0 100%;
  transition: .4s ease-in-out;
  margin-top: 100px;
}
/* arrow */
.media_slick .slick-prev{
  width: 56px;
  height: 56px;
  left: 12px;
  right: auto;
  z-index: 1;
  top: auto;
  bottom: 125px;
}
.media_slick .slick-prev:before{
  content: '';
  background-image: url('../image/prev_arrow.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: left bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.media_slick .slick-next{
  width: 56px;
  height: 56px;
  right: auto;
  left: 92px;
  z-index: 1;
  top: auto;
  bottom: 125px;
}
.media_slick .slick-next:before{
  content: '';
  background-image: url('../image/next_arrow.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: right bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.media_slick .slick-next:hover:before{
  content: '';
  background-image: url('../image/next_arrow_h.svg');
  background-size: cover;
}
.media_slick .slick-prev:hover:before{
  content: '';
  background-image: url('../image/prev_arrow_h.svg');
  background-size: cover;
}
@media(max-width: 1499px){
  .index_media{
    padding: 130px 0px;
  }
  .progress {
    width: 85%;
    margin-top: 50px;
  }
  .media_slick .slick-list{
    padding-right: 80px;
  }
  .media_slick .slick-prev{
    bottom: 105px;
  }
  .media_slick .slick-next{
    bottom: 105px;
  }
}
@media(max-width: 1299px){
  .index_media{
    padding: 100px 0px;
  }
  .progress {
    width: 90%;
    margin-top: 30px;
  }
  .media_block{
    padding: 0px 8px;
  }
  .media_slick .slick-prev{
    width: 52px;
    height: 52px;
    bottom: 75px;
  }
  .media_slick .slick-prev:before{
    width: 50px;
    height: 50px;
  }
  .media_slick .slick-next{
    width: 52px;
    height: 52px;
    left: 82px;
    bottom: 75px;
  }
  .media_slick .slick-next:before{
    width: 50px;
    height: 50px;
  }
}
@media(max-width: 1199px){
  .index_media{
    padding: 80px 0px;
  }
  .progress {
    width: 100%;
    margin-top: 30px;
  }
  .media_slick .slick-list{
    padding-right: 50px;
  }
  .media_slick .slick-prev{
    bottom: 60px;
  }
  .media_slick .slick-next{
    bottom: 60px;
  }
}
@media(max-width: 991px){
  .index_media{
    padding: 50px 0px;
  }
  .media_title{
    font-size: 16px;
    -webkit-line-clamp: 2;
    line-height: 20px;
    height: 40px;
    margin-top: 10px;
  }
  .media_slick .slick-prev{
    width: 42px;
    height: 42px;
    bottom: 30px;
  }
  .media_slick .slick-prev:before{
    width: 40px;
    height: 40px;
  }
  .media_slick .slick-next{
    width: 42px;
    height: 42px;
    left: 67px;
    bottom: 30px;
  }
  .media_slick .slick-next:before{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 767px){
  .index_media{
    margin: auto;
  }
  .progress {
    display: none;
  }
  .media_right{
    padding: 0px 6px;
  }
  .media_slick{
    margin-top: 30px;
    position: relative !important;
  }
  .media_slick .slick-list{
    padding-right: 0px;
  }
  .media_slick .slick-prev{
    left: auto;
    right: 61px;
    bottom: auto;
    top: 0;
    margin-top: -60px;
  }
  .media_slick .slick-next{

    left: auto;
    right: 6px;
    bottom: auto;
    top: 0;
    margin-top: -60px;
  }
}
@media(max-width: 575px){
  .media_slick{
    margin-top: 20px;
  }
  .media_slick .slick-prev{
    margin-top: -50px;
  }
  .media_slick .slick-next{
    margin-top: -50px;
  }
  .media_date{
    font-size: 12px;
  }
  .media_type{
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 10px;
    margin-left: 5px;
  }
}
@media(max-width: 390px){
  .media_slick{
    margin-top: 15px;
  }
  .media_slick .slick-prev{
    margin-top: -45px;
  }
  .media_slick .slick-next{
    margin-top: -45px;
  }
}

/* index_marquee */
.index_marquee{
  padding-bottom: 150px;
}
.matq_area{
  padding: 0px;
}
.marquee {
  position: relative;
  width: 100vw;
  max-width: 100%;
  height: 115px;
  overflow: hidden;
}
.track{
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee 50s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.matq_content{
  text-transform: uppercase;
  color: #0068b7;
  font-size: 115px;
  line-height: 1;
  font-weight: 600;
}
@media(max-width: 1499px){
  .index_marquee{
    padding-bottom: 130px;
  }
  .marquee {
    height: 86px;
  }
  .matq_content{
    font-size: 86px;
  }
}
@media(max-width: 1299px){
  .index_marquee{
    padding-bottom: 100px;
  }
  .marquee {
    height: 72px;
  }
  .matq_content{
    font-size: 72px;
  }
}
@media(max-width: 1199px){
  .index_marquee{
    padding-bottom: 80px;
  }
  .marquee {
    height: 68px;
  }
  .matq_content{
    font-size: 68px;
  }
}
@media(max-width: 991px){
  .index_marquee{
    padding-bottom: 50px;
  }
  .marquee {
    height: 56px;
  }
  .matq_content{
    font-size: 56px;
  }
}
@media(max-width: 575px){
  .marquee {
    height: 48px;
  }
  .matq_content{
    font-size: 48px;
  }
}
@media(max-width: 390px){
  .marquee {
    height: 38px;
  }
  .matq_content{
    font-size: 38px;
  }
}

/* index_bottom */
/* .bottom_area{
  height: 400px;
  background: url('../image/worldwide_banner.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.index_bottom{
  max-width: 1420px;
  margin: auto;
}
.h_bt_title .index_title_sm{
  color: #fff;
}
.h_bt_title .index_title_lg{
  color: #fff;
} */

.bottom_area{
  position: relative;
  z-index: 1;
}
.index_bottom {
  position: relative;
  z-index: 10;
}
.bottom_item {
  position: relative;
  padding: 0px;
}
.bottom_item a{
  position: relative;
  display: block;
  padding-bottom: 43%;
}
.bottom_item:nth-child(1)::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.35);
  content: "";
}
.bottom_block{
  display: flex;
  align-items: center;
  height: 100%;
  position: absolute;
  width: 100%;
  padding: 0px 150px;
}
.h_bt_title .index_title_sm{
  color: #fff;
}
.h_bt_title .index_title_lg{
  color: #fff;
  margin-bottom: 0;
}
.index_bottom_bg{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.index_bottom_bg::before{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  z-index: 1;
}
.bottom_bg{
  position: absolute;
  background-size: cover;
  width: inherit;
  height: inherit;
  opacity: 0;
  transition: 0.4s;
  transform: scale(1.1);
}
.index_bottom_bg > div.index_bottom_bg_org{
  background-image: url('../image/bottom_banner.png');
  opacity: 1;
  background-position: center;
}
.index_bottom_bg > div.is-active {
  opacity: 1;
  transform: scale(1.1);
}
.index_bottom_bg_1{
  background-image: url('../image/worldwide_banner.png');
  background-position: center;
}
.index_bottom_bg_2{
  background-image: url('../image/contact_banner.png');
  background-position: center;
}

@media(max-width: 1699px){
  .bottom_block{
    padding: 0px 100px;
  }
}
@media(max-width: 1599px){
  .bottom_block{
    padding: 0px 50px;
  }
}
@media(max-width: 1499px){
  .bottom_block{
    padding: 0px 24px;
  }
}
@media(max-width: 991px){
  .bottom_item a{
    padding-bottom: 55%;
  }
}
@media(max-width: 575px){
  .bottom_item a{
    padding-bottom: 30%;
  }
  .bottom_item:nth-child(1)::before {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.35);
    content: "";
  }
  .bottom_item:nth-child(1)::after {
    display: none;
  }
}

/* footer */
.footer{
  background-color: #282828;
}
.footer_area{
  max-width: 1420px;
  margin: 0px auto;
  padding: 100px 0px 0px 0px;
}
.footer_logo{
  width: 145px;
}
.footer_c_btn{
  margin-top: 30px;
}
.link_btn_c{
  display: inline-block;
  color: #fff;
  border: solid 1px #fff;
  font-size: 18px;
  background-color: rgba(255, 255, 255, 0.15);
  text-decoration: none;
  padding: 12px 50px;
  border-radius: 30px;
  font-weight: 300;
  transition: all 0.4s ease-in-out;
}
.link_btn_c:hover{
  background-color: #0068b7;
  border: solid 1px #0068b7;
  color: #fff;
}
.sitemap_top{
  border-bottom: solid 1px rgba(255, 255, 255, 0.15);
  margin-bottom: 10px;
}
.sitemap_title{
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding-bottom: 10px;
  transition: all 0.2s ease-in-out;
}
.sitemap_title:hover{
  color: #fff;
  opacity: 0.6;
}
.sitemap_bottom{
  display: flex;
  flex-direction: column;
}
.sitemap_item{
  display: inline-block;
  color: #d9d9d9;
  text-decoration: none;
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 10px;
  transition: all 0.2s ease-in-out;
}
.sitemap_item:hover{
  color: #fff;
  opacity: 0.6;
}
.footer_bottom{
  border-top: solid 1px rgba(255, 255, 255, 0.15);
  margin-top: 50px;
  padding: 30px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.f_social_block{
  display: flex;
  align-items: center;
}
.social_item{
  margin: 0px 10px;
}
.social_icon{
  width: 22px;
}
.f_copy_text{
  color: #fff;
  font-weight: 300;
  margin-bottom: 0px;
}
.f_copy_text span{
  color: #aaaaaa;
}
.f_copy_text a{
  color: #aaaaaa;
  margin: 0 3px;
}
@media(max-width: 1499px){
  .footer_logo{
    width: 130px;
  }
  .link_btn_c{
    padding: 12px 40px;
  }
  .sitemap_title{
    font-size: 16px;
  }
  .sitemap_item{
    font-size: 16px;
  }
}
@media(max-width: 1299px){
  .footer_area{
    padding: 80px 0px 0px 0px;
  }
  .footer_logo{
    width: 120px;
  }
  .footer_c_btn{
    margin-top: 20px;
  }
  .link_btn_c{
    padding: 10px 35px;
    font-size: 16px;
  }
  .sitemap_title{
    font-size: 14px;
  }
  .sitemap_item{
    font-size: 14px;
  }
  .footer_bottom{
    margin-top: 30px;
    padding: 20px 0px;
  }
  .social_icon{
    width: 20px;
  }
  .f_copy_text{
    font-size: 14px;
  }
}
@media(max-width: 991px){
  .footer_area{
    padding: 50px 0px 0px 0px;
  }
  .link_btn_c{
    padding: 8px 30px;
    font-size: 14px;
  }
  .f_copy_text{
    text-align: end;
  }
  .f_copy_text span{
    display: block;
  }
}
@media(max-width: 767px){
  .footer_left{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
  }
  .footer_logo{
    width: 100px;
  }
  .sitemap_top{
    margin-bottom: 5px;
  }
  .sitemap_title{
    padding-bottom: 5px;
  }
  .sitemap_item{
    margin-bottom: 5px;
  }
  .social_item{
    margin: 0px 8px;
  }
  .social_icon{
    width: 18px;
  }
  .f_copy_text{
    font-size: 12px;
  }
}
@media(max-width: 575px){
  .footer_area{
    padding: 30px 0px 0px 0px;
  }
  .footer_left{
    margin-bottom: 0px;
  }
  .footer_logo{
    width: 85px;
  }
  .link_btn_c{
    padding: 6px 20px;
  }
  .footer_right{
    display: none;
  }
  .footer_bottom{
    display: block;
    margin-top: 15px;
    padding: 15px 0px;
  }
  .f_social_block{
    justify-content: center;
    margin-bottom: 10px;
  }
  .f_copy_text{
    text-align: center;
  }
}

/* inner_banner */
.banner_t_area{
  max-width: 1420px;
  margin: auto;
  padding: 200px 0px 65px 0px;
  align-items: flex-end;
  overflow: hidden;
}
.banner_p_area{
  padding: 0px;
}
.inner_banner_t_sm{
  font-size: 18px;
  color: #282828;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.inner_banner_t_sm::before{
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: #0068b7;
  margin-right: 12px;
}
.inner_banner_t_lg{
  font-size: 72px;
  color: #282828;
  margin-bottom: 0px;
  font-weight: 600;
  line-height: 1;
}
.jato_bread .breadcrumb{
  justify-content: flex-end;
  margin-bottom: 0px;
}
.home_icon{
  width: 18px;
}
.jato_bread .breadcrumb-item{
  display: flex;
  align-items: center;
  color: #282828;
  text-transform: uppercase;
  line-height: 1;
  margin: 3px 0px;
}
.jato_bread .breadcrumb-item a{
  color: #282828;
  text-decoration: none;
}
.jato_bread .breadcrumb-item+.breadcrumb-item::before{
  content: "";
  background-image: url('../image/bread_dot.svg');
  background-repeat: no-repeat;
  background-size: cover;
  width: 4px;
  height: 4px;
  padding: 0px;
  margin: 0px 10px 0px 4px;
}
@media(max-width: 1499px){
  .banner_t_area{
    padding: 180px 0px 50px 0px;
  }
  .inner_banner_t_lg{
    font-size: 68px;
  }
  .home_icon{
    width: 16px;
  }
  .jato_bread .breadcrumb-item{
    font-size: 14px;
  }
  .jato_bread .breadcrumb-item+.breadcrumb-item::before{
    width: 4px;
    height: 4px;
    margin: 0px 8px 0px 2px;
  }
}
@media(max-width: 1299px){
  .banner_t_area{
    padding: 150px 0px 50px 0px;
  }
  .inner_banner_t_sm{
    font-size: 16px;
  }
  .inner_banner_t_sm::before{
    width: 6px;
    height: 6px;
    margin-right: 10px;
  }
  .inner_banner_t_lg{
    font-size: 56px;
  }
}
@media(max-width: 1199px){
  .banner_t_area{
    padding: 130px 0px 30px 0px;
  }
  .inner_banner_t_sm{
    font-size: 16px;
    margin-bottom: 10px;
  }
  .inner_banner_t_sm::before{
    width: 5px;
    height: 5px;
    margin-right: 10px;
  }
  .inner_banner_t_lg{
    font-size: 48px;
  }
  .home_icon{
    width: 15px;
  }
  .jato_bread .breadcrumb-item+.breadcrumb-item::before{
    width: 3px;
    height: 3px;
    margin: 0px 6px 0px 0px;
  }
}
@media(max-width: 991px){
  .banner_t_area{
    padding: 120px 0px 20px 0px;
  }
  .inner_banner_t_sm{
    font-size: 14px;
  }
  .inner_banner_t_sm::before{
    width: 5px;
    height: 5px;
    margin-right: 8px;
  }
  .inner_banner_t_lg{
    font-size: 36px;
  }
  .home_icon{
    width: 12px;
  }
  .jato_bread .breadcrumb-item{
    font-size: 12px;
  }
  .jato_bread .breadcrumb-item+.breadcrumb-item::before{
    width: 3px;
    height: 3px;
    margin: 0px 4px 0px -2px;
  }
}
@media(max-width: 767px){
  .banner_t_area{
    padding: 100px 0px 20px 0px;
  }
  .inner_banner_t_sm{
    margin-bottom: 5px;
  }
  .jato_bread{
    margin-top: 10px;
  }
  .jato_bread .breadcrumb{
    justify-content: flex-start;
  }
}
@media(max-width: 575px){
  .banner_t_area{
    padding: 80px 0px 15px 0px;
  }
  .inner_banner_t_lg{
    font-size: 32px;
  }
}

/* product */
.inner_block1{
  max-width: 1420px;
  padding: 150px 0px;
  margin: auto;
}
.inner_block2{
  max-width: 1420px;
  padding: 100px 0px;
  margin: auto;
}
.inner_block3{
  max-width: 1420px;
  margin: auto;
}
.inner_block4{
  max-width: 1420px;
  padding: 0px 0px 150px 0px;
  margin: auto;
}
.p_type_area{
  margin-top: -24px;
}
.p_type_item{
  display: block;
  padding: 40px 30px;
  border: solid 2px #f5f5f5;
  background-color: #f5f5f5;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.p_type_inner{
  align-items: center;
}
.p_type_title{
  font-size: 24px;
  color: #282828;
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  line-height: 1.25;
}
.p_type_title::before{
  content: "";
  width: 3px;
  height: 30px;
  background-color: #0068b7;
  margin-right: 10px;
}
.p_type_item .arrow_block{
  margin-top: 30px;
}
.arrow_block{
  width: 55px;
  height: 55px;
  border: solid 1px #d9d9d9;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  flex-shrink: 0;
}
.arrow_icon{
  background: url("../image/arrow_right.svg");
  width: 16px;
  height: 12px;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease-in-out;
}
.p_type_item:hover{
  border: solid 2px #0068b7;
}
.p_type_item:hover .arrow_block{
  border: solid 2px #0068b7;
  background-color: #0068b7;
}
.p_type_item:hover .arrow_icon{
  background: url("../image/arrow_right_w.svg");
}
.p_type_inner img{
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.3));
}

@media(max-width: 1499px){
  .inner_block1{
    padding: 130px 0px;
  }
  .inner_block2{
    padding: 80px 0px;
  }
  .inner_block4{
    padding: 0px 0px 130px 0px;
  }
  .p_type_item{
    padding: 30px 20px;
  }
  .p_type_title{
    font-size: 22px;
  }
  .p_type_item .arrow_block{
    margin-top: 20px;
  }
}
@media(max-width: 1299px){
  .inner_block1{
    padding: 100px 0px;
  }
  .inner_block2{
    padding: 50px 0px;
  }
  .inner_block4{
    padding: 0px 0px 100px 0px;
  }
  .p_type_item{
    padding: 20px 20px;
  }
  .p_type_title{
    font-size: 20px;
  }
  .arrow_block{
    width: 50px;
    height: 50px;
  }
  .arrow_icon{
    width: 14px;
    height: 10px;
  }
}
@media(max-width: 1199px){
  .inner_block1{
    padding: 80px 0px;
  }
  .inner_block4{
    padding: 0px 0px 80px 0px;
  }
}
@media(max-width: 991px){
  .inner_block1{
    padding: 50px 0px;
  }
  .inner_block2{
    padding: 30px 0px;
  }
  .inner_block4{
    padding: 0px 0px 50px 0px;
  }
  .p_type_title{
    font-size: 18px;
  }
  .p_type_item .arrow_block{
    margin-top: 15px;
  }
  .arrow_block{
    width: 40px;
    height: 40px;
  }
  .arrow_icon{
    width: 12px;
    height: 8px;
  }
}
@media(max-width: 490px){
  .p_type_item{
    padding: 15px;
    border: solid 1px #f5f5f5;
  }
  .p_type_item:hover{
    border: solid 1px #0068b7;
  }
  .p_type_title{
    font-size: 16px;
  }
}

/* product_list */
.p_list_area .inner_top_title{
  text-align: center;
}
.inner_top_title{
  font-size: 48px;
  color: #282828;
}
.p_list_area .dropdown{
  z-index: 1;
}
.tab_dropdown_btn{
  display: none;
}
.p_list_area .p_tab_area{
  margin-top: 50px;
  z-index: 99;
}
.p_tab_area{
  display: flex;
  border: none;
  width: 100%;
  position: relative;
  z-index: 1;
}
.p_tab_area .nav-item .nav-link{
  color: #282828;
  border-bottom: solid 2px #d9d9d9;
  text-align: center;
  font-size: 18px;
}
.p_tab_area .nav-item .active{
  color: #0068b7;
  border-bottom: solid 2px #0068b7;
}
.p_list_block{
  margin-top: 100px;
}
.p_item{
  text-decoration: none;
}
.p_item_pic{
  border-radius: 10px;
  overflow: hidden;
  border: solid 2px transparent;
  transition: all 0.4s ease-in-out;
}
.p_list_title{
  font-size: 24px;
  color: #282828;
  margin-top: 20px;
  margin-bottom: 0px;
}
.p_item:hover .p_item_pic{
  border: solid 2px #0068b7;
}
.jato_page{
  margin-top: 100px;
}
.jato_page .pagination{
  justify-content: center;
}
.page_arrow{
  width: 10px;
}
.jato_page .page-item{
  margin: 0px 5px;
}
.jato_page .page-item .page-link{
  border: none;
  color: #282828;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  transition: all 0.4s ease-in-out;
}
.jato_page .active .page-link{
  color: #fff;
  background-color: #0068b7;
}
.jato_page .page-item .page-link:hover{
  background: transparent;
  opacity: 0.6;
}
.jato_page .active .page-link:hover{
  opacity: 1;
  color: #fff;
  background-color: #0068b7;
}
.jato_page .disabled{
  opacity: 0.4;
}
.seo_area{
  background-color: #f5f5f5;
  padding: 0px 24px;
}
.seo_text{
  color: #282828;
  margin-bottom: 0px;
}
@media(max-width: 1499px){
  .inner_top_title{
    font-size: 36px;
  }
  .p_tab_area .nav-item .nav-link{
    font-size: 16px;
  }
  .p_list_block{
    margin-top: 80px;
  }
  .p_list_title{
    font-size: 22px;
  }
  .jato_page{
    margin-top: 80px;
  }
}
@media(max-width: 1299px){
  .inner_top_title{
    font-size: 28px;
  }
  .p_list_area .p_tab_area{
    margin-top: 30px;
  }
  .p_list_block{
    margin-top: 50px;
  }
  .p_list_title{
    font-size: 20px;
    margin-top: 15px;
  }
  .jato_page{
    margin-top: 50px;
  }
}
@media(max-width: 991px){
  .inner_top_title{
    font-size: 24px;
  }
  .p_list_area .p_tab_area{
    margin-top: 15px;
  }
  .p_tab_area .nav-item .nav-link{
    font-size: 14px;
  }
  .p_list_block{
    margin-top: 30px;
  }
  .p_list_title{
    font-size: 18px;
  }
  .page_arrow{
    width: 8px;
  }
  .jato_page .page-item .page-link{
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .seo_text{
    font-size: 14px;
  }
}
@media(max-width: 890px){
  .tab_dropdown_btn{
    display: block;
    background-color: #0068b7;
    color: #fff;
    width: 100%;
    border-radius: 22px;
    padding: 8px;
    margin-top: 15px;
  }
  .tab_dropdown_btn:hover{
    color: #fff;
  }
  .p_tab_area{
    display: none;
    margin-bottom: 0px;
    background-color: #fff;
    border: solid 1px #0068b7;
  }
  .p_list_area .p_tab_area{
    margin: 0px;
    padding: 0px;
  }
  .p_tab_area .nav-item .nav-link{
    color: #282828;
    border-bottom: solid 1px #d9d9d9;
    text-align: center;
    font-size: 14px;
  }
  .p_tab_area .nav-item .active{
    color: #0068b7;
    border-bottom: solid 1px #d9d9d9;
  }
}
@media(max-width: 575px){
  .inner_top_title{
    font-size: 20px;
  }
  .jato_page .page-item{
    margin: 0px 3px;
  }
}
@media(max-width: 490px){
  .p_list_title{
    font-size: 16px;
    margin-top: 10px;
  }
}
@media(max-width: 390px){
  .jato_page .page-item .page-link{
    width: 30px;
    height: 30px;
  }
}

/* product_detail */
.p_det_top{
  align-items: center;
}
.p_det_pic{
  border-radius: 10px;
  overflow: hidden;
}
/* dot */
.pdet_pic_slick.slick-dotted.slick-slider{
  margin-bottom: 0px !important;
}
.pdet_pic_slick .slick-dots li{
  width: 12px;
  height: 12px;
  margin: 0px 4px;
}
.pdet_pic_slick .slick-dots li button{
  width: 12px;
  height: 12px;
}
.pdet_pic_slick .slick-dots{
  left: 0px;
  right: 0px;
  z-index: 4;
  padding: 0px 20px;
  display: flex;
  justify-content: center;
  margin: auto;
  bottom: 20px;
}
.pdet_pic_slick .slick-dots li button:before{
  font-size: 8px;
  line-height: 10px;
  width: 12px;
  height: 12px;
  opacity: 0.5;
  color: #aaaaaa;
}
.pdet_pic_slick .slick-dots li.slick-active button:before{
  opacity: 1;
  color: #0068b7;
}

.p_det_right{
  padding-left: 50px;
}
.p_det_type{
  font-size: 16px;
  color: #0068b7;
  border: solid 1px #d9d9d9;
  padding: 2px 10px;
  display: inline-block;
  border-radius: 15px;
  margin-bottom: 15px;
}
.p_det_title{
  font-size: 36px;
  color: #282828;
  margin-bottom: 0px;
  font-weight: 600;
}
.p_det_btn_area{
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.frame_btn_block{
  display: flex;
  align-items: center;
}
.pdet_btn_block{
  display: flex;
  align-items: center;
}
.pdet_btn{
  width: 180px;
  text-align: center;
  margin-right: 10px;
}
.black_btn{
  background-color: #282828;
}
.black_btn:hover{
  background-color: #d9d9d9;
  color: #282828;
}
.frame_btn{
  width: 50px;
  height: 50px;
  border: solid 1px #d9d9d9;
  color: #0068b7;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  margin-right: 10px;
  flex-shrink: 0;
  transition: all 0.4s ease-in-out;
}
.frame_btn:hover{
  background-color: #0068b7;
  border: solid 1px #0068b7;
  color: #fff;
}
.pinner_tab_area{
  display: flex;
  border: none;
  width: 100%;
  position: relative;
  z-index: 1;
}
.pinner_tab_area .nav-item .nav-link{
  color: #282828;
  border: none;
  border-bottom: solid 2px #d9d9d9;
  text-align: center;
  font-size: 18px;
  width: 100%;
  background-color: transparent;
}
.pinner_tab_area .nav-item .active{
  color: #0068b7;
  border-bottom: solid 2px #0068b7;
}
.pdet_tab_content{
  padding: 65px 65px;
  font-size: 16px;
  border-bottom: solid 1px #d9d9d9;
}
.pdet_tab_content img{
  max-width: 100%;
  height: auto;
}
.pdet_feature_row{
  align-items: center;
}
ul li::marker{
  color: #0068b7;
}
.pdet_spec_row{
  text-align: center;
}
.specification_form{
  margin-top: 50px;
}
.specification_form .table thead tr{
  background-color: #0068b7;
  color: #fff;
}
.specification_form .table thead tr th{
  font-weight: 400;
}
.specification_form .table tbody tr th{
  background-color: #f5f5f5;
  font-weight: 400;
}
.related_area .p_det_title{
  text-align: center;
}
.related_slick{
  margin-top: 50px;
}
.related_item{
  padding: 0px 12px;
}
/* arrow */
.related_slick .slick-prev{
  width: 56px;
  height: 56px;
  left: 0px;
  right: auto;
  z-index: 1;
  top: 40%;
  bottom: auto;
  margin-left: -80px;
}
.related_slick .slick-prev:before{
  content: '';
  background-image: url('../image/prev_arrow.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: left bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.related_slick .slick-next{
  width: 56px;
  height: 56px;
  right: 0px;
  left: auto;
  z-index: 1;
  top: 40%;
  bottom: auto;
  margin-right: -80px;
}
.related_slick .slick-next:before{
  content: '';
  background-image: url('../image/next_arrow.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: right bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.related_slick .slick-next:hover:before{
  content: '';
  background-image: url('../image/next_arrow_h.svg');
  background-size: cover;
}
.related_slick .slick-prev:hover:before{
  content: '';
  background-image: url('../image/prev_arrow_h.svg');
  background-size: cover;
}
.det_bottom_btn{
  margin-top: 100px;
  text-align: center;
}
@media(max-width: 1599px){
  .related_slick{
    padding: 0px 36px;
  }
  .related_slick .slick-prev{
    left: 0px;
    right: auto;
    margin-left: -30px;
  }
  .related_slick .slick-next{
    right: 0px;
    left: auto;
    margin-right: -30px;
  }
}
@media(max-width: 1499px){
  .p_det_right{
    padding-left: 30px;
  }
  .p_det_type{
    font-size: 14px;
    padding: 2px 8px;
    margin-bottom: 10px;
  }
  .p_det_title{
    font-size: 28px;
  }
  .p_det_btn_area{
    margin-top: 30px;
  }
  .pdet_btn{
    width: 160px;
  }
  .pinner_tab_area .nav-item .nav-link{
    font-size: 16px;
  }
  .related_slick{
    margin-top: 30px;
    padding: 0px 50px;
  }
  .related_item{
    padding: 0px 8px;
  }
  .related_slick .slick-prev{
    margin-left: -12px;
  }
  .related_slick .slick-next{
    margin-right: -12px;
  }
  .det_bottom_btn{
    margin-top: 80px;
  }
}
@media(max-width: 1299px){
  .p_det_right{
    padding-left: 20px;
  }
  .p_det_title{
    font-size: 24px;
  }
  .pdet_btn{
    width: 140px;
  }
  .frame_btn{
    width: 45px;
    height: 45px;
    font-size: 16px;
  }
  .pdet_tab_content{
    padding: 50px 12px;
  }
  .related_slick{
    margin-top: 20px;
    padding: 0px 45px;
  }
  .related_slick .slick-prev{
    width: 52px;
    height: 52px;
  }
  .related_slick .slick-prev:before{
    width: 50px;
    height: 50px;
  }
  .related_slick .slick-next{
    width: 52px;
    height: 52px;
  }
  .related_slick .slick-next:before{
    width: 50px;
    height: 50px;
  }
  .det_bottom_btn{
    margin-top: 50px;
  }
}
@media(max-width: 991px){
  .p_det_top{
    padding: 0px 4px;
  }
  .p_det_right{
    padding-left: 0px;
  }
  .p_det_title{
    font-size: 20px;
  }
  .p_det_btn_area{
    margin-top: 20px;
  }
  .pdet_btn{
    width: 120px;
  }
  .frame_btn{
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
  .pinner_tab_area .nav-item .nav-link{
    font-size: 14px;
  }
  .pdet_tab_content{
    padding: 30px 12px;
    font-size: 14px;
  }
  .related_slick{
    margin-top: 15px;
    padding: 0px 30px;
  }
  .related_item{
    padding: 0px 6px;
  }
  .related_slick .slick-prev{
    width: 42px;
    height: 42px;
  }
  .related_slick .slick-prev:before{
    width: 40px;
    height: 40px;
  }
  .related_slick .slick-next{
    width: 42px;
    height: 42px;
  }
  .related_slick .slick-next:before{
    width: 40px;
    height: 40px;
  }
  .det_bottom_btn{
    margin-top: 30px;
  }
}
@media(max-width: 767px){
  .p_det_type{
    font-size: 12px;
    padding: 1px 6px;
  }
  .p_det_title{
    font-size: 18px;
  }
  .p_det_btn_area{
    display: block;
  }
  .pdet_btn_block{
    margin-top: 10px;
  }
  .frame_btn{
    width: 37px;
    height: 37px;
    font-size: 14px;
    margin-right: 10px;
  }
}
@media(max-width: 575px){
  .p_det_right{
    margin-top: 20px;
  }
  .p_det_btn_area{
    display: flex;
  }
  .pdet_btn_block{
    margin-top: 0px;
  }
  .pdet_btn{
    padding: 8px 30px;
    width: 120px;
    margin-right: 10px;
  }
  .det_bottom_btn{
    margin-top: 20px;
  }
}
@media(max-width: 390px){
  .p_det_btn_area{
    margin-top: 15px;
    display: block;
  }
  .pdet_btn_block{
    margin-top: 10px;
  }
}

/* media_catalog */
.catalog_item{
  display: block;
  text-decoration: none;
}
.catalog_cover{
  border-radius: 10px;
  border: solid 1px #d9d9d9;
  overflow: hidden;
}
.catalog_bt{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 10px;
}
.catalog_title{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
  padding-right: 10px;
}
.download_icon{
  background: url('../image/download_icon.svg');
  width: 15px;
  height: 17px;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease-in-out;
}
.catalog_item:hover .arrow_block{
  background-color: #0068b7;
  border: solid 1px #0068b7;
}
.catalog_item:hover .download_icon{
  background: url('../image/download_icon_w.svg');
}
@media(max-width: 1499px){
  .catalog_bt{
    margin-top: 15px;
  }
}
@media(max-width: 1299px){
  .catalog_title{
    font-size: 16px;
  }
}
@media(max-width: 991px){
  .catalog_title{
    font-size: 14px;
    padding-right: 5px;
  }
  .download_icon{
    width: 12px;
    height: 15px;
  }
}
@media(max-width: 390px){
  .catalog_bt{
    margin-top: 10px;
    display: block;
  }
  .catalog_item .arrow_block{
    display: none;
  }
  .catalog_title{
    padding-right: 0px;
  }
}

/* media_detail */
.mdet_top{
  border-bottom: solid 1px #d9d9d9;
  padding-bottom: 15px;
}
.mdet_top .m_date_type{
  margin-bottom: 15px;
}
.mdet_top .media_date{
  font-size: 18px;
}
.mdet_top .media_type{
  font-size: 18px;
}
.mdet_title{
  font-size: 36px;
  color: #282828;
  margin-bottom: 0px;
  font-weight: 600;
}
.mdet_inner{
  padding: 65px 0px;
  max-width: 1180px;
  margin: auto;
  font-size: 16px;
}
.mdet_inner img{
  max-width: 100%;
  height: auto;
}
.mdet_bottom{
  border-top: solid 1px #d9d9d9;
  text-align: center;
  padding-top: 65px;
}
@media(max-width: 1499px){
  .mdet_top{
    padding-bottom: 10px;
  }
  .mdet_top .m_date_type{
    margin-bottom: 10px;
  }
  .mdet_top .media_date{
    font-size: 16px;
  }
  .mdet_top .media_type{
    font-size: 16px;
  }
  .mdet_title{
    font-size: 28px;
  }
  .mdet_inner{
    padding: 50px 0px;
  }
  .mdet_bottom{
    padding-top: 50px;
  }
}
@media(max-width: 1299px){
  .mdet_top .media_date{
    font-size: 14px;
  }
  .mdet_top .media_type{
    font-size: 14px;
  }
  .mdet_title{
    font-size: 24px;
  }
}
@media(max-width: 991px){
  .mdet_title{
    font-size: 20px;
  }
  .mdet_inner{
    padding: 30px 0px;
    font-size: 14px;
  }
  .mdet_bottom{
    padding-top: 30px;
  }
}
@media(max-width: 575px){
  .mdet_top .media_date{
    font-size: 12px;
  }
  .mdet_top .media_type{
    font-size: 12px;
  }
  .mdet_title{
    font-size: 18px;
  }
}

/* media_video */
.v_list_block{
  margin-top: 15px;
}
.video_tab{
  margin: 0px -5px;
}
.video_tab .nav-item{
  padding: 5px 5px;
}
.video_tab .nav-link{
  border: solid 1px #d9d9d9;
  color: #282828;
  background-color: transparent;
  border-radius: 22px;
}
.video_tab .active{
  border: solid 1px #0068b7;
  background-color: rgba(0, 104, 183, 0.1);
  color: #0068b7;
}
.video_area{
  margin-top: 65px;
}
.video{
  text-decoration: none;
  position: relative;
  display: block;
  border-radius: 10px;
  overflow: hidden;
}
.video_tblock .m_type{
  margin-left: 0px;
}
.video_tblock .media_title{
  margin-top: 10px;
}
.video_cover{
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}
.video_tblock{
  margin-top: 20px;
}
.video_icon{
  width: 80px;
  z-index: 1;
  transition: all 0.4s ease-in-out;
}
.video:hover .video_cover{
  background-color: rgba(0, 0, 0, 0.15);
}
.video:hover .video_icon{
  transform: scale(0.8,0.8)
}
@media(max-width: 1299px){
  .video_area{
    margin-top: 50px;
  }
  .video_icon{
    width: 65px;
  }
  .video_tblock{
    margin-top: 15px;
  }
}
@media(max-width: 991px){
  .video_tab .nav-link{
    font-size: 14px;
  }
  .video_area{
    margin-top: 30px;
  }
  .video_icon{
    width: 50px;
  }
}
@media(max-width: 767px){
  .video_area{
    margin-top: 20px;
  }
  .video_icon{
    width: 45px;
  }
}
@media(max-width: 575px){
  .video_tab{
    margin: 0px -3px;
  }
  .video_tab .nav-item{
    padding: 3px 3px;
  }
  .video_tab .nav-link{
    font-size: 12px;
  }
  .video_icon{
    width: 50px;
  }
  .video_tblock{
    margin-top: 10px;
  }
}
@media(max-width: 390px){
  .video_tab .nav-link{
    padding: 5px;
  }
  .video_icon{
    width: 45px;
  }
}

/* about */
.about_block1{
  overflow: hidden;
}
.a_title_sm{
  font-size: 18px;
  color: #0068b7;
  font-weight: 500;
}
.a_title_lg{
  font-size: 36px;
  color: #282828;
  margin-bottom: 0px;
  font-weight: 600;
}
.a_text{
  font-size: 16px;
  color: #282828;
  margin-bottom: 0px;
}
.about_trans{
  padding: 0px;
  overflow: hidden;
}
.about_bg{
  height: 690px;
  background: url('../image/about_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
}
.a_trans_block{
  width: 50%;
  padding: 100px;
  background-color: #0068b7;
  margin-top: -170px;
  border-radius: 0px 10px 10px 0px;
}
.a_trans_block p{
  color: #fff;
  margin-bottom: 0px;
}
.about_certificate{
  background: url('../image/bg_block.png');
  background-size: 100% 30%;
  background-position: left bottom;
  background-repeat: no-repeat;
}
.certificate_area{
  max-width: 1670px;
  margin-left: auto;
  padding: 150px 0px;
}
.certificate_t_slick{
  margin-top: 50px;
}
.certificate_title{
  font-size: 24px;
  color: #0068b7;
  margin-bottom: 0px;
  font-weight: 500;
}
.certificate_right{
  padding-right: 0px;
}
.certificate_p_slick .slick-list{
  padding-right: 150px;
}
.certificate_p_block{
  padding: 0px 12px;
}
.certificate_pic{
  border: solid 1px #d9d9d9;
  border-radius: 10px;
  overflow: hidden;
}
/* arrow */
.certificate_t_slick .slick-prev{
  width: 56px;
  height: 56px;
  left: 0px;
  right: auto;
  z-index: 1;
  top: auto;
  bottom: 0px;
  margin-bottom: -150px;
}
.certificate_t_slick .slick-prev:before{
  content: '';
  background-image: url('../image/prev_arrow.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: left bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.certificate_t_slick .slick-next{
  width: 56px;
  height: 56px;
  right: auto;
  left: 80px;
  z-index: 1;
  top: auto;
  bottom: 0px;
  margin-bottom: -150px;
}
.certificate_t_slick .slick-next:before{
  content: '';
  background-image: url('../image/next_arrow.svg');
  display: block;
  width: 55px;
  height: 55px;
  background-position: right bottom;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.certificate_t_slick .slick-next:hover:before{
  content: '';
  background-image: url('../image/next_arrow_h.svg');
  background-size: cover;
}
.certificate_t_slick .slick-prev:hover:before{
  content: '';
  background-image: url('../image/prev_arrow_h.svg');
  background-size: cover;
}

@media(max-width: 1599px){
  .about_bg{
    height: 550px;
  }
  .a_trans_block{
    width: 50%;
    padding: 65px;
    margin-top: -150px;
  }
}
@media(max-width: 1499px){
  .a_title_sm{
    font-size: 18px;
    margin-bottom: 10px;
  }
  .a_title_lg{
    font-size: 32px;
  }
  .about_bg{
    height: 450px;
  }
  .a_trans_block{
    width: 50%;
    padding: 50px;
    margin-top: -130px;
  }
  .certificate_area{
    padding: 130px 0px;
  }
}
@media(max-width: 1299px){
  .a_title_sm{
    font-size: 16px;
  }
  .a_title_lg{
    font-size: 28px;
  }
  .about_bg{
    height: 400px;
  }
  .a_trans_block{
    width: 50%;
    padding: 30px 24px;
    margin-top: -115px;
  }
  .certificate_area{
    padding: 100px 0px;
  }
  .certificate_t_slick{
    margin-top: 20px;
  }
  .certificate_title{
    font-size: 20px;
  }
  .certificate_t_slick .slick-prev{
    width: 52px;
    height: 52px;
    margin-bottom: -100px;
  }
  .certificate_t_slick .slick-prev:before{
    width: 50px;
    height: 50px;
  }
  .certificate_t_slick .slick-next{
    width: 52px;
    height: 52px;
    left: 70px;
    margin-bottom: -100px;
  }
  .certificate_t_slick .slick-next:before{
    width: 50px;
    height: 50px;
  }
  .certificate_p_block{
    padding: 0px 8px;
  }
}
@media(max-width: 1199px){
  .about_bg{
    height: 350px;
  }
  .a_trans_block{
    width: 65%;
    padding: 30px 24px;
    margin-top: -100px;
  }
  .certificate_area{
    padding: 80px 0px;
  }
}
@media(max-width: 991px){
  .a_title_lg{
    font-size: 24px;
  }
  .a_text{
    font-size: 14px;
  }
  .about_bg{
    height: 300px;
  }
  .a_trans_block{
    width: 70%;
    padding: 30px 24px;
    margin-top: -100px;
  }
  .a_trans_block p{
    font-size: 14px;
  }
  .certificate_area{
    padding: 50px 0px;
  }
  .certificate_title{
    font-size: 18px;
  }
  .certificate_p_slick .slick-list{
    padding-right: 100px;
  }
  .certificate_t_slick .slick-prev{
    width: 42px;
    height: 42px;
    margin-bottom: -50px;
  }
  .certificate_t_slick .slick-prev:before{
    width: 40px;
    height: 40px;
  }
  .certificate_t_slick .slick-next{
    width: 42px;
    height: 42px;
    left: 55px;
    margin-bottom: -50px;
  }
  .certificate_t_slick .slick-next:before{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 767px){
  .a_title_block{
    margin-bottom: 10px;
  }
  .a_title_sm{
    font-size: 14px;
    margin-bottom: 5px;
  }
  .a_title_lg{
    font-size: 20px;
  }
  .about_bg{
    height: 250px;
  }
  .a_trans_block{
    width: 80%;
    margin-top: -100px;
  }
  .certificate_area{
    margin: 0px auto;
  }
  .certificate_t_slick{
    margin-top: 10px;
  }
  .certificate_right{
    padding-right: 12px;
  }
  .certificate_p_slick{
    margin: 20px -8px 0px -8px;
  }
  .certificate_p_slick .slick-list{
    padding-right: 0px;
  }
}
@media(max-width: 575px){
  .about_bg{
    height: 200px;
  }
  .a_trans_block{
    width: 96%;
    margin-top: -50px;
  }
}
@media(max-width: 390px){
  .about_bg{
    height: 150px;
  }
  .a_trans_block{
    width: 100%;
    margin-top: 0px;
  }
}

/* worldwide */
.world_top_area{
  margin-top: 0px;
}
.world_top_block{
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.world_t_block{
  max-width: 550px;
  margin-top: -150px;
  position: absolute;
}
.world_t_block .inner_top_title{
  max-width: 320px;
  font-weight: 600;
}
.world_t_block .global_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
}
.location_block1{
  width: 100%;
  padding: 40px;
  border-radius: 10px;
  background-color: #0068b7;
  margin-top: -150px;
  position: relative;
  z-index: 1;
}
.location_block2{
  width: 100%;
  height: 100%;
  padding: 40px;
  border-radius: 10px;
  background-color: #f5f5f5;
}
.area_top{
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.loca_icon{
  width: 18px;
  margin-right: 10px;
}
.area_title{
  font-size: 30px;
  margin-bottom: 0px;
}
.location_block1 .area_title{
  color: #fff;
}
.location_block2 .area_title{
  color: #282828;
}
.area_company{
  display: flex;
  flex-wrap: wrap
}
.company_loca{
  font-size: 18px;
  margin-bottom: 0px;
}
.location_block1 .company_loca{
  color: #fff;
}
.location_block2 .company_loca{
  color: #282828;
  flex-shrink: 0;
}
.area_company .company_loca::after{
  content: '/';
  margin: 0px 5px;
}
.area_company .company_loca:nth-last-child(1)::after{
  content: '';
}
@media(max-width: 1499px){
  .world_t_block{
    margin-top: -100px;
  }
  .world_t_block .inner_top_title{
    max-width: 240px;
  }
  .location_block1{
    padding: 30px;
    margin-top: -130px;
  }
  .location_block2{
    padding: 30px;
  }
  .area_top{
    margin-bottom: 15px;
  }
  .loca_icon{
    width: 15px;
  }
  .area_title{
    font-size: 28px;
  }
  .company_loca{
    font-size: 16px;
  }
}
@media(max-width: 1299px){
  .world_t_block{
    margin-top: -50px;
  }
  .world_t_block .inner_top_title{
    max-width: 190px;
  }
  .world_t_block .global_text{
    font-size: 16px;
  }
  .location_block1{
    padding: 24px;
    margin-top: -100px;
  }
  .location_block2{
    padding: 24px;
  }
  .area_top{
    margin-bottom: 10px;
  }
  .loca_icon{
    width: 12px;
    margin-right: 5px;
  }
  .area_title{
    font-size: 24px;
  }
  .company_loca{
    font-size: 16px;
  }
}
@media(max-width: 1199px){
  .world_t_block{
    max-width: 480px;
  }
  .location_block1{
    padding: 20px;
    margin-top: -80px;
  }
  .location_block2{
    padding: 20px;
  }
  .area_top{
    margin-bottom: 5px;
  }
  .area_title{
    font-size: 20px;
  }
  .company_loca{
    font-size: 14px;
  }
  .area_company .company_loca::after{
    margin: 0px 3px;
  }
}
@media(max-width: 991px){
  .world_t_block{
    margin-top: 0px;
  }
  .world_t_block .inner_top_title{
    max-width: 160px;
  }
  .location_block1{
    margin-top: 0px;
  }
}
@media(max-width: 575px){
  .world_t_block .inner_top_title{
    max-width: 100%;
  }
  .world_t_block .global_text{
    font-size: 14px;
  }
}

/* contact */
.contact_title{
  font-size: 36px;
  color: #282828;
}
.contact_text{
  font-size: 18px;
  color: #282828;
}
.info_block{
  margin-top: 20px;
}
.info_title{
  font-size: 14px;
  color: #0068b7;
  margin-bottom: 0px;
}
.info_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.info_block a:hover{
  color: #0068b7;
}
.contact_form{
  background-color: #f5f5f5;
  padding: 50px;
  border-radius: 10px;
}
.form_area{
  align-items: flex-end;
}
.jato_input{
  height: 60px;
  border-radius: 30px;
  border: solid 1px transparent;
}
.jato_textarea{
  height: 150px;
  border-radius: 20px;
  border: solid 1px transparent;
}
.jato_input:focus{
  border: solid 1px #0068b7;
  box-shadow: none;
}
.jato_textarea:focus{
  border: solid 1px #0068b7;
  box-shadow: none;
}
.required{
  background-color: #0068b7;
  color: #fff;
  font-size: 12px;
  padding: 3px 6px;
  border-radius: 12px;
  margin-left: 10px;
  font-weight: 300;
}
.code_block{
  position: relative;
}
.modal_reset_btn{
  border: none;
  background-color: transparent;
  padding: 0px;
}
.modal_reset{
  width: 15px;
}
.reset_block{
  position: absolute;
  right: 20px;
  top: 50px;
}
.invalid-feedback{
  position: absolute;
}
.code_block .form-control.is-invalid, .was-validated .form-control:invalid{
  background-image: url("");
}
.send_block{
  text-align: end;
}
.send_block .link_btn{
  width: 180px;
}
@media(max-width: 1499px){
  .contact_title{
    font-size: 30px;
  }
  .contact_text{
    font-size: 16px;
  }
  .info_text{
    font-size: 16px;
  }
  .jato_input{
    height: 50px;
    border-radius: 25px;
  }
  .jato_textarea{
    height: 130px;
  }
  .reset_block{
    top: 45px;
  }
}
@media(max-width: 1299px){
  .contact_title{
    font-size: 28px;
  }
  .contact_form{
    padding: 40px;
  }
  .jato_input{
    height: 50px;
    border-radius: 25px;
  }
  .send_block .link_btn{
    width: 160px;
  }
}
@media(max-width: 991px){
  .contact_title{
    font-size: 24px;
  }
  .contact_text{
    font-size: 14px;
  }
  .info_text{
    font-size: 14px;
  }
  .contact_form{
    padding: 30px 24px;
  }
  .jato_label{
    font-size: 14px;
  }
  .jato_input{
    height: 40px;
    border-radius: 25px;
    font-size: 14px;
  }
  .jato_textarea{
    font-size: 14px;
    height: 100px;
  }
  .send_block .link_btn{
    width: 130px;
  }
  .reset_block{
    top: 38px;
    right: 15px;
  }
}
@media(max-width: 767px){
  .contact_title{
    font-size: 20px;
    margin-bottom: 5px;
  }
  .contact_text{
    margin-bottom: 0px;
  }
  .info_block{
    margin-top: 10px;
  }
  .contact_form{
    padding: 30px 24px;
    margin-top: 20px;
  }
  .jato_label{
    font-size: 14px;
  }
  .jato_input{
    height: 40px;
    border-radius: 25px;
    font-size: 14px;
  }
  .send_block .link_btn{
    width: 130px;
  }
  .reset_block{
    top: 38px;
    right: 15px;
  }
}
@media(max-width: 575px){
  .contact_form{
    padding: 20px;
  }
  .invalid-feedback{
    position: relative;
  }
  .send_block{
    text-align: center;
  }
}

/* inquiry */
.inquiry_area{
  margin-top: 20px;
}
.inquiry_item{
  display: flex;
  align-items: center;
  border-bottom: solid 1px #d9d9d9;
  padding: 15px 0px;
  position: relative;
}
.inquiry_item:nth-child(1){
  border-top: solid 1px #d9d9d9;
}
.inquiry_pic{
  max-width: 20%;
  border-radius: 10px;
  overflow: hidden;
}
.inquiry_item_t{
  font-size: 16px;
  color: #282828;
  padding-left: 10px;
  padding-right: 50px;
  margin-bottom: 0px;
}
.delete_btn{
  position: absolute;
  right: 0px;
  width: 30px;
  height: 30px;
  border-radius: 100%;
  border: solid 1px #d9d9d9;
  background-color: #fff;
  color: #0068b7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media(max-width: 1299px){
  .inquiry_pic{
    max-width: 25%;
  }
}
@media(max-width: 991px){
  .inquiry_item_t{
    font-size: 14px;
    padding-right: 35px;
  }
  .delete_btn{
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
}
@media(max-width: 767px){
  .inquiry_pic{
    max-width: 15%;
  }
}
@media(max-width: 575px){
  .inquiry_area{
    margin-top: 15px;
  }
  .inquiry_item{
    padding: 10px 0px;
  }
  .inquiry_pic{
    max-width: 20%;
  }
}
@media(max-width: 390px){
  .inquiry_pic{
    max-width: 25%;
  }
}

/* submit */
.submit_area{
  max-width: 1420px;
  margin: 0px auto;
  padding: 200px 0px 150px 0px;
}
.inner_submit{
  text-align: center;
}
.send_icon{
  width: 150px;
}
.submit_t_block{
  margin-top: 30px;
}
.submit_title{
  font-size: 48px;
  color: #282828;
}
.submit_text{
  font-size: 20px;
  color: #282828;
}
.submit_btn{
  width: 160px;
}
@media(max-width: 1499px){
  .submit_area{
    padding: 180px 0px 130px 0px;
  }
  .send_icon{
    width: 130px;
  }
  .submit_t_block{
    margin-top: 20px;
  }
  .submit_title{
    font-size: 38px;
  }
  .submit_text{
    font-size: 18px;
  }
  .submit_btn{
    width: 150px;
  }
}
@media(max-width: 991px){
  .submit_area{
    padding: 150px 0px 100px 0px;
  }
  .send_icon{
    width: 100px;
  }
  .submit_t_block{
    margin-top: 15px;
  }
  .submit_title{
    font-size: 36px;
  }
  .submit_text{
    font-size: 18px;
  }
  .submit_btn{
    width: 130px;
  }
}
@media(max-width: 767px){
  .submit_area{
    padding: 130px 0px 80px 0px;
  }
  .submit_title{
    font-size: 28px;
  }
  .submit_text{
    font-size: 16px;
  }
  .submit_btn{
    width: 100px;
  }
}

/* privacy */
.privacy_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
}
.privacy_cname{
  color: #0068b7;
}
@media(max-width: 1299px){
  .privacy_text{
    font-size: 16px;
  }
}
@media(max-width: 991px){
  .privacy_text{
    font-size: 14px;
  }
}

/* privacy_popup */
.privacyBox{
  position: fixed;
  bottom: 0%;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  line-height: 1.5;
  padding: 15px 24px;
  box-shadow: 0 -2px 16px rgba(47, 54, 64, 0.39);
  transition: 400ms;
  z-index: 999;
  width: 100%;
}
.privacyBox .cookie_block{
  display: flex;
  align-items: center;
  margin: auto;
  max-width: 800px;
  font-size: 14px;
  font-weight: 300;
}
.privacyBox .cookie_block p{
  margin-bottom: 0px;
  padding-right: 15px;
}
.privacyBox a{
  color: #0068b7;
}
.privacyBox .closePrivacy{
  white-space:nowrap;
  cursor: pointer;
}
.privacy_text{
  line-height: 32px;
}
.closePrivacy{
  background-color: #0068b7;
  padding: 8px 20px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}
.closePrivacy:hover{
  background-color: #282828;
}
@media(max-width: 450px){
  .privacyBox{
    padding: 15px 25px;
  }
  .privacyBox .cookie_block{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 12px;
    text-align: center;
  }
  .privacyBox .closePrivacy{
    margin-top: 10px;
  }
  .privacyBox .cookie_block p{
    padding-right: 0px;
  }
}

/* top_btn */
.top_scroll{
  display: none !important;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.top_btn{
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 99;
  width: 55px;
  height: 55px;
  border: solid 1px #d9d9d9;
  background-color: #282828;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
.top_icon{
  width: 12px;
}
@media(max-width: 1299px){
  .top_btn{
    right: 24px;
    bottom: 50px;
    width: 50px;
    height: 50px;
  }
  .top_icon{
    width: 10px;
  }
}
@media(max-width: 991px){
  .top_btn{
    right: 24px;
    bottom: 60px;
    width: 40px;
    height: 40px;
  }
  .top_icon{
    width: 8px;
  }
}
@media(max-width: 575px){
  .top_btn{
    right: 24px;
    bottom: 24px;
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 390px){
  .top_btn{
    right: 20px;
    bottom: 20px;
  }
}