* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #d81f26;
  --secondary: #0e1726;
  --title: #14171d;
  --text: #4b4f54;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 136rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 139rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
  background-color: transparent;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
textarea {
  resize: none;
}
button,
input[type="submit"] {
  cursor: pointer;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
table {
  width: 100%;
  border-collapse: collapse;
}
.flex {
  display: flex;
}
.wrap {
  flex-wrap: wrap;
}
.flex1 {
  flex: 1;
}
.flex2 {
  flex: 2;
}
.flex3 {
  flex: 3;
}
.between {
  justify-content: space-between;
}
.center {
  text-align: center;
}
.center p,
.center .desc,
.center h1,
.center h2 {
  margin-left: auto;
  margin-right: auto;
}
.flex_start {
  justify-content: flex-start;
}
.flex_center {
  justify-content: center;
}
.flex_end {
  justify-content: flex-end;
}
.flex_top {
  align-items: flex-start;
}
.flex_middle {
  align-items: center;
}
.flex_bottom {
  align-items: flex-end;
}
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
.row_reverse {
  flex-direction: row-reverse;
}
body {
  font-size: 1.6rem;
  color: var(--title);
  font-family: 'Inter', sans-serif;
  animation: fadeIn 0.4s ease-in forwards;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  body {
    animation: none;
  }
}
.Inter {
  font-family: 'Inter', sans-serif;
}
.Montserrat,
h1,
h2,
h3,
.head_h1,
.head_h2 {
  font-family: 'Montserrat', sans-serif;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img,
.img.img_cv video,
.img.img_cv iframe,
.img.img_cv picture {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img,
.img.img_ab video,
.img.img_ab iframe,
.img.img_ab picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img,
.img.img_aba video,
.img.img_aba iframe,
.img.img_aba picture {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img,
.img video,
.img iframe,
.img picture {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img,
.img_bg > video,
.img_bg > iframe,
.img_bg > picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.img_bg > picture img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.icon.icon_ab {
  position: relative;
  padding-bottom: 100%;
}
.icon.icon_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.icon img {
  display: block;
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}
.custom-popup {
  --radius: 0px;
  position: absolute;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: var(--font-size, 14px);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.custom-popup.up .popup-input {
  order: 3;
  margin-bottom: 0;
  margin-top: 8px;
}
.custom-popup.up .popup-options {
  order: 1;
}
.custom-popup.up .popup-empty {
  order: 2;
}
.custom-popup .popup-empty {
  padding: 12px;
  text-align: center;
  color: #999;
}
.custom-popup input.popup-input {
  display: block;
  width: 100%;
  padding: 11px 12px;
  font-size: inherit;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
  flex-shrink: 0;
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  flex: 0 1 auto;
  min-height: 0;
  overflow: auto;
  max-height: 50vh;
}
.custom-popup .popup-option {
  padding: 12px;
  margin: 0 0 4px;
  cursor: pointer;
  transition: all 0.15s;
  word-break: break-word;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup .popup-option:hover,
.custom-popup .popup-option.selected {
  background-color: #f0f0f0;
}
.custom-popup .popup-option:last-child {
  margin-bottom: 0;
}
.tcon em {
  color: var(--primary);
}
.tcon h1,
.tcon .head_h1 {
  font-weight: 600;
  font-size: 5.2rem;
  line-height: 1.134615;
}
.tcon h2,
.tcon .head_h2 {
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 1.25;
  position: relative;
  z-index: 2;
}
.tcon h2::before,
.tcon .head_h2::before {
  content: '';
  position: absolute;
  left: -3.4rem;
  top: -0.6rem;
  z-index: -1;
  width: 7rem;
  height: 6.2rem;
  background: url(../img/logo-flag.svg) no-repeat center / contain;
}
.tcon p {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-top: 2.2rem;
}
.tcon.white {
  color: #fff;
}
.tcon.white p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.666667;
  font-weight: 300;
}
.tcon.center h2,
.tcon.center .head_h2 {
  max-width: max-content;
  margin: 0 auto;
}
.btn {
  font-family: 'Montserrat', sans-serif;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  cursor: pointer;
  color: #fff;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 5.4rem;
  transition: all 0.3s;
  border-radius: 0.6rem;
  padding: 0 3rem;
  min-width: 18.2rem;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.btn.b {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.btn.b:hover {
  color: var(--secondary);
}
.btn.l {
  border-color: rgba(255, 255, 255, 0.26);
  background-color: transparent;
}
.btn.l:hover {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}
.btn.a {
  font-family: 'Inter', sans-serif;
  gap: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  line-height: 5rem;
  padding: 0 2.5rem;
  min-width: unset;
}
.btn.a::after {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url(../img/arrow-l-r.svg) no-repeat center / contain;
}
.btn.a:hover::after {
  filter: none;
  transform: translateX(5px);
}
.btn:hover {
  color: var(--primary);
  background-color: transparent;
}
.btn_box {
  font-family: 'Montserrat', sans-serif;
  gap: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  vertical-align: top;
  font-weight: 600;
  font-size: 1.8rem;
  transition: all 0.3s;
  color: var(--secondary);
}
.btn_box::after {
  content: '';
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 0.6rem;
  transition: all 0.3s;
  background: url(../img/arrow-l-r-w.svg) no-repeat center / 28% var(--primary);
}
.btn_box:hover {
  color: var(--primary);
}
.btn_box:hover::after {
  transform: scale(1.1);
}
div.swiper-pagination.swiper-pagination-bullets {
  position: static;
  width: auto;
  display: flex;
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 3.2rem;
  height: 0.4rem;
  margin: 0;
  opacity: 1;
  border-radius: 0;
  transition: all 0.3s;
  background-color: rgba(255, 255, 255, 0.26);
  clip-path: polygon(3px 0, 100% 0, calc(100% - 3px) 100%, 0 100%);
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:first-child {
  clip-path: polygon(0 0, 100% 0, calc(100% - 3px) 100%, 0 100%);
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet:last-child {
  clip-path: polygon(3px 0, 100% 0, 100% 100%, 0 100%);
}
div.swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--primary);
}
.swiper_btns {
  display: flex;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 161.4rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  pointer-events: none;
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: auto;
}
.swiper_btns.middle .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns div {
  cursor: pointer;
  width: 6.2rem;
  height: 6.2rem;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  transition: all 0.3s;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 28%;
  height: 28%;
  transition: all 0.3s;
  background: url(../img/arrow-l-r-w.svg) no-repeat center / contain;
}
.swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.swiper_btns div:hover::after {
  filter: contrast(0) brightness(2);
}
.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  border-color: #878b93;
  background-color: transparent;
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
  pointer-events: none;
}
nav.navigation {
  font-family: 'Montserrat', sans-serif;
  position: relative;
}
nav.navigation .screen-reader-text {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
nav.navigation .nav-links {
  gap: 0.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
nav.navigation .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  min-width: 4.8rem;
  padding: 0 1rem;
  font-weight: 600;
  transition: all 0.3s;
  border-radius: 0.6rem;
  border: 1px solid #e8eaee;
}
nav.navigation .current,
nav.navigation a.page-numbers:hover {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}
nav.navigation .current::after,
nav.navigation a.page-numbers:hover::after {
  filter: contrast(0) brightness(2);
}
nav.navigation .prev,
nav.navigation .next {
  overflow: hidden;
  text-indent: -999px;
}
nav.navigation .prev::after,
nav.navigation .next::after {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1rem;
  transition: all 0.3s;
  background: url(../img/arrow-l-r-b.svg) no-repeat center / contain;
}
nav.navigation .prev::after {
  transform: rotate(180deg);
}
.news_list .active a::after {
  opacity: 1;
}
.news_list .active .info .btn_box {
  color: var(--primary);
}
.news_list .active .info .btn_box::after {
  background-color: var(--primary);
}
.news_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: 1.8rem;
  border: 1px solid #e6e9ee;
}
.news_list a:hover img {
  transform: scale(1.03);
}
.news_list a::after {
  content: '';
  position: absolute;
  left: -1px;
  top: -1px;
  right: -1px;
  bottom: -1px;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
  border-radius: 1.8rem;
  border: 2px solid var(--primary);
  box-shadow: 0 1rem 1rem rgba(188, 188, 188, 0.35);
}
.news_list .img {
  margin: -1px -1px 0;
  padding-bottom: 61.751152%;
  border-radius: 1.8rem 1.8rem 0 0;
}
.news_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 3.2rem 2.5rem 3.6rem;
}
.news_list .info .date {
  position: absolute;
  left: 2.2rem;
  top: 2.2rem;
  z-index: 2;
  text-align: center;
  color: #fff;
  border-radius: 0.8rem;
  background-color: var(--primary);
  padding: 1.2rem 1rem 0.9rem;
  min-width: 6rem;
}
.news_list .info .date strong {
  display: block;
  font-weight: 500;
  font-size: 2rem;
}
.news_list .info .date span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  text-transform: uppercase;
}
.news_list .info .title {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.333333;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_list .info .desc {
  color: var(--text);
  font-size: 1.7rem;
  line-height: 2.4rem;
  margin-top: 1.2rem;
  margin-bottom: auto;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.news_list .info .btn_box {
  margin-top: 2.2rem;
}
.news_list .info .btn_box::after {
  background-color: var(--secondary);
}
.product_list .active a {
  border-color: var(--primary);
  outline-color: var(--primary);
  box-shadow: 0 1rem 1rem rgba(188, 188, 188, 0.35);
}
.product_list .active .info .btn_box {
  color: var(--primary);
}
.product_list .active .info .btn_box::after {
  background-color: var(--primary);
}
.product_list a {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.3s;
  border-radius: 1.8rem;
  border: 1px solid #dcdee2;
  outline: 1px solid transparent;
}
.product_list a:hover img {
  transform: scale(1.03);
}
.product_list .img {
  overflow: hidden;
  border-radius: 1.8rem 1.8rem 0 0;
  padding-bottom: 67.824074%;
  border-bottom: 1px solid #e6e9ee;
  background: url(../img/pd-bg.svg) no-repeat center / cover;
}
.product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 3.2rem 3.8rem 2.7rem;
}
.product_list .info .cat {
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
}
.product_list .info .title {
  font-weight: 600;
  font-size: 2.4rem;
  margin-top: 1.1rem;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product_list .info .desc {
  color: var(--text);
  font-size: 1.7rem;
  line-height: 2.6rem;
  margin-top: 1.7rem;
  margin-bottom: auto;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product_list .info .btn_box {
  margin-top: 2.5rem;
}
.product_list .info .btn_box::after {
  background-color: var(--secondary);
}
header {
  position: sticky;
  top: 0;
  z-index: 996;
  transition: all 0.4s;
  background-image: linear-gradient(to right, #fff 0%, #fff 50%, var(--title) 50%, var(--title) 100%);
}
header.shadow {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}
header.hide {
  top: -122px;
}
header .top .content {
  display: grid;
  grid-template-columns: 1fr auto;
}
header .top .content::before {
  content: '';
  margin-bottom: -1px;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, calc(100% - 7px) 100%, 0 100%);
}
header .top ul {
  gap: 1rem 4.6rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 11px 6px 12px 26px;
  position: relative;
}
header .top ul::before {
  content: '';
  position: absolute;
  top: 0;
  right: calc(100% + 6px);
  width: 14px;
  height: 100%;
  background-color: var(--title);
  clip-path: polygon(8px 0, 100% 0, 6px 100%, 0 100%);
}
header .top li {
  position: relative;
  padding-left: 22px;
}
header .top li::before {
  content: '';
  width: 15px;
  height: 13px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: no-repeat center / contain;
}
header .top .phone::before {
  background-image: url(../img/icon-phone1.svg);
}
header .top .email::before {
  background-image: url(../img/icon-email1.svg);
}
header .top a {
  color: #c7ccd3;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s;
}
header .top a:hover {
  color: var(--primary);
}
header .top {
  position: relative;
  z-index: 2;
}
header .bot {
  position: relative;
  z-index: 2;
  padding: 14px 0;
  background-color: #fff;
}
header .bot .content {
  gap: 4.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .logo {
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 0.3s;
  transform-origin: left bottom;
}
header .logo img {
  display: block;
  width: auto;
  height: 93px;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header #navigation .close_box {
  display: none;
}
header #navigation .menu {
  gap: 3.9rem;
  display: flex;
}
header #navigation .menu > li {
  position: relative;
  z-index: 2;
}
header #navigation .menu > li > a {
  display: block;
  color: #0e191d;
  font-size: 16px;
  font-weight: 500;
  line-height: 52px;
  transition: all 0.3s;
}
header #navigation .menu > li > a:hover {
  color: var(--primary);
}
header #navigation .menu > li.current-menu-item > a,
header #navigation .menu > li.current-menu-parent > a,
header #navigation .menu > li:has(.current-menu-parent) > a {
  color: var(--primary);
}
header #navigation .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header #navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: max-content;
  width: calc(100% + 48px);
  border-radius: 0.8rem;
  background-color: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.08);
}
header #navigation .sub-menu > li {
  position: relative;
}
header #navigation .sub-menu > li + li {
  margin-top: 4px;
}
header #navigation .sub-menu > li > a {
  display: block;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
  padding: 14px 18px;
  transition: all 0.2s;
  border-radius: 0.6rem;
}
header #navigation .sub-menu > li > a:hover {
  background-color: #fdf3f4;
}
header #navigation .sub-menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: auto;
  opacity: 1;
}
header #navigation .sub-menu .sub-menu {
  left: 100%;
  top: 10px;
}
header .btns {
  gap: 2.7rem;
  display: flex;
  align-items: center;
}
header .btns .btn_search {
  width: 16px;
  height: 16px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btns .btn_lang {
  width: 18px;
  height: 18px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
}
header .btns .btn_menu {
  display: none;
}
header .btns .btn {
  font-weight: 600;
  font-size: 15px;
  line-height: 50px;
  padding: 0 2.8rem;
  min-width: unset;
}
header #navigation .btn_mega_products > .sub-menu,
header #navigation .btn_mega_industry > .sub-menu {
  display: none;
}
header #navigation .btn_mega_products.mega_active > a,
header #navigation .btn_mega_industry.mega_active > a {
  color: var(--primary);
}
.mega_menu {
  --mega-ease: cubic-bezier(0.16, 1, 0.3, 1);
  --mega-duration: 0.48s;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 1;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s linear var(--mega-duration);
}
.mega_menu.is-open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s;
}
.mega_menu .mega_mask {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 0;
  height: 100vh;
  border: none;
  padding: 0;
  margin: 0;
  cursor: default;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-color: rgba(0, 0, 0, 0.5);
}
.mega_menu.is-open .mega_mask {
  opacity: 1;
  transition-delay: 0.08s;
}
.mega_menu .mega_scroll {
  position: relative;
  z-index: 1;
  max-height: calc(100vh - var(--header-h, 122px) - 30px);
  background-color: #fff;
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.08);
  clip-path: inset(0 0 100% 0);
  transition:
    clip-path var(--mega-duration) var(--mega-ease),
    box-shadow var(--mega-duration) var(--mega-ease),
    height 0.4s var(--mega-ease);
}
.mega_menu.is-open .mega_scroll {
  clip-path: inset(0 0 0 0);
}
.mega_menu.is-switching .mega_scroll {
  overflow: hidden;
}
.mega_menu.is-switching .mega_body {
  height: 100%;
}
.mega_menu.is-switching .mega_panel.is-active {
  position: absolute;
}
.mega_menu .mega_fade {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 4.8rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mega_menu .mega_fade_top {
  top: 0;
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.mega_menu .mega_fade_bot {
  bottom: 0;
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
}
.mega_menu .mega_scroll.has-top-fade .mega_fade_top,
.mega_menu .mega_scroll.has-bot-fade .mega_fade_bot {
  opacity: 1;
}
.mega_menu .mega_body {
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  max-height: inherit;
}
.mega_menu .mega_panel {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateY(1rem);
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s;
}
.mega_menu .mega_panel.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateY(0);
}
.mega_menu.is-open .mega_panel.is-active {
  pointer-events: auto;
}
.mega_menu.is-switching .mega_panel.is-active {
  animation: megaPanelIn 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes megaPanelIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.products_category {
  margin: 9.5rem 0 10.8rem;
}
.products_category ul {
  display: grid;
  gap: 2.5rem 2rem;
  grid-template-columns: repeat(4, 1fr);
}
.products_category .active .btn_box::after,
.products_category a:hover .btn_box::after {
  background-color: var(--primary);
  background-image: url(../img/arrow-l-r-w.svg);
}
.products_category a {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 1.2rem;
  background-color: #f4f5f7;
}
.products_category a:hover img {
  transform: scale(1.03);
}
.products_category a .name {
  flex: 1;
  font-weight: 600;
  font-size: 2.4rem;
  padding: 3.6rem 2.2rem 0.5rem;
  max-width: 29rem;
  max-height: 7rem;
}
.products_category a .img {
  padding-bottom: 67.910448%;
}
.products_category a .btn_box {
  color: #5e646e;
  font-weight: 500;
  padding: 1.8rem 2.2rem;
  border-top: 1px solid #fff;
}
.products_category a .btn_box::after {
  background-color: #dadce0;
  background-image: url(../img/arrow-l-r-b.svg);
}
.mega_menu .products_category {
  margin: 0;
  padding: 4.8rem 0 5.6rem;
}
.mega_menu .home_industry {
  overflow: visible;
  padding: 4.8rem 0 5.6rem;
}
.mega_menu .home_industry .nav {
  flex: none;
  width: 100%;
  max-width: none;
}
.mega_menu .home_industry .nav ul {
  max-width: none;
  margin: 0;
  grid-template-columns: repeat(6, 1fr);
}
.mega_menu .home_industry .nav li:nth-child(3n + 3) .item::after {
  width: calc(100% + 1.8rem);
}
.mega_menu .home_industry .nav li:nth-child(6n + 6) .item::after {
  width: 100%;
}
.mega_menu .home_industry .nav li:nth-last-child(-n+3) .item::after {
  display: block;
}
.mega_menu .home_industry .nav li:nth-last-child(-n+6) .item::after {
  display: none;
}
@media screen and (max-width: 1024px) {
  .mega_menu {
    display: none;
  }
}
footer {
  color: #fff;
  padding: 12.6rem 0 2.2rem;
  background-color: var(--title);
}
footer .foot_contact {
  margin-right: 6%;
}
footer .logo {
  display: block;
  position: relative;
  max-width: 17rem;
}
footer .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .contact {
  margin-top: 5rem;
}
footer .contact li {
  position: relative;
  padding-left: 5.2rem;
}
footer .contact li + li {
  margin-top: 4.3rem;
}
footer .contact li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.8rem;
  width: 3.4rem;
  height: 3rem;
  background: no-repeat center / contain;
}
footer .contact .phone::before {
  background-image: url(../img/icon-phone2.svg);
}
footer .contact .email::before {
  background-image: url(../img/icon-email2.svg);
}
footer .contact .label {
  color: rgba(255, 255, 255, 0.4);
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
footer .contact a {
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}
footer .contact a:hover {
  color: var(--primary);
}
footer .social {
  margin-top: 3.4rem;
}
footer .social ul {
  gap: 1.2rem;
  display: flex;
  flex-wrap: wrap;
}
footer .social a {
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  overflow: hidden;
  text-indent: -999px;
  border-radius: 50%;
  transition: all 0.3s;
  background: no-repeat center / contain rgba(255, 255, 255, 0.11);
}
footer .social a:hover {
  background-color: var(--primary);
}
footer .social .facebook a {
  background-image: url(../img/social-facebook.svg);
}
footer .social .instagram a {
  background-image: url(../img/social-instagram.svg);
}
footer .social .youtube a {
  background-image: url(../img/social-youtube.svg);
}
footer .social .linkedin a {
  background-image: url(../img/social-linkedin.svg);
}
footer .social .twitter a {
  background-image: url(../img/social-twitter.svg);
}
footer .foot_nav {
  min-width: 13.970588%;
  margin-top: 12.2rem;
}
footer .foot_nav strong {
  display: block;
  font-weight: 500;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 2.8rem;
}
footer .foot_nav li + li {
  margin-top: 2rem;
}
footer .foot_nav a {
  vertical-align: top;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8rem;
  transition: all 0.3s;
}
footer .foot_nav a:hover {
  color: var(--primary);
}
footer .foot_nav button {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.8rem;
  transition: all 0.3s;
  background-color: transparent;
  margin-top: 2rem;
}
footer .foot_nav button:hover {
  color: var(--primary);
}
footer .bot {
  font-size: 1.437rem;
  margin-top: 13.6rem;
}
footer .bot ul {
  gap: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
footer .bot ul a {
  display: block;
  color: #6e6f71;
  transition: all 0.3s;
}
footer .bot ul a:hover {
  color: var(--primary);
}
footer .bot li {
  gap: 1.2rem;
  display: flex;
  align-items: center;
}
footer .bot li::after {
  content: '';
  display: block;
  width: 1px;
  height: 1.3rem;
  background-color: rgba(75, 79, 84, 0.15);
}
footer .copyright {
  color: #999999;
}
.footer_sidebar {
  position: fixed;
  z-index: 99;
  right: 20px;
  bottom: 10vh;
  transition: all 0.4s;
  transform: translateX(calc(100% + 30px));
}
.footer_sidebar.show {
  transform: translate(0);
}
.footer_sidebar ul {
  gap: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.footer_sidebar .backtop {
  cursor: pointer;
  width: 4.8rem;
  height: 4.8rem;
  overflow: hidden;
  border-radius: 50%;
  text-indent: -999px;
  border: 1px solid #bec9d3;
  background-color: #fff;
  box-shadow: 0 1rem 1rem rgba(181, 181, 181, 0.35);
  position: relative;
  transition: all 0.3s;
}
.footer_sidebar .backtop:hover {
  border-color: var(--primary);
  background-color: var(--primary);
  box-shadow: 0 1rem 1rem rgba(216, 31, 38, 0.35);
}
.footer_sidebar .backtop:hover::after {
  filter: contrast(0) brightness(2);
}
.footer_sidebar .backtop::after {
  content: '';
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
  background: url(../img/arrow-t-b.svg) no-repeat center / contain;
}
.footer_sidebar .whatsapp a {
  display: block;
  width: 5.6rem;
  height: 5.6rem;
  overflow: hidden;
  border-radius: 50%;
  text-indent: -999px;
  transition: all 0.3s;
  box-shadow: 0 1rem 1rem rgba(37, 211, 102, 0.35);
  background: url(../img/icon-whatsapp.svg) no-repeat center / 42% #2ad268;
}
.footer_sidebar .whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: none;
}
.home_industry {
  overflow: hidden;
  padding: 9.2rem 0;
}
.home_industry .head {
  max-width: 74.6rem;
  margin: 0 auto;
}
.home_industry .flex {
  margin-top: 5rem;
}
.home_industry .nav {
  flex: 1;
  max-width: 61.8rem;
}
.home_industry .nav ul {
  display: grid;
  gap: 0 1.8rem;
  grid-template-columns: repeat(3, 1fr);
}
.home_industry .nav li:nth-child(3n + 3) .item::after {
  width: 100%;
}
.home_industry .nav li:nth-last-child(-n+3) .item::after {
  display: none;
}
.home_industry .nav .active .item::before,
.home_industry .nav .item:hover::before {
  opacity: 1;
}
.home_industry .nav .item {
  height: 100%;
  display: block;
  position: relative;
  z-index: 2;
  cursor: pointer;
  padding: 4.6rem 0.4rem 1.2rem;
}
.home_industry .nav .item::before {
  content: '';
  position: absolute;
  left: -2px;
  top: -2px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
  transition: all 0.3s;
  border-radius: 1rem;
  border: 2px solid var(--primary);
  background-color: #fff;
  box-shadow: 0 1rem 1rem rgba(188, 188, 188, 0.35);
}
.home_industry .nav .item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
  width: calc(100% + 1.8rem);
  height: 1px;
  background-color: #e2e2e2;
}
.home_industry .nav .item .img {
  width: 7.6rem;
  height: 7.6rem;
  margin: 0 auto;
}
.home_industry .nav .item .title {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 1.2;
  text-align: center;
  margin-top: 2.6rem;
}
.home_industry .nav .item .icon {
  width: 5rem;
  height: 5rem;
  margin: 2rem auto 2.8rem;
  border-radius: 0.6rem;
  background: url(../img/icon-more.svg) no-repeat center / 36% #e7e7e7;
}
.home_industry .swiper_box {
  width: 69.411765%;
  margin-right: -20.588235%;
}
.home_industry .home_industry_swiper {
  overflow: hidden;
  border-radius: 1.6rem 0 0 1.6rem;
}
.home_industry .home_industry_swiper .item {
  display: block;
}
.home_industry .home_industry_swiper .item:hover img {
  transform: scale(1.03);
}
.home_industry .home_industry_swiper .img {
  padding-bottom: 64.968153%;
}
.home_industry .home_industry_swiper .tcon {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  color: #fff;
  border-top-left-radius: 1.6rem;
  background-color: var(--primary);
  width: 89.512712%;
  padding: 4.661017% 4.661017% 3.389831%;
  gap: 2rem;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr auto;
}
.home_industry .home_industry_swiper .tcon h3 {
  font-weight: 500;
  font-size: 2.4rem;
}
.home_industry .home_industry_swiper .tcon p {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 1.6rem;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home_industry .home_industry_swiper .tcon::after {
  content: '';
  display: block;
  width: 6.2rem;
  height: 6.2rem;
  margin: 0.4rem 0;
  border-radius: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: url(../img/arrow-l-r-w.svg) no-repeat center / 28%;
}
.section_contact {
  padding: 10rem 0 12rem;
  background-color: #f5f6f8;
}
.section_contact .head h2 {
  font-size: 5.27rem;
}
.section_contact .head p {
  max-width: 65rem;
  margin: 2.7rem auto 0;
}
.section_contact .form {
  margin-top: 5rem;
}
.section_contact form {
  gap: 2.8rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section_contact form span {
  width: 100%;
}
.section_contact form .col-2 {
  width: 48.823529%;
}
.section_contact form input,
.section_contact form select,
.section_contact form textarea {
  width: 100%;
  height: 6.8rem;
  display: block;
  color: var(--title);
  font-size: 1.7rem;
  border-radius: 0.4rem;
  border: 2px solid #d7d7d7;
  background-color: #fff;
  padding: 0 3.2rem;
  transition: all 0.3s;
}
.section_contact form input:focus,
.section_contact form select:focus,
.section_contact form textarea:focus {
  border-color: var(--primary);
}
.section_contact form input::placeholder,
.section_contact form select::placeholder,
.section_contact form textarea::placeholder {
  color: #5e646e;
}
.section_contact form textarea {
  height: 20rem;
  padding: 2.2rem 3.2rem;
}
.section_contact form .bot {
  gap: 2rem 5rem;
  display: grid;
  align-items: start;
  grid-template-columns: 1fr auto;
  margin-top: 1rem;
}
.section_contact form input[type="checkbox"] {
  padding: 0;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
}
.section_contact form input[type="checkbox"]::after {
  content: '';
  width: 80%;
  height: 80%;
  opacity: 0;
  transition: all 0.3s;
  background: url(../img/icon-gou.svg) no-repeat center / contain;
}
.section_contact form input[type="checkbox"]:checked::after {
  opacity: 1;
}
.section_contact form input[type="checkbox"] ~ span {
  cursor: pointer;
  padding-left: 1rem;
  color: var(--text);
}
.section_contact form .btn {
  font-size: 1.8rem;
  line-height: 5.4rem;
  text-transform: uppercase;
  min-width: 20rem;
  font-family: 'Montserrat', sans-serif;
  position: relative;
}
.section_contact form .btn::after {
  width: 1.6rem;
  height: 1.6rem;
}
.section_contact form .btn input {
  display: none;
}

/*** global css ***/
.loading {
  position: relative;
}
.loading:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  background-color: rgba(255, 255, 255, 0.3);
}
.loading:after {
  content: '';
  display: block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: 0.8rem solid #EFEFEF;
  border-top-color: var(--primary);
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  transition: all 0.3s;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: loading 1s linear infinite;
}
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  80% {
    transform: translate(-50%, -50%) rotate(320deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.glightbox-clean .gslide-media {
  background-color: #fff;
}

.jst-language-switcher {
  display: none;
}

.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: .5rem;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 0;
  border: none;
  width: 100%;
}
.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

.video_pop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 9999;
  padding: 1.2rem;
}
.video_pop.active {
  opacity: 1;
  pointer-events: all;
}
.video_pop.active .pop_content {
  transform: translate(-50%, -50%);
}
.video_pop .mask {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
}
.video_pop .mask .close {
  display: block;
  width: 1rem;
  height: 1rem;
  position: absolute;
  right: 2rem;
  top: 1rem;
  cursor: pointer;
}
.video_pop .pop_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
  transition: all 0.3s;
  width: max-content;
  max-width: 90vw;
  height: 90vh;
  aspect-ratio: 1920/1080;
  display: flex;
  align-items: center;
  pointer-events: none;
}
.video_pop .pop_content iframe,
.video_pop .pop_content video {
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  pointer-events: all;
}
.video_pop .pop_content video[src=""],
.video_pop .pop_content video.init {
  aspect-ratio: 1920/1080;
}
.video_pop .pop_content iframe {
  aspect-ratio: 560/315;
}

.search_drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 12vh 2rem 2rem;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0.25s;
}
.search_drawer.active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
}
.search_drawer .drawer_backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  cursor: default;
  background: rgba(10, 12, 22, 0.42);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.search_drawer.active .drawer_backdrop {
  opacity: 1;
}
.search_drawer .drawer_content {
  position: relative;
  width: 100%;
  max-width: 68rem;
  transform: translateY(-1.6rem) scale(0.96);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}
.search_drawer.active .drawer_content {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.search_drawer .search_panel {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(10px) saturate(1.85);
  -webkit-backdrop-filter: blur(48px) saturate(1.85);
  border-radius: 1.8rem;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.55) inset,
    0 2.8rem 7rem rgba(0, 0, 0, 0.2),
    0 1rem 2.4rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
}
.search_drawer .search_field {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 2rem 2.2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.search_drawer .search_icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  background: url(../img/icon-search.svg) no-repeat center / contain;
  opacity: 0.42;
}
.search_drawer .search_field input {
  flex: 1;
  min-width: 0;
  font-size: 2.2rem;
  line-height: 1.35;
  font-weight: 400;
  color: var(--title);
  background-color: transparent;
}
.search_drawer .search_field input::placeholder {
  color: rgba(90, 90, 104, 0.55);
}
.search_drawer .search_field input::-webkit-search-cancel-button,
.search_drawer .search_field input::-webkit-search-decoration {
  display: none;
}
.search_drawer .search_clear {
  flex-shrink: 0;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, background-color 0.2s;
  background: rgba(0, 0, 0, 0.08) url(../img/close.svg) no-repeat center / 1rem;
}
.search_drawer .search_clear.visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.search_drawer .search_clear:hover {
  background-color: rgba(0, 0, 0, 0.14);
}
.search_drawer .search_submit {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
.search_drawer .search_footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 2.4rem;
  padding: 1.4rem 2.2rem;
  font-size: 1.25rem;
  color: rgba(90, 90, 104, 0.72);
}
.search_drawer .search_footer kbd {
  display: inline-block;
  min-width: 2.2rem;
  padding: 0.15rem 0.55rem;
  margin: 0 0.25rem;
  font-size: 1.1rem;
  font-family: inherit;
  text-align: center;
  border-radius: 0.45rem;
  background: rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.quote_modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  overflow: auto;
}
.quote_modal .head {
  margin-bottom: 4rem;
}
.quote_modal .head .title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.3;
}
.quote_modal .head .title em {
  color: var(--primary);
}
.quote_modal .head .desc {
  color: var(--text);
  margin-top: 12px;
  line-height: 1.5;
}
.quote_modal::-webkit-scrollbar {
  display: none;
}
.quote_modal .modal_content {
  width: calc(100% - 4rem);
  max-width: 76.8rem;
  padding: 5rem;
  margin: 5rem auto;
  border-radius: 2.4rem;
  background-color: #fff;
}
.quote_modal form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem 0;
}
.quote_modal form span {
  width: 100%;
}
.quote_modal form .col-2 {
  width: 48.98911353%;
}
.quote_modal form .label {
  display: block;
  color: #53737f;
  margin-bottom: 0.95rem;
}
.quote_modal form .label i {
  color: var(--primary);
}
.quote_modal form input,
.quote_modal form textarea,
.quote_modal form select {
  display: block;
  width: 100%;
  font-size: 1em;
  border: 1px solid #dadfe6;
  background-color: transparent;
  border-radius: 0.8rem;
  transition: border-color 0.2s;
  height: 4.9rem;
  padding: 0 2.1rem;
}
.quote_modal form input::placeholder,
.quote_modal form textarea::placeholder,
.quote_modal form select::placeholder {
  color: #53737f;
}
.quote_modal form input:focus,
.quote_modal form textarea:focus,
.quote_modal form select:focus {
  border-color: var(--primary);
}
.quote_modal form select {
  outline: none;
  background: url("../img/icon-select.svg") no-repeat center right 2.7rem/1.2rem;
  padding-right: 5rem;
}
.quote_modal form textarea {
  padding: 1.5rem 2.1rem;
  height: 11.1rem;
}
.quote_modal form .bot {
  gap: 2rem 5rem;
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto;
}
.quote_modal form input[type="checkbox"] {
  padding: 0;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  border-radius: 4px;
}
.quote_modal form input[type="checkbox"]::after {
  content: '';
  width: 80%;
  height: 80%;
  opacity: 0;
  transition: all .3s;
  background: url(../img/icon-gou.svg) no-repeat center/contain;
}
.quote_modal form input[type="checkbox"]:checked::after {
  opacity: 1;
}
.quote_modal form input[type="checkbox"] ~ span {
  vertical-align: top;
  padding-left: 10px;
  cursor: pointer;
}
.quote_modal form .btn {
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
  text-transform: uppercase;
}
.quote_modal form .btn input {
  display: none;
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1600px) {
  header #navigation .menu > li > a {
    font-size: 15px;
  }
  header #navigation .menu {
    gap: 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  header .bot .content {
    gap: 3rem;
  }
  .home_industry .swiper_box {
    margin-right: -10%;
  }
  .home_industry .home_industry_swiper {
    border-radius: 1.6rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header #navigation .menu {
    gap: 2rem;
  }
  .home_industry .swiper_box {
    width: 60%;
    margin-right: -4%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .news_list .info {
    padding: 20px;
  }
  .home_industry .swiper_box {
    margin-right: -3rem;
  }
  .home_industry .flex {
    flex-direction: column-reverse;
  }
  .home_industry .nav {
    max-width: unset;
  }
  .home_industry .nav ul {
    gap: 0;
    grid-template-columns: repeat(5, 1fr);
  }
  .home_industry .nav li:nth-last-child(-n+5) .item::after {
    display: none;
  }
  .home_industry .swiper_box {
    width: 100%;
    max-width: 76.8rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  header {
    background-image: linear-gradient(to right, #fff 0%, #fff 30%, var(--title) 30%, var(--title) 100%);
  }
  header .logo {
    left: 3rem;
  }
  header #navigation {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 8px;
  }
  header #navigation.active {
    pointer-events: auto;
  }
  header #navigation.active .close {
    opacity: 1;
  }
  header #navigation.active .con {
    transform: translate(0);
  }
  header #navigation .close_box {
    display: block;
  }
  header #navigation > .close {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: 0;
    transition: all 0.3s;
    background-color: rgba(0, 0, 0, 0.75);
  }
  header #navigation .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: #fff;
  }
  header #navigation .close_box {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header #navigation .close_box .close {
    display: block;
    width: 44px;
    height: 44px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
    border-radius: var(--radius);
    background: url('../img/close.svg') no-repeat center / 12px;
  }
  header #navigation .close_box .close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header #navigation .close_box + div {
    flex: 1;
    overflow: auto;
    padding: 12px 12px 30px;
  }
  header #navigation .menu {
    display: block;
  }
  header #navigation .menu > li {
    cursor: pointer;
  }
  header #navigation .menu > li + li {
    margin-top: 8px;
  }
  header #navigation .menu > li > a {
    color: var(--title);
    display: block;
    font-size: 16px;
    line-height: 26px;
    padding: 10px 12px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header #navigation .menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header #navigation .menu > li.current-menu-item > a,
  header #navigation .menu > li.current-menu-parent > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header #navigation .menu .menu-item-has-children {
    position: relative;
  }
  header #navigation .menu .menu-item-has-children > a {
    margin-right: 46px;
  }
  header #navigation .menu .menu-item-has-children::before,
  header #navigation .menu .menu-item-has-children::after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: 0;
    width: 36px;
    height: 36px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header #navigation .menu .menu-item-has-children::after {
    background: url(../img/select.svg) no-repeat center / 12px;
  }
  header #navigation .menu .menu-item-has-children.active::before {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header #navigation .menu .menu-item-has-children.active::after {
    transform: rotate(180deg);
  }
  header #navigation .sub-menu {
    width: 100%;
    position: static;
    padding: 10px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transition: none;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(0, 0, 0, 0.02);
  }
  header #navigation .sub-menu > li {
    cursor: pointer;
    transform: translate(0);
  }
  header #navigation .sub-menu > li + li {
    margin-top: 6px;
  }
  header #navigation .sub-menu > li > a {
    display: block;
    font-size: 14px;
    line-height: 20px;
    white-space: normal;
    padding: 10px;
    transition: all 0.3s;
    border-radius: var(--radius);
  }
  header #navigation .sub-menu > li > a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header #navigation .sub-menu > li.current-menu-item > a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header #navigation .sub-menu .menu-item-has-children > a {
    margin-right: 42px;
  }
  header #navigation .sub-menu .menu-item-has-children::before,
  header #navigation .sub-menu .menu-item-has-children::after {
    top: 2px;
    width: 36px;
    height: 36px;
    background-size: 10px;
  }
  header #navigation .sub-menu .sub-menu {
    margin: 10px 0;
  }
  header #navigation .sub-menu .sub-menu > li + li {
    margin-top: 0;
  }
  header #navigation .sub-menu .sub-menu > li > a {
    font-size: 12px;
  }
  header .btns {
    gap: 4px;
  }
  header .btns .btn_search {
    width: 44px;
    height: 44px;
    background-size: 16px;
  }
  header .btns .btn_lang {
    width: 44px;
    height: 44px;
    background-size: 18px;
  }
  header .btns .btn_menu {
    display: block;
    width: 44px;
    height: 44px;
    overflow: hidden;
    text-indent: -999px;
    background: url(../img/nav-btn.svg) no-repeat center / 23px;
  }
  header .btns .btn {
    margin-left: 16px;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
    min-width: unset;
  }
  .btn.a {
    gap: 10px;
    padding: 0 20px;
    line-height: 42px;
  }
  .btn_box {
    gap: 12px;
    font-size: 14px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 44px;
    height: 44px;
  }
  .tcon h1,
  .tcon .head_h1 {
    font-size: 38px;
  }
  .tcon h2,
  .tcon .head_h2 {
    font-size: 30px;
  }
  .tcon h2::before,
  .tcon .head_h2::before {
    width: 40px;
    height: 40px;
    left: -15px;
    top: -5px;
  }
  .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }
  nav.navigation .page-numbers {
    font-size: 14px;
    height: 44px;
    min-width: 44px;
  }
  .news_list a {
    border-radius: 10px;
  }
  .news_list a::after {
    border-radius: 10px;
  }
  .news_list .img {
    border-radius: 10px 10px 0 0;
  }
  .news_list .info {
    padding: 15px;
  }
  .news_list .info .date {
    left: 10px;
    top: 10px;
    padding: 10px;
    border-radius: 6px;
    min-width: 52px;
  }
  .news_list .info .date strong {
    font-size: 14px;
  }
  .news_list .info .date span {
    font-size: 12px;
  }
  .news_list .info .title {
    font-size: 16px;
  }
  .news_list .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .news_list .info .btn_box {
    font-size: 16px;
    margin-top: 15px;
  }
  .product_list a {
    border-radius: 10px;
  }
  .product_list .img {
    border-radius: 10px 10px 0 0;
  }
  .product_list .info {
    padding: 20px;
  }
  .product_list .info .title {
    font-size: 16px;
    margin-top: 10px;
  }
  .product_list .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 12px;
  }
  .product_list .info .btn_box {
    font-size: 16px;
    margin-top: 15px;
  }
  header .top ul {
    padding: 10px 6px 10px 26px;
  }
  header .bot {
    padding: 10px 0;
  }
  header .logo {
    left: 20px;
  }
  header .logo img {
    height: 82px;
  }
  header .btns .btn {
    font-size: 14px;
    line-height: 42px;
    padding: 0 20px;
  }
  footer {
    padding: 30px 0 20px;
  }
  footer .foot_contact {
    margin: 0;
  }
  footer .logo {
    max-width: 120px;
  }
  footer .contact {
    margin-top: 30px;
  }
  footer .contact li {
    padding-left: 35px;
  }
  footer .contact li + li {
    margin-top: 20px;
  }
  footer .contact li::before {
    width: 20px;
    height: 20px;
  }
  footer .contact a {
    font-size: 16px;
  }
  footer .social {
    margin-top: 30px;
  }
  footer .social ul {
    gap: 8px;
  }
  footer .social a {
    width: 44px;
    height: 44px;
  }
  footer .foot_nav {
    margin-top: 30px;
  }
  footer .foot_nav strong {
    font-size: 18px;
    margin-bottom: 20px;
  }
  footer .foot_nav li + li {
    margin-top: 12px;
  }
  footer .foot_nav a {
    font-size: 14px;
  }
  footer .bot {
    gap: 15px;
    margin-top: 50px;
  }
  .footer_sidebar ul {
    gap: 15px;
  }
  .footer_sidebar .backup {
    width: 44px;
    height: 44px;
  }
  .footer_sidebar .whatsapp a {
    width: 52px;
    height: 52px;
  }
  .products_category {
    margin: 0;
    padding: 30px 0;
  }
  .products_category ul {
    gap: 12px;
    display: flex;
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    overflow: auto;
  }
  .products_category ul::-webkit-scrollbar {
    display: none;
  }
  .products_category li {
    flex: 1 0 200px;
  }
  .products_category a .name {
    font-size: 18px;
    padding: 15px 15px 0;
  }
  .products_category a .btn_box {
    padding: 15px;
  }
  .home_industry {
    padding: 50px 0;
  }
  .home_industry .flex {
    margin-top: 30px;
  }
  .home_industry .nav ul {
    gap: 0;
  }
  .home_industry .nav .item {
    padding: 15px;
  }
  .home_industry .nav .item .img {
    width: 50px;
    height: 50px;
  }
  .home_industry .nav .item .icon {
    margin: 0 auto;
  }
  .home_industry .nav .item .title {
    font-size: 12px;
    margin-top: 12px;
  }
  .home_industry .swiper_box {
    width: 50%;
    margin-right: 0;
  }
  .home_industry .home_industry_swiper {
    border-radius: 10px 10px 0 0;
  }
  .home_industry .home_industry_swiper .item {
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .home_industry .home_industry_swiper .tcon {
    flex: 1;
    width: 100%;
    position: static;
    padding: 15px;
    border-radius: 0 0 10px 10px;
  }
  .home_industry .home_industry_swiper .tcon h3 {
    font-size: 18px;
  }
  .home_industry .home_industry_swiper .tcon p {
    margin-top: 12px;
  }
  .home_industry .home_industry_swiper .tcon::after {
    width: 44px;
    height: 44px;
  }

  .search_drawer {
    padding: max(7vh, env(safe-area-inset-top, 0px)) 1.6rem 1.6rem;
  }
  .search_drawer .drawer_content {
    max-width: none;
  }
  .search_drawer .search_panel {
    border-radius: 1.4rem;
  }
  .search_drawer .search_field {
    padding: 1.5rem 1.6rem;
    gap: 1rem;
  }
  .search_drawer .search_icon {
    width: 2rem;
    height: 2rem;
  }
  .search_drawer .search_field input {
    font-size: 1.6rem;
  }
  .search_drawer .search_clear {
    width: 3rem;
    height: 3rem;
    background-size: 1.1rem;
  }
  .search_drawer .search_footer {
    display: none;
  }
  .section_contact {
    padding: 50px 0;
  }
  .section_contact .head h2 {
    font-size: 30px;
  }
  .section_contact .head p {
    margin-top: 12px;
  }
  .section_contact .form {
    margin-top: 30px;
  }
  .section_contact form {
    gap: 15px 0;
  }
  .section_contact form input,
  .section_contact form select,
  .section_contact form textarea {
    height: 46px;
    font-size: 15px;
    padding: 0 15px;
    border-width: 1px;
  }
  .section_contact form textarea {
    height: 120px;
    padding: 12px 15px;
  }
  .section_contact form input[type="checkbox"] {
    width: 18px;
    height: 18px;
  }
  .section_contact form .btn {
    font-size: 14px;
    line-height: 42px;
    min-width: 120px;
  }
  .section_contact form .btn::after {
    width: 12px;
    height: 12px;
  }

  /*** global css ***/
  .wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 5px;
  }
  .wpcf7 form.wpcf7-form .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.5;
  }

  .video_pop .pop_content {
    max-width: 96vw;
    width: 96vw;
    height: auto;
  }
  
  .quote_modal .modal_content {
    padding: 30px 20px;
    border-radius: 10px;
  }
  .quote_modal .head {
    margin-bottom: 30px;
  }
  .quote_modal .head .title {
    font-size: 28px;
  }
  .quote_modal form {
    gap: 16px 0;
  }
  .quote_modal form .col-2 {
    width: 100%;
  }
  .quote_modal form .label {
    margin-bottom: 5px;
  }
  .quote_modal form input,
  .quote_modal form textarea,
  .quote_modal form select {
    height: 46px;
    padding: 0 20px;
  }
  .quote_modal form select {
    padding-right: 40px;
    background-size: 10px;
    background-position-x: right 20px;
  }
  .quote_modal form textarea {
    height: 90px;
    padding: 14px 20px;
  }
  .quote_modal form .bot {
    grid-template-columns: 1fr;
  }
  .quote_modal form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 2px;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  .tcon h1,
  .tcon .head_h1 {
    font-size: 36px;
  }
  .tcon h2,
  .tcon .head_h2 {
    font-size: 28px;
  }
  .tcon.center {
    text-align: left;
  }
  header .top {
    display: none;
  }
  header .bot {
    padding: 6px 0;
  }
  header .bot .content {
    justify-content: space-between;
  }
  header .logo {
    position: static;
  }
  header .logo img {
    height: 52px;
  }
  header .btns .btn {
    display: none;
  }
  footer .top {
    display: block;
  }
  footer .foot_contact {
    margin-bottom: 30px;
  }
  footer .foot_nav {
    width: 100%;
    margin: 0;
  }
  footer .foot_nav.active strong {
    border-color: var(--primary);
  }
  footer .foot_nav.active strong::after {
    transform: rotate(180deg);
  }
  footer .foot_nav strong {
    gap: 20px;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    transition: all 0.3s;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    line-height: 44px;
    padding: 0 20px;
  }
  footer .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    transition: all 0.3s;
    background: url(../img/icon-select.svg) no-repeat center / contain;
  }
  footer .foot_nav div {
    display: none;
    padding: 0 20px 30px;
  }
  footer .bot {
    margin-top: 0;
    padding-top: 30px;
    align-items: flex-start;
    flex-direction: column-reverse;
  }
  .home_industry .flex {
    flex-direction: column-reverse;
  }
  .home_industry .swiper_box {
    width: 100%;
  }
  .section_contact form .col-2 {
    width: 100%;
  }
  .section_contact form .bot {
    grid-template-columns: 1fr;
  }
}