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

/* 整個捲軸 */
::-webkit-scrollbar { width: 10px; height: 10px;}
/* 捲軸的軌道 */
::-webkit-scrollbar-track { background: #d9d9d9; }
/*捲軸尚未滑到的軌道*/
::-webkit-scrollbar-track-piece{ background: #d9d9d9; }
/* 滑動的區塊 */
::-webkit-scrollbar-thumb { background: #e68200;}
/* 滑鼠移到滑動的區塊上 */
::-webkit-scrollbar-thumb:hover { background: #e68200; }

/* nav */
.mt_navbar{
  padding: 0px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  background-color: #191919;
  transition: 0.6s;
  position: fixed;
  width: 100%;
  z-index: 99;
}
.nav_scroll{
  background-color: transparent;
  transition: 0.6s;
  box-shadow: none;
}
#inner .nav_scroll{
  background-color: #fff;
}
.navbar_area{
  padding: 0px;
}
.brand_logo{
  padding: 24px 24px;
  border-right: solid 1px rgba(255, 255, 255, 0.3);
}
.logo{
  background: url('../image/logo.svg') left center no-repeat;
  width: 200px;
  height: 40px;
  cursor: pointer;
  background-size: contain;
}
.nav_top{
  padding: 15px 0px;
}
.nav_linkarea{
  justify-content: flex-end;
}
.nav_linkarea .nav-link{
  color: #fff;
  background-color: transparent;
  border: none;
  padding: 30px 30px !important;
  transition: 0.4s;
  font-size: 16px;
  position: relative;
}
.nav_linkarea .nav-item:hover .nav-link{
  color: #e68200 !important;
}
.nav_right{
  display: flex;
  align-items: center;
}
.contact_icon{
  background: url('../image/contact_icon.svg') no-repeat center;
  width: 24px;
  height: 24px;
  border: none;
}
.contact_link{
  padding: 31px 30px;
  border-radius: 0px;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
  position: relative;
}
.cart_point{
  width: 6px;
  height: 6px;
  border-radius: 100%;
  background-color: #e68200;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 20px;
  display: none;
  animation: hasitem 1s infinite;
}
.has_item .cart_point{
  display: block;
}
@keyframes hasitem{
  0%{
    opacity: 1;
  }
  50%{
    opacity: 0;
  }
  100%{
    opacity: 1;
  }
}
.lang_drop .btn{
  padding: 31px 30px;
  border-radius: 0px;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
}
.lang_drop .btn:focus{
  box-shadow: none;
}
.lang_btn{
  background: url('../image/lang_icon.svg') no-repeat center;
  width: 24px;
  height: 24px;
  border: none;
}
.lang_btn:focus{
  box-shadow: none;
}
.lang_dropmenu{
  background-color: #e68200;
  border-radius: 0px;
  min-width: 100px;
  left: 50% !important;
  transform: translateX(-50%);
  margin-top: 0px !important;
}
.lang_dropmenu .dropdown-item{
  color: #fff;
  transition: all 0.4s ease-in-out;
  font-size: 16px;
}
.lang_dropmenu .dropdown-item:hover{
  background-color: transparent;
  color: #fff;
  opacity: 0.6;
}
/* dropdown_menu */
.mt_dropmenu{
  border: none;
  background-color: #e68200;
  padding: 0px;
  border-radius: 0px;
  margin-top: 1px !important;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  left: 50% !important;
  transform: translateX(-50%);
}
.mt_dropmenu .dropdown-item{
  color: #fff;
  padding: 10px 15px;
  transition: 0.4s;
  font-size: 16px;
}
.mt_dropmenu .dropdown-item:hover{
  background-color: #d97b00;
}
.mt_dropmenu .dropdown-item:active{
  background-color: transparent;
}
.mt_dropmenu .dropdown-item:focus{
  background-color: transparent;
}
@media(min-width: 991px){
  .mt_dropmenu li:hover .sub-menu{
    visibility: visible;
  }
  .dropdown:hover .mt_dropmenu{
    display: block;
  }
  .lang_dropmenu li:hover .sub-menu{
    visibility: visible;
  }
}
@media(max-width: 1299px){
  .nav_linkarea .nav-link{
    padding: 30px 20px !important;
  }
}
@media(max-width: 991px){
  .nav_linkarea{
    border-top: solid 1px rgba(255, 255, 255, 0.3);
    background-color: #1B1917;
  }
  .nav_linkarea .nav-link{
    font-size: 14px;
    padding: 10px !important;
    text-align: center;
    width: 100%;
  }
  .mt_dropmenu{
    left: 0px;
    transform: translateX(0%);
  }
  .mt_dropmenu .dropdown-item{
    text-align: center;
    font-size: 14px;
    padding: 10px;
  }
  .lang_dropmenu .dropdown-item{
    font-size: 14px;
  }
  .brand_logo{
    padding: 15px 20px;
  }
  .logo{
    width: 180px;
    height: 35px;
  }
  .nav_right{
    position: absolute;
    top: 0;
    right: 65px;
  }
  .contact_link{
    padding: 20px;
  }
  .cart_point{
    width: 5px;
    height: 5px;
    top: 10px;
  }
  .lang_drop .btn{
    padding: 20px;
  }
  .navbar-toggler{
    position: absolute;
    top: 0px;
    z-index: 2;
    right: 0px;
    border: none;
    border-radius: 0px;
    height: 65px;
    width: 65px;
    cursor: pointer;
    box-shadow: none !important;
    padding: 20px;
    border-left: solid 1px rgba(255, 255, 255, 0.3);
  }
  .navbar-toggler .hamburguer_btn{
    width: 100%;
    height: 2px;
    background: #e68200;
    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: 575px){
  .brand_logo{
    padding: 9px 20px;
  }
  .logo{
    width: 150px;
    height: 33px;
  }
  .nav_right{
    right: 52px;
  }
  .contact_link{
    padding: 15px;
  }
  .contact_icon{
    width: 20px;
    height: 20px;
  }
  .cart_point{
    width: 4px;
    height: 4px;
    top: 5px;
  }
  .lang_drop .btn{
    padding: 15px;
  }
  .lang_btn{
    width: 20px;
    height: 20px;
  }
  .navbar-toggler{
    height: 52px;
    width: 52px;
    padding: 15px;
  }
}
@media(max-width: 390px){
  .brand_logo{
    padding: 8px 14px;
  }
  .logo{
    width: 130px;
    height: 30px;
  }
  .nav_right{
    right: 46px;
  }
  .contact_link{
    padding: 13px;
  }
  .contact_icon{
    width: 18px;
    height: 18px;
  }
  .cart_point{
    width: 4px;
    height: 4px;
    top: 5px;
  }
  .lang_drop .btn{
    padding: 13px;
  }
  .lang_btn{
    width: 18px;
    height: 18px;
  }
  .navbar-toggler{
    height: 46px;
    width: 46px;
    padding: 13px;
  }
}

/* banner */
.index_block{
  padding: 0;
  overflow: hidden;
  position: relative;
}
.index_block::after{
  content: "";
  position: absolute;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 30vh;
  background: linear-gradient(to bottom, rgba(25,25,25,0), #1B1917 100%);
  left: 0;
  bottom: 0px;
}
.banner_slick{
  margin-bottom: 0px !important;
}
.banner_block{
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.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: 1420px;
  width: 100%;
  margin: auto;
  z-index: 3;
  padding: 0px 24px;
  display: flex;
  justify-content: flex-end;
  bottom: 300px;
}
.b_title{
  font-size: 58px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0px;
  max-width: 730px;
  line-height: 1.5;
}
.b_company{
  position: absolute;
  left: 65px;
  font-size: 16px;
  color: #fff;
  opacity: 0.5;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-lr;
  writing-mode: vertical-lr;
  z-index: 1;
  text-align: center;
  top: 0;
  bottom: 0;
}
/* Dots */
.banner_slick .slick-dots{
  bottom: 250px;
  padding: 0px 24px;
  z-index: 2;
  max-width: 1420px;
  margin: auto;
  left: 0;
  right: 0;
  display: flex;
}
.banner_slick.slick-dotted.slick-slider{
  margin-bottom: 0px;
}
.banner_slick .slick-dots li{
  width: 12px;
  height: 12px;
  margin: 0px 12px;
}
.banner_slick .slick-dots li button{
  padding: 0px;
  width: 12px;
  height: 12px;
}
.banner_slick .slick-dots li button:before{
  font-size: 6px;
  opacity: 1;
  width: 12px;
  height: 12px;
  color: transparent;
  border: solid 1px #fff;
  border-radius: 100%;
}
.banner_slick .slick-dots li.slick-active button:before{
  opacity: 1;
  color: transparent;
  border: solid 1px #fff;
  background-color: #fff;
}
@media(max-width: 1599px){
  .index_block::after{
    height: 20vh;
  }
  .banner_tblock{
    bottom: 250px;
  }
  .b_title{
    font-size: 48px;
    max-width: 600px;
  }
  .banner_slick .slick-dots{
    bottom: 200px;
  }
  .banner_slick .slick-dots li{
    width: 10px;
    height: 10px;
    margin: 0px 10px;
  }
  .banner_slick .slick-dots li button{
    width: 10px;
    height: 10px;
  }
  .banner_slick .slick-dots li button:before{
    width: 10px;
    height: 10px;
  }
  .b_company{
    left: 50px;
  }
}
@media(max-width: 1499px){
  .index_block::after{
    height: 15vh;
  }
  .banner_tblock{
    bottom: 200px;
  }
  .b_title{
    font-size: 38px;
    max-width: 480px;
  }
  .banner_slick .slick-dots{
    bottom: 150px;
  }
  .banner_slick .slick-dots li{
    width: 8px;
    height: 8px;
    margin: 0px 8px;
  }
  .banner_slick .slick-dots li button{
    width: 8px;
    height: 8px;
  }
  .banner_slick .slick-dots li button:before{
    width: 8px;
    height: 8px;
  }
  .b_company{
    left: 24px;
  }
}
@media(max-width: 1299px){
  .index_block::after{
    height: 10vh;
  }
  .banner_tblock{
    bottom: 150px;
  }
  .b_title{
    font-size: 32px;
    max-width: 400px;
  }
  .banner_slick .slick-dots{
    bottom: 100px;
  }
  .b_company{
    left: 24px;
    font-size: 14px;
  }
}
@media(max-width: 991px){
  .banner_tblock{
    bottom: 100px;
  }
  .b_title{
    font-size: 28px;
    max-width: 350px;
  }
  .banner_slick .slick-dots{
    bottom: 50px;
  }
  .b_company{
    font-size: 12px;
  }
}
@media(max-width: 767px){
  .banner_tblock{
    bottom: 65px;
  }
  .b_title{
    font-size: 24px;
    max-width: 290px;
  }
  .banner_slick .slick-dots{
    bottom: 30px;
  }
  .banner_slick .slick-dots li{
    width: 6px;
    height: 6px;
    margin: 0px 6px;
  }
  .banner_slick .slick-dots li button{
    width: 6px;
    height: 6px;
  }
  .banner_slick .slick-dots li button:before{
    width: 6px;
    height: 6px;
  }
  .b_company{
    transform: scale(0.8);
    left: 12px;
  }
}
@media(max-width: 575px){
  .banner_tblock{
    bottom: 50px;
  }
  .b_title{
    font-size: 20px;
    max-width: 240px;
  }
  .banner_slick .slick-dots{
    bottom: 30px;
  }
  .banner_slick .slick-dots li{
    width: 6px;
    height: 6px;
    margin: 0px 6px;
  }
  .banner_slick .slick-dots li button{
    width: 6px;
    height: 6px;
  }
  .banner_slick .slick-dots li button:before{
    width: 6px;
    height: 6px;
  }
  .b_company{
    transform: scale(0.8);
    left: 12px;
  }
}
@media(max-width: 390px){
  .banner_tblock{
    bottom: 35px;
  }
  .b_title{
    font-size: 18px;
    max-width: 220px;
  }
  .banner_slick .slick-dots{
    bottom: 20px;
  }
  .b_company{
    transform: scale(0.6);
  }
}

/* index_product */
.index_product{
  max-width: 1420px;
  margin: auto;
  padding: 150px 0px;
  align-items: center;
  overflow: hidden;
}
.index_title_sm{
  font-size: 16px;
  color: #e68200;
}
.index_title_lg{
  font-size: 48px;
  color: #fff;
  margin-bottom: 0px;
}
.index_p_t_block{
  margin-top: 50px;
}
.title_sm{
  font-size: 18px;
  color: #fff;
}
.text_sm{
  font-size: 16px;
  color: #fff;
  font-weight: 300;
}
.mt_btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 200px;
  width: 100%;
  padding: 15px 24px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  border: solid 1px rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  transition: all ease-in-out 0.3s;
  flex-shrink: 0;
}
.mt_btn span{
  background-image: url('../image/btn_arrow.svg');
  width: 12px;
  height: 10px;
  display: block;
}
.mt_btn:hover{
  border: solid 1px #e68200;
  background-color: #e68200;
  color: #fff;
}
.index_p_t_block .mt_btn{
  margin-top: 50px;
}
.btn_arrow{
  width: 12px;
  flex-shrink: 0;
}
.index_p_tab{
  margin-top: 100px;
}
.index_p_tab .slick-list{
  padding-right: 2px;
}
.index_p_tab .slick-track{
  display: flex;
}
.index_p_tab .slick-slide{
  height: auto;
}
.index_p_tab .slick-slide>div{
  height: 100%;
}
.p_tab_item{
  width: 33.33333%;
  border: solid 1px rgba(255, 255, 255, 0.3);
  padding: 20px;
  height: 100%;
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}
.index_p_tab .slick-current .p_tab_item{
  border: solid 1px #e68200;
  background-color: #e68200;
}
.p_tab_top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 75px;
}
.p_tab_item .title_sm{
  font-weight: 300;
  margin-bottom: 0px;
}
.p_tab_num{
  font-size: 18px;
  color: rgba(255, 255, 255, 0.3);
}
.index_p_pic{
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-left: auto;
}
.index_p_pic .p_bg_slide{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.index_p_pic .p_bg_slide.active{
  opacity: 1;
}
/* Dots */
.index_p_tab .slick-dots{
  padding: 0px;
  z-index: 2;
  margin: auto;
  left: 0;
  right: 0;
  display: flex;
  bottom: -40px;
}
.index_p_tab.slick-dotted.slick-slider{
  margin-bottom: 0px;
}
.index_p_tab .slick-dots li{
  width: 12px;
  height: 12px;
  margin: 0px 12px;
}
.index_p_tab .slick-dots li button{
  padding: 0px;
  width: 12px;
  height: 12px;
}
.index_p_tab .slick-dots li button:before{
  font-size: 6px;
  opacity: 1;
  width: 12px;
  height: 12px;
  color: transparent;
  border: solid 1px #fff;
  border-radius: 100%;
}
.index_p_tab .slick-dots li.slick-active button:before{
  opacity: 1;
  color: transparent;
  border: solid 1px #fff;
  background-color: #fff !important;
}
.index_p_right{
  padding-left: 150px;
}
.index_p_inner{
  background-image: url('../image/p_pic_bg.png');
  background-repeat: no-repeat;
  background-size: 90%;
  background-position: center;
}
@media(max-width: 1599px){
  .index_p_tab .slick-dots li{
    width: 10px;
    height: 10px;
    margin: 0px 10px;
  }
  .index_p_tab .slick-dots li button{
    width: 10px;
    height: 10px;
  }
  .index_p_tab .slick-dots li button:before{
    width: 10px;
    height: 10px;
  }
}
@media(max-width: 1499px){
  .index_product{
    padding: 130px 0px;
  }
  .index_title_lg{
    font-size: 42px;
  }
  .index_p_tab{
    margin-top: 65px;
  }
  .index_p_tab .slick-dots li{
    width: 8px;
    height: 8px;
    margin: 0px 8px;
  }
  .index_p_tab .slick-dots li button{
    width: 8px;
    height: 8px;
  }
  .index_p_tab .slick-dots li button:before{
    width: 8px;
    height: 8px;
  }
}
@media(max-width: 1299px){
  .index_product{
    padding: 100px 0px;
  }
  .index_title_lg{
    font-size: 38px;
  }
  .index_p_t_block{
    margin-top: 30px;
  }
  .index_p_t_block .mt_btn{
    margin-top: 30px;
  }
  .index_p_tab{
    margin-top: 50px;
  }
  .p_tab_top{
    padding-bottom: 50px;
  }
  .p_tab_num{
    font-size: 16px;
  }
  .index_p_right{
    padding-left: 100px;
  }
}
@media(max-width: 1199px){
  .index_product{
    padding: 80px 0px;
  }
  .index_title_lg{
    font-size: 32px;
  }
  .p_tab_item{
    padding: 16px;
  }
  .index_p_right{
    padding-left: 30px;
  }
}
@media(max-width: 1099px){
  .index_product{
    padding: 65px 0px;
  }
}
@media(max-width: 991px){
  .index_product{
    padding: 50px 0px;
  }
  .index_title_sm{
    margin-bottom: 5px;
  }
  .index_title_lg{
    font-size: 28px;
  }
  .title_sm{
    font-size: 16px;
  }
  .text_sm{
    font-size: 14px;
  }
  .mt_btn{
    font-size: 14px;
    max-width: 180px;
    padding: 12px 20px;
  }
  .p_tab_item{
    padding: 14px;
  }
  .p_tab_num{
    font-size: 14px;
  }
  .index_p_tab{
    margin-top: 30px;
  }
  .p_tab_item .title_sm{
    font-size: 14px;
  }
  .index_p_tab .slick-dots{
    bottom: -30px;
  }
  .index_p_right{
    padding-left: 0px;
  }
}
@media(max-width: 767px){
  .index_title_sm{
    font-size: 14px;
  }
  .index_title_lg{
    font-size: 24px;
  }
  .index_p_t_block{
    margin-top: 20px;
  }
  .index_p_t_block .mt_btn{
    margin-top: 20px;
  }
  .p_tab_top{
    padding-bottom: 20px;
  }
  .index_p_tab .slick-dots{
    bottom: -20px;
  }
  .index_p_tab .slick-dots li{
    width: 6px;
    height: 6px;
    margin: 0px 6px;
  }
  .index_p_tab .slick-dots li button{
    width: 6px;
    height: 6px;
  }
  .index_p_tab .slick-dots li button:before{
    width: 6px;
    height: 6px;
  }
}
@media(max-width: 575px){
  .mt_btn{
    max-width: 160px;
    padding: 12px 16px;
  }
  .index_p_right{
    margin-top: 30px;
  }
}
@media(max-width: 390px){
  .mt_btn{
    max-width: 130px;
    padding: 10px 15px;
  }
}

/* index_about */
.about_area{
  padding-top: 50px;
  background-image: url('../image/about_bg.png');
  background-position: right top;
  background-repeat: no-repeat;
  background-size: 40%;
}
.index_about{
  max-width: 1670px;
  margin-right: auto;
  align-items: center;
  padding-bottom: 150px;
  overflow: hidden;
}
.index_a_left{
  padding-left: 0px;
}
.index_a_t_block{
  padding-left: 90px;
}
.index_a_t_block .index_title{
  margin-bottom: 50px;
}
.index_a_t_block .mt_btn{
  margin-top: 50px;
}
@media(max-width: 1499px){
  .index_about{
    padding-bottom: 130px;
  }
  .index_a_t_block{
    padding-left: 50px;
  }
}
@media(max-width: 1299px){
  .index_about{
    padding-bottom: 100px;
  }
  .index_a_t_block{
    padding-left: 30px;
  }
  .index_a_t_block .index_title{
    margin-bottom: 30px;
  }
  .index_a_t_block .mt_btn{
    margin-top: 30px;
  }
}
@media(max-width: 1199px){
  .index_about{
    padding-bottom: 80px;
  }
}
@media(max-width: 1099px){
  .index_about{
    padding-bottom: 65px;
  }
}
@media(max-width: 991px){
  .index_about{
    padding-bottom: 50px;
  }
  .index_a_t_block{
    padding-left: 0px;
  }
}
@media(max-width: 767px){
  .about_area{
    background-size: 60%;
    padding-top: 30px;
  }
  .index_about{
    margin: auto;
  }
  .index_a_right{
    order: 1;
  }
  .index_a_left{
    padding-left: 12px;
    order: 2;
  }
  .index_a_t_block{
    margin-bottom: 30px;
  }
  .index_a_t_block .index_title{
    margin-bottom: 20px;
  }
  .index_a_t_block .mt_btn{
    margin-top: 20px;
  }
}

/* index_solution */
.index_sol_area{
  position: relative;
  z-index: 1;
}
.index_sol_title{
  max-width: 1420px;
  margin: auto;
  margin-bottom: 50px;
}
.index_solution{
  position: relative;
  justify-content: center;
}
.index_sol_item{
  position: relative;
  padding: 0px;
  border-right: solid 1px rgba(255, 255, 255, 0.3);
  z-index: 2;
}
.index_sol_item:nth-last-child(1){
  border-right: none;
}
.index_sol_item a::after{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  background-color: #000;
  opacity: 0;
  transition: all ease-in-out 0.4s;
}
.index_sol_item a:hover::after{
  opacity: 0.3;
}
.index_sol_item a{
  position: relative;
  display: block;
  padding-bottom: 140%;
}
.index_sol_block{
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  padding: 50px;
  z-index: 1;
}
.h_sol_tblock{
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.h_sol_tblock .h_sol_num{
  color: #fff;
  font-size: 18px;
  margin-bottom: 0px;
}
.h_sol_tblock .h_sol_title{
  color: #fff;
  margin-bottom: 0;
  font-size: 24px;
  overflow: hidden;
  text-overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}
.h_sol_tblock .h_sol_title::after{
  content: "";
  width: 50px;
  height: 2px;
  background-color: #fff;
  display: block;
  margin-top: 15px;
}
.index_sol_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0px;
}
.index_sol_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.4);
  content: "";
  z-index: 1;
}
.sol_bg{
  position: absolute;
  background-size: cover;
  width: inherit;
  height: inherit;
  opacity: 0;
  transition: 0.4s;
}
.index_sol_bg > div.index_sol_bg_org{
  opacity: 1;
  background-position: center;
}
.index_sol_bg > div.is-active{
  opacity: 1;
}
.index_sol_bg_1,
.index_sol_bg_2,
.index_sol_bg_3,
.index_sol_bg_4 {
  background-position: center;
}
@media(max-width: 1499px){
  .index_sol_block{
    padding: 30px;
  }
  .h_sol_tblock .h_sol_title{
    font-size: 20px;
  }
  .h_sol_tblock .h_sol_title::after{
    width: 30px;
    margin-top: 12px;
  }
}
@media(max-width: 1299px){
  .index_sol_block{
    padding: 24px;
  }
  .index_sol_title{
    margin-bottom: 30px;
  }
}
@media(max-width: 1099px){
  .index_sol_block{
    padding: 20px;
  }
  .h_sol_tblock .h_sol_num{
    font-size: 16px;
  }
  .h_sol_tblock .h_sol_title{
    font-size: 18px;
  }
  .h_sol_tblock .h_sol_title::after{
    width: 15px;
    margin-top: 10px;
  }
}
@media(max-width: 767px){
  .index_sol_bg {
    display: none;
  }
  .index_sol_item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-right: none;
    border-bottom: solid 1px rgba(255, 255, 255, 0.3);
    width: 100%;
    margin: 0;
  }
  .index_sol_item::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  .index_sol_item a{
    padding-bottom: 30%;
  }
  .index_sol_block {
    z-index: 2;
  }
  .h_sol_tblock{
    justify-content: center;
  }
   .index_sol_title{
    margin-bottom: 20px;
  }
  .h_sol_tblock .h_sol_num{
    font-size: 14px;
  }
  .h_sol_tblock .h_sol_title{
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .index_sol_bg {
    display: block !important;
  }
  .index_sol_item {
    background: none !important;
    border-bottom: none !important;
  }
}

/* index_media */
.index_media{
  max-width: 1420px;
  margin: auto;
  overflow: hidden;
}
.m_left_area{
  border-right: solid 1px rgba(255, 255, 255, 0.3);
}
.index_m_left{
  padding: 150px 40px 150px 0px;
}
.index_m_right{
  padding: 150px 0px 150px 40px;
}
.index_m_p_list{
  position: relative;
}
.index_m_top{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.index_m_list{
  margin-top: 50px;
}
.m_item{
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  transition: all ease-in-out 0.3s;
  overflow: hidden;
}
.m_item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(230,130,0,0.8) 0%, rgba(230,130,0,0) 100%);
  opacity: 0;
  transform: translateX(-100%);
  transition:
    opacity 0.6s ease,
    transform 0.8s ease;
  z-index: 0;
}
.m_item:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.m_item:not(:hover)::before {
  transform: translateX(-100%);
  opacity: 0;
}
.m_item > * {
  position: relative;
  z-index: 1;
}
.m_item_dnt{
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.m_date{
  font-size: 14px;
  color: #e68200;
  margin-bottom: 0px;
  transition: all ease-in-out 0.3s;
}
.m_item:hover .m_date{
  color: #fff;
}
.m_type{
  font-size: 14px;
  color: #fff;
  padding: 3px 6px;
  border: solid 1px rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
  margin-left: 10px;
}
.m_item .title_sm{
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  margin-bottom: 0px;
  overflow: hidden;
}
.m_item_pic{
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.m_item_pic.active {
  opacity: 1;
  z-index: 1;
}
.media_pic{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 76%;
}
.media_pic img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
@media(max-width: 1499px){
  .index_m_left{
    padding: 130px 30px 130px 0px;
  }
  .index_m_right{
    padding: 130px 0px 130px 30px;
  }
  .m_item{
    padding: 12px;
  }
}
@media(max-width: 1299px){
  .index_m_left{
    padding: 100px 15px 100px 0px;
  }
  .index_m_right{
    padding: 100px 0px 100px 15px;
  }
  .index_m_list{
    margin-top: 30px;
  }
}
@media(max-width: 1199px){
  .index_m_left{
    padding: 80px 12px 80px 0px;
  }
  .index_m_right{
    padding: 80px 0px 80px 12px;
  }
  .index_m_list{
    margin-top: 20px;
  }
  .m_item_dnt{
    margin-bottom: 10px;
  }
}
@media(max-width: 1099px){
  .index_m_left{
    padding: 65px 10px 65px 0px;
  }
  .index_m_right{
    padding: 65px 0px 65px 10px;
  }
  .index_m_list{
    margin-top: 15px;
  }
}
@media(max-width: 991px){
  .index_m_left{
    padding: 50px 10px 50px 0px;
  }
  .index_m_right{
    padding: 50px 0px 50px 10px;
  }
  .index_m_list{
    margin-top: 10px;
  }
  .m_item{
    padding: 12px 0px;
  }
  .m_date{
    font-size: 12px;
  }
  .m_type{
    font-size: 12px;
    padding: 2px 4px;
  }
}
@media(max-width: 767px){
  .m_left_area{
    border-right: none;
  }
   .index_m_left{
    padding: 50px 0px;
  }
  .m_right_area{
    display: none;
  }
}

/* footer */
.footer{
  background-color: #000000;
  border-bottom: solid 2px #e68200;
}
.footer_top{
  max-width: 1420px;
  margin: auto;
  padding-top: 100px;
}
.f_sitemap{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.site_top{
  font-size: 16px;
  color: #e68200;
  text-decoration: none;
  margin-bottom: 5px;
  display: block;
  transition: all ease-in-out 0.3s;
}
.site_top:hover{
  color: #d97b00;
}
.site_item{
  font-size: 14px;
  color: #888888;
  text-decoration: none;
  margin: 10px 0px;
  display: block;
  transition: all ease-in-out 0.3s;
}
.site_item:hover{
  color: #d9d9d9;
}
.f_info_area{
  text-align: right;
}
.f_info_block{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 5px;
}
.f_info_title{
  font-size: 16px;
  color: #e68200;
  margin-right: 10px;
  margin-bottom: 0px;
}
.f_info_item{
  font-size: 16px;
  color: #d9d9d9;
  margin-bottom: 0px;
  text-decoration: none;
}
.f_info_area .mt_btn{
  margin-left: auto;
  margin-top: 30px;
}
.f_info_block a:hover{
  color: #fff;
}
.footer_bt{
  margin: 100px auto 30px auto;
}
.f_copy_text{
  font-size: 14px;
  color: #888888;
  text-align: center;
}
.f_copy_text a{
  color: #888888;
  margin: 0px 1px;
  transition: all ease-in-out 0.3s;
}
.f_copy_text a:hover{
  color: #d9d9d9;
}
.footer_bottom{
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  position: relative;
}
.f_bt_area{
  max-width: 1420px;
  margin: auto;
  padding: 40px 0px;
}
.social_block{
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.social_item{
  display: inline-block;
  margin: 0px 10px;
}
.social_item:nth-last-child(1){
  margin-right: 0px !important;
}
.social_icon{
  width: 22px;
}
.top_block{
  position: absolute;
  background-color: transparent;
  border: none;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 45px;
  border-left: solid 1px rgba(255, 255, 255, 0.3);
}
.f_top_btn{
  width: 20px;
}
@media(max-width: 1699px){
  .footer_top{
    padding-top: 80px;
  }
  .footer_bt{
    margin: 80px auto 30px auto;
  }
  .f_bt_area{
    padding: 24px 0px;
  }
  .top_block{
    padding: 10px 30px;
  }
}
@media(max-width: 1599px){
  .footer_top{
    padding-top: 65px;
  }
  .footer_bt{
    margin: 65px auto 20px auto;
  }
  .f_bt_area{
    padding: 20px 0px;
  }
  .social_item{
    margin: 0px 8px;
  }
  .social_icon{
    width: 20px;
  }
  .top_block{
    padding: 0px 15px;
  }
  .f_top_btn{
    width: 12px;
  }
}
@media(max-width: 1499px){
  .footer{
    position: relative;
  }
  .footer_bottom{
    position: static;
  }
  .top_block{
    border: solid 1px rgba(255, 255, 255, 0.3);
    top: 12px;
    right: 24px;
    bottom: auto;
    padding: 8px 12px;
  }
}
@media(max-width: 1099px){
  .footer_top{
    padding-top: 50px;
  }
  .site_top{
    font-size: 14px;
  }
  .site_item{
    margin: 5px 0px;
  }
  .f_info_title{
    font-size: 14px;
  }
  .f_info_item{
    font-size: 14px;
  }
  .f_info_area .mt_btn{
    margin-top: 20px;
  }
  .footer_bt{
    margin: 50px auto 15px auto;
  }
  .f_bt_area{
    padding: 15px 0px;
  }
  .top_block{
    padding: 5px 8px;
  }
  .f_top_btn{
    width: 10px;
  }
}
@media(max-width: 767px){
  .footer_top{
    padding-top: 30px;
  }
  .f_top_left{
    display: none;
  }
  .f_info_block{
    justify-content: center;
  }
  .f_info_area .mt_btn{
    margin: 15px auto 0px auto;
  }
  .footer_bt{
    margin: 15px auto 12px auto;
  }
  .f_bt_area{
    padding: 12px 0px;
  }
  .social_item{
    margin: 0px 5px;
  }
  .social_icon{
    width: 18px;
  }
  .top_block{
    top: 12px;
    right: 12px;
  }
}
@media(max-width: 575px){
  .f_bt_area .logo{
    margin: auto;
  }
  .social_block{
    justify-content: center;
    margin-top: 10px;
  }
}
@media(max-width: 390px){
  .social_icon{
    width: 16px;
  }
}

/* inner_banner */
.banner_area{
  position: relative;
  height: 450px;
  padding: 0px 12px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.banner_area::before{
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
}
.inner_banner_block{
  max-width: 1420px;
  width: 100%;
  z-index: 2;
  padding: 0px 12px;
}
.inner_banner_text{
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  padding-bottom: 20px;
   align-items: flex-end;
}
.mt_bread{
  margin-bottom: 0px;
}
.mt_bread .breadcrumb{
  justify-content: flex-end;
  margin-bottom: 0px;
}
.mt_bread .breadcrumb-item{
  display: flex;
  align-items: center;
}
.mt_bread .breadcrumb-item:nth-child(1){
  padding-left: 0px !important;
}
.mt_bread .breadcrumb-item a{
  color: #888888;
  text-decoration: none;
}
.mt_bread .breadcrumb-item.active{
  color: #d9d9d9;
}
.mt_bread .breadcrumb-item+.breadcrumb-item::before{
  content: "";
  width: 10px;
  height: 1px;
  background-color: #888888;
  margin-right: 8px;
}
.index_block2{
  max-width: 1420px;
  margin: auto;
  padding: 130px 24px 0px 24px;
}
@media(max-width: 1599px){
  .banner_area{
    height: 400px;
  }
}
@media(max-width: 1499px){
  .banner_area{
    height: 350px;
  }
}
@media(max-width: 1299px){
  .banner_area{
    height: 300px;
  }
}
@media(max-width: 991px){
  .banner_area{
    height: 250px;
  }
  .inner_banner_text{
    padding-bottom: 15px;
  }
  .mt_bread .breadcrumb-item{
    font-size: 14px;
  }
  .index_block2{
    padding: 100px 24px 0px 24px;
  }
}
@media(max-width: 767px){
  .banner_area{
    height: 200px;
  }
  .inner_banner_text{
    padding-bottom: 12px;
  }
  .mt_bread .breadcrumb-item{
    font-size: 12px;
  }
  .index_block2{
    padding: 80px 24px 0px 24px;
  }
}
@media(max-width: 575px){
  .mt_bread{
    margin-top: 10px;
  }
  .mt_bread .breadcrumb{
    justify-content: flex-start;
  }
  .mt_bread .breadcrumb-item{
    padding-left: 3px;
  }
  .mt_bread .breadcrumb-item+.breadcrumb-item::before{
    width: 8px;
    margin-right: 3px;
  }
  .index_block2{
    padding: 60px 24px 0px 24px;
  }
}
@media(max-width: 390px){
  .banner_area{
    height: 180px;
  }
  .index_block2{
    padding: 50px 24px 0px 24px;
  }
}

/* product */
.inner_block1{
  max-width: 1420px;
  padding: 50px 0px 150px 0px;
  margin: auto;
}
.inner_block2{
  max-width: 1420px;
  padding: 150px 0px;
  margin: auto;
}
.inner_block3{
  max-width: 1420px;
  padding: 100px 0px 150px 0px;
  margin: auto;
}
/* read_more */
.plist_top .plist_top_inner{
	max-height: 75px;
	transition: all 0.3s ease-out;
	overflow: hidden;
  position: relative;
}
.plist_top .plist_top_inner:after {
	content: "";
	display: inline-block;
	position: absolute;
	pointer-events: none;
	height: 23px;
	width: 100%;
	left: 0;
	right: 0;
	bottom: 0;
  transition: background-image 0.3s ease-in;
	background-image: linear-gradient(0deg, #191919 10%, transparent);
}
.plist_top .des_more_button {
	color: #e68200;
  text-decoration: underline;
  cursor: pointer;
}
.plist_top .des_more-expanded {
	max-height: 2300px !important;
	transition: all .3s ease-in;
}
.product_list{
  margin-top: 30px;
}
.product_item{
  text-decoration: none;
  text-align: center;
}
.product_pic{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 100%;
}
.product_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;
}
.p_item_bt{
  background-color: #282828;
  padding: 150px 50px 50px 50px;
  margin-top: -100px;
  border-bottom: solid 2px #e68200;
  transition: all ease-in-out 0.3s;
}
.title_md{
  font-size: 20px;
  color: #fff;
}
.product_item .title_md{
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0px;
  overflow: hidden;
  line-height: 1.3;
  height: 52px;
}
.product_item .mt_btn{
  margin: 30px auto 0px auto;
}
.product_item:hover .p_item_bt{
  background-color: #e68200;
}
.product_item:hover .product_pic img{
  transform: scale(0.9,0.9);
}
@media(max-width: 1499px){
  .inner_block1{
    padding: 50px 0px 130px 0px;
  }
  .inner_block2{
    padding: 130px 0px;
  }
  .inner_block3{
    padding: 100px 0px 130px 0px;
  }
  .p_item_bt{
    padding: 130px 24px 24px 24px;
    margin-top: -100px;
  }
  .product_item .mt_btn{
    margin: 20px auto 0px auto;
  }
}
@media(max-width: 1299px){
  .inner_block1{
    padding: 50px 0px 100px 0px;
  }
  .inner_block2{
    padding: 100px 0px;
  }
  .inner_block3{
    padding: 100px 0px;
  }
  .p_item_bt{
    padding: 120px 20px 20px 20px;
    margin-top: -100px;
  }
  .product_item .mt_btn{
    margin: 15px auto 0px auto;
  }
  .title_md{
    font-size: 18px;
  }
  .product_item .title_md{
    height: 48px;
  }
}
@media(max-width: 1199px){
  .inner_block1{
    padding: 50px 0px 80px 0px;
  }
  .inner_block2{
    padding: 80px 0px;
  }
  .inner_block3{
    padding: 80px 0px;
  }
  .product_list{
    margin-top: 20px;
  }
}
@media(max-width: 1099px){
  .inner_block1{
    padding: 50px 0px 65px 0px;
  }
  .inner_block2{
    padding: 65px 0px;
  }
  .inner_block3{
    padding: 65px 0px;
  }
  .product_list{
    margin-top: 15px;
  }
}
@media(max-width: 991px){
  .inner_block1{
    padding: 50px 0px;
  }
  .inner_block2{
    padding: 50px 0px;
  }
  .inner_block3{
    padding: 50px 0px;
  }
  .title_md{
    font-size: 16px;
  }
  .product_item .title_md{
    height: 42px;
  }
  .plist_top .des_more_button{
    font-size: 14px;
  }
  .plist_top .plist_top_inner{
    max-height: 65px;
  }
}

/* product_list */
.plist_tab{
  margin-top: 50px;
  margin-left: -12px;
  margin-right: -12px;
}
.plist_tab .nav-item{
  padding: 12px;
}
.plist_tab .nav-link{
  border-radius: 0px;
  border: solid 1px rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-weight: 300;
  padding: 10px 20px;
}
.plist_tab .nav-link.active{
  border: solid 1px #e68200;
  background-color: rgba(255, 255, 255, 0.15);
  color: #e68200;
}
.plist_item{
  display: block;
  background-color: #282828;
  padding-top: 24px;
  text-decoration: none;
}
.plist_item_pic{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 76%;
  background-color: #282828;
}
.plist_item_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;
}
.plist_item:hover .plist_item_pic img{
  transform: scale(0.9,0.9);
}
.plist_item_bt{
  border-bottom: solid 2px #e68200;
  padding: 30px;
}
.plist_item_bt .title_md{
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0px;
  overflow: hidden;
  line-height: 1.3;
  height: 52px;
  text-align: center;
}
@media(max-width: 1299px){
  .plist_item_bt{
    padding: 24px;
  }
  .plist_item_bt .title_md{
    height: 48px;
  }
}
@media(max-width: 1199px){
  .plist_tab{
    margin-top: 40px;
  }
}
@media(max-width: 991px){
  .plist_tab{
    margin-top: 30px;
    margin-left: -6px;
    margin-right: -6px;
  }
  .plist_tab .nav-item{
    padding: 6px;
  }
  .plist_tab .nav-link{
    padding: 8px 16px;
    font-size: 14px;
  }
  .plist_item{
    padding-top: 20px;
  }
  .plist_item_bt{
    padding: 20px;
  }
  .plist_item_bt .title_md{
    height: 42px;
  }
}
@media(max-width: 575px){
  .plist_tab{
    margin-left: -4px;
    margin-right: -4px;
  }
  .plist_tab .nav-item{
    padding: 4px;
  }
  .plist_tab .nav-link{
    padding: 6px 12px;
  }
}
@media(max-width: 390px){
  .plist_tab .nav-link{
    padding: 4px 8px;
  }
}

/* product_detail */
.pdet_top{
  align-items: center;
  padding-bottom: 100px;
}
.pdet_top_right{
  padding-left: 75px;
}
.pdet_title_block{
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.pdet_brand{
  font-size: 18px;
  color: #e68200;
  margin-bottom: 5px;
}
.pdet_title{
  font-size: 30px;
  color: #fff;
  margin-bottom: 0px;
}
.pdet_title_sm{
  font-size: 18px;
  color: #e68200;
  margin-bottom: 5px;
}
.pdet_top_right .mt_btn{
  margin-top: 50px;
}
.pdet_bottom{
  margin: auto;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
}
.pdet_bt_inner{
  padding: 65px 0px;
}
.pdet_inner_area1{
  margin-bottom: 50px;
}
.pdet_bt_inner ul li::marker{
  color: #e68200;
}
.pdet_bt_inner ul{
  color: #fff;
}
.pdet_table_block{
  margin-top: 50px;
}
.mt_p_table{
  margin-top: 50px;
}
.mt_p_table thead tr th{
  background-color: #000;
  color: #fff;
  border-bottom: none;
  text-align: center;
  font-weight: 300;
}
.mt_p_table tbody tr td{
  color: #fff;
  font-weight: 300;
  text-align: center;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
}
.pdet_bt_editor{
  padding: 50px 0px 0px 0px;
  color: #fff;
}
.det_back_area{
  padding: 40px 0px;
  border-top: solid 1px rgba(255, 255, 255, 0.3);
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  text-align: center;
}
.det_back_block{
  display: inline-block;
}
.det_back_btn{
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.back_icon{
  width: 19px;
  margin-right: 10px;
}
.back_text{
  font-size: 16px;
  color: #fff;
}
@media(max-width: 1499px){
  .pdet_top{
    padding-bottom: 80px;
  }
  .pdet_top_right{
    padding-left: 65px;
  }
  .pdet_top_right .mt_btn{
    margin-top: 30px;
  }
  .pdet_bt_inner{
    padding: 50px 0px;
  }
  .pdet_inner_area1{
    margin-bottom: 30px;
  }
  .pdet_table_block{
    margin-top: 30px;
  }
  .mt_p_table{
    margin-top: 30px;
  }
}
@media(max-width: 1299px){
  .pdet_top{
    padding-bottom: 65px;
  }
  .pdet_top_right{
    padding-left: 50px;
  }
  .pdet_title_block{
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
  .pdet_title{
    font-size: 28px;
  }
  .pdet_top_right .mt_btn{
    margin-top: 20px;
  }
  .pdet_bt_inner{
    padding: 30px 0px;
  }
  .pdet_inner_area1{
    margin-bottom: 20px;
  }
  .pdet_table_block{
    margin-top: 20px;
  }
  .mt_p_table{
    margin-top: 20px;
  }
  .pdet_bt_editor{
    padding: 30px 0px 0px 0px;
  }
  .det_back_area{
    padding: 30px 0px;
  }
}
@media(max-width: 1199px){
  .pdet_top_right{
    padding-left: 30px;
  }
  .pdet_title_block{
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
@media(max-width: 1099px){
  .pdet_top{
    padding-bottom: 50px;
  }
  .pdet_top_right{
    padding-left: 12px;
  }
  .pdet_title_block{
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
  .pdet_title{
    font-size: 24px;
  }
  .pdet_top_right .mt_btn{
    margin-top: 15px;
  }
}
@media(max-width: 991px){
  .pdet_top_right{
    padding-left: 0px;
  }
    .pdet_brand{
    font-size: 16px;
  }
  .pdet_title{
    font-size: 20px;
  }
  .pdet_title_sm{
    font-size: 16px;
  }
  .pdet_bt_inner ul{
    font-size: 14px;
  }
  .mt_p_table{
    font-size: 14px;
  }
  .pdet_bt_editor{
    font-size: 14px;
  }
  .det_back_area{
    padding: 20px 0px;
  }
  .back_icon{
    width: 16px;
  }
  .back_text{
    font-size: 14px;
  }
}
@media(max-width: 767px){
  .pdet_title_block{
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
@media(max-width: 575px){
  .pdet_top_right{
    margin-top: 20px;
  }
}

/* solution */
.solution_item{
  position: relative;
  border-bottom: solid 3px #e68200;
  display: block;
  text-decoration: none;
}
.solution_item::before{
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all ease-in-out 0.3s;
  z-index: 1;
}
.sol_item_pic{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 65%;
}
.sol_item_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;
}
.title_lg{
  font-size: 24px;
  color: #fff;
}
.solution_item .title_lg{
  position: absolute;
  margin-bottom: 0px;
  left: 50px;
  bottom: 50px;
  right: 50px;
  z-index: 2;
}
.solution_item:hover .sol_item_pic img{
  transform: scale(1.05,1.05);
}
.solution_item:hover::before{
  background-color: rgba(0, 0, 0, 0.15);
}
@media(max-width: 1499px){
  .solution_item .title_lg{
    left: 30px;
    bottom: 30px;
    right: 30px;
  }
}
@media(max-width: 1299px){
  .title_lg{
    font-size: 20px;
  }
  .solution_item .title_lg{
    left: 24px;
    bottom: 24px;
    right: 24px;
  }
}
@media(max-width: 991px){
  .title_lg{
    font-size: 18px;
  }
  .solution_item .title_lg{
    left: 20px;
    bottom: 20px;
    right: 20px;
  }
}
@media(max-width: 767px){
  .solution_item .title_lg{
    left: 12px;
    bottom: 12px;
    right: 12px;
  }
}

/* solution_detail */
.sol_inner_editor{
  padding: 0px 120px 100px 120px;
  color: #fff;
}
.sol_inner_editor img{
  margin-bottom: 10px;
  max-width: 100%;
}
.sol_inner_editor a{
  color: #e68200;
}
@media(max-width: 1499px){
  .sol_inner_editor{
    padding: 0px 100px 100px 100px;
  }
}
@media(max-width: 1299px){
  .sol_inner_editor{
    padding: 0px 65px 100px 65px;
  }
}
@media(max-width: 1199px){
  .sol_inner_editor{
    padding: 0px 50px 80px 50px;
  }
}
@media(max-width: 1099px){
  .sol_inner_editor{
    padding: 0px 24px 65px 24px;
  }
}
@media(max-width: 991px){
  .sol_inner_editor{
    padding: 0px 0px 50px 0px;
    font-size: 14px;
  }
}
@media(max-width: 767px){
  .sol_inner_editor{
    padding: 0px 0px 30px 0px;
  }
}

/* media */
.drop_tab_area{
  position: relative;
  z-index: 2;
}
.page_tab{
  border: solid 1px rgba(255, 255, 255, 0.3);
  padding: 12px 0px;
  margin: auto;
  width: 100%;
  position: relative;
  background-color: transparent;
  border-radius: 0px;
}
.mt_dropdown_btn{
  display: none;
}
.page_tab .nav-link{
  text-align: center;
  color: #fff;
  border-radius: 0px;
  padding: 12px;
}
.page_tab .nav-link.active{
  border: solid 1px rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.05);
}
.media_list{
  margin-top: 30px;
  margin-left: auto;
  margin-right: auto;
}
.media_item{
  text-decoration: none;
  align-items: center;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  padding: 24px 0px;
  position: relative;
  overflow: hidden;
}
.media_item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(230,130,0,0.8) 0%, rgba(230,130,0,0) 100%);
  opacity: 0;
  transform: translateX(-100%);
  transition:
    opacity 0.6s ease,
    transform 0.8s ease;
  z-index: 0;
}
.media_item:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.media_item:not(:hover)::before {
  transform: translateX(-100%);
  opacity: 0;
}
.media_item > * {
  position: relative;
  z-index: 1;
}
.media_item:nth-child(1){
  border-top: solid 1px rgba(255, 255, 255, 0.3);
}
.media_item:hover .m_date{
  color: #fff;
}
.m_item_right{
  padding-left: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.media_item .title_sm{
  margin-bottom: 0px;
}
.mt_page{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 100px;
}
.page_number{
  border: solid 1px rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.1);
  width: 200px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.page_active{
  color: #e68200;
}
.page_all{
  color: #fff;
}
.page_all::before {
  content: "/";
  margin: 0px 10px;
}
.page_arrow{
  padding: 0px;
  border: none;
  background-color: transparent;
}
.page_prev{
  margin-right: 15px;
}
.page_next{
  margin-left: 15px;
}
.page_btn{
  width: 15px;
}
@media(max-width: 1299px){
  .page_tab .nav-link{
    padding: 8px;
  }
  .m_item_right{
    padding-left: 10px;
  }
  .mt_page{
    margin-top: 65px;
  }
  .page_number{
    width: 180px;
    padding: 12px;
    font-size: 16px;
  }
  .page_btn{
    width: 12px;
  }
}
@media(max-width: 1199px){
  .media_list{
    margin-top: 20px;
  }
  .m_item_right{
    padding-left: 0px;
  }
  .mt_page{
    margin-top: 50px;
  }
}
@media(max-width: 991px){
  .page_tab .nav-link{
    font-size: 14px;
  }
  .mt_page{
    margin-top: 30px;
  }
  .page_number{
    width: 150px;
    padding: 10px;
    font-size: 14px;
  }
  .page_btn{
    width: 10px;
  }
}
@media(max-width: 575px){
  .m_item_right{
    margin-top: 15px;
  }
  .drop_tab_area{
    margin: auto;
  }
  .dropdown_tab{
    padding: 0px;
    z-index: 9;
  }
  .mt_dropdown_btn{
    display: block;
    width: 100%;
    background-color: #e68200;
    color: #fff;
    text-align: center;
    border-radius: 0px;
    font-size: 14px;
    padding: 12px;
  }
  .mt_dropdown_btn:hover{
    color: #fff;
  }
  .mt_dropdown_btn:focus{
    box-shadow: none;
  }
  .page_tab{
    display: none;
    position: absolute;
    left: 0px !important;
    right: 0px !important;
    background-color: #191919;
  }
  .page_number{
    width: 120px;
  }
}

/* catalog */
.catalog_item{
  text-decoration: none;
  background-color: #282828;
  display: block;
  transition: all ease-in-out 0.3s;
}
.c_item_top{
  padding: 12px;
}
.c_item_bt{
  padding: 12px 24px 24px 24px;
  border-bottom: solid 2px #e68200;
  transition: all ease-in-out 0.3s;
  text-align: center;
}
.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_item .title_md{
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0px;
  overflow: hidden;
  line-height: 1.3;
  height: 52px;
}
.c_item_bt .mt_btn{
  margin: auto;
  margin-top: 15px;
}
.catalog_item:hover{
  background-color: #e68200;
}
@media(max-width: 1299px){
  .catalog_item .title_md{
    height: 48px;
  }
}
@media(max-width: 991px){
  .catalog_item .title_md{
    height: 42px;
  }
}

/* video */
.video_item{
  background-color: #282828;
  border: none;
  padding: 0px;
  transition: all ease-in-out 0.3s;
  width: 100%;
}
.video_top{
  padding: 12px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video_pic{
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-bottom: 62%;
}
.video_pic img{
  position: absolute;
  height: 100%;
  width: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}
.video_play{
  position: absolute;
  z-index: 1;
}
.video_icon{
  width: 60px;
}
.video_item:hover{
  background-color: #e68200;
}
.v_item_bt{
  padding: 12px 24px 24px 24px;
  border-bottom: solid 2px #e68200;
  transition: all ease-in-out 0.3s;
  text-align: left;
}
.video_item .title_md{
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0px;
  overflow: hidden;
  line-height: 1.3;
  height: 52px;
}
.mt_modal{
  border-radius: 0px;
}
.mt_modal .modal-body{
  padding: 0px;
}
.mt_modal .modal-header{
  background-color: #191919;
  color: #fff;
  border-bottom: none;
  border-radius: 0px;
}
.mt_modal .modal-title{
  font-size: 16px;
}
.mt_modal .btn-close{
  background: url('../image/delete_icon.svg');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0px;
  margin: 0px;
}
@media(max-width: 1299px){
  .video_icon{
    width: 50px;
  }
  .v_item_bt{
    padding: 0px 20px 20px 20px;
  }
  .video_item .title_md{
    height: 48px;
  }
}
@media(max-width: 991px){
  .video_icon{
    width: 40px;
  }
  .video_item .title_md{
    height: 42px;
  }
  .mt_modal .modal-title{
    font-size: 14px;
  }
}

/* media_detail */
.mdet_top{
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  padding-bottom: 10px;
}
.mdet_inner_editor{
  padding: 100px 120px;
  color: #fff;
}
.mdet_inner_editor img{
  margin-bottom: 10px;
  max-width: 100%;
}
.mdet_inner_editor a{
  color: #e68200;
}
@media(max-width: 1499px){
  .mdet_inner_editor{
    padding: 100px 100px;
  }
}
@media(max-width: 1299px){
  .mdet_inner_editor{
    padding: 100px 65px;
  }
}
@media(max-width: 1199px){
  .mdet_inner_editor{
    padding: 80px 50px;
  }
}
@media(max-width: 1099px){
  .mdet_inner_editor{
    padding: 65px 24px;
  }
}
@media(max-width: 991px){
  .mdet_inner_editor{
    padding: 50px 0px;
    font-size: 14px;
  }
}
@media(max-width: 767px){
  .mdet_inner_editor{
    padding: 30px 0px;
  }
}

/* about */
.about_block1{
  max-width: 1670px;
  margin-right: auto;
  padding-top: 100px;
  overflow: hidden;
}
.a_b1_area1{
  max-width: 1420px;
  margin-left: auto;
}
.about_title{
  margin-bottom: 30px;
}
.a_title_sm{
  font-size: 18px;
  color: #e68200;
  margin-bottom: 5px;
}
.a_title_lg{
  font-size: 30px;
  color: #fff;
  margin-bottom: 0px;
}
.a_b1_left{
  padding-left: 0px;
}
.a_b1_right{
  padding-left: 100px;
}
.about_block2{
  max-width: 1420px;
  margin: auto;
  padding-bottom: 100px;
}
.a_b2_left{
  margin-top: 100px;
  padding-right: 100px;
}
.a_b2_right{
  margin-top: -180px;
}
.a_b3_area1{
  padding: 0px;
}
.a_b3_area2{
  max-width: 1420px;
  margin: -180px auto 0px auto;
  align-items: center;
}
.a_b3_left{
  padding-right: 65px;
}
.about_block4{
  max-width: 1420px;
  margin: auto;
  padding: 150px 0px;
}
.a_b4_link{
  height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.a_b4_link::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.a_bt_inner{
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.a_bt_inner .mt_btn{
  margin: 30px auto 0px auto;
}
@media(max-width: 1899px){
  .a_b1_right{
    padding-left: 70px;
  }
}
@media(max-width: 1799px){
  .a_b1_right{
    padding-left: 40px;
  }
  .a_b2_left{
    padding-right: 50px;
  }
  .a_b2_right{
    margin-top: -150px;
    padding-left: 12px;
  }
}
@media(max-width: 1699px){
  .a_b1_right{
    padding-left: 15px;
  }
  .a_b2_left{
    padding-right: 0px;
  }
  .a_b2_right{
    margin-top: -120px;
    padding-left: 30px;
  }
}
@media(max-width: 1499px){
  .a_title_lg{
    font-size: 28px;
  }
  .a_b1_right{
    padding-left: 12px;
  }
  .a_b2_left{
    margin-top: 65px;
  }
  .a_b2_right{
    margin-top: -100px;
    padding-left: 20px;
  }
  .a_b3_left{
    padding-right: 50px;
  }
  .about_block4{
    padding: 130px 0px;
  }
}
@media(max-width: 1420px){
  .a_b1_area1 .about_title{
    padding-left: 12px;
  }
}
@media(max-width: 1299px){
  .a_title_sm{
    font-size: 16px;
  }
  .a_title_lg{
    font-size: 24px;
  }
  .a_b2_left{
    margin-top: 50px;
  }
  .a_b2_right{
    margin-top: -50px;
    padding-left: 10px;
  }
  .a_b3_left{
    padding-right: 30px;
  }
  .about_block4{
    padding: 100px 0px;
  }
  .a_b4_link{
    height: 350px;
  }
  .a_bt_inner .mt_btn{
    margin: 20px auto 0px auto;
  }
}
@media(max-width: 1199px){
  .about_block1{
    padding-top: 80px;
  }
  .about_block2{
    padding-bottom: 80px;
  }
  .a_b2_right{
    margin-top: -20px;
    padding-left: 5px;
  }
  .a_b3_area2{
    margin: -150px auto 0px auto;
  }
  .a_b3_left{
    padding-right: 0px;
  }
  .about_block4{
    padding: 80px 0px;
  }
}
@media(max-width: 1099px){
  .about_block1{
    padding-top: 65px;
  }
  .about_block2{
    padding-bottom: 65px;
    margin-top: 50px;
  }
  .a_b2_right{
    margin-top: 0px;
    padding-left: 5px;
  }
  .a_b2_left{
    margin-top: 0px;
  }
  .a_b3_area2{
    margin: -100px auto 0px auto;
  }
  .about_block4{
    padding: 65px 0px;
  }
  .a_b4_link{
    height: 300px;
  }
  .a_bt_inner .mt_btn{
    margin: 15px auto 0px auto;
  }
}
@media(max-width: 991px){
  .a_title_sm{
    font-size: 16px;
  }
  .about_title{
    margin-bottom: 20px;
  }
  .a_title_lg{
    font-size: 20px;
  }
  .about_block1{
    padding-top: 50px;
  }
  .about_block2{
    padding-bottom: 50px;
  }
  .a_b3_area2{
    margin: -80px auto 0px auto;
  }
  .about_block4{
    padding: 50px 0px;
  }
  .a_b4_link{
    height: 250px;
  }
}
@media(max-width: 767px){
  .about_block2{
    margin-top: 15px;
  }
  .about_title{
    margin-bottom: 15px;
  }
  .a_b1_right{
    margin-top: 20px;
  }
  .a_b3_left{
    margin-bottom: 20px;
  }
  .a_b4_link{
    height: 230px;
  }
}
@media(max-width: 575px){
  .a_title_sm{
    font-size: 14px;
  }
  .a_title_lg{
    font-size: 18px;
  }
  .a_b3_area2{
    margin: -65px auto 0px auto;
  }
  .a_b4_link{
    height: 200px;
  }
}
@media(max-width: 390px){
  .a_b3_area2{
    margin: -50px auto 0px auto;
  }
  .a_b4_link{
    height: 180px;
  }
}

/* service */
.service_block1{
  max-width: 1420px;
  margin: auto;
  padding-top: 100px;
  align-items: center;
}
/* Dots */
.service_pic_slick .slick-dots{
  padding: 0px;
  z-index: 2;
  margin: auto;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
}
.service_pic_slick.slick-dotted.slick-slider{
  margin-bottom: 0px;
}
.service_pic_slick .slick-dots li{
  width: 12px;
  height: 12px;
  margin: 0px 12px;
}
.service_pic_slick .slick-dots li button{
  padding: 0px;
  width: 12px;
  height: 12px;
}
.service_pic_slick .slick-dots li button:before{
  font-size: 6px;
  opacity: 1;
  width: 12px;
  height: 12px;
  color: transparent;
  border: solid 1px #fff;
  border-radius: 100%;
}
.service_pic_slick .slick-dots li.slick-active button:before{
  opacity: 1;
  color: transparent;
  border: solid 1px #fff;
  background-color: #fff !important;
}
@media(max-width: 1599px){
  .service_pic_slick .slick-dots li{
    width: 10px;
    height: 10px;
    margin: 0px 10px;
  }
  .service_pic_slick .slick-dots li button{
    width: 10px;
    height: 10px;
  }
  .service_pic_slick .slick-dots li button:before{
    width: 10px;
    height: 10px;
  }
}
@media(max-width: 1499px){
  .service_pic_slick .slick-dots li{
    width: 8px;
    height: 8px;
    margin: 0px 8px;
  }
  .service_pic_slick .slick-dots li button{
    width: 8px;
    height: 8px;
  }
  .service_pic_slick .slick-dots li button:before{
    width: 8px;
    height: 8px;
  }
}
@media(max-width: 1199px){
  .service_block1{
    padding-top: 80px;
  }
}
@media(max-width: 1099px){
  .service_block1{
    padding-top: 65px;
  }
}
@media(max-width: 991px){
  .service_block1{
    padding-top: 50px;
  }
}
@media(max-width: 767px){
  .service_pic_slick .slick-dots li{
    width: 6px;
    height: 6px;
    margin: 0px 6px;
  }
  .service_pic_slick .slick-dots li button{
    width: 6px;
    height: 6px;
  }
  .service_pic_slick .slick-dots li button:before{
    width: 6px;
    height: 6px;
  }
}

/* contact */
.contact_left{
  padding-right: 24px;
}
.inquiry_item{
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px rgba(255, 255, 255, 0.3);
  margin: auto;
  padding: 12px 0px;
}
.inquiry_p_t{
  display: flex;
  align-items: center;
}
.inquiry_p_t .title_sm{
  margin-left: 15px;
  margin-bottom: 0px;
}
.inquiry_p_t .inquiry_pic{
  width: 120px;
}
.inq_delete{
  padding: 0px;
  border: none;
  background-color: transparent;
  display: block;
  margin-left: auto;
}
.c_info_block{
  display: flex;
  align-items: center;
  margin: 24px 0px;
}
.delete_icon{
  width: 16px;
}
.c_info_icon{
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px rgba(230, 130, 0, 0.3);
  border-radius: 100%;
  flex-shrink: 0;
}
.info_icon{
  width: 20px;
}
.c_info_t_block{
  margin-left: 15px;
}
.c_info_title{
  font-size: 16px;
  color: #e68200;
  margin-bottom: 0px;
}
.c_info_text{
  font-size: 16px;
  color: #fff;
  margin-bottom: 0px;
  text-decoration: none;
}
.mt_label{
  color: #fff;
}
.mt_input{
  border-radius: 0px;
  background-color: #282828;
  border: solid 1px #282828;
  color: #fff;
  height: 50px;
}
.mt_input::placeholder{
  color: #888888;
}
.mt_input:focus{
  background-color: #282828;
  border: solid 1px #e68200;
  box-shadow: none;
  color: #fff;
}
.mt_textarea{
  height: 150px !important;
}
.code_input{
  display: flex;
  align-items: center;
  position: relative;
  margin-top: 8px;
}
.code_input .mt_input{
  margin-right: 10px;
}
.reset_block{
  display: flex;
  align-items: center;
}
.form_code{
  max-width: 75px;
}
.form_reset_btn{
  border: none;
  padding: 0px;
  background-color: transparent;
}
.reset_btn{
  width: 20px;
  margin-left: 5px;
}
.invalid-feedback{
  position: absolute;
  top: 55px;
}
.send_btn{
  display: flex;
  align-items: flex-end;
  justify-content: end;
}
.send_btn .mt_btn{
  height: fit-content;
}
@media(max-width: 1299px){
  .contact_left{
    padding-right: 12px;
  }
  .inquiry_p_t .inquiry_pic{
    width: 100px;
  }
  .mt_textarea{
    height: 130px !important;
  }
}
@media(max-width: 1199px){
  .contact_left{
    padding-right: 10px;
  }
  .inquiry_p_t .inquiry_pic{
    width: 80px;
  }
  .mt_textarea{
    height: 100px !important;
  }
  .c_info_icon{
    width: 45px;
    height: 45px;
  }
  .info_icon{
    width: 18px;
  }
}
@media(max-width: 991px){
  .contact_left{
    padding-right: 0px;
  }
  .c_info_t_block{
    margin-left: 10px;
  }
  .c_info_title{
    font-size: 14px;
  }
  .c_info_text{
    font-size: 14px;
  }
  .mt_label{
    font-size: 14px;
  }
  .mt_input{
    height: 45px;
    font-size: 14px;
  }
  .mt_textarea{
    height: 80px !important;
  }
  .invalid-feedback{
    top: 45px;
  }
  .send_btn{
    justify-content: center;
    margin-top: 30px;
  }
}
@media(max-width: 767px){
  .c_info_area{
    margin-top: 12px;
    margin-bottom: 12px;
  }
  .c_info_block{
    margin: 6px 0px;
  }
  .c_info_icon{
    width: 40px;
    height: 40px;
  }
  .info_icon{
    width: 15px;
  }
  .c_form{
    margin-top: 6px;
  }
  .mt_input{
    height: 40px;
  }
}

/* submit */
.submit_area{
  max-width: 1520px;
  margin: auto;
  padding: 200px 0px;
  text-align: center;
}
.submit_block{
  text-align: center;
}
.send_icon{
  width: 120px;
}
.submit_title{
  font-size: 28px;
  color: #fff;
  margin-top: 30px;
}
.submit_text{
  font-size: 18px;
  color: #fff;
}
.back_btn_block{
  margin-top: 30px;
}
.back_btn_block .mt_btn{
  margin: auto;
}
@media(max-width: 1499px){
  .submit_area{
    padding: 150px 0px;
  }
}
@media(max-width: 1299px){
  .submit_area{
    padding: 130px 0px;
  }
}
@media(max-width: 991px){
  .submit_area{
    padding: 100px 0px;
  }
  .send_icon{
    width: 100px;
  }
  .submit_title{
    font-size: 24px;
    margin-top: 20px;
  }
  .back_btn_block{
    margin-top: 20px;
  }
}
@media(max-width: 575px){
  .send_icon{
    width: 80px;
  }
  .submit_title{
    font-size: 20px;
  }
  .submit_text{
    font-size: 16px;
  }
}
@media(max-width: 390px){
  .send_icon{
    width: 75px;
  }
  .submit_title{
    font-size: 18px;
  }
  .submit_text{
    font-size: 14px;
  }
}

/* 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 30px;
  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;
}
.privacyBox .cookie_block p{
  margin-bottom: 0px;
}
.privacyBox a{
  color: #e68200;
}
.privacyBox .closePrivacy{
  background: rgba(255, 255, 255, 0.15);
  border: solid 1px #fff;
  color: #fff;
  margin-left: 2rem;
  padding: 12px 48px;
  cursor: pointer;
  white-space: nowrap;
  transition: all ease-in-out 0.3s;
}
.privacyBox .closePrivacy:hover{
  background-color: #e68200;
  border: solid 1px #e68200;
}
.company_name{
  color: #e68200;
}
@media(max-width: 1299px){
  .privacy_title{
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media(max-width: 991px){
  .privacy_text{
    font-size: 16px;
    letter-spacing: 0px;
  }
}
@media(max-width: 575px){
  .privacy_title{
    font-size: 18px;
  }
}
@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-left: 0px;
    margin-top: 15px;
    padding: 10px 45px;
  }
}

/* 404 */
.error_title{
  font-size: 130px;
  color: #e68200;
  margin-bottom: 10px;
  font-weight: 700;
}
.error_text{
  font-size: 20px;
  color: #fff;
  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;
  }
}