html,body{
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Mulish", sans-serif;
  background-color: #f5f5f5;
}

/* 整個捲軸 */
::-webkit-scrollbar { width: 10px; height: 10px;}
/* 捲軸的軌道 */
::-webkit-scrollbar-track { background: #d9d9d9; }
/*捲軸尚未滑到的軌道*/
::-webkit-scrollbar-track-piece{ background: #d9d9d9; }
/* 滑動的區塊 */
::-webkit-scrollbar-thumb { background: #c11920;}
/* 滑鼠移到滑動的區塊上 */
::-webkit-scrollbar-thumb:hover { background: #c11920;}

::selection {
	background: #c11920;
	color: #fff;
}

/* nav */
.gh_navbar{
  padding: 0px 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.navbar{
  background-color: #f5f5f5;
  transition: 0.6s;
  position: fixed;
  width: 100%;
  z-index: 999;
}
.nav_scroll{
  background-color: transparent;
  transition: 0.6s;
  box-shadow: none;
}
.logo{
  background: url('../image/logo.svg') left center no-repeat;
  width: 73px;
  height: 73px;
  cursor: pointer;
  background-size: contain;
}
.navbar_area{
  max-width: 1560px;
  margin: 0px auto;
  padding: 0px 12px;
  position: relative;
}
#index .nav_scroll .navbar_area::after{
  content: "";
  width: 100%;
  max-width: 1560px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}
.nav_top{
  padding: 15px 0px;
}
.nav_linkarea{
  justify-content: flex-start;
  padding-left: 30px;
}
.nav_linkarea .nav-link{
  color: #282828;
  background-color: transparent;
  border: none;
  padding: 30px 30px !important;
  transition: 0.4s;
  font-size: 18px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav_scroll .nav_linkarea .nav-link{
  color: #282828;
}
#index .nav_scroll .nav_linkarea .nav-link{
  color: #fff;
}
.gh_navbar:hover{
  background-color: #f5f5f5;
}
#index .gh_navbar:hover .nav_linkarea .nav-link{
  color: #282828;
}
.nav_linkarea .nav-item:hover .nav-link{
  color: #c11920 !important;
}
.nav_linkarea .nav-link::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #c11920;
  left: 0;
  bottom: 0;
  opacity: 0;
}
.nav_linkarea .nav-item:hover .nav-link::after{
  opacity: 1;
}
.nav_right{
  display: flex;
  align-items: center;
  position: relative;
}
.contact_btn{
  position: relative;
  width: 150px;
  height: 50px;
  border-radius: 5px;
  background-color: #c11920;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  text-decoration: none;
}
.contact_btn:hover{
  color: #fff;
}
.cart_point{
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #fff;
  position: absolute;
  right: 20px;
  top: 12px;
  display: none;
  animation: hasitem 1s infinite;
}
.has_item .cart_point{
  display: block;
}
@keyframes hasitem{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.search_btn{
  padding: 30px;
}
.search_icon{
  background-image: url('../image/search_icon_b.svg');
  width: 23px;
  height: 23px;
  background-repeat: no-repeat;
}
.search_btn:focus{
  box-shadow: none;
}
#index .nav_scroll .search_icon{
  background-image: url('../image/search_icon.svg');
}
#index .gh_navbar:hover .search_icon{
  background-image: url('../image/search_icon_b.svg');
}
.drop_search_btn{
  padding: 0px;
  margin-left: 12px;
}
.drop_search_icon{
  width: 23px;
}
.search_input:focus{
  box-shadow: none;
  border: solid 1px #c11920;
}
.search_dropmenu{
  background-color: #fff;
  border: none;
  border-radius: 0px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  left: 50% !important;
  transform: translateX(-50%);
  padding: 12px;
  width: 280px;
}
/* dropdown_menu */
.gh_dropmenu{
  border: none;
  background-color: #fff;
  padding: 0px;
  border-radius: 0px;
  margin-top: 0px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  left: 50% !important;
  transform: translateX(-50%);
  width: 250px;
}
.gh_dropmenu .dropdown-item{
  color: #282828;
  padding: 6px 12px;
  transition: 0.4s;
  font-size: 18px;
  white-space: normal;
  border-bottom: solid 1px #d9d9d9;
}
.gh_dropmenu .dropdown-item:hover{
  background-color: #f5f5f5;
}
.gh_dropmenu .dropdown-item:active{
  background-color: transparent;
}
.gh_dropmenu .dropdown-item:focus{
  background-color: transparent;
}

@media(min-width: 991px){
  .gh_dropmenu li:hover .sub-menu{
    visibility: visible;
  }
  .dropdown:hover .gh_dropmenu{
    display: block;
  }
}
@media(max-width: 1499px){
  .logo{
    width: 70px;
    height: 70px;
  }
  .nav_linkarea{
    padding-left: 20px;
  }
  .nav_linkarea .nav-link{
    padding: 30px 20px !important;
  }
  .search_btn{
    padding: 30px 20px;
  }
}
@media(max-width: 1299px){
  .logo{
    width: 65px;
    height: 65px;
  }
  .nav_linkarea{
    padding-left: 15px;
  }
  .nav_linkarea .nav-link{
    padding: 30px 15px !important;
    font-size: 16px;
  }
  .search_btn{
    padding: 30px 15px;
  }
  .search_icon{
    width: 20px;
    height: 20px;
  }
  .contact_btn{
    width: 130px;
    height: 45px;
    font-size: 16px;
  }
  .cart_point{
    width: 5px;
    height: 5px;
    right: 15px;
    top: 10px;
  }
  .gh_dropmenu{
    width: 230px;
  }
  .gh_dropmenu .dropdown-item{
    font-size: 16px;
  }
}
@media(max-width: 1099px){
  .logo{
    width: 60px;
    height: 60px;
  }
  .nav_linkarea{
    padding-left: 10px;
  }
  .nav_linkarea .nav-link{
    padding: 24px 8px !important;
  }
  .search_btn{
    padding: 24px 10px;
  }
  .contact_btn{
    width: 120px;
    height: 45px;
  }
  .cart_point{
    right: 10px;
  }
}
@media(max-width: 991px){
  .gh_navbar{
    padding: 0px;
  }
  .nav_scroll{
    background-color: #f5f5f5;
  }
  .navbar_area{
    padding: 0px;
  }
  .logo{
    width: 40px;
    height: 40px;
    margin: 10px 24px;
  }
  #index .nav_scroll .nav_linkarea .nav-link{
    color: #282828;
  }
  .nav_linkarea{
    padding-left: 0px;
  }
  .nav_linkarea .nav-link{
    width: 100%;
    text-align: center;
    padding: 8px !important;
    font-size: 14px;
    background-color: #f5f5f5;
    border-bottom: solid 1px #d9d9d9;
  }
  .nav_linkarea .nav-item:hover .nav-link{
    background-color: #c11920;
    color: #fff !important;
  }
  .nav_linkarea .nav-link::after{
    display: none;
  }
  .gh_dropmenu{
    left: 0;
    transform: translateX(0%);
    box-shadow: none;
    width: 100%;
  }
  .gh_dropmenu .dropdown-item{
    font-size: 14px;
    padding: 8px;
    text-align: center;
    background-color: #e9e9e9;
  }
  .gh_dropmenu .dropdown-item:hover{
    background-color: #f5f5f5;
    color: #c11920;
  }
  .nav_right{
    position: absolute;
    top: 0px;
    right: 70px;
  }
  .search_btn{
    padding: 20px 15px;
  }
  #index .nav_scroll .search_icon{
    background-image: url('../image/search_icon_b.svg');
  }
  .contact_btn{
    width: 100px;
    height: 40px;
    font-size: 14px;
  }
  .cart_point{
    right: 10px;
  }
  .navbar-toggler{
    position: absolute;
    top: 12px;
    z-index: 2;
    right: 12px;
    border-radius: 100%;
    border: none;
    height: 40px;
    width: 55px;
    cursor: pointer;
    box-shadow: none !important;
  }
  .navbar-toggler .hamburguer_btn{
    width: 100%;
    height: 2px;
    background: #282828;
    margin: 5px auto;
    transition: all 0.3s;
    backface-visibility: hidden;
  }
  .navbar-toggler.on .line1 {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .navbar-toggler.on .line2 {
    opacity: 0;
  }
  .navbar-toggler.on .line3 {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}
@media(max-width: 390px){
  .logo{
    margin: 10px 12px;
  }
  .nav_right{
    right: 60px;
  }
  .navbar-toggler{
    right: 2px;
  }
}

/* banner */
.index_block{
  padding: 0;
  overflow: hidden;
  position: relative;
}
.banner{
  position: relative;
}
.banner_slick .slick-track{
  line-height: 1;
}
.banner_block{
  position: relative;
}
.banner_cover{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.banner_tblock{
  position: absolute;
  max-width: 1120px;
  margin: auto;
  bottom: 180px;
  left: 0;
  right: 0;
  z-index: 2;
}
.b_title_lg{
  font-size: 76px;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 700;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.b_title_lg .part2{
  margin-left: 31%;
}
.b_title_sm{
  font-size: 24px;
  color: #fff;
  margin-bottom: 0px;
  margin-left: 31%;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.scroll_down{
  width: 150px;
  height: 150px;
  border: solid 1px rgba(255, 255, 255, 0.5);
  border-radius: 100%;
  position: absolute;
  bottom: 180px;
  right: 10%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scroll_icon{
  width: 18px;
}
@media(max-width: 1699px){
  .banner_tblock{
    max-width: 1100px;
    bottom: 130px;
  }
  .b_title_lg{
    font-size: 72px;
  }
  .scroll_down{
    width: 130px;
    height: 130px;
    bottom: 130px;
    right: 5%;
  }
}
@media(max-width: 1499px){
  .banner_tblock{
    max-width: 1050px;
    bottom: 100px;
  }
  .b_title_lg{
    font-size: 68px;
  }
  .scroll_down{
    width: 100px;
    height: 100px;
    bottom: 100px;
    right: 24px;
  }
  .scroll_icon{
    width: 15px;
  }
}
@media(max-width: 1299px){
  .banner_tblock{
    max-width: 990px;
    bottom: 80px;
  }
  .b_title_lg{
    font-size: 62px;
  }
  .b_title_sm{
    font-size: 22px;
  }
  .scroll_down{
    width: 80px;
    height: 80px;
    bottom: 80px;
  }
  .scroll_icon{
    width: 12px;
  }
}
@media(max-width: 1199px){
  .banner_tblock{
    max-width: 890px;
    bottom: 65px;
  }
  .b_title_lg{
    font-size: 58px;
  }
  .b_title_lg .part2{
    margin-left: 28%;
  }
  .b_title_sm{
    font-size: 22px;
    margin-left: 28%;
  }
  .scroll_down{
    width: 65px;
    height: 65px;
    bottom: 65px;
  }
  .scroll_icon{
    width: 10px;
  }
}
@media(max-width: 1099px){
  .banner_tblock{
    max-width: 690px;
    bottom: 50px;
  }
  .b_title_lg{
    font-size: 52px;
  }
  .b_title_lg .part2{
    margin-left: 25%;
  }
  .b_title_sm{
    margin-left: 25%;
  }
  .scroll_down{
    width: 50px;
    height: 50px;
    bottom: 50px;
  }
  .scroll_icon{
    width: 8px;
  }
}
@media(max-width: 991px){
  .index_block{
    margin-top: 60px;
  }
  .banner_tblock{
    max-width: 590px;
    bottom: 30px;
  }
  .b_title_lg{
    font-size: 48px;
  }
  .b_title_sm{
    font-size: 20px;
  }
  .scroll_down{
    width: 45px;
    height: 45px;
    bottom: 30px;
  }
}
@media(max-width: 767px){
  .banner_tblock{
    max-width: 490px;
    bottom: 30px;
  }
  .b_title_lg{
    font-size: 38px;
    margin-bottom: 5px;
  }
  .b_title_sm{
    font-size: 18px;
  }
}
@media(max-width: 575px){
  .banner_tblock{
    max-width: 330px;
    bottom: 20px;
  }
  .b_title_lg{
    font-size: 28px;
  }
  .b_title_lg .part2{
    margin-left: 20%;
  }
  .b_title_sm{
    font-size: 16px;
    margin-left: 20%;
  }
  .scroll_down{
    width: 40px;
    height: 40px;
    bottom: 20px;
  }
}
@media(max-width: 450px){
  .banner_tblock{
    max-width: 280px;
    bottom: 20px;
  }
  .b_title_lg{
    font-size: 24px;
  }
  .b_title_lg .part2{
    margin-left: 15%;
  }
  .b_title_sm{
    font-size: 14px;
    margin-left: 15%;
  }
  .scroll_down{
    width: 35px;
    height: 35px;
    right: 20px;
  }
}
@media(max-width: 390px){
  .banner_tblock{
    max-width: 240px;
    bottom: 15px;
  }
  .b_title_lg{
    font-size: 22px;
  }
  .b_title_lg .part2{
    margin-left: 15%;
  }
  .b_title_sm{
    font-size: 12px;
    margin-left: 15%;
  }
  .scroll_down{
    width: 30px;
    height: 30px;
    right: 12px;
  }
}

/* index_product */
.index_product{
  padding: 150px 0px;
}
.index_p_top{
  align-items:flex-start;
  justify-content: space-between;
  max-width: 1560px;
  margin: auto;
  overflow: hidden;
}
.index_title{
  font-size: 48px;
  color: #282828;
  font-weight: 700;
}
.text_sm{
  font-size: 18px;
  color: #282828;
}
.gh_btn{
  position: relative;
  width: 200px;
  height: 60px;
  border-radius: 5px;
  background-color: #c11920;
  color: #fff;
  border: solid 1px #c11920;
  padding: 18px;
  text-decoration: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.gh_btn_w{
  position: relative;
  width: 200px;
  height: 60px;
  border-radius: 5px;
  border: solid 1px #fff;
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 18px;
  text-decoration: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.gh_btn_2{
  position: relative;
  width: 200px;
  height: 60px;
  border-radius: 5px;
  background-color: #f5f5f5;
  color: #c11920;
  border: solid 1px #c11920;
  padding: 18px;
  text-decoration: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.gh_btn_inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
  width: 100%;
}
.gh_btn::before{
  content: '';
  position: absolute;
  top: 0;
  right: -30%;
  bottom: -1px;
  left: -30%;
  background: #282828;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.3, 0.69, 0.39, 1.04) 0.2s, opacity 0.2s linear, -webkit-transform 0.4s cubic-bezier(0.3, 0.69, 0.39, 1.04) 0.2s;
  -webkit-transform: translate(-400px, 0) skew(0deg, 0deg);
  transform: translate(-400px, 0) skew(0deg, 0deg);
}
.gh_btn:hover::before{
  opacity: 1;
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
  -webkit-transform: translate(0, 0) skew(0deg, 0deg);
  transform: translate(0, 0) skew(0deg, 0deg);
}
.gh_btn:hover{
  color: #fff;
  border: solid 1px #282828
}
.gh_btn_w::before{
  content: '';
  position: absolute;
  top: 0;
  right: -30%;
  bottom: -1px;
  left: -30%;
  background: #c11920;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.3, 0.69, 0.39, 1.04) 0.2s, opacity 0.2s linear, -webkit-transform 0.4s cubic-bezier(0.3, 0.69, 0.39, 1.04) 0.2s;
  -webkit-transform: translate(-400px, 0) skew(0deg, 0deg);
  transform: translate(-400px, 0) skew(0deg, 0deg);
}
.gh_btn_w:hover::before{
  opacity: 1;
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
  -webkit-transform: translate(0, 0) skew(0deg, 0deg);
  transform: translate(0, 0) skew(0deg, 0deg);
}
.gh_btn_w:hover{
  color: #fff;
  border: solid 1px #c11920;
}
.gh_btn_2::before{
  content: '';
  position: absolute;
  top: 0;
  right: -30%;
  bottom: -1px;
  left: -30%;
  background: #c11920;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.3, 0.69, 0.39, 1.04) 0.2s, opacity 0.2s linear, -webkit-transform 0.4s cubic-bezier(0.3, 0.69, 0.39, 1.04) 0.2s;
  -webkit-transform: translate(-400px, 0) skew(0deg, 0deg);
  transform: translate(-400px, 0) skew(0deg, 0deg);
}
.gh_btn_2:hover::before{
  opacity: 1;
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
  -webkit-transform: translate(0, 0) skew(0deg, 0deg);
  transform: translate(0, 0) skew(0deg, 0deg);
}
.gh_btn_2:hover{
  color: #fff;
  border: solid 1px #c11920;
}
.btn_arrow{
  width: 10px;
}
.download_icon::after{
  content: "";
  background-image: url('../image/download_icon.svg');
  width: 10px;
  height: 13px;
  display: block;
}
.gh_btn_2:hover .download_icon::after{
  background-image: url('../image/download_icon_w.svg');
}
.index_p_top .gh_btn{
  margin-top: 30px;
}
.index_p_bt{
  margin-top: 65px;
}
.p_bt_area{
  padding: 0px;
}
.product_slick .slick-list{
  padding: 0px 250px !important;
}
.product_block{
  padding: 0px 12px;
}
.product_item{
  position: relative;
  display: block;
}
.product_item::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.35);
  transition: all ease-in-out 0.3s;
  z-index: 1;
}
.product_item:hover::before{
  background-color: rgba(0, 0, 0, 0.2);
}
.product_pic{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 76%;
}
.product_pic img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.p_item_t_block{
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 24px;
  border-bottom: solid 1px #fff;
  z-index: 2;
}
.p_item_title{
  font-size: 28px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.25;
  height: 70px;
}
.p_more{
  display: flex;
  align-items: center;
  position: absolute;
  color: #fff;
  text-decoration: none;
  left: 24px;
  bottom: 24px;
  z-index: 2;
  white-space: nowrap;
}
.p_more .btn_arrow{
  margin-left: 15px;
  transition: all ease-in-out 0.3s;
}
.product_item:hover .btn_arrow{
  margin-right: -5px;
  margin-top: -5px;
}
/* arrow */
.index_p_btn{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1560px;
  margin: auto;
  margin-top: 15px;
  padding: 0px 12px;
}
.index_p_bt .slick-prev{
  width: 24px;
  height: 18px;
  z-index: 1;
  position: relative;
  left: 0;
  transform: translate(0, 0%);
  margin-right: 60px;
}
.index_p_bt .slick-prev:before{
  content: '';
  background-image: url('../image/slick_prev_b.svg');
  display: block;
  width: 24px;
  height: 18px;
  background-position: left center;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.index_p_bt .slick-next{
  width: 24px;
  height: 18px;
  z-index: 1;
  position: relative;
  right: 0;
  transform: translate(0, 0%);
}
.index_p_bt .slick-next:before{
  content: '';
  background-image: url('../image/slick_next_b.svg');
  display: block;
  width: 24px;
  height: 18px;
  background-position: right center;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
@media(max-width: 1699px){
  .index_title{
    font-size: 46px;
  }
  .p_item_title{
    font-size: 24px;
    height: 60px;
  }
}
@media(max-width: 1499px){
  .index_product{
    padding: 130px 0px;
  }
  .index_title{
    font-size: 44px;
  }
  .index_p_top .gh_btn{
    margin-top: 20px;
  }
  .gh_btn{
    width: 180px;
    height: 55px;
  }
  .gh_btn_w{
    width: 180px;
    height: 55px;
  }
  .gh_btn_2{
    width: 180px;
    height: 55px;
  }
  .index_p_bt{
    margin-top: 50px;
  }
  .product_slick .slick-list{
    padding: 0px 200px !important;
  }
  .p_item_t_block{
    margin: 20px;
  }
  .p_item_title{
    font-size: 22px;
    height: 55px;
    margin-bottom: 15px;
  }
  .p_more{
    left: 20px;
    bottom: 20px;
  }
}
@media(max-width: 1299px){
  .index_product{
    padding: 100px 0px;
  }
  .index_title{
    font-size: 38px;
  }
  .text_sm{
    font-size: 16px;
  }
  .index_p_top .gh_btn{
    margin-top: 15px;
  }
  .gh_btn{
    width: 160px;
    height: 50px;
    font-size: 16px;
  }
  .gh_btn_w{
    width: 160px;
    height: 50px;
    font-size: 16px;
  }
  .gh_btn_2{
    width: 160px;
    height: 50px;
    font-size: 16px;
  }
  .index_p_bt{
    margin-top: 50px;
  }
  .product_slick .slick-list{
    padding: 0px 150px !important;
  }
  .p_item_title{
    font-size: 20px;
    height: 50px;
  }
}
@media(max-width: 1199px){
  .index_product{
    padding: 80px 0px;
  }
  .index_title{
    font-size: 36px;
  }
  .product_slick .slick-list{
    padding: 0px 100px !important;
  }
  .index_p_bt .slick-prev{
    width: 20px;
    height: 14px;
    margin-right: 30px;
  }
  .index_p_bt .slick-prev:before{
    width: 20px;
    height: 14px;
  }
  .index_p_bt .slick-next{
    width: 20px;
    height: 14px;
  }
  .index_p_bt .slick-next:before{
    width: 20px;
    height: 14px;
  }
}
@media(max-width: 1099px){
  .index_product{
    padding: 65px 0px;
  }
  .index_title{
    font-size: 32px;
  }
  .index_p_bt{
    margin-top: 30px;
  }
  .product_slick .slick-list{
    padding: 0px 65px !important;
  }
}
@media(max-width: 991px){
  .index_product{
    padding: 50px 0px;
  }
  .index_title{
    font-size: 28px;
  }
  .text_sm{
    font-size: 14px;
  }
  .gh_btn{
    width: 150px;
    height: 45px;
    font-size: 14px;
  }
  .gh_btn_w{
    width: 150px;
    height: 45px;
    font-size: 14px;
  }
  .gh_btn_2{
    width: 150px;
    height: 45px;
    font-size: 14px;
  }
  .btn_arrow{
    width: 8px;
  }
  .download_icon::after{
    width: 8px;
    height: 11px;
  }
  .product_slick .slick-list{
    padding: 0px 50px !important;
  }
  .p_item_title{
    font-size: 18px;
    height: 45px;
  }
  .p_more{
    font-size: 14px;
  }
  .p_more .btn_arrow{
    margin-left: 10px;
  }
}
@media(max-width: 767px){
  .index_title{
    font-size: 22px;
  }
  .gh_btn{
    width: 140px;
    height: 40px;
  }
  .gh_btn_w{
    width: 140px;
    height: 40px;
  }
  .gh_btn_2{
    width: 140px;
    height: 40px;
  }
  .text_sm{
    line-height: 1.25;
  }
  .product_slick .slick-list{
    padding: 0px 100px !important;
  }
  .index_p_bt .slick-prev{
    width: 18px;
    height: 12px;
    margin-right: 25px;
  }
  .index_p_bt .slick-prev:before{
    width: 18px;
    height: 12px;
  }
  .index_p_bt .slick-next{
    width: 18px;
    height: 12px;
  }
  .index_p_bt .slick-next:before{
    width: 18px;
    height: 12px;
  }
}
@media(max-width: 575px){
  .index_title{
    font-size: 20px;
    margin-bottom: 5px;
  }
  .gh_btn{
    width: 130px;
    height: 40px;
    padding: 0px 10px;
  }
  .gh_btn_w{
    width: 130px;
    height: 40px;
    padding: 0px 10px;
  }
  .gh_btn_2{
    width: 130px;
    height: 40px;
    padding: 0px 10px;
  }
  .product_slick .slick-list{
    padding: 0px 50px !important;
  }
}
@media(max-width: 450px){
  .product_slick .slick-list{
    padding: 0px 30px !important;
  }
  .p_item_t_block{
    margin: 12px;
  }
  .p_item_title{
    font-size: 16px;
    height: 40px;
    margin-bottom: 10px;
  }
  .index_p_bt .slick-prev{
    width: 16px;
    height: 10px;
    margin-right: 20px;
  }
  .index_p_bt .slick-prev:before{
    width: 16px;
    height: 10px;
  }
  .index_p_bt .slick-next{
    width: 16px;
    height: 10px;
  }
  .index_p_bt .slick-next:before{
     width: 16px;
    height: 10px;
  }
  .p_more{
    left: 12px;
    bottom: 12px;
  }
}

/* index_about */
.index_about{
  max-width: 1740px;
  margin-left: auto;
  padding-bottom: 150px;
  overflow: hidden;
}
.index_a_top{
  max-width: 1560px;
  margin-right: auto;
  margin-bottom: 80px;
  align-items: flex-end;
}
.title_sm{
  font-size: 24px;
  font-weight: 600;
  color: #282828;
  line-height: 1.3;
}
.index_a_right{
  padding-right: 0px;
  text-align: right;
}
.a_left_block{
  padding-right: 65px;
}
.index_a_top .title_sm{
  color: #c11920;
  margin-bottom: 0px;
}
.index_a_top .gh_btn{
  margin-left: auto;
}
.a_left_block .text_sm{
  margin-bottom: 65px;
}

@media(max-width: 1499px){
  .index_about{
    padding-bottom: 130px;
  }
  .index_a_top{
    margin-bottom: 65px;
  }
  .title_sm{
    font-size: 22px;
  }
  .a_left_block{
    padding-right: 50px;
  }
  .a_left_block .text_sm{
    margin-bottom: 50px;
  }
}
@media(max-width: 1299px){
  .index_about{
    padding-bottom: 100px;
  }
  .index_a_top{
    margin-bottom: 30px;
  }
  .title_sm{
    font-size: 20px;
  }
  .a_left_block{
    padding-right: 15px;
  }
  .a_left_block .text_sm{
    margin-bottom: 15px;
  }
  .a_left_pic{
    max-width: 70%;
  }
}
@media(max-width: 1199px){
  .index_about{
    padding-bottom: 80px;
  }
}
@media(max-width: 1099px){
  .index_about{
    padding-bottom: 65px;
  }
  .title_sm{
    font-size: 18px;
  }
  .a_left_block{
    padding-right: 0px;
  }
}
@media(max-width: 991px){
  .index_about{
    padding-bottom: 50px;
  }
  .a_left_pic{
    max-width: 65%;
  }
}
@media(max-width: 767px){
  .index_a_top{
    margin-bottom: 15px;
  }
  .title_sm{
    font-size: 16px;
  }
  .a_left_pic{
    display: none;
  }
}
@media(max-width: 575px){
  .index_a_top .gh_btn{
    margin-right: auto;
    margin-left: 0px;
    margin-top: 15px;
  }
}

/* index_application */
.application_area{
  background-image: url('../image/app_bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.index_application{
  max-width: 1740px;
  margin-left: auto;
  padding: 150px 0px;
  overflow: hidden;
}
.index_app_top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1560px;
  margin-right: auto;
  padding-right: 12px;
}
.index_app_top .index_title{
  color: #fff;
}
.index_app_bt{
  padding: 0px;
  margin-top: 65px;
}
.application_slick .slick-list{
  padding-right: 180px;
}
.app_item{
  border: solid 1px #fff;
  border-radius: 5px;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.15);
  display: block;
  text-decoration: none;
}
.app_block{
  padding: 0px 12px;
}
.app_pic{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 76%;
  border-radius: 5px;
  overflow: hidden;
}
.app_pic img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transform: scale(1,1);
  transition: all ease-in-out 0.3s;
}
.app_item:hover .app_pic img{
  transform: scale(1.08,1.08);
}
.app_item_bt{
  padding-top: 24px;
}
.app_item_bt .title_sm{
  color: #fff;
  margin-bottom: 0px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
/* arrow */
.index_a_btn{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1560px;
  margin-right: auto;
  margin-top: 15px;
  padding: 0px 24px;
}
.index_app_bt .slick-prev{
  width: 24px;
  height: 18px;
  z-index: 1;
  position: relative;
  left: 0;
  transform: translate(0, 0%);
  margin-right: 60px;
}
.index_app_bt .slick-prev:before{
  content: '';
  background-image: url('../image/slick_prev_w.svg');
  display: block;
  width: 24px;
  height: 18px;
  background-position: left center;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.index_app_bt .slick-next{
  width: 24px;
  height: 18px;
  z-index: 1;
  position: relative;
  right: 0;
  transform: translate(0, 0%);
}
.index_app_bt .slick-next:before{
  content: '';
  background-image: url('../image/slick_next_w.svg');
  display: block;
  width: 24px;
  height: 18px;
  background-position: right center;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
@media(max-width: 1499px){
  .index_application{
    padding: 130px 0px;
  }
  .index_app_bt{
    margin-top: 50px;
  }
  .application_slick .slick-list{
    padding-right: 150px;
  }
}
@media(max-width: 1299px){
  .index_application{
    padding: 100px 0px;
  }
  .application_slick .slick-list{
    padding-right: 130px;
  }
  .app_item{
    padding: 20px;
  }
  .app_item_bt{
    padding-top: 20px;
  }
}
@media(max-width: 1199px){
  .index_application{
    padding: 80px 0px;
  }
  .application_slick .slick-list{
    padding-right: 100px;
  }
  .app_item{
    padding: 12px;
  }
  .app_item_bt{
    padding-top: 12px;
  }
  .index_app_bt .slick-prev{
    width: 20px;
    height: 14px;
    margin-right: 30px;
  }
  .index_app_bt .slick-prev:before{
    width: 20px;
    height: 14px;
  }
  .index_app_bt .slick-next{
    width: 20px;
    height: 14px;
  }
  .index_app_bt .slick-next:before{
    width: 20px;
    height: 14px;
  }
}
@media(max-width: 1099px){
  .index_application{
    padding: 65px 0px;
  }
  .index_app_bt{
    margin-top: 30px;
  }
  .application_slick .slick-list{
    padding-right: 65px;
  }
}
@media(max-width: 991px){
  .index_application{
    padding: 50px 0px;
  }
  .application_slick .slick-list{
    padding-right: 100px;
  }
}
@media(max-width: 767px){
  .application_slick .slick-list{
    padding-right: 50px;
  }
  .index_app_bt .slick-prev{
    width: 18px;
    height: 12px;
    margin-right: 25px;
  }
 .index_app_bt .slick-prev:before{
    width: 18px;
    height: 12px;
  }
  .index_app_bt .slick-next{
    width: 18px;
    height: 12px;
  }
  .index_app_bt .slick-next:before{
    width: 18px;
    height: 12px;
  }
}
@media(max-width: 450px){
  .application_slick .slick-list{
    padding-right: 30px;
  }
  .index_app_bt .slick-prev{
    width: 16px;
    height: 10px;
    margin-right: 20px;
  }
  .index_app_bt .slick-prev:before{
    width: 16px;
    height: 10px;
  }
  .index_app_bt .slick-next{
    width: 16px;
    height: 10px;
  }
  .index_app_bt .slick-next:before{
     width: 16px;
    height: 10px;
  }
}

/* index_news */
.index_news{
  max-width: 1560px;
  padding: 150px 0px;
  margin: auto;
}
.index_n_top{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.index_n_bt{
  margin-top: 65px;
}
.news_item{
  position: relative;
  border-bottom: solid 1px #d9d9d9;
  display: block;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
  overflow: hidden;
}
.news_item::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  opacity: 0;
  transform: translateX(-100%);
  transition:
    opacity 0.6s ease,
    transform 0.8s ease;
  z-index: 0;
}
.news_item:hover::before{
  opacity: 1;
  transform: translateX(0);
}
.news_item:not(:hover)::before {
  transform: translateX(-100%);
  opacity: 0;
}
.news_item:nth-child(1){
  border-top: solid 1px #d9d9d9;
}
.news_item_inner{
  padding: 24px;
  align-items: center;
  position: relative;
}
.news_pic{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 76%;
}
.news_pic img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.news_item_right{
  padding-left: 30px;
  padding-right: 60px;
}
.news_date{
  font-size: 16px;
  color: #c11920;
  margin-bottom: 0px;
}
.news_title{
  font-size: 20px;
  color: #282828;
  font-weight: 600;
  margin-bottom: 5px;
}
.news_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news_arrow{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  right: 34px;
  bottom: 24px;
  transition: all ease-in-out 0.3s;
}
.news_arrow::after{
  content: "";
  background-image: url('../image/btn_arrow_r.svg');
  width: 10px;
  height: 10px;
  display: block;
}
.news_item:hover .news_arrow{
  background-color: #c11920;
}
.news_item:hover .news_arrow::after{
  background-image: url('../image/btn_arrow.svg');
}
@media(max-width: 1499px){
  .index_news{
    padding: 130px 0px;
  }
  .index_n_bt{
    margin-top: 50px;
  }
  .news_item_right{
    padding-left: 20px;
    padding-right: 55px;
  }
  .news_arrow{
    width: 55px;
    height: 55px;
  }
}
@media(max-width: 1299px){
  .index_news{
    padding: 100px 0px;
  }
  .news_item_inner{
    padding: 20px;
  }
  .news_item_right{
    padding-left: 15px;
    padding-right: 50px;
  }
  .news_date{
    font-size: 14px;
  }
  .news_title{
    font-size: 18px;
  }
  .news_text{
    font-size: 16px;
  }
  .news_arrow{
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 20px;
  }
}
@media(max-width: 1199px){
  .index_news{
    padding: 80px 0px;
  }
  .news_item_right{
    padding-left: 0px;
  }
}
@media(max-width: 1099px){
  .index_news{
    padding: 65px 0px;
  }
  .index_n_bt{
    margin-top: 30px;
  }
}
@media(max-width: 991px){
  .index_news{
    padding: 50px 0px;
  }
  .news_item_right{
    padding-right: 45px;
  }
  .news_date{
    font-size: 12px;
  }
  .news_text{
    font-size: 14px;
  }
  .news_arrow{
    width: 45px;
    height: 45px;
  }
  .news_arrow::after{
    width: 8px;
    height: 8px;
  }
}
@media(max-width: 767px){
  .news_item_inner{
    padding: 15px;
  }
  .news_item_right{
    padding-right: 40px;
  }
  .news_arrow{
    width: 40px;
    height: 40px;
    right: 25px;
    bottom: 15px;
  }
}
@media(max-width: 575px){
  .news_item_right{
    padding-right: 35px;
    margin-top: 15px;
  }
  .news_title{
    font-size: 16px;
  }
  .news_arrow{
    width: 35px;
    height: 35px;
  }
}
@media(max-width: 390px){
  .news_item_right{
    padding-right: 30px;
  }
  .news_arrow{
    width: 30px;
    height: 30px;
  }
}

/* footer */
.footer{
  background-color: #282828;
}
.footer_area{
  max-width: 1560px;
  padding-top: 100px;
  margin: auto;
}
.footer_top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 30px;
}
.social_block{
  display: flex;
  align-items: center;
}
.social_item{
  margin-right: 30px;
}
.social_icon{
  width: 25px;
}
.footer_middle{
  padding: 50px 0px;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
.footer_logo{
  width: 100px;
}
.f_info_area{
  margin-top: 30px;
}
.f_info_block{
  font-size: 16px;
  color: #969696;
  display: flex;
  align-items: center;
  margin: 10px 0px;
}
.f_info_block p{
  margin-bottom: 0px;
}
.f_info_block a{
  text-decoration: none;
  color: #969696;
  transition: all ease-in-out 0.3s;
}
.f_info_block a:hover{
  color: #fff;
}
.site_map{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.site_block{
  padding: 0px 30px;
}
.site_block:nth-last-child(1){
  padding-right: 0px !important;
}
.site_title{
  font-size: 18px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all ease-in-out 0.3s;
}
.site_title:hover{
  color: #c11920;
}
.site_item{
  font-size: 16px;
  color: #969696;
  text-decoration: none;
  line-height: 1.25;
  margin: 8px 0px;
  display: inline-block;
  transition: all ease-in-out 0.3s;
}
.site_item:hover{
  color: #fff;
}
.footer_bt{
  padding: 40px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.f_copy_text{
  font-size: 16px;
  color: #969696;
  margin-bottom: 0px;
}
.f_copy_text a{
  color: #969696;
  margin: 0px 2px;
}
.top_btn{
  background-color: transparent;
  border: none;
  padding: 0px;
  display: flex;
  align-items: center;
}
.top_text{
  font-size: 18px;
  margin-bottom: 0px;
  color: #fff;
  white-space: nowrap;
}
.f_top_btn{
  width: 12px;
  margin-left: 10px;
}
@media(max-width: 1499px){
  .footer_area{
    padding-top: 80px;
  }
  .footer_logo{
    width: 80px;
  }
  .f_info_area{
    margin-top: 20px;
  }
  .f_info_block{
    margin: 8px 0px;
  }
  .site_block{
    padding: 0px 20px;
  }
  .site_item{
    margin: 5px 0px;
  }
}
@media(max-width: 1299px){
  .footer_area{
    padding-top: 65px;
  }
  .footer_top{
    padding-bottom: 20px;
  }
  .footer_middle{
    padding: 30px 0px;
  }
  .footer_logo{
    width: 65px;
  }
  .f_info_area{
    margin-top: 15px;
  }
  .site_block{
    padding: 0px 10px;
  }
  .site_title{
    font-size: 16px;
  }
  .site_item{
    margin: 3px 0px;
  }
  .footer_bt{
    padding: 30px 0px;
  }
  .top_text{
    font-size: 16px;
  }
}
@media(max-width: 1199px){
  .footer_area{
    padding-top: 50px;
  }
  .social_item{
    margin-right: 20px;
  }
  .social_icon{
    width: 23px;
  }
  .footer_top{
    padding-bottom: 15px;
  }
  .footer_middle{
    padding: 20px 0px;
  }
}
@media(max-width: 991px){
  .f_info_block{
    margin: 5px 0px;
    font-size: 14px;
  }
  .site_title{
    font-size: 14px;
  }
  .site_item{
    font-size: 14px;
  }
  .footer_bt{
    padding: 20px 0px;
  }
  .f_copy_text{
    font-size: 14px;
  }
  .top_text{
    font-size: 14px;
  }
  .f_top_btn{
    width: 10px;
    margin-left: 5px;
  }
}
@media(max-width: 767px){
  .footer_logo{
    width: 55px;
  }
  .site_map_area{
    display: none;
  }
  .social_item{
    margin-right: 12px;
  }
  .social_icon{
    width: 20px;
  }
  .f_copy_text{
    font-size: 12px;
  }
  .top_text{
    font-size: 12px;
  }
  .f_top_btn{
    width: 8px;
    margin-left: 3px;
  }
}
@media(max-width: 575px){
  .footer_area{
    padding-top: 30px;
  }
  .footer_top{
    display: block;
  }
  .footer_top .gh_btn_w{
    margin: auto;
  }
  .social_block{
    justify-content: center;
    margin-bottom: 15px;
  }
  .social_item{
    margin: 0px 8px;
  }
  .social_icon{
    width: 20px;
  }
  .footer_middle{
    text-align: center;
  }
  .footer_logo{
    width: 55px;
  }
  .site_map_area{
    display: none;
  }
  .f_info_block{
    justify-content: center;
  }
  .footer_bt{
    padding: 15px 0px;
    display: block;
    text-align: center;
  }
  .top_btn{
    margin: 10px auto 0px auto;
  }
}
@media(max-width: 390px){
  .social_item{
    margin: 0px 4px;
  }
  .social_icon{
    width: 18px;
  }
}

/* inner_banner */
.inner_banner{
  max-width: 1820px;
  margin: 0px auto;
}
.inner_banner2{
  max-width: 1560px;
  margin: 0px auto;
}
.inner_top{
  margin-top: 100px;
}
.inner_top2{
  margin-top: 150px;
}
.top_banner_block{
  height: 450px;
  display: flex;
  align-items: center;
  position: relative;
}
.top_banner_block::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.top_banner_inner{
  max-width: 1560px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 2;
  align-items: center;
  padding: 0px 12px;
  overflow: hidden;
}
.banner_title{
  font-size: 56px;
  color: #fff;
  margin-bottom: 0px;
  line-height: 1;
  font-weight: 700;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}
.banner_title::after{
  content: "";
  width: 150px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin-left: 15px;
}
.inner_top2 .banner_title{
  color: #282828;
}
.inner_top2 .banner_title::after{
  background-color: rgba(0, 0, 0, 0.15);
}
.gh_bread .breadcrumb{
  margin-bottom: 0px;
  justify-content: flex-end;
}
.gh_bread .breadcrumb-item{
  text-transform: uppercase;
}
.gh_bread .breadcrumb-item a{
  text-decoration: none;
  color: rgba(255, 255, 255, 0.5);
}
.gh_bread .breadcrumb-item a:hover{
  color: rgba(255, 255, 255, 0.5);
}
.gh_bread .breadcrumb-item.active{
  color: #fff;
}
.gh_bread .breadcrumb-item+.breadcrumb-item::before{
  color: rgba(255, 255, 255, 0.5);
}
.inner_top2 .gh_bread .breadcrumb-item a{
  color: rgba(0, 0, 0, 0.5);
}
.inner_top2 .gh_bread .breadcrumb-item a:hover{
  color: rgba(0, 0, 0, 0.5);
}
.inner_top2 .gh_bread .breadcrumb-item.active{
  color: #282828;
}
.inner_top2 .gh_bread .breadcrumb-item+.breadcrumb-item::before{
  color: rgba(0, 0, 0, 0.5);
}
@media(max-width: 1699px){
  .banner_title{
    font-size: 52px;
  }
  .banner_title::after{
    width: 130px;
  }
}
@media(max-width: 1499px){
  .top_banner_block{
    height: 400px;
  }
  .banner_title{
    font-size: 48px;
  }
  .banner_title::after{
    width: 100px;
  }
  .inner_top2{
    margin-top: 130px;
  }
}
@media(max-width: 1299px){
  .top_banner_block{
    height: 350px;
  }
  .banner_title{
    font-size: 38px;
  }
  .gh_bread .breadcrumb-item{
    font-size: 14px;
  }
  .inner_top2{
    margin-top: 100px;
  }
}
@media(max-width: 1199px){
  .top_banner_block{
    height: 300px;
  }
  .banner_title{
    font-size: 28px;
  }
  .banner_title::after{
    width: 80px;
  }
}
@media(max-width: 1099px){
  .top_banner_block{
    height: 280px;
  }
  .banner_title{
    font-size: 24px;
  }
}
@media(max-width: 991px){
  .inner_top{
    margin-top: 65px;
  }
  .inner_top2{
    margin-top: 75px;
  }
  .top_banner_block{
    height: 250px;
  }
  .banner_title{
    font-size: 22px;
  }
  .banner_title::after{
    width: 65px;
  }
  .gh_bread .breadcrumb-item{
    font-size: 12px;
  }
}
@media(max-width: 767px){
  .top_banner_block{
    height: 230px;
  }
  .gh_bread .breadcrumb{
    justify-content: flex-start;
    margin-top: 10px;
  }
}
@media(max-width: 575px){
  .top_banner_block{
    height: 200px;
  }
  .banner_title{
    font-size: 20px;
  }
  .banner_title::after{
    width: 50px;
  }
  .gh_bread .breadcrumb{
    margin-top: 5px;
  }
}
@media(max-width: 450px){
  .top_banner_block{
    height: 150px;
  }
  .top_banner_inner{
    padding: 0px 8px;
  }
  .banner_title::after{
    display: none;
  }
}
@media(max-width: 390px){
  .inner_top{
    padding: 0px;
  }
  .top_banner_inner{
    padding: 0px;
  }
}

/* product */
.inner_block1{
  max-width: 1560px;
  margin: auto;
  padding: 150px 0px;
}
.inner_block2{
  max-width: 1560px;
  margin: auto;
  padding: 100px 0px 150px 0px;
}
@media(max-width: 1499px){
  .inner_block1{
    padding: 130px 0px;
  }
  .inner_block2{
    padding: 100px 0px 130px 0px;
  }
}
@media(max-width: 1299px){
  .inner_block1{
    padding: 100px 0px;
  }
  .inner_block2{
    padding: 100px 0px;
  }
}
@media(max-width: 1199px){
  .inner_block1{
    padding: 80px 0px;
  }
  .inner_block2{
    padding: 80px 0px;
  }
}
@media(max-width: 1099px){
  .inner_block1{
    padding: 65px 0px;
  }
  .inner_block2{
    padding: 65px 0px;
  }
}
@media(max-width: 991px){
  .inner_block1{
    padding: 50px 0px;
  }
  .inner_block2{
    padding: 50px 0px;
  }
}

/* product_list */
.title_lg{
  font-size: 42px;
  color: #282828;
  font-weight: 700;
}
.product_list{
  margin-top: 20px;
}
.product_list_item{
  display: block;
  border: solid 1px #d9d9d9;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.product_item_pic{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 76%;
}
.product_item_pic img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.p_list_bt{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
}
.p_list_title{
  font-size: 28px;
  color: #282828;
  font-weight: 700;
  margin-bottom: 0px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product_arrow{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background-color: #fff;
  border-radius: 5px;
  transition: all ease-in-out 0.3s;
}
.product_arrow::after{
  content: "";
  background-image: url('../image/btn_arrow_r.svg');
  width: 10px;
  height: 10px;
  display: block;
}
.product_list_item:hover{
  border: solid 1px #c11920;
}
.product_list_item:hover .product_arrow{
  background-color: #c11920;
}
.product_list_item:hover .product_arrow::after{
  background-image: url('../image/btn_arrow.svg');
}
.pagination{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 65px 0px;
}
.page_number{
  display: flex;
  align-items: center;
  font-size: 24px;
}
.page_active{
  color: #c11920;
}
.page_all{
  color: #282828;
}
.page_all::before{
  content: "/";
  margin: 0px 10px;
}
.page_arrow{
  border: none;
  background-color: transparent;
  padding: 0px;
}
.page_prev{
  margin-right: 60px;
}
.page_prev::after{
  content: "";
  background-image: url('../image/slick_prev_b.svg');
  display: block;
  width: 24px;
  height: 18px;
  background-repeat: no-repeat;
}
.page_next::after{
  content: "";
  background-image: url('../image/slick_next_b.svg');
  display: block;
  width: 24px;
  height: 18px;
  background-repeat: no-repeat;
}
.seo_area{
  border-top: solid 1px #d9d9d9;
  padding-top: 65px;
}
.seo_area .text_sm{
  margin-bottom: 0px;
}
@media(max-width: 1699px){
  .p_list_title{
    font-size: 24px;
  }
}
@media(max-width: 1499px){
  .title_lg{
    font-size: 38px;
  }
  .product_list{
    margin-top: 15px;
  }
  .p_list_bt{
    padding: 20px;
  }
  .p_list_title{
    font-size: 22px;
  }
  .product_arrow{
    width: 55px;
    height: 55px;
  }
  .pagination{
    margin: 50px 0px;
  }
  .page_number{
    font-size: 20px;
  }
  .seo_area{
    padding-top: 50px;
  }
}
@media(max-width: 1299px){
  .title_lg{
    font-size: 28px;
  }
  .product_list{
    margin-top: 10px;
  }
  .p_list_title{
    font-size: 20px;
  }
  .product_arrow{
    width: 50px;
    height: 50px;
  }
}
@media(max-width: 1199px){
  .title_lg{
    font-size: 24px;
  }
  .product_list{
    margin-top: 0px;
  }
  .page_prev{
    margin-right: 30px;
  }
  .page_prev::after{
    width: 20px;
    height: 14px;
  }
  .page_next::after{
    width: 20px;
    height: 14px;
  }
}
@media(max-width: 1099px){
  .title_lg{
    font-size: 20px;
    margin-bottom: 0px;
  }
}
@media(max-width: 991px){
  .p_list_title{
    font-size: 18px;
  }
  .product_arrow{
    width: 45px;
    height: 45px;
  }
  .product_arrow::after{
    width: 8px;
    height: 8px;
  }
  .pagination{
    margin: 30px 0px;
  }
  .page_number{
    font-size: 18px;
  }
  .seo_area{
    padding-top: 30px;
  }
}
@media(max-width: 767px){
  .product_arrow{
    width: 40px;
    height: 40px;
  }
  .page_prev{
    margin-right: 25px;
  }
  .page_prev::after{
    width: 18px;
    height: 12px;
  }
  .page_next::after{
    width: 18px;
    height: 12px;
  }
  .page_number{
    font-size: 16px;
  }
  .page_all::before{
    margin: 0px 5px;
  }
}
@media(max-width: 575px){
  .title_lg{
    font-size: 18px;
  }
  .product_arrow{
    width: 35px;
    height: 35px;
  }
  .pagination{
    margin: 20px 0px;
  }
  .seo_area{
    padding-top: 20px;
  }
}
@media(max-width: 450px){
  .p_list_bt{
    padding: 12px;
  }
  .p_list_title{
    font-size: 16px;
  }
  .page_prev{
    margin-right: 20px;
  }
  .page_prev::after{
    width: 16px;
    height: 10px;
  }
  .page_next::after{
    width: 16px;
    height: 10px;
  }
}
@media(max-width: 390px){
  .product_arrow{
    width: 30px;
    height: 30px;
  }
}

/* product_detail */
.pdet_area1{
  max-width: 1560px;
  margin: auto;
  padding: 65px 0px;
  align-items: center;
}
.pdet_for{
  line-height: 1;
}
.pdet_nav_block{
  padding: 8px 4px;
}
.slick-slide .pdet_nav_block .product_item_pic{
  border: solid 1px #d9d9d9;
  cursor: pointer;
}
.slick-current .pdet_nav_block .product_item_pic{
  border: solid 1px #c11920;
}
.pdet_right{
  padding-left: 30px;
}
.pdet_title{
  border-bottom: solid 1px #d9d9d9;
  padding-bottom: 10px;
  margin-bottom: 15px;
}
.title_xs{
  font-size: 20px;
  color: #c11920;
  font-weight: 600;
}
/* read_more */
.p_text_top .p_text_inner{
	max-height: 80px;
	transition: all 0.3s ease-out;
	overflow: hidden;
  position: relative;
}
.p_text_top .p_text_inner:after{
	content: "";
	display: inline-block;
	position: absolute;
	pointer-events: none;
	height: 30px;
	width: 100%;
	left: 0;
	right: 0;
	bottom: 0;
  transition: background-image 0.3s ease-in;
	background-image: linear-gradient(0deg, #f5f5f5 10%, transparent);
}
.p_text_top .des_more_button{
	color: #c11920;
  text-decoration: underline;
  cursor: pointer;
}
.p_text_top .des_more-expanded{
	max-height: 2300px !important;
	transition: all .3s ease-in;
}
.pdet_btn_group{
  display: flex;
  align-items: center;
  margin-top: 50px;
}
.pdet_btn_group .gh_btn_2{
  margin-right: 24px;
}
.pdet_area2{
  max-width: 1560px;
  margin: auto;
}
.pdet_inner{
  border-top: solid 1px #d9d9d9;
  border-bottom: solid 1px #d9d9d9;
  padding: 65px;
  font-size: 18px;
}
.pdet_inner ul li::marker{
  color: #c11920;
}
.pdet_table{
  margin-top: 10px;
}
.pdet_table .table{
  margin-bottom: 0px;
}
.pdet_table thead tr th{
  background-color: #c11920;
  color: #fff;
  border-right: solid 1px #d9d9d9;
  font-weight: 400;
}
.pdet_table thead tr th:nth-last-child(1){
  border-right: none;
}
.pdet_table tbody tr td{
  border-right: solid 1px #d9d9d9;
}
.pdet_table tbody tr td:nth-last-child(1){
  border-right: none;
}
.pdet_table tbody tr:nth-child(even) td{
  background-color: #fff;
}
.pdet_area3{
  max-width: 1560px;
  margin: auto;
  padding: 65px 0px 150px 0px;
}
.pdet_area3 .gh_btn{
  margin: auto;
}
@media(max-width: 1499px){
  .pdet_area1{
    padding: 50px 0px;
  }
  .pdet_right{
    padding-left: 15px;
  }
  .pdet_title{
    padding-bottom: 6px;
    margin-bottom: 12px;
  }
  .pdet_btn_group{
    margin-top: 30px;
  }
  .pdet_inner{
    padding: 50px;
  }
  .pdet_area3{
    padding: 50px 0px 130px 0px;
  }
}
@media(max-width: 1299px){
  .pdet_area1{
    padding: 30px 0px;
  }
  .pdet_right{
    padding-left: 0px;
  }
  .pdet_title{
    padding-bottom: 5px;
    margin-bottom: 10px;
  }
  .title_xs{
    font-size: 18px;
  }
  .pdet_btn_group{
    margin-top: 20px;
  }
  .pdet_btn_group .gh_btn_2{
    margin-right: 20px;
  }
  .pdet_inner{
    padding: 30px 12px;
    font-size: 16px;
  }
  .pdet_area3{
    padding: 30px 0px 100px 0px;
  }
}
@media(max-width: 1199px){
  .pdet_area3{
    padding: 30px 0px 80px 0px;
  }
}
@media(max-width: 1099px){
  .pdet_area3{
    padding: 30px 0px 65px 0px;
  }
}
@media(max-width: 991px){
  .pdet_title{
    padding-bottom: 5px;
    margin-bottom: 5px;
  }
  .title_xs{
    font-size: 16px;
  }
  .p_text_top .des_more_button{
    font-size: 14px;
  }
  .pdet_btn_group{
    margin-top: 15px;
  }
  .pdet_btn_group .gh_btn_2{
    margin-right: 15px;
  }
  .pdet_inner{
    padding: 30px 0px;
    font-size: 14px;
  }
  .pdet_area3{
    padding: 30px 0px 50px 0px;
  }
}
@media(max-width: 767px){
  .pdet_right{
    margin-top: 15px;
  }
  .pdet_btn_group .gh_btn_2{
    margin-right: 10px;
  }
}

/* application */
.app_list_item{
  border: solid 1px #d9d9d9;
  border-radius: 5px;
  padding: 24px;
  display: block;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.app_list_item .app_item_bt .title_sm{
  color: #282828;
}
.app_list_bt{
  margin-top: 65px;
}
.app_list_item:hover .app_pic img{
  transform: scale(1.08,1.08);
}
.app_list_item:hover{
  border: solid 1px #c11920;
}
@media(max-width: 1499px){
  .app_list_bt{
    margin-top: 50px;
  }
}
@media(max-width: 1299px){
  .app_list_item{
    padding: 20px;
  }
}
@media(max-width: 1199px){
  .app_list_item{
    padding: 12px;
  }
}
@media(max-width: 991px){
  .app_list_bt{
    margin-top: 30px;
  }
}
@media(max-width: 575px){
  .app_list_bt{
    margin-top: 20px;
  }
}

/* application_detail */
.adet_inner{
  background-color: #fff;
  padding: 100px;
  font-size: 18px;
}
.adet_inner ul li::marker{
  color: #c11920;
}
.adet_back{
  margin-top: 100px;
}
.adet_back .gh_btn{
  margin: auto;
}
@media(max-width: 1699px){
  .adet_inner{
    padding: 65px;
  }
  .adet_back{
    margin-top: 65px;
  }
}
@media(max-width: 1499px){
  .adet_inner{
    padding: 50px;
  }
  .adet_back{
    margin-top: 50px;
  }
}
@media(max-width: 1299px){
  .adet_inner{
    padding: 30px;
    font-size: 16px;
  }
  .adet_back{
    margin-top: 30px;
  }
}
@media(max-width: 1099px){
  .adet_inner{
    padding: 24px;
    font-size: 16px;
  }
  .adet_back{
    margin-top: 30px;
  }
}
@media(max-width: 991px){
  .adet_inner{
    font-size: 14px;
  }
}

/* news */
.tab_area{
  z-index: 1;
}
.gh_dropdown_btn{
  display: none;
}
.tab_block{
  display: flex;
  flex-direction: column;
  border: none;
  background-color: transparent;
  position: relative;
  z-index: 99;
}
.tab_block .nav-item{
  margin: 8px 0px;
}
.tab_btn{
  position: relative;
  width: 200px;
  height: 60px;
  border-radius: 5px;
  background-color: #f5f5f5;
  color: #c11920;
  border: solid 1px #c11920;
  padding: 18px;
  text-decoration: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  font-size: 18px;
}
.tab_btn.active{
  background-color: #c11920;
  color: #fff;
  border: solid 1px #c11920;
}
.tab_arrow::after{
  content: "";
  background-image: url('../image/btn_arrow_r.svg');
  width: 10px;
  height: 10px;
  display: block;
}
.tab_btn.active .tab_arrow::after{
  background-image: url('../image/btn_arrow.svg');
}
.tab_btn::before{
  content: '';
  position: absolute;
  top: 0;
  right: -30%;
  bottom: -1px;
  left: -30%;
  background: #282828;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.3, 0.69, 0.39, 1.04) 0.2s, opacity 0.2s linear, -webkit-transform 0.4s cubic-bezier(0.3, 0.69, 0.39, 1.04) 0.2s;
  -webkit-transform: translate(-400px, 0) skew(0deg, 0deg);
  transform: translate(-400px, 0) skew(0deg, 0deg);
}
.tab_btn:hover::before{
  opacity: 1;
  -webkit-transition-delay: 0s, 0s;
  transition-delay: 0s, 0s;
  -webkit-transform: translate(0, 0) skew(0deg, 0deg);
  transform: translate(0, 0) skew(0deg, 0deg);
}
.tab_btn:hover{
  color: #fff;
  border: solid 1px #282828;
}
.tab_btn:hover .tab_arrow::after{
  background-image: url('../image/btn_arrow.svg');
}
.tab_btn.active:hover::before{
  opacity: 0;
}
.tab_btn.active:hover{
  border: solid 1px #c11920;
}
.news_list{
  margin-top: 30px;
}
@media(max-width: 1499px){
  .tab_btn{
    width: 180px;
    height: 55px;
  }
  .news_list{
    margin-top: 15px;
  }
}
@media(max-width: 1299px){
  .tab_block .nav-item{
    margin: 5px 0px;
  }
  .tab_btn{
    width: 160px;
    height: 50px;
    font-size: 16px;
  }
  .news_list{
    margin-top: 10px;
  }
}
@media(max-width: 991px){
  .tab_btn{
    width: 150px;
    height: 45px;
    font-size: 14px;
  }
}
@media(max-width: 767px){
  .tab_block{
    flex-direction: row;
    justify-content: center;
    margin-bottom: 30px;
  }
  .tab_area .title_sm{
    display: none;
  }
  .tab_block .nav-item{
    margin: 0px 4px;
  }
  .tab_btn{
    width: 120px;
    height: 40px;
  }
  .news_bt_area .title_lg{
    text-align: center;
  }
}
@media(max-width: 575px){
  .dropdown_tab{
    margin-bottom: 30px;
  }
  .tab_block .nav-item{
    margin: 0px;
  }
  .tab_btn{
    width: 100%;
    height: 40px;
    padding: 0px 10px;
    border-radius: 0px;
  }
  .gh_dropdown_btn{
    display: block;
    width: 100%;
    background-color: #c11920;
    color: #fff;
    text-align: center;
    border-radius: 5px;
    font-size: 14px;
    padding: 8px 12px;
  }
  .gh_dropdown_btn:hover{
    color: #fff;
  }
  .gh_dropdown_btn:focus{
    box-shadow: none;
  }
  .tab_block{
    display: none;
    position: absolute;
    left: 0px !important;
    right: 0px !important;
    background-color: #fff;
    padding: 0px;
    border: none;
    overflow: hidden;
  }
}

/* news_detail */
.ndet_area1{
  max-width: 1560px;
  margin: auto;
  padding: 65px 0px;
  align-items: center;
}
.ndet_right{
  padding-left: 30px;
}
.ndet_area2{
  max-width: 1560px;
  margin: auto;
}
.editor_inner{
  padding: 65px;
  border-top: solid 1px #d9d9d9;
  border-bottom: solid 1px #d9d9d9;
  font-size: 18px;
}
.ndet_area3{
  max-width: 1560px;
  margin: auto;
  padding: 65px 0px 150px 0px;
}
.ndet_area3 .gh_btn{
  margin: auto;
}
@media(max-width: 1499px){
  .ndet_area1{
    padding: 50px 0px;
  }
  .ndet_right{
    padding-left: 15px;
  }
  .editor_inner{
    padding: 50px;
  }
  .ndet_area3{
    padding: 50px 0px 130px 0px;
  }
}
@media(max-width: 1299px){
  .ndet_area1{
    padding: 30px 0px;
  }
  .ndet_right{
    padding-left: 0px;
  }
  .ndet_right .title_xs{
    margin-bottom: 5px;
  }
  .editor_inner{
    padding: 30px;
    font-size: 16px;
  }
  .ndet_area3{
    padding: 30px 0px 100px 0px;
  }
}
@media(max-width: 1199px){
  .ndet_area3{
    padding: 30px 0px 80px 0px;
  }
}
@media(max-width: 1099px){
  .editor_inner{
    padding: 24px;
  }
  .ndet_area3{
    padding: 30px 0px 65px 0px;
  }
}
@media(max-width: 991px){
  .ndet_right .title_xs{
    margin-bottom: 0px;
  }
  .editor_inner{
    padding: 24px 0px;
    font-size: 14px;
  }
  .ndet_area3{
    padding: 30px 0px 50px 0px;
  }
}
@media(max-width: 767px){
  .ndet_right{
    margin-bottom: 15px;
  }
}

/* FAQ */
.gh_accordion  .accordion-item{
  background-color: transparent;
  border-top: solid 1px #d9d9d9;
  border-right: none;
  border-bottom: none;
  border-left: none;
}
.gh_accordion  .accordion-item:nth-last-child(1){
  border-bottom: solid 1px #d9d9d9;
}
.gh_accordion .accordion-button{
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
}
.gh_accordion .accordion-button::after{
  background-image: url('../image/acc_arrow.svg');
}
.gh_accordion .accordion-button:not(.collapsed)::after{
  background-image: url('../image/acc_arrow.svg');
}
.gh_accordion .accordion-button:focus{
  box-shadow: none;
}
.gh_accordion .accordion-button:not(.collapsed){
  background-color: #fff;
  box-shadow: none;
}
.q_item{
  font-size: 28px;
  color: #cccccc;
  font-weight: 600;
  margin-right: 15px;
}
.q_text{
  font-size: 20px;
  color: #282828;
  font-weight: 600;
  margin-bottom: 0px;
}
.gh_accordion .accordion-body{
  display: flex;
  align-items: flex-start;
  background-color: #fff;
}
.a_item{
  font-size: 28px;
  color: #c11920;
  font-weight: 600;
  margin-right: 15px;
}
.a_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
}
.gh_accordion .accordion-item:first-of-type{
  border-radius: 0px;
}
.gh_accordion .accordion-item:last-of-type{
  border-radius: 0px;
}
@media(max-width: 1299px){
  .gh_accordion .accordion-button{
    padding: 12px;
  }
  .gh_accordion .accordion-body{
    padding: 0px 12px 12px 12px;
  }
  .q_item{
    font-size: 24px;
    margin-right: 12px;
  }
  .a_item{
    font-size: 24px;
    margin-right: 12px;
  }
  .q_text{
    font-size: 18px;
  }
  .a_text{
    font-size: 16px;
  }
}
@media(max-width: 991px){
  .q_item{
    font-size: 20px;
    margin-right: 10px;
  }
  .a_item{
    font-size: 20px;
    margin-right: 10px;
  }
  .q_text{
    font-size: 16px;
  }
  .a_text{
    font-size: 14px;
  }
}
@media(max-width: 767px){
  .q_item{
    font-size: 18px;
    margin-right: 5px;
  }
  .a_item{
    font-size: 18px;
    margin-right: 5px;
  }
}
@media(max-width: 575px){
  .accordion-button::after{
    width: 15px;
    height: 15px;
    background-size: 15px;
  }
}

/* catalog */
.catalog_right{
  padding-left: 30px;
}
.catalog_area{
  align-items: center;
  margin-top: 30px;
}
.catalog_pic{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 130%;
}
.catalog_pic img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.catalog_area .title_sm{
  font-weight: 700;
}
.catalog_area .gh_btn{
  margin-top: 30px;
}
/* arrow */
.c_arrow_btn{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 50px;
}
.catalog_right .slick-prev{
  width: 24px;
  height: 18px;
  z-index: 1;
  position: relative;
  left: 0;
  transform: translate(0, 0%);
  margin-right: 60px;
}
.catalog_right .slick-prev:before{
  content: '';
  background-image: url('../image/slick_prev_b.svg');
  display: block;
  width: 24px;
  height: 18px;
  background-position: left center;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.catalog_right .slick-next{
  width: 24px;
  height: 18px;
  z-index: 1;
  position: relative;
  right: 0;
  transform: translate(0, 0);
}
.catalog_right .slick-next:before{
  content: '';
  background-image: url('../image/slick_next_b.svg');
  display: block;
  width: 24px;
  height: 18px;
  background-position: right center;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
@media(max-width: 1499px){
  .catalog_area{
    margin-top: 15px;
  }
  .catalog_right{
    padding-left: 15px;
  }
  .catalog_area .gh_btn{
    margin-top: 15px;
  }
  .c_arrow_btn{
    margin-top: 30px;
  }
}
@media(max-width: 1299px){
  .catalog_area{
    margin-top: 10px;
  }
  .catalog_right{
    padding-left: 0px;
  }
  .c_arrow_btn{
    margin-top: 20px;
  }
}
@media(max-width: 1199px){
  .catalog_right .slick-prev{
    width: 20px;
    height: 14px;
    margin-right: 30px;
  }
  .catalog_right .slick-prev:before{
    width: 20px;
    height: 14px;
  }
  .catalog_right .slick-next{
    width: 20px;
    height: 14px;
  }
  .catalog_right .slick-next:before{
    width: 20px;
    height: 14px;
  }
}
@media(max-width: 767px){
  .catalog_right .slick-prev{
    width: 18px;
    height: 12px;
    margin-right: 25px;
  }
  .catalog_right .slick-prev:before{
    width: 18px;
    height: 12px;
  }
  .catalog_right .slick-next{
    width: 18px;
    height: 12px;
  }
  .catalog_right .slick-next:before{
    width: 18px;
    height: 12px;
  }
}
@media(max-width: 575px){
  .catalog_right{
    margin-top: 15px;
  }
  .catalog_area .title_sm{
    text-align: center;
  }
  .catalog_area .gh_btn{
    margin: 15px auto 0px auto;
  }
  .c_arrow_btn{
    justify-content: center;
  }
}
@media(max-width: 450px){
  .catalog_right .slick-prev{
    width: 16px;
    height: 10px;
    margin-right: 20px;
  }
  .catalog_right .slick-prev:before{
    width: 16px;
    height: 10px;
  }
  .catalog_right .slick-next{
    width: 16px;
    height: 10px;
  }
  .catalog_right .slick-next:before{
    width: 16px;
    height: 10px;
  }
}

/* video */
.video_item{
  border: solid 1px #d9d9d9;
  border-radius: 5px;
  padding: 24px;
  display: block;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
  width: 100%;
}
.video_item .video_item_bt .title_sm{
  color: #282828;
}
.video_top{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.play_icon{
  width: 60px;
  height: 60px;
  position: absolute;
  z-index: 1;
  transition: all ease-in-out 0.3s;
}
.video_pic{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 76%;
  border-radius: 5px;
  overflow: hidden;
}
.video_pic img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transform: scale(1,1);
  transition: all ease-in-out 0.3s;
}
.video_item:hover .video_pic img{
  transform: scale(1.08,1.08);
}
.video_item:hover{
  border: solid 1px #c11920;
}
.video_item_bt{
  padding-top: 24px;
  text-align: left;
}
.video_item_bt .title_sm{
  color: #fff;
  margin-bottom: 0px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video_item:hover .play_icon{
  transform: scale(0.95,0.95);
}
.gh_modal .modal-body{
  padding: 0px;
}
.gh_modal .modal-title{
  font-size: 20px;
}
@media(max-width: 1499px){
  .play_icon{
    width: 55px;
    height: 55px;
  }
}
@media(max-width: 1299px){
  .video_item{
    padding: 20px;
  }
  .video_item_bt{
    padding-top: 20px;
  }
  .play_icon{
    width: 50px;
    height: 50px;
  }
  .gh_modal .modal-title{
    font-size: 18px;
  }
}
@media(max-width: 1199px){
  .video_item{
    padding: 12px;
  }
  .video_item_bt{
    padding-top: 12px;
  }
}
@media(max-width: 991px){
  .play_icon{
    width: 45px;
    height: 45px;
  }
  .gh_modal .modal-title{
    font-size: 16px;
  }
}
@media(max-width: 767px){
  .play_icon{
    width: 40px;
    height: 40px;
  }
}
@media(max-width: 575px){
  .play_icon{
    width: 35px;
    height: 35px;
  }
}
@media(max-width: 390px){
  .play_icon{
    width: 30px;
    height: 30px;
  }
}

/* about */
.about_area .text_sm{
  margin-bottom: 0px;
}
.about_block1{
  max-width: 1560px;
  margin: auto;
  padding: 150px 0px 130px 0px;
}
.a_b1_area1{
  display: flex;
  align-items: flex-start;
}
.a_title_sm{
  font-size: 18px;
  color: #c11920;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  margin: 0;
  padding: 0;
}
.a_b_tblock{
  margin-left: 50px;
}
.about_block2{
  max-width: 1740px;
  margin-right: auto;
  align-items: center;
  overflow: hidden;
}
.a_b2_left{
  padding-left: 0px;
}
.a_b2_area1{
  display: flex;
  align-items: flex-start;
  padding-left: 30px;
}
.about_block3{
  max-width: 1740px;
  margin-left: auto;
  align-items: center;
  padding-top: 50px;
  overflow: hidden;
}
.a_b3_right{
  padding-right: 0px;
}
.a_b3_area1{
  display: flex;
  align-items: flex-start;
  padding-right: 30px;
}
.about_block4{
  max-width: 1560px;
  padding: 130px 0px;
  margin: auto;
}
.a_b4_area{
  position: relative;
  background-image: url(../image/about_pic5.png);
  background-size: cover;
  background-position: center;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a_b4_area::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.a_b4_inner{
  max-width: 590px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0px 20px;
}
.a_b4_inner .title_sm{
  color: #fff;
  margin-bottom: 5px;
}
.a_b4_inner .text_sm{
  color: #fff;
}
.a_b4_inner_top{
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.about_block5{
  max-width: 1560px;
  margin: auto;
  padding-bottom: 150px;
  align-items: center;
  overflow: hidden;
}
.a_b5_area1{
  display: flex;
  align-items: flex-start;
}
.cert_block{
  padding: 0px 12px;
}
.cert_item{
  border: solid 1px #d9d9d9;
  border-radius: 5px;
  padding: 24px;
  display: block;
  text-decoration: none;
  transition: all ease-in-out 0.3s;
}
.cert_item_bt{
  padding-top: 24px;
}
.cert_item_bt .title_sm{
  color: #282828;
  margin-bottom: 0px;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cert_pic{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 153%;
  border-radius: 5px;
  overflow: hidden;
}
.cert_pic img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  transform: scale(1,1);
  transition: all ease-in-out 0.3s;
}
/* arrow */
.a_arrow_btn{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 30px;
}
.about_block5 .slick-prev{
  width: 24px;
  height: 18px;
  z-index: 1;
  position: relative;
  left: 0;
  transform: translate(0, 0%);
  margin-right: 60px;
}
.about_block5 .slick-prev:before{
  content: '';
  background-image: url('../image/slick_prev_b.svg');
  display: block;
  width: 24px;
  height: 18px;
  background-position: left center;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
.about_block5 .slick-next{
  width: 24px;
  height: 18px;
  z-index: 1;
  position: relative;
  right: 0;
  transform: translate(0, 0);
}
.about_block5 .slick-next:before{
  content: '';
  background-image: url('../image/slick_next_b.svg');
  display: block;
  width: 24px;
  height: 18px;
  background-position: right center;
  opacity: 1;
  background-size: cover;
  transition: all 0.3s ease-in-out;
}
@media(max-width: 1499px){
  .about_block1{
    padding: 130px 0px 100px 0px;
  }
  .a_b_tblock{
    margin-left: 30px;
  }
  .about_block4{
    padding: 100px 0px;
  }
  .about_block5{
    padding-bottom: 130px;
  }
  .a_arrow_btn{
    margin-top: 20px;
  }
}
@media(max-width: 1299px){
  .about_block1{
    padding: 100px 0px 80px 0px;
  }
  .a_b_tblock{
    margin-left: 15px;
  }
  .a_title_sm{
    font-size: 16px;
  }
  .about_block4{
    padding: 80px 0px;
  }
  .a_b4_area{
    height: 400px;
  }
  .about_block5{
    padding-bottom: 100px;
  }
  .cert_item{
    padding: 20px;
  }
  .cert_item_bt{
    padding-top: 20px;
  }
  .a_arrow_btn{
    margin-top: 15px;
  }
}
@media(max-width: 1199px){
  .about_block1{
    padding: 80px 0px 65px 0px;
  }
  .a_b_tblock{
    margin-left: 10px;
  }
  .a_b2_area1{
    padding-left: 15px;
  }
  .a_b3_area1{
    padding-right: 15px;
  }
  .about_block4{
    padding: 65px 0px;
  }
  .about_block5{
    padding-bottom: 80px;
  }
  .cert_item{
    padding: 12px;
  }
  .cert_item_bt{
    padding-top: 12px;
  }
  .about_block5 .slick-prev{
    width: 20px;
    height: 14px;
    margin-right: 30px;
  }
  .about_block5 .slick-prev:before{
    width: 20px;
    height: 14px;
  }
  .about_block5 .slick-next{
    width: 20px;
    height: 14px;
  }
  .about_block5 .slick-next:before{
    width: 20px;
    height: 14px;
  }
  .a_arrow_btn{
    margin-top: 10px;
  }
}
@media(max-width: 1099px){
  .about_block1{
    padding: 65px 0px 50px 0px;
  }
  .a_b_tblock{
    margin-left: 5px;
  }
  .a_b2_area1{
    padding-left: 10px;
  }
  .a_b3_area1{
    padding-right: 10px;
  }
  .about_block4{
    padding: 50px 0px;
  }
  .a_b4_area{
    height: 350px;
  }
  .about_block5{
    padding-bottom: 65px;
  }
}
@media(max-width: 991px){
  .about_block1{
    padding: 50px 0px 30px 0px;
  }
  .about_block3{
    padding-top: 30px;
  }
  .a_b2_area1{
    padding-left: 0px;
  }
  .a_b3_area1{
    padding-right: 0px;
  }
  .a_title_sm{
    font-size: 14px;
  }
  .about_block4{
    padding: 30px 0px;
  }
  .a_b4_area{
    height: 300px;
  }
  .about_block5{
    padding-bottom: 50px;
  }
}
@media(max-width: 767px){
  .a_b2_area1{
    padding-left: 12px;
    margin-top: 15px;
  }
  .a_b3_area1{
    margin-top: 15px;
  }
  .about_block5 .slick-prev{
    width: 18px;
    height: 12px;
    margin-right: 25px;
  }
  .about_block5 .slick-prev:before{
    width: 18px;
    height: 12px;
  }
  .about_block5 .slick-next{
    width: 18px;
    height: 12px;
  }
  .about_block5 .slick-next:before{
    width: 18px;
    height: 12px;
  }
  .certification_slick{
    margin-top: 15px;
  }
}
@media(max-width: 575px){
  .a_b4_area{
    height: 250px;
  }
}
@media(max-width: 450px){
  .about_block5 .slick-prev{
    width: 16px;
    height: 10px;
    margin-right: 20px;
  }
  .about_block5 .slick-prev:before{
    width: 16px;
    height: 10px;
  }
  .about_block5 .slick-next{
    width: 16px;
    height: 10px;
  }
  .about_block5 .slick-next:before{
    width: 16px;
    height: 10px;
  }
}

/* contact */
.contact_left{
  padding-right: 50px;
}
.gh_input{
  border: none;
  border-bottom: solid 1px #d9d9d9;
  border-radius: 0px;
  background-color: transparent;
}
.gh_input:focus{
  box-shadow: none;
  border-bottom: solid 1px #c11920;
  background-color: transparent;
}
.gh_textarea{
  height: 130px !important;
}
.code_block{
  display: flex;
  align-items: flex-end;
}
.code_block .invalid-feedback{
  position: absolute;
  bottom: -20px;
}
.reset_block{
  display: flex;
  align-items: center;
  padding-left: 5px;
}
.form_code{
  max-width: 75px;
}
.reset_btn{
  border: none;
  background-color: transparent;
  padding: 0px 0px 0px 5px;
}
.reset_icon{
  width: 15px;
}
.gh_form .gh_btn{
  margin-left: auto;
}
.inquiry_area{
  background-color: #fff;
  padding: 12px 24px;
}
.inquiry_item{
  display: flex;
  align-items: center;
  border-bottom: solid 1px #d9d9d9;
  padding: 12px 0px;
}
.inquiry_item:nth-last-child(1){
  border-bottom: none;
}
.inq_p_block{
  width: 130px;
}
.inq_t_block{
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 15px;
}
.inq_title{
  font-size: 18px;
  margin-bottom: 0px;
}
.delete_btn{
  border: none;
  background-color: transparent;
  padding: 0px;
}
.delete_icon{
  width: 16px;
}
.info_area{
  margin-top: 50px;
}
.info_item{
  display: flex;
  align-items: center;
  margin: 15px 0px;
}
.info_icon_block{
  width: 55px;
  height: 55px;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 20px;
}
.info_icon{
  width: 24px;
}
.info_title{
  font-size: 18px;
  color: #c11920;
  margin-bottom: 0px;
  font-weight: 600;
}
.info_text{
  font-size: 16px;
  color: #282828;
  text-decoration: none;
  margin-bottom: 0px;
  transition: all ease-in-out 0.3s;
}
.info_item a:hover{
  color: #c11920;
}
.map_area{
  padding: 0px;
}
.contact_map{
  height: 500px;
}
.search_top{
  text-align: center;
  border-bottom: solid 1px #d9d9d9;
  padding-bottom: 5px;
}
@media(max-width: 1499px){
  .contact_left{
    padding-right: 30px;
  }
  .contact_map{
    height: 450px;
  }
}
@media(max-width: 1299px){
  .contact_left{
    padding-right: 0px;
  }
  .inquiry_area{
    padding: 10px 20px;
  }
  .inquiry_item{
    padding: 10px 0px;
  }
  .inq_p_block{
    width: 100px;
  }
  .inq_title{
    font-size: 16px;
  }
  .delete_icon{
    width: 15px;
  }
  .info_area{
    margin-top: 30px;
  }
  .info_title{
    font-size: 16px;
  }
  .info_text{
    font-size: 14px;
  }
  .info_icon_block{
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .info_icon{
    width: 20px;
  }
  .contact_map{
    height: 400px;
  }
}
@media(max-width: 1199px){
  .gh_textarea{
    height: 100px !important;
  }
  .form_code{
    max-width: 65px;
  }
  .inquiry_area{
    padding: 8px 16px;
  }
  .inquiry_item{
    padding: 8px 0px;
  }
  .inq_p_block{
    width: 80px;
  }
  .delete_icon{
    width: 12px;
  }
  .info_area{
    margin-top: 20px;
  }
  .info_item{
    margin: 10px 0px;
  }
  .info_icon_block{
    width: 45px;
    height: 45px;
    margin-right: 10px;
  }
  .info_icon{
    width: 18px;
  }
  .contact_map{
    height: 350px;
  }
}
@media(max-width: 991px){
  .gh_textarea{
    height: 80px !important;
  }
  .gh_form .gh_btn{
    margin: 20px auto 0px auto;
  }
  .gh_label{
    font-size: 14px;
  }
  .inquiry_area{
    margin-bottom: 20px;
  }
  .inq_p_block{
    width: 65px;
  }
  .inq_title{
    font-size: 14px;
  }
  .info_title{
    font-size: 14px;
  }
  .contact_map{
    height: 300px;
  }
}
@media(max-width: 767px){
  .contact_map{
    height: 250px;
  }
}
@media(max-width: 575px){
  .contact_map{
    height: 200px;
  }
}

/* cookie */
.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: #fff;
}
.privacyBox .closePrivacy{
  white-space:nowrap;
  cursor: pointer;
}
.closePrivacy{
  background-color: #c11920;
  padding: 8px 20px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.closePrivacy:hover{
  background-color: #c11920;
}
@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;
  }
}

/* privacy */
.privacy_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
}
.privacy_cname{
  color: #c11920;
}
@media(max-width: 1299px){
  .privacy_text{
    font-size: 16px;
  }
}
@media(max-width: 991px){
  .privacy_text{
    font-size: 14px;
  }
}

/* submit */
.submit_area{
  max-width: 1520px;
  margin: auto;
  padding: 250px 0px 150px 0px;
  text-align: center;
}
.send_icon{
  width: 150px;
  margin-bottom: 20px;
}
.submit_title{
  font-size: 48px;
  color: #282828;
  margin-bottom: 10px;
  font-weight: 700;
}
.submit_text{
  font-size: 18px;
  color: #282828;
  margin-bottom: 0px;
}
.submit_back{
  margin-top: 30px;
}
.submit_back .gh_btn{
  margin: auto;
}
@media(max-width: 1299px){
  .submit_area{
    padding: 200px 0px 100px 0px;
  }
  .send_icon{
    width: 130px;
  }
  .submit_title{
    font-size: 42px;
  }
}
@media(max-width: 991px){
  .submit_area{
    padding: 150px 0px 100px 0px;
  }
  .send_icon{
    width: 120px;
  }
  .submit_title{
    font-size: 36px;
  }
}
@media(max-width: 575px){
  .send_icon{
    width: 100px;
  }
  .submit_title{
    font-size: 28px;
    margin-bottom: 0px;
  }
  .submit_text{
    font-size: 16px;
  }
  .submit_back{
    margin-top: 20px;
  }
}
@media(max-width: 390px){
  .send_icon{
    width: 80px;
    margin-bottom: 15px;
  }
  .submit_title{
    font-size: 24px;
    margin-bottom: 0px;
  }
  .submit_text{
    font-size: 14px;
  }
  .submit_back{
    margin-top: 15px;
  }
}

/* 404 */
.error_title{
  font-size: 130px;
  color: #c11920;
  margin-bottom: 0px;
  font-weight: 700;
}
.error_text{
  font-size: 20px;
  color: #282828;
  margin-bottom: 0px;
}
@media(max-width: 1299px){
  .error_title{
    font-size: 100px;
  }
}
@media(max-width: 991px){
  .error_title{
    font-size: 86px;
  }
  .error_text{
    font-size: 18px;
  }
}
@media(max-width: 575px){
  .error_title{
    font-size: 72px;
  }
  .error_text{
    font-size: 16px;
  }
}