* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #242272;
  --secondary: #3b82f6;
  --tertiary: #1b1464;
  --title: #0f172a;
  --text: #4b4f54;
  --text_w: rgba(255, 255, 255, 0.85);
  --text_w2: rgba(255, 255, 255, 0.75);
  --bg: #f2f2f2;
  --bg2: #131156;
  --border: #e2e8f0;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 147rem;
  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;
  }
}
.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 {
  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 {
  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 {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img,
.img video,
.img iframe {
  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 {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.icon.icon_ab {
  position: relative;
}
.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;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: 500;
  gap: 1.2rem;
  line-height: 5.4rem;
  padding: 0 3rem;
}
.btn::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 1.0625em;
  height: 1.0625em;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  background: url("../images/arrow-r.svg") no-repeat center / contain;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn:hover::after {
  filter: none;
  transform: translateX(20%);
}
.btn.sec {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.btn.sec::after {
  background-image: url("../images/arrow-r-sec.svg");
}
.btn.sec:hover {
  background-color: transparent;
  color: var(--secondary);
}
.btn.no_a::after {
  display: none;
}
.btn_l {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: transparent;
  border: 1px solid rgba(15, 23, 42, 0.5);
  color: var(--title);
  border-radius: 10rem;
  font-size: 1.6rem;
  font-weight: 500;
  gap: 1.4rem;
  line-height: 5.5rem;
  padding: 0 3.1rem;
}
.btn_l::after {
  display: inline-block;
  flex-shrink: 0;
  content: '';
  width: 1.0625em;
  height: 1.0625em;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
  background: url("../images/arrow-r.svg") no-repeat center / contain;
}
.btn_l:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_l:hover::after {
  filter: contrast(0) brightness(2);
  transform: translateX(20%);
}
.btn_l.no_a::after {
  display: none;
}
.btn_l.wt {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.btn_l.wt::after {
  filter: contrast(0) brightness(2);
}
.btn_l.wt:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
}
.swiper_btns {
  gap: 3.1rem;
  display: flex;
}
.swiper_btns div {
  width: 7rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: var(--secondary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../images/arrow-r.svg) no-repeat center / 30%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns .btn_prev::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: var(--primary);
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 170.3rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.tcon.white {
  color: #fff;
}
.tcon.white p,
.tcon.white .desc {
  color: var(--text_w);
  font-weight: 300;
  letter-spacing: 0.01em;
}
.tcon em {
  font-style: normal;
}
.tcon>em {
  display: block;
  font-size: 1.6rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 1.6rem;
}
.tcon h1 {
  font-size: 6.6rem;
  line-height: 1.21212;
  font-weight: 600;
  letter-spacing: 0.02273em;
}
.tcon h2 {
  font-size: 4.8rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.025em;
}
.tcon p,
.tcon .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
}
header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 996;
  transition: all 0.3s;
  color: #fff;
}
header.style {
  top: 0;
  background-color: var(--bg2);
  box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}
header .logo {
  transform: scale(0.75);
}
header .main .flex {
  transform: translateY(10px);
}
header.opt {
  top: -123px;
}
header.sticky {
  position: sticky;
  background-color: var(--bg2);
}
header.sticky .top {
  border-bottom-color: transparent;
}
header .flex {
  gap: 3.19444%;
}
header .main {
  padding-bottom: 17px;
}
header .main .flex {
  transition: all 0.3s;
}
header .logo {
  display: inline-flex;
  align-items: flex-end;
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
  gap: 1.4rem;
  margin-right: auto;
  margin-top: -1.4%;
  transform-origin: left bottom;
}
header .logo img {
  display: block;
  width: auto;
  height: 6.82518rem;
}
header .logo p {
  line-height: 1.2;
  max-width: 10.625em;
  letter-spacing: 0.010625em;
  margin-bottom: -0.25em;
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 5.95rem;
  display: flex;
}
header nav .menu>li {
  position: relative;
  z-index: 2;
}
header nav .menu>li>a {
  display: block;
  font-size: 16px;
  font-weight: 600;
  line-height: 48px;
  transition: color 0.3s, background-size 0.3s;
  background: linear-gradient(to right, var(--secondary), var(--secondary)) no-repeat bottom right / 0 2px;
}
header nav .menu>li>a:hover {
  background-size: 100% 2px;
  background-position-x: left;
  color: var(--secondary);
}
header nav .menu>li.current-menu-item>a,
header nav .menu>li.current-menu-parent>a,
header nav .menu>li:has(.current-menu-parent)>a {
  background-size: 100% 1px;
  color: var(--secondary);
}
header nav .menu>li:hover>.sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header nav .sub-menu {
  position: absolute;
  top: 100%;
  left: -24px;
  padding: 6px;
  transition: all 0.2s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  border-radius: 5px;
  background-color: var(--bg2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
header nav .sub-menu>li {
  position: relative;
}
header nav .sub-menu>li>a {
  display: block;
  font-size: 16px;
  white-space: nowrap;
  padding: 12px 18px;
  transition: all 0.3s;
  border-radius: 5px;
}
header nav .sub-menu>li>a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
header nav .sub-menu>li:hover>.sub-menu {
  transform: translate(0);
  pointer-events: auto;
  opacity: 1;
}
header nav .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}
header .btns {
  gap: 1.6rem;
  display: flex;
  align-items: center;
  min-height: 66px;
}
header .btns .btn_icon {
  display: block;
  position: relative;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  overflow: hidden;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.11);
  transition: all 0.3s;
  border-radius: 50%;
}
header .btns .btn_icon::after {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  background: no-repeat center / 42%;
  filter: contrast(0) brightness(2);
}
header .btns .btn_icon:hover {
  background-color: var(--secondary);
}
header .btns .btn_search::after {
  background-image: url("../images/icon-search-w.svg");
  background-size: 40.5%;
}
header .btns .btn_lang::after {
  background-image: url("../images/icon-lang-w.svg");
}
header .btns .btn_menu::after {
  background-image: url(../images/nav-btn.svg);
}
header .btns .btn_menu {
  display: none;
}
footer .foot_intro {
  padding: 14.8rem 0 3.3rem;
}
footer .foot_intro .logo {
  display: block;
  position: relative;
  width: 21rem;
  padding-bottom: 3px;
}
footer .foot_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .foot_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .foot_intro .social {
  gap: 2rem 0.9rem;
  display: flex;
  flex-wrap: wrap;
}
footer .foot_intro .social a {
  opacity: 1;
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: var(--bg);
}
footer .foot_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 42.31%;
  transition: all 0.3s;
}
footer .foot_intro .social a:hover {
  transform: scale(1.1);
  background-color: var(--secondary);
}
footer .foot_intro .social a:hover::after {
  filter: contrast(0) brightness(2);
}
footer .foot_intro .social .facebook a::after {
  background-image: url(../images/social-facebook.svg);
}
footer .foot_intro .social .whatsapp a::after {
  background-image: url(../images/social-whatsapp.svg);
}
footer .foot_intro .social .youtube a::after {
  background-image: url(../images/social-youtube.svg);
}
footer .foot_intro .social .instagram a::after {
  background-image: url(../images/social-instagram.svg);
}
footer .foot_intro .social .linkedin a::after {
  background-image: url(../images/social-linkedin.svg);
}
footer .main {
  padding: 3.3rem 0 7.7rem;
}
footer .main strong {
  display: block;
  font-size: 2rem;
  font-weight: 600;
}
footer .main .foot_nav strong {
  color: var(--primary);
  margin-bottom: 2.4rem;
}
footer .main .foot_nav li a {
  font-size: 1.7rem;
  font-weight: 500;
  color: #1c1c1c;
  vertical-align: top;
  transition: color 0.3s, background-size 0.3s;
  background: linear-gradient(to right, var(--secondary), var(--secondary)) no-repeat bottom right / 0 1px;
}
footer .main .foot_nav li a:hover {
  background-position: bottom left;
  background-size: 100% 1px;
  color: var(--secondary);
}
footer .main .foot_nav li+li {
  margin-top: 1.4rem;
}
footer .main .foot_subscribe {
  width: 36.18055556%;
  border-radius: 2.9rem;
  background-color: var(--bg2);
  color: #fff;
  padding: 3.4rem 3.4rem 3.7rem 4.4rem;
  margin-top: -0.4rem;
  margin-left: 6.2%;
}
footer .main .foot_subscribe strong {
  margin-bottom: 3.3rem;
}
footer .main .foot_subscribe form {
  display: grid;
  grid-template-columns: 1fr 5.4rem;
  height: 5.4rem;
  gap: 1.1rem;
}
footer .main .foot_subscribe form input {
  display: block;
  width: 100%;
  font-size: 1.7rem;
  font-weight: 500;
  color: #fff;
  background-color: #2f3982;
  border: 1px solid #2f3982;
  transition: all 0.3s;
  border-radius: 1rem;
  padding: 0 2rem;
}
footer .main .foot_subscribe form input:focus {
  border-color: var(--secondary);
}
footer .main .foot_subscribe form input::placeholder {
  color: #fff;
}
footer .main .foot_subscribe form input[type=submit] {
  border: none;
  padding: 0;
  text-indent: -999px;
  color: transparent;
  background: url("../images/icon-email-w.svg") no-repeat center / 42.6% var(--secondary);
}
footer .main .foot_subscribe form input[type=submit]:hover {
  box-shadow: 0 0 1rem var(--secondary);
}
footer .bottom {
  padding: 4.5rem 0;
  font-size: 1.437rem;
  color: #1c1c1c;
  letter-spacing: -0.0084em;
}
footer .bottom a {
  opacity: 0.68;
  transition: color 0.3s, background-size 0.3s, opacity 0.3s;
  background: linear-gradient(to right, var(--secondary), var(--secondary)) no-repeat bottom right / 0 1px;
}
footer .bottom a:hover {
  opacity: 1;
  background-position: bottom left;
  background-size: 100% 1px;
  color: var(--secondary);
}
footer .bottom ul {
  gap: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
footer .bottom ul li {
  display: flex;
  align-items: center;
}
footer .bottom ul li::before {
  width: 1px;
  height: 1.3rem;
  background-color: #1c1c1c;
  opacity: 0.15;
  display: inline-block;
  content: '';
  margin: 0 1.5rem;
}
footer .bottom ul li:first-child::before {
  display: none;
}
.float_btns {
  position: fixed;
  z-index: 99;
  right: 2.6rem;
  bottom: 3.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.float_btns .float_btn {
  display: block;
  width: 4.9rem;
  height: 4.9rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
  text-indent: -999px;
}
.float_btns .float_btn:hover {
  transform: scale(1.1);
}
.float_btns .btn_quote {
  background: url("../images/post-file-icon.svg") no-repeat center / 34% var(--secondary);
}
.float_btns .whatsapp {
  background: url("../images/social-whatsapp-w.svg") no-repeat center / 52% #25d366;
}
footer #backtop {
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  width: 4.9rem;
  height: 4.9rem;
  border-radius: 50%;
  background: url("../images/arrow-t-w.svg") no-repeat center / 22% var(--primary);
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
footer #backtop.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
footer #backtop:hover {
  transform: scale(1.1);
}
.page_applications {
  padding: 9.9rem 0 20.2rem;
  overflow: hidden;
}
.page_applications .head {
  flex: 1;
  padding-bottom: 0.5rem;
}
.page_applications p {
  max-width: 67.2rem;
  margin-top: 3.4rem;
}
.page_applications .page_applications_swiper {
  margin-top: 5.8rem;
}
.page_applications .item {
  position: relative;
  display: block;
  height: 100%;
  border-radius: 2rem;
  overflow: hidden;
}
.page_applications .item:hover img {
  transform: scale(1.03);
}
.page_applications .item .img {
  padding-bottom: 120.04310345%;
}
.page_applications .item .img::after {
  position: absolute;
  width: 100%;
  height: 61.94%;
  left: 0;
  bottom: 0;
  content: '';
  pointer-events: none;
  background-image: linear-gradient(to top, #1a1a6b 7.25%, transparent 95.4%);
}
.page_applications .item .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  color: #fff;
  padding: 9.2672414% 7.9741379% 8.6206897%;
}
.page_applications .item .order {
  display: block;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: auto;
}
.page_applications .item .title {
  font-size: 3rem;
  margin-top: 2rem;
  padding-bottom: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}
.page_applications .item .desc {
  position: relative;
  display: none;
  grid-template-columns: 1fr auto;
  align-items: end;
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: var(--text_w);
  hyphens: auto;
  gap: 2rem;
  padding-top: 0.7rem;
  font-weight: 300;
  letter-spacing: 0.0059em;
}
.page_applications .item .desc p {
  margin: 0;
  max-width: 29.6rem;
}
.page_applications .item .desc .btn_c {
  width: 3.53em;
  height: 3.53em;
  background: url("../images/arrow-tr-w.svg") no-repeat center / 23.3% var(--secondary);
  transition: all 0.3s;
  border-radius: 50%;
  margin-bottom: 1.1rem;
}
.page_applications .item .desc .btn_c:hover {
  transform: rotate(45deg);
}
.page_news {
  padding: 7.9rem 0 12rem;
}
.page_news .tcon {
  padding-bottom: 1.6rem;
}
.page_news .nav {
  margin-top: 1.9rem;
}
.page_news .page_news_swiper {
  overflow: hidden;
  margin-top: 4.2rem;
  border-radius: 2.2rem 2.2rem 0 0;
}
.page_news .swiper_btns.middle {
  top: 49.5%;
}
.page_faqs {
  padding: 11.9rem 0 19.3rem;
}
.page_faqs .head {
  flex: 1;
  max-width: 44rem;
  padding-top: 0.5556%;
}
.page_faqs p {
  max-width: 36.3rem;
  hyphens: auto;
  margin-top: 3.4rem;
}
.page_faqs .btn {
  margin-top: 3.7rem;
}
.page_faqs .faqs {
  width: 64.02777778%;
}
.page_faqs .faq_list .faq_item {
  border-radius: 1.8rem;
  background-color: var(--bg);
  transition: all 0.3s, background-color 0.4s;
  color: #232323;
  margin-bottom: 1.8rem;
}
.page_faqs .faq_list .faq_item.active {
  color: #fff;
  background-color: var(--primary);
}
.page_faqs .faq_list .faq_item.active .question {
  padding-top: 3.7rem;
}
.page_faqs .faq_list .faq_item.active .question::after {
  transform: rotate(180deg);
  filter: contrast(0) brightness(2);
}
.page_faqs .faq_list .faq_item:last-child {
  margin-bottom: 0;
}
.page_faqs .faq_list .question {
  display: grid;
  grid-template-columns: 1fr 0.6363em;
  align-items: center;
  cursor: pointer;
  font-size: 2.2rem;
  font-weight: 600;
  transition: padding-top 0.3s;
  gap: 0.5em;
  padding: 3.1rem 4.6rem 2.9rem;
  letter-spacing: 0.011364em;
}
.page_faqs .faq_list .question::after {
  display: block;
  padding-bottom: 100%;
  background: url("../images/icon-select.svg") no-repeat center / contain;
  transition: all 0.3s;
  content: '';
}
.page_faqs .faq_list .answer {
  display: none;
  font-size: 1.8rem;
  line-height: 3rem;
  padding: 0 4.7rem 3.8rem;
  opacity: 0.85;
  margin-top: -2px;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.footer_contact {
  width: calc(100% - 6rem);
  max-width: 179.3rem;
  margin: 0 auto;
  border-radius: 4.1rem;
  background-color: var(--bg2);
  overflow: hidden;
  padding: 5.7rem 0 5.9rem;
}
.footer_contact .head {
  flex: 1;
  width: 100%;
  max-width: 54rem;
  padding-bottom: 6.4%;
}
.footer_contact .head p {
  color: rgba(255, 255, 255, 0.7);
}
.footer_contact p {
  margin-top: 2.7rem;
}
.footer_contact .quote_form {
  width: 53.81944444%;
}
.footer_contact .quote_form.img_bg>img {
  width: 127.35483871%;
  height: auto;
  left: 49.2%;
  top: 60%;
  transform: translate(-50%, -50%);
}
.footer_contact form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  --rd: 2rem;
  border-radius: var(--rd);
  background-color: #2f3982;
  gap: 1.6rem 0;
  padding: 9.0322581% 7.6129032% 7.3548387% 8.516129%;
}
.footer_contact form span {
  width: 100%;
}
.footer_contact form .col-2 {
  width: 47.69230769%;
}
.footer_contact form input,
.footer_contact form select,
.footer_contact form textarea {
  display: block;
  width: 100%;
  font-size: 1em;
  color: var(--title);
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: calc(var(--rd) * 0.8);
  transition: all 0.2s;
  height: 5.1rem;
  padding: 0 0.9375em 0.25em;
}
.footer_contact form input::placeholder,
.footer_contact form textarea::placeholder {
  color: var(--text);
}
.footer_contact form input:focus,
.footer_contact form select:focus,
.footer_contact form textarea:focus {
  border-color: var(--secondary);
}
.footer_contact form select {
  outline: none;
  padding: 0 2.5em 0.25em 0.9375em;
  background: url(../images/icon-select.svg) no-repeat right 0.9375em center / 0.625em #fff;
}
.footer_contact form textarea {
  padding: 0.75em 0.9375em;
  height: 13.4rem;
  margin-top: 2px;
}
.footer_contact form span:has(.btn) {
  max-width: max-content;
  margin-top: 3px;
  position: relative;
}
.footer_contact form .btn input {
  display: none;
}
.footer_contact .wpcf7-response-output {
  color: #fff;
}
.page_products {
  padding: 7.7rem 0 24rem;
}
.page_products .head {
  max-width: 71.2rem;
  padding-bottom: 0.3rem;
}
.page_products .head p {
  hyphens: auto;
}
.page_products p {
  margin-top: 4.1rem;
}
.page_products .page_products_swiper {
  overflow: hidden;
  border-radius: 1.6rem;
  margin-top: 5.4rem;
}
.page_products .btn_l {
  margin-top: 5rem;
}
.page_banner {
  background-color: var(--title);
  padding-top: 123px;
}
.page_banner.img_bg>img {
  left: 50%;
  transform: translateX(-50%);
  max-width: 256rem;
  opacity: 0.5;
}
.page_banner .flex {
  min-height: 60.6rem;
  padding: 4rem 0;
}
.page_banner .head {
  flex: 1;
  max-width: 83.3rem;
  padding-top: 6.8%;
}
.page_banner .head p {
  color: var(--text_w2);
}
.page_banner p {
  margin-top: 2.5rem;
}
.page_banner .btn {
  margin-top: 3.6rem;
}
.page_banner .nums {
  padding-bottom: 6.2rem;
  overflow: hidden;
}
.page_banner .nums ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 3.5rem;
  margin-right: -1px;
}
.page_banner .nums li {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  flex: 1 0 20rem;
  max-width: 25.5rem;
  padding: 2.8rem 2rem 2.4rem 0;
}
.page_banner .nums li strong {
  font-size: 4.462rem;
  line-height: 1;
  font-weight: 600;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.024653em;
}
.page_banner .nums li strong i {
  font-size: 0.67862em;
  color: var(--secondary);
  margin-left: 0.16513em;
}
.page_banner .nums li p {
  font-size: 1.7rem;
  color: #ccc;
  margin-top: 1.1rem;
  letter-spacing: 0.007em;
}
.nav_wrap .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem;
}
.nav_wrap .nav_list .nav_item.active,
.nav_wrap .nav_list .nav_item:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.nav_wrap .nav_item {
  display: block;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  font-weight: 500;
  border: 1px solid rgba(15, 23, 42, 0.5);
  line-height: 1.2;
  border-radius: 1.75em;
  padding: 1.11875em 1.96875em;
}
.bg_mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  max-width: 192rem;
  height: auto;
  transform: translate(-50%, -50%);
  opacity: 0.15;
  pointer-events: none;
}
.bg_mask img {
  width: 85%;
  max-width: 84.4rem;
  height: auto;
  margin-left: auto;
}
p.center:has(button.btn_l) {
  margin-top: 6.4rem;
  min-height: 5.7rem;
}
p.center:has(button.btn_l) .btn_l {
  min-width: 14.9rem;
}
.active .cat_item .img {
  left: 0;
  transform: translateX(0);
}
.active .cat_item .info .btn_i {
  color: var(--secondary);
}
.active .cat_item .info .btn_i::after {
  background-image: url("../images/arrow-r-sec.svg");
}
.cat_item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 3.1rem;
  background-color: var(--bg);
  overflow: hidden;
  padding: 0 10.1511879% 9.287257%;
}
.cat_item:hover .img img {
  transform: scale(1.03);
}
.cat_item .img {
  width: 86.72086721%;
  --h: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s;
  margin: -8.1300813% 0 -5.6910569%;
}
.cat_item .info {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cat_item .info .tcon {
  flex: 1;
}
.cat_item .info .title {
  font-size: 2.8rem;
  line-height: 1.09375;
  font-weight: 600;
  letter-spacing: 0.01607em;
}
.cat_item .info .desc {
  line-height: 2.6rem;
  max-width: 36.7rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  margin-top: 1.7rem;
}
.cat_item .info .btn_i {
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--tertiary);
  text-transform: uppercase;
  gap: 1rem;
  margin-top: 2.4rem;
}
.cat_item .info .btn_i::after {
  display: inline-block;
  content: '';
  width: 0.9444em;
  height: 0.9444em;
  transition: all 0.3s;
  background: url("../images/arrow-r.svg") no-repeat center / contain;
}
.cat_item .info .btn_i:hover::after {
  transform: translateX(20%);
}
.news_list .active .info {
  border-bottom-color: transparent;
  background-size: 100% 2px;
}
.news_list a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.news_list a:hover img {
  transform: scale(1.03);
}
.news_list .img {
  padding-bottom: 62.58064516%;
  border-radius: 2.2rem;
}
.news_list .info {
  flex: 1;
  border-bottom: 1px solid #cbc5d6;
  background: linear-gradient(to right, var(--secondary), var(--secondary)) no-repeat left bottom / 0 2px;
  transition: all 0.4s;
  padding: 6.0215054% 0 9.4623656%;
}
.news_list .metas {
  color: #353535;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.news_list .metas .cat {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background-color: var(--primary);
  color: #fff;
  font-size: 0.9375em;
  font-weight: 500;
  line-height: 1.2;
  border-radius: 1.27em;
  letter-spacing: normal;
  padding: 0.6667em 1.06667em;
  margin: 4.0860215% 3.8709677%;
}
.news_list .title {
  font-size: 2.4rem;
  line-height: 1.33333;
  font-weight: 600;
  color: #1c1c1c;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  max-width: 45.3rem;
  margin-top: 1.3rem;
  letter-spacing: 0.01042em;
}
.news_list .btn_i {
  display: inline-flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 600;
  color: #0c0c0c;
  transition: all 0.3s;
  gap: 1.2rem;
  margin-top: 2.7rem;
}
.news_list .btn_i::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  width: 0.889em;
  height: 0.889em;
  background: url("../images/arrow-r-sec-s.svg") no-repeat center / contain;
  transition: all 0.3s;
}
.news_list .btn_i:hover {
  color: var(--secondary);
}
.news_list .btn_i:hover::after {
  transform: translateX(20%);
}
.product_list .active .btn_i::after {
  background-color: var(--secondary);
}
.product_list a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.6rem;
  border: 1px solid var(--border);
}
.product_list a:hover img {
  transform: scale(1.05);
}
.product_list .img {
  display: flex;
  justify-content: center;
  background-image: linear-gradient(to right bottom, #f1f5f9 15%, var(--border) 75%);
  padding-bottom: 74.92957746%;
  border-radius: 1.3rem 1.3rem 0 0;
  overflow: hidden;
}
.product_list div.img img {
  width: 82.53521127%;
  height: 110.15037594%;
  left: unset;
}
.product_list .info {
  flex: 1;
  padding: 2.4rem 2.1rem 1.6rem;
}
.product_list .info .cat {
  text-transform: uppercase;
  font-size: 1.4rem;
  color: var(--secondary);
  margin-bottom: 0.8rem;
  display: block;
}
.product_list .info .title {
  font-size: 2rem;
  font-weight: 600;
}
.product_list .info .desc {
  font-size: 1.4rem;
  line-height: 2rem;
  color: #4b4f54;
  margin-top: 1.2rem;
  letter-spacing: -0.01429em;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.product_list .info .options {
  font-size: 1.4rem;
  line-height: 2rem;
  font-weight: 500;
  border-radius: 1rem;
  background-color: #edf2f9;
  position: relative;
  margin-top: 1.2rem;
  padding: 1.1rem;
}
.product_list .info .options::before {
  content: '';
  display: block;
  width: 2px;
  height: min(calc(100% - 2.6rem), 58.064516%);
  background-color: var(--secondary);
  position: absolute;
  left: -1px;
  top: 50%;
  transform: translateY(-50%);
}
.product_list .btn_i {
  display: grid;
  grid-template-columns: 1fr 2.2667em;
  align-items: center;
  transition: all 0.3s;
  border-top: 1px solid var(--border);
  font-size: 1.5rem;
  font-weight: 600;
  gap: 1em;
  padding: 3.3802817% 0 4.7887324%;
  margin: 0 5.915493%;
}
.product_list .btn_i::after {
  display: block;
  padding-bottom: 100%;
  border-radius: 50%;
  content: '';
  transition: all 0.3s;
  background: url("../images/arrow-tr-w.svg") no-repeat center / 24% var(--bg2);
}
.product_list .btn_i:hover {
  color: var(--secondary);
}
.product_list .btn_i:hover::after {
  background-color: var(--secondary);
  transform: rotate(45deg);
}
.home_news .swiper_box {
  display: none;
}
.home_news .swiper_box.active {
  display: block;
}
/*** 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);
  }
}
.jst-language-switcher {
  display: none;
}
.gslide-image img {
  background-color: #fff;
}
.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  left: 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;
}
.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(../images/icon-search-w.svg) no-repeat center / contain;
  opacity: 0.42;
  filter: contrast(0) brightness(0);
}
.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(../images/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::-webkit-scrollbar {
  display: none;
}
.quote_modal .modal_content {
  width: calc(100% - 4rem);
  max-width: 76.8rem;
  margin: 5rem auto;
  overflow: visible;
  padding: 5rem;
  background-color: #2f3982;
}
.quote_modal .footer_contact .head {
  max-width: unset;
}
.quote_modal .footer_contact .head .title {
  font-size: 4rem;
  line-height: 1.25;
  font-weight: 600;
  letter-spacing: 0.025em;
}
.quote_modal .footer_contact .quote_form {
  width: 100%;
}
.quote_modal .footer_contact form {
  padding: 0;
  background-color: transparent;
}
header nav .menu>li.btn_mega_menu:hover>.sub-menu {
  display: none;
}
.btn_mega_menu .sub-menu {
  display: none;
}
.btn_mega_menu>a {
  position: relative;
}
.btn_mega_menu.mega_open>a,
.btn_mega_menu:hover>a {
  color: var(--secondary);
}
.mega_menu_overlay {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 995;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.mega_menu_overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.35s ease, visibility 0s;
}
.mega_menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 10;
  padding-top: 0.8rem;
  visibility: hidden;
  pointer-events: none;
  height: 0;
  overflow: hidden;
}
.mega_menu.active {
  visibility: visible;
  pointer-events: auto;
  height: auto;
  overflow: visible;
}
.mega_menu.is-closing {
  visibility: visible;
  pointer-events: none;
  height: auto;
  overflow: visible;
}
.mega_menu>.content {
  --mega-arrow-left: 20%;
  position: relative;
}
.mega_menu>.content::before {
  content: '';
  position: absolute;
  left: var(--mega-arrow-left);
  top: -0.9rem;
  z-index: 2;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  border-style: solid;
  border-width: 0 0.9rem 0.9rem;
  border-color: transparent transparent #fff;
  filter: drop-shadow(0 -0.2rem 0.3rem rgba(15, 23, 42, 0.06));
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.mega_menu.active>.content::before {
  opacity: 1;
  transition: opacity 0.35s ease;
}
.mega_menu_inner {
  --mega-pad-t: 3.2rem;
  --mega-pad-b: 3.6rem;
  position: relative;
  max-height: calc(100vh - 16rem - 10px);
  max-height: calc(100dvh - 16rem - 10px);
  margin-bottom: 10px;
  border-radius: 1.2rem;
  background-color: #fff;
  box-shadow: 0 1.6rem 3.2rem rgba(15, 23, 42, 0.12);
  opacity: 0;
  transform: translateY(-1.2rem);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-x: hidden;
  overflow-y: auto;
}
.mega_menu_inner::before,
.mega_menu_inner::after {
  content: '';
  position: sticky;
  left: 0;
  z-index: 5;
  display: block;
  pointer-events: none;
}
.mega_menu_inner::before {
  top: 0;
  height: calc(var(--mega-pad-t) + 1.6rem);
  margin-bottom: calc((var(--mega-pad-t) + 1.6rem) * -1);
  background: linear-gradient(to bottom, #fff 0%, #fff 42%, rgba(255, 255, 255, 0) 100%);
}
.mega_menu_inner::after {
  bottom: 0;
  height: calc(var(--mega-pad-b) + 1.6rem);
  margin-top: calc((var(--mega-pad-b) + 1.6rem) * -1);
  background: linear-gradient(to top, #fff 0%, #fff 42%, rgba(255, 255, 255, 0) 100%);
}
.mega_menu.active .mega_menu_inner {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.mega_menu_body {
  display: flex;
  gap: 0 4rem;
  padding: var(--mega-pad-t) 3.6rem var(--mega-pad-b);
}
.mega_menu_cats {
  width: 28rem;
  flex-shrink: 0;
  border-right: 1px solid var(--border);
  padding-right: 3.2rem;
}
.mega_menu_cat+.mega_menu_cat {
  border-top: 1px solid #eef1f4;
}
.mega_menu_cat .title {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.7em;
  align-items: center;
  gap: 1.2rem;
  padding: 1.5rem 0 1.5rem 1.4rem;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--title);
  transition: color 0.3s;
}
.mega_menu_cat .title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 1.4em;
  background-color: var(--secondary);
  transform: translateY(-50%) scaleY(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.mega_menu_cat .title::after {
  content: '';
  display: block;
  padding-bottom: 100%;
  background: url("../images/arrow-r-sec.svg") no-repeat center right / contain;
  opacity: 0.35;
  transition: opacity 0.3s, transform 0.3s;
}
.mega_menu_cat:not(:has(.sub)) .title {
  grid-template-columns: 1fr;
}
.mega_menu_cat:not(:has(.sub)) .title::after {
  display: none;
}
.mega_menu_cat.active .title,
.mega_menu_cat:hover .title {
  color: var(--secondary);
}
.mega_menu_cat.active .title::before {
  transform: translateY(-50%) scaleY(1);
}
.mega_menu_cat.active .title::after {
  opacity: 1;
  transform: rotate(90deg);
}
.mega_menu_cat .sub {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
  margin: 0;
  padding: 1rem 0 0 1.4rem;
}
.mega_menu_cat.active .sub {
  max-height: 32rem;
  opacity: 1;
  margin-bottom: 1.2rem;
}
.mega_menu_cat .sub li+li {
  margin-top: 1.2rem;
}
.mega_menu_cat .sub a {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #161616;
  opacity: 0.58;
  transition: opacity 0.3s, color 0.3s, transform 0.3s;
}
.mega_menu_cat .sub li:hover a,
.mega_menu_cat .sub li.active a {
  opacity: 1;
  color: var(--secondary);
}
.mega_menu_products {
  flex: 1;
  min-width: 0;
  display: grid;
  align-content: start;
}
.mega_menu_panel {
  grid-area: 1 / 1;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s;
  pointer-events: none;
}
.mega_menu_panel.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.mega_menu_head {
  margin-bottom: 2rem;
}
.mega_menu_title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--title);
  letter-spacing: 0.01em;
}
.mega_menu_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
}
.mega_menu_list a {
  display: block;
  height: 100%;
  border: 1px solid var(--border);
  border-radius: 1rem;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  background: linear-gradient(180deg, #f7f8fa 0%, #fff 48%);
}
.mega_menu_list a:hover {
  border-color: rgba(59, 130, 246, 0.35);
  box-shadow: 0 1.2rem 2.4rem rgba(15, 23, 42, 0.08);
  transform: translateY(-0.3rem);
}
.mega_menu_list a:hover img {
  transform: translate(-50%, -50%) scale(1.04);
}
.mega_menu_list .img {
  --h: 72%;
  background: linear-gradient(to bottom, #edf0f2 4%, #fff 42%, #edf0f2 78%);
}
.mega_menu_list div.img img {
  left: 50%;
  top: 50%;
  width: 78%;
  height: 78%;
  transform: translate(-50%, -50%);
  transition: transform 0.45s ease;
}
.mega_menu_list .title {
  padding: 1.4rem 1.6rem 1.6rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--title);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  min-height: 5.5rem;
}
.mega_menu_empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22rem;
  font-size: 1.6rem;
  color: var(--text);
}
/*** global css ***/

.active .cat_item div.img {
  left: 50%;
  transform: translateX(-50%);
}

.page-id-12 a{
  cursor: auto !important;
}

@media screen and (min-width:769px) and (max-width:1220px) {
  .content {
    padding: 0 3rem;
  }
  header nav .menu {
    gap: 3rem;
  }
  header nav .menu>li>a {
    font-size: 15px;
  }
}
@media screen and (min-width:769px) and (max-width:1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h1 {
    font-size: 6rem;
  }
  section.page_banner .nums li strong {
    font-size: 3rem;
  }
  section.page_banner .nums li {
    flex: 1 0 16rem;
  }
  section.landing_advantages .nums li strong {
    font-size: 3rem;
  }
  section.landing_advantages .nums li {
    flex: 1 0 16rem;
  }
  section.products_banner .nums li strong {
    font-size: 3rem;
  }
  section.products_banner .nums li {
    flex: 1 0 16rem;
  }
}
@media screen and (max-width:1024px) {
  .mega_menu,
  .mega_menu_overlay {
    display: none !important;
  }
  header .main .flex {
    transform: none;
    margin-bottom: -17px;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 8px;
  }
  header nav.active {
    pointer-events: auto;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    transform: translate(0);
  }
  header nav>.close {
    position: absolute;
    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);
    display: block;
  }
  header nav .con {
    width: min(300px, 80%);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    transform: translateX(-100%);
    background-color: #fff;
  }
  header nav .close_box {
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header nav .close_box .close {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.3s;
    border-radius: var(--radius);
    background: url('../images/close.svg') no-repeat center / 12px;
  }
  header nav .close_box .close:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .close_box+div {
    flex: 1;
    overflow: auto;
    padding: 12px 12px 30px;
  }
  header nav .menu {
    display: block;
  }
  header nav .menu>li {
    cursor: pointer;
  }
  header nav .menu>li+li {
    margin-top: 8px;
  }
  header nav .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);
    background: none;
  }
  header nav .menu>li>a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu>li.current-menu-item>a,
  header nav .menu>li.current-menu-parent>a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children {
    position: relative;
  }
  header nav .menu .menu-item-has-children>a {
    margin-right: 46px;
  }
  header nav .menu .menu-item-has-children::before,
  header nav .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 nav .menu .menu-item-has-children::after {
    background: url(../images/select.svg) no-repeat center / 12px;
  }
  header nav .menu .menu-item-has-children.active::before {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .menu .menu-item-has-children.active::after {
    transform: rotate(180deg);
  }
  header nav .sub-menu {
    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);
    width: auto;
    color: var(--title);
  }
  header nav .sub-menu>li {
    cursor: pointer;
    transform: translate(0);
  }
  header nav .sub-menu>li+li {
    margin-top: 6px;
  }
  header nav .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 nav .sub-menu>li>a:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu>li.current-menu-item>a {
    background-color: rgba(0, 0, 0, 0.05);
  }
  header nav .sub-menu .menu-item-has-children>a {
    margin-right: 42px;
  }
  header nav .sub-menu .menu-item-has-children::before,
  header nav .sub-menu .menu-item-has-children::after {
    top: 2px;
    width: 36px;
    height: 36px;
    background-size: 10px;
  }
  header nav .sub-menu .sub-menu {
    margin: 10px 0;
  }
  header nav .sub-menu .sub-menu>li+li {
    margin-top: 0;
  }
  header nav .sub-menu .sub-menu>li>a {
    font-size: 12px;
  }
  header .btns .btn_menu {
    display: block;
  }
}
@media screen and (min-width:769px) and (max-width:896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .tcon h1 {
    font-size: 5rem;
  }
  .tcon h2 {
    font-size: 4rem;
  }
  .footer_contact .quote_form.img_bg>img {
    top: 50%;
  }
  footer .main .foot_subscribe {
    margin-left: 0;
  }
}
@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,
  .btn_l {
    font-size: 15px;
    line-height: 40px;
    padding: 0 20px;
    gap: 8px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    transform: translate(0);
    pointer-events: all;
    margin-top: 30px;
    padding: 0 20px;
  }
  .tcon>em {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .tcon h1 {
    font-size: 38px;
    line-height: 1.3;
  }
  .tcon h2 {
    font-size: 30px;
    line-height: 1.3;
  }
  .tcon .desc,
  .tcon p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  div.head.flex .tcon {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_l {
    margin: 0;
  }
  div.head h2 {
    padding: 0;
  }
  div.head .desc,
  div.head p {
    margin-top: 10px;
  }
  div.head p+p {
    margin-top: 10px;
  }
  div.head .btn,
  div.head .btn_l {
    font-size: 15px;
    line-height: 40px;
    padding: 0 20px;
    margin-top: 20px;
    gap: 8px;
  }
  div.head .btns {
    gap: 14px;
    margin-top: 20px;
  }
  div.head .btns .btn,
  div.head .btns .btn_l {
    margin: 0;
  }
  header {
    top: 0;
  }
  header .main .flex {
    margin-bottom: 0;
  }
  header .main {
    padding: 0;
  }
  header .logo {
    gap: 10px;
  }
  header .logo img {
    height: 50px;
  }
  header .logo p {
    font-size: 13px;
  }
  header .btns {
    gap: 16px;
    min-height: 64px;
  }
  header .btns .btn_icon {
    width: 40px;
    height: 40px;
  }
  footer .foot_intro {
    padding: 50px 0 20px;
  }
  footer .foot_intro .logo {
    padding-bottom: 0;
    width: 140px;
  }
  footer .foot_intro .social {
    gap: 12px;
  }
  footer .foot_intro .social a {
    width: 40px;
    height: 40px;
  }
  footer .main {
    padding: 20px 0 40px;
  }
  footer .main strong {
    font-size: 16px;
  }
  footer .main .foot_nav strong {
    margin-bottom: 16px;
  }
  footer .main .foot_nav li a {
    font-size: 14px;
  }
  footer .main .foot_nav li+li {
    margin-top: 14px;
  }
  footer .main .foot_subscribe {
    width: 100%;
    margin: 0;
    border-radius: 10px;
    padding: 20px;
  }
  footer .main .foot_subscribe strong {
    font-size: 18px;
    margin-bottom: 16px;
  }
  footer .main .foot_subscribe form {
    height: 50px;
    grid-template-columns: 1fr 50px;
    gap: 10px;
  }
  footer .main .foot_subscribe form input {
    font-size: 14px;
    padding: 0 20px;
  }
  footer .bottom {
    padding: 20px 0;
    font-size: 13px;
  }
  footer .bottom a {
    font-size: 14px;
  }
  footer .bottom ul {
    gap: 14px 0;
  }
  footer .bottom ul li::before {
    height: 10px;
    margin: 0 10px;
  }
  .page_applications {
    padding: 50px 0;
  }
  .page_applications .flex .head {
    padding: 0;
  }
  .page_applications .page_applications_swiper {
    margin-top: 30px;
  }
  .page_applications .item {
    border-radius: 10px;
  }
  .page_applications .item .info {
    padding: 20px;
  }
  .page_applications .item .order {
    font-size: 16px;
  }
  .page_applications .item .title {
    font-size: 20px;
    padding-bottom: 0;
  }
  .page_applications .item .desc {
    display: grid;
    font-size: 14px;
    line-height: 1.5;
    padding-top: 10px;
  }
  .page_applications .item .desc .btn_c {
    width: 40px;
    height: 40px;
    margin-bottom: 0;
  }
  .page_news {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_news .nav {
    margin-top: 20px;
  }
  .page_news .page_news_swiper {
    overflow: unset;
    margin-top: 30px;
  }
  .page_faqs {
    padding: 50px 0;
  }
  .page_faqs .head {
    padding: 0;
    max-width: unset;
  }
  .page_faqs .faq_list .faq_item {
    border-radius: 10px;
    margin-bottom: 14px;
  }
  .page_faqs .faq_list .faq_item.active .question {
    padding-top: 14px;
  }
  .page_faqs .faq_list .question {
    font-size: 18px;
    padding: 14px 20px;
  }
  .page_faqs .faq_list .answer {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
    padding: 0 20px 20px;
  }
  .footer_contact {
    padding: 40px 0;
    border-radius: 10px;
    width: calc(100% - 40px);
  }
  .footer_contact .head {
    padding: 0;
  }
  .footer_contact form {
    padding: 20px;
    --rd: 10px;
    gap: 14px 0;
  }
  .footer_contact form input,
  .footer_contact form select,
  .footer_contact form textarea {
    height: 46px;
    padding: 0 20px;
  }
  .footer_contact form textarea {
    height: 120px;
    padding: 14px 20px;
  }
  .footer_contact form span:has(.btn) {
    margin-top: 0;
  }
  .page_products {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_products .flex .head {
    padding: 0;
  }
  .page_products .page_products_swiper {
    margin-top: 30px;
    overflow: unset;
  }
  .page_products .btn_l {
    margin-top: 30px;
  }
  .page_banner {
    padding-top: 100px;
  }
  .page_banner .flex {
    min-height: unset;
    padding: 30px 0;
  }
  .page_banner .head {
    padding: 0;
  }
  .page_banner .nums {
    padding: 20px 0;
  }
  .page_banner .nums ul {
    gap: 14px;
  }
  .page_banner .nums li {
    padding: 14px;
    padding-bottom: 0;
    max-width: 234px;
  }
  .page_banner .nums li strong {
    font-size: 30px;
  }
  .page_banner .nums li p {
    font-size: 14px;
    margin-top: 8px;
  }
  .nav_wrap .nav_list {
    width: calc(100% + 40px);
    padding: 0 20px;
    margin: 0 -20px;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
  }
  .nav_wrap .nav_list::-webkit-scrollbar {
    display: none;
  }
  .nav_wrap .nav_list li {
    flex-shrink: 0;
  }
  .nav_wrap .nav_list .nav_item {
    white-space: nowrap;
    padding: 0.7em 1.2em;
  }
  p.center:has(button.btn_l) {
    margin-top: 40px;
    min-height: 42px;
  }
  p.center:has(button.btn_l) .btn_l {
    min-width: 120px;
  }
  .cat_item {
    border-radius: 10px;
    padding: 0 20px 20px;
  }
  .cat_item .info .title {
    font-size: 20px;
  }
  .cat_item .info .desc {
    line-height: 1.5;
    margin-top: 10px;
  }
  .cat_item .info .btn_i {
    font-size: 14px;
    margin-top: 20px;
    gap: 8px;
  }
  .news_list .img {
    border-radius: 10px;
  }
  .news_list .title {
    font-size: 20px;
    margin-top: 10px;
  }
  .news_list .btn_i {
    font-size: 14px;
    margin-top: 20px;
  }
  .product_list a {
    border-radius: 10px;
  }
  .product_list .img {
    border-radius: 10px 10px 0 0;
  }
  .product_list .info .cat {
    font-size: 12px;
  }
  .product_list .info .title {
    font-size: 16px;
  }
  .product_list .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 5px;
  }
  .product_list .info .options {
    font-size: 12px;
  }
  .product_list .btn_i {
    font-size: 14px;
  }
  /*** 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;
  }
  .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;
  }
  .quote_modal .modal_content {
    padding: 30px 20px;
  }
  .quote_modal .footer_contact .head .title {
    font-size: 30px;
  }
  .quote_modal .footer_contact .quote_form {
    margin-top: 30px;
  }
  /*** global css ***/
}
@media screen and (max-width:576px) {
  header .logo {
    transform: scale(1);
  }
  header .logo p {
    position: absolute;
    font-size: 1px;
    opacity: 0;
    width: 1px;
    height: 1px;
    white-space: nowrap;
  }
  header .logo img {
    height: 40px;
  }
  .page_applications .head {
    flex: unset;
  }
  .page_faqs .faqs {
    width: 100%;
  }
  .page_faqs .faqs .question {
    font-size: 16px;
  }
  .footer_contact .quote_form {
    width: 100%;
  }
  .footer_contact .quote_form .col-2 {
    width: 100%;
  }
  footer .foot_intro {
    flex-direction: column;
    align-items: center;
  }
  footer .foot_intro .social {
    width: 100%;
    justify-content: space-around;
  }
  footer .main {
    display: block;
  }
  footer .main .foot_nav strong {
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 0.35);
    padding: 0 22px;
    position: relative;
  }
  footer .main .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../images/icon-select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .main .foot_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .foot_nav>div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .main .foot_nav>div a {
    display: block;
  }
  footer .main .foot_nav>div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .bottom {
    flex-direction: column-reverse;
    text-align: center;
  }
  .float_btns {
    right: 20px;
    bottom: 30px;
  }
  .float_btns .float_btn {
    width: 44px;
    height: 44px;
  }
  footer #backtop {
    width: 44px;
    height: 44px;
  }
  .page_banner .nums ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .page_banner .nums ul strong {
    font-size: 24px;
  }
  .bg_mask.img.img_ct {
    top: 0;
    transform: translateX(-50%);
    height: 100%;
  }
  .bg_mask.img.img_ct img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}