* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #172a85;
  --secondary: #7cb92c;
  --green: #8cc01f;
  --blue: #1d3fae;
  --title: #101426;
  --text: #5a6178;
  --bg: #f2f5f9;
  --border: #e4e8f1;
  --dark: #041222;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 138rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 141rem;
  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);
}
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;
}
.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;
}
body {
  font-size: 1.6rem;
  color: var(--title);
  font-family: 'Inter', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
body {
  animation: fadeIn 0.4s ease-in forwards;
}
@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 {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  --h: 100%;
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_hv:hover img {
  transform: scale(1.03);
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}
.custom-popup {
  --radius: 0px;
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  z-index: 999;
  padding: 8px;
  font-size: 14px;
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: all 0.2s ease;
}
.custom-popup.show {
  opacity: 1;
  transform: scaleY(1);
}
.custom-popup.up {
  transform-origin: bottom;
}
.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: 14px;
  border: 1px solid #ccc;
  background: #fff;
  color: var(--title);
  margin-bottom: 8px;
  border-radius: calc(var(--radius) - 2px);
}
.custom-popup input.popup-input::placeholder {
  color: #666;
}
.custom-popup input.popup-input:focus {
  border-color: var(--primary);
}
.custom-popup .popup-options {
  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;
}
/* buttons: .btn (navy, arrow ↗), .btn.green, .btn_line (outline), .btn_i (text + arrow →) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  gap: 1.2rem;
  border-radius: 10rem;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 5.6rem;
  white-space: nowrap;
  background-color: var(--primary);
  padding: 0 3rem;
}
.btn::after {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  transition: all 0.3s;
  background: url(../img/arrow-tr-w.svg) no-repeat center / contain;
}
.btn:hover {
  background-color: var(--blue);
}
.btn:hover::after {
  transform: rotate(45deg);
}
.blog_list .more,
.applications_list .more,
.search_list .more,
.products_list .load_more {
  display: block;
  min-height: 5.6rem;
}
.btn.green {
  background-color: var(--secondary);
}
.btn.green:hover {
  background-color: var(--green);
}
.btn.no_arrow::after {
  display: none;
}
.btn_line {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  transition: all 0.3s;
  white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background-color: transparent;
  color: #fff;
  border-radius: 10rem;
  font-family: 'Archivo', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 5.4rem;
  padding: 0 3.4rem;
}
.btn_line:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: #fff;
}
.btn_line.dark {
  color: var(--primary);
  border-color: rgba(23, 42, 133, 0.3);
}
.btn_line.dark:hover {
  color: #fff;
  border-color: var(--primary);
  background-color: var(--primary);
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Archivo', sans-serif;
  font-size: 1.7rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--blue);
  gap: 1.4rem;
}
.btn_i::after {
  display: inline-block;
  content: '';
  width: 0.941em;
  height: 0.706em;
  transition: all 0.3s;
  background: url("../img/arrow-r-b.svg") no-repeat center / contain;
}
.btn_i:hover {
  color: var(--secondary);
}
.btn_i:hover::after {
  transform: translateX(30%);
}
/* section head: .tcon .subtitle (green dash + eyebrow) / h1 / h2 / p */
.tcon .subtitle {
  display: flex;
  align-items: center;
  gap: 1.9rem;
  color: var(--blue);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tcon .subtitle::before {
  content: '';
  display: block;
  flex-shrink: 0;
  width: 2.3rem;
  height: 2px;
  border-radius: 2px;
  background-color: var(--green);
}
.tcon.center .subtitle {
  justify-content: center;
}
.tcon h1 {
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 7.2rem;
  line-height: 1.028;
  margin-top: 2.6rem;
}
.tcon h1 em {
  position: relative;
  display: inline-block;
}
.tcon h1 em::after {
  content: '';
  position: absolute;
  left: 0.8%;
  right: -2%;
  bottom: -0.12em;
  height: 0.31em;
  pointer-events: none;
  background: url(../img/title-line.svg) no-repeat center / 100% 100%;
}
.tcon h2 {
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1.208334;
  margin-top: 1.8rem;
}
.tcon h2:first-child,
.tcon h1:first-child {
  margin-top: 0;
}
.tcon p {
  color: var(--text);
  font-size: 1.8rem;
  line-height: 2.8rem;
  margin-top: 1.6rem;
}
.tcon p + p {
  margin-top: 2.8rem;
}
.head.flex {
  gap: 3rem;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.swiper_btns {
  gap: 2.8rem;
  display: flex;
}
.swiper_btns.middle {
  justify-content: space-between;
  width: 98%;
  max-width: 171.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.swiper_btns.middle div {
  pointer-events: auto;
}
.swiper_btns.middle .swiper-button-disabled {
  pointer-events: none;
}
.swiper_btns div {
  cursor: pointer;
  width: 5.8rem;
  height: 5.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s;
  background-color: var(--primary);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 32%;
  height: 32%;
  transition: all 0.3s;
  transform: rotate(180deg);
  background: url(../img/arrow-r-w.svg) no-repeat center / contain;
}
.swiper_btns .btn_next {
  background-color: var(--secondary);
}
.swiper_btns .btn_next::after {
  transform: none;
}
.swiper_btns div:hover {
  background-color: var(--blue);
}
.swiper_btns .btn_next:hover {
  background-color: var(--green);
}
.swiper_btns .swiper-button-disabled {
  opacity: 0.4;
  pointer-events: none;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
  pointer-events: none;
}
.swiper-pagination.swiper-pagination-progressbar {
  position: static;
  max-width: 15.6rem;
  height: 3px;
  border-radius: 10rem;
  background-color: var(--border);
}
.swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  border-radius: 10rem;
  background-color: var(--secondary);
}
header {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  z-index: 996;
  will-change: transform;
  transform: translateX(-50%);
  width: calc(100% - 6rem);
  max-width: 150rem;
  transition: all 0.4s;
  border-radius: 1.5rem;
  background-color: #fff;
  box-shadow: 0 0.4rem 2.4rem rgba(16, 20, 38, 0.06);
}
header.hide {
  transform: translate(-50%, calc(-100% - 1.5rem));
}
header.sticky {
  transform: translate(-50%, 0);
}
header .logo {
  display: block;
  position: relative;
  margin-left: .9rem;
}
header .logo img {
  display: block;
  width: auto;
  height: 6.9rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header #navigation {
  flex: 1;
  display: flex;
  justify-content: center;
  padding-left: 1.3rem;
}
header #navigation .close_box {
  display: none;
}
header #navigation .menu {
  gap: 3.27rem;
  display: flex;
}
header #navigation .menu > li {
  position: relative;
  z-index: 3;
}
header #navigation .menu > li > a {
  display: block;
  position: relative;
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 8.3rem;
  transition: all 0.3s;
}
header #navigation .menu > li > a::after {
  content: '';
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 2.2rem;
  height: 2px;
  border-radius: 2px;
  transition: all 0.3s;
  background-color: var(--green);
}
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 > a:hover::after {
  left: 0;
  right: 0;
}
header #navigation .menu > li:hover > .sub-menu {
  transform: translate(0);
  pointer-events: all;
  opacity: 1;
}
header #navigation .sub-menu {
  position: absolute;
  top: calc(100% - 1rem);
  left: -2.4rem;
  padding: 0.6rem;
  transition: all 0.3s;
  transform: translateY(-1rem);
  pointer-events: none;
  opacity: 0;
  min-width: max-content;
  width: calc(100% + 4.8rem);
  border-radius: 1.2rem;
  background-color: #fff;
  box-shadow: 0 0.8rem 2.4rem rgba(16, 20, 38, 0.1);
}
header #navigation .sub-menu > li {
  position: relative;
}
header #navigation .sub-menu > li + li {
  margin-top: 0.4rem;
}
header #navigation .sub-menu > li > a {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  white-space: nowrap;
  padding: 1.2rem 1.8rem;
  transition: all 0.2s;
  border-radius: 0.8rem;
}
header #navigation .sub-menu > li > a:hover {
  color: var(--primary);
  background-color: var(--bg);
}
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: 1rem;
}
header .btns {
  gap: 3.5rem;
  display: flex;
  align-items: center;
  min-height: 8.3rem;
}
header .btn_search {
  width: 18px;
  height: 18px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
header .btn_lang {
  display: none;
}
header .btn_menu {
  display: none;
}
header .btn_contact {
  line-height: 5.2rem;
}
header > .content {
  max-width: unset;
  padding: 0 6rem 0 5.1rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* page_partners: logo rows (parts/page-partners.php) */
.page_partners {
  overflow: hidden;
  padding: 12.6rem 0 12.8rem;
  background-color: var(--bg);
}
.page_partners .head {
  max-width: 64rem;
  margin: 0 auto;
}
.page_partners .head p {
  max-width: 50rem;
  margin: 1.6rem auto 0;
}
.page_partners .rows {
  margin-top: 7.4rem;
}
.page_partners .row {
  display: flex;
  width: max-content;
  animation: marquee 60s linear infinite;
}
.page_partners .row + .row {
  margin-top: 2.4rem;
  margin-left: -7.4rem;
  animation-direction: reverse;
}
.page_partners .row:hover {
  animation-play-state: paused;
}
.page_partners .row li {
  flex-shrink: 0;
  width: 21.2rem;
  margin-right: 2.6rem;
}
.page_partners .row .img {
  height: 10rem;
  padding: 1.6rem 2.8rem;
  border-radius: 1.6rem;
  border: 1px solid var(--border);
  background-color: #fff;
  transition: all 0.3s;
}
.page_partners .row .img:hover {
  box-shadow: 0 1rem 3rem rgba(23, 42, 133, 0.08);
}
/* page_cta: "Start now" banner before the footer (parts/page-cta.php) */
.page_cta {
  position: relative;
  padding: 0 0 4.4rem;
  background: linear-gradient(180deg, transparent 50%, #fff 50%);
}
.page_cta.bg_gray {
  background: linear-gradient(180deg, var(--bg) 50%, #fff 50%);
}
.page_cta .cta_box {
  position: relative;
  z-index: 2;
  overflow: hidden;
  width: calc(100% - 6rem);
  max-width: 168.2rem;
  margin: 0 auto;
  border-radius: 3.2rem;
  background-image: linear-gradient(120deg, #1e44be 0%, #132c86 100%);
}
.page_cta .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  min-height: 37.2rem;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.page_cta .tcon {
  position: relative;
  z-index: 2;
  max-width: 60rem;
}
.page_cta .tcon .subtitle {
  color: #7fa3ff;
}
.page_cta .tcon h2 {
  color: #fff;
}
.page_cta .tcon p {
  color: #fff;
  margin-top: 2.4rem;
}
.page_cta .rings {
  position: absolute;
  right: -8.8rem;
  top: -13.2rem;
  width: 71rem;
  height: 71rem;
  pointer-events: none;
}
.page_cta .rings svg {
  display: block;
  width: 100%;
  height: 100%;
}
.page_cta .btn {
  position: relative;
  z-index: 2;
  margin-right: 0.2rem;
}
footer {
  padding: 7.2rem 0 0;
  background-color: #fff;
}
footer .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}
footer .logo {
  display: block;
  position: relative;
}
footer .logo img {
  display: block;
  width: 26.2rem;
  height: auto;
}
footer .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .foot_follow ul {
  gap: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 4.2rem;
}
footer .foot_follow a {
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  overflow: hidden;
  text-indent: -999px;
  border-radius: 50%;
  transition: all 0.3s;
  background: no-repeat center / 2.4rem #f6f7f9;
}
footer .foot_follow a:hover {
  background-color: var(--secondary);
  transform: translateY(-3px);
}
footer .foot_follow .linkedin a {
  background-image: url(../img/social-linkedin.svg);
}
footer .foot_follow .whatsapp a {
  background-image: url(../img/social-whatsapp.svg);
}
footer .foot_follow .facebook a {
  background-image: url(../img/social-facebook.svg);
}
footer .foot_follow .youtube a {
  background-image: url(../img/social-youtube.svg);
}
footer .foot_follow .instagram a {
  background-image: url(../img/social-instagram.svg);
}
footer .mid {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 6.2rem 0 12.4rem;
}
footer .foot_navs {
  flex: 1;
  display: grid;
  gap: 4rem 2rem;
  grid-template-columns: 34.2rem 27.5rem 1fr;
}
footer strong {
  display: block;
  color: var(--primary);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
footer .foot_nav li + li {
  margin-top: 1.4rem;
}
footer .foot_nav a {
  display: inline-block;
  vertical-align: top;
  color: var(--text);
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 2rem;
  transition: all 0.3s;
}
footer .foot_nav a:hover {
  color: var(--primary);
}
footer .foot_nav button {
  display: block;
  max-width: max-content;
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.7rem;
  transition: all 0.3s;
  margin-top: 1.4rem;
  background-color: transparent;
}
footer .foot_nav button:hover {
  color: var(--primary);
}
footer .foot_subscribe {
  width: 45.3rem;
  margin-right: 0.2rem;
}
footer .foot_subscribe form {
  gap: 1.7rem;
  display: flex;
  position: relative;
}
footer .foot_subscribe input {
  flex: 1;
  min-width: 0;
  height: 5.6rem;
  color: var(--title);
  font-weight: 500;
  font-size: 1.7rem;
  padding: 0 2.4rem;
  border-radius: 10rem;
  transition: all 0.3s;
  border: 1px solid rgba(90, 97, 120, 0.5);
  background-color: #fff;
}
footer .foot_subscribe input::placeholder {
  color: var(--text);
}
footer .foot_subscribe input:focus {
  border-color: var(--primary);
}
footer .foot_subscribe button {
  flex-shrink: 0;
  width: 5.6rem;
  height: 5.6rem;
  overflow: hidden;
  text-indent: -999px;
  border-radius: 50%;
  transition: all 0.3s;
  background: url(../img/icon-mail-w.svg) no-repeat center / 2.4rem var(--primary);
}
footer .foot_subscribe button:hover {
  background-color: var(--secondary);
}
footer .bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem 3rem;
  flex-wrap: wrap;
  padding: 2.2rem 0 3.4rem;
  font-size: 1.437rem;
}
footer .copyright {
  color: var(--title);
  padding-left: 0.3rem;
}
footer .bot ul {
  gap: 1.2rem;
  display: flex;
  flex-wrap: wrap;
}
footer .bot ul li {
  gap: 1.2rem;
  display: flex;
  align-items: center;
}
footer .bot ul li::after {
  content: '';
  display: block;
  width: 1px;
  height: 1.3rem;
  background-color: rgba(90, 97, 120, 0.3);
}
footer .bot ul li:last-child::after {
  display: none;
}
footer .bot ul a {
  display: block;
  color: #1c1c1c;
  transition: all 0.3s;
}
footer .bot ul a:hover {
  color: var(--primary);
}
.back_top {
  position: fixed;
  right: 2.6rem;
  bottom: 2.6rem;
  z-index: 99;
  width: 4.8rem;
  height: 4.8rem;
  overflow: hidden;
  text-indent: -999px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(1rem);
  transition: all 0.3s;
  background: url(../img/arrow-up-w.svg) no-repeat center / 1.2rem var(--primary);
}
.back_top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back_top:hover {
  background-color: var(--secondary);
}

/*** 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);
  }
}

div.jst-language-switcher {
  display: none;
}

.wpcf7 form.wpcf7-form .wpcf7-spinner {
  width: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
}
.wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  line-height: 1.5;
  margin: -2rem 0 1.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;
}

.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: 72rem;
  margin: 5rem auto;
  padding: 3.2rem 4rem 4.4rem;
  border-radius: 2rem;
  border: 1px solid #e3e8f2;
  background: #fff;
  box-shadow: 0 2rem 4rem rgba(16, 20, 38, 0.18);
}
.quote_modal .head .title {
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 4rem;
}
.quote_modal .head .desc {
  margin-top: 1.2rem;
  color: var(--text);
  font-size: 1.6rem;
  line-height: 2.6rem;
}
.quote_modal form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3.2rem;
}
.quote_modal form > span {
  display: block;
  width: 100%;
}
.quote_modal form > .title {
  display: none;
}
.quote_modal form > .col2 {
  width: calc(50% - 1rem);
}
.quote_modal form label {
  display: block;
}
.quote_modal form .label,
.quote_modal form .wpcf7-quiz-label {
  color: var(--title);
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2rem;
  margin-bottom: 1.2rem;
}
.quote_modal form .label i {
  color: var(--title);
}
.quote_modal form .quiz {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 0.8rem;
}
.quote_modal form .quiz > .label {
  width: auto;
}
.quote_modal form .quiz .wpcf7-form-control-wrap,
.quote_modal form .quiz .wpcf7-form-control-wrap > label {
  display: contents;
}
.quote_modal form .quiz .wpcf7-quiz,
.quote_modal form .quiz .wpcf7-not-valid-tip {
  flex-basis: 100%;
}
.quote_modal form .wpcf7-form-control-wrap {
  display: block;
}
.quote_modal form input[type="text"],
.quote_modal form input[type="email"],
.quote_modal form input[type="tel"],
.quote_modal form .wpcf7-quiz,
.quote_modal form select,
.quote_modal form textarea {
  display: block;
  width: 100%;
  height: 5.2rem;
  padding: 0 1.8rem;
  color: var(--title);
  font-size: 1.6rem;
  border-radius: 0.6rem;
  border: 1px solid #ddd;
  background-color: #fff;
  transition: border-color 0.3s;
  margin-bottom: 2rem;
}
.quote_modal form select {
  padding-right: 4.4rem;
  background: #fff url(../img/icon-select.svg) no-repeat right 1.8rem center / 1.2rem;
}
.quote_modal form select:invalid {
  color: #9aa0b0;
}
.quote_modal form textarea {
  height: 12rem;
  padding: 1.4rem 1.8rem;
  line-height: 2.4rem;
}
.quote_modal form input:focus,
.quote_modal form select:focus,
.quote_modal form textarea:focus {
  border-color: var(--primary);
}
.quote_modal form .wpcf7-acceptance .wpcf7-list-item {
  display: block;
  margin: 0;
}
.quote_modal form .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  cursor: pointer;
}
.quote_modal form .wpcf7-acceptance input {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  margin-top: 0.2rem;
  border: 1.5px solid var(--secondary);
  background: #fff no-repeat center / 70%;
  transition: all 0.3s;
}
.quote_modal form .wpcf7-acceptance input:checked {
  background-color: var(--secondary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 12' fill='none' stroke='%23fff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m1.5 6.2 4.2 4.1L14.5 1.7'/%3E%3C/svg%3E");
}
.quote_modal form .wpcf7-list-item-label {
  color: #5a6778;
  font-size: 1.4rem;
  line-height: 2.2rem;
}
.quote_modal form .wpcf7-list-item-label a {
  color: var(--primary);
  text-decoration: underline;
}
.quote_modal form .send {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  width: 100%;
  margin-top: 2.4rem;
  border-radius: 10rem;
  color: #fff;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 5.6rem;
  cursor: pointer;
  transition: background-color 0.3s;
  background-color: var(--primary);
}
.quote_modal form .send::after {
  content: '';
  display: block;
  width: 1rem;
  height: 1rem;
  transition: transform 0.3s;
  background: url(../img/arrow-tr-w.svg) no-repeat center / contain;
}
.quote_modal form .send:hover {
  background-color: var(--blue);
}
.quote_modal form .send:hover::after {
  transform: rotate(45deg);
}
.quote_modal form .send input {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}
.quote_modal form .wpcf7-spinner {
  position: absolute;
  right: 2rem;
  margin: 0;
}
.quote_modal form .wpcf7-response-output {
  width: 100%;
  margin: 1.6rem 0 0;
  font-size: 1.4rem;
}

.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(4, 18, 34, 0.5);
  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.92);
  backdrop-filter: blur(10px) saturate(1.85);
  -webkit-backdrop-filter: blur(48px) saturate(1.85);
  border-radius: 1.6rem;
  box-shadow: 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, 97, 120, 0.6);
}
.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, 97, 120, 0.8);
}
.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);
}

footer form.sytech-newsletter-subscription > span:first-child {
  flex: 1;
}
footer .foot_subscribe input {
  width: 100%;
}

.gslide-image img {
  background-color: #fff;
}
/*** global css ***/

@keyframes about_banner_marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes oem_banner_marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media screen and (min-width: 769px) and (max-width: 1440px) {
  header > .content {
    padding: 0 4rem;
  }
  header #navigation {
    padding-left: 4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header #navigation .menu {
    gap: 2.4rem;
  }
  header #navigation .menu > li > a {
    font-size: 15px;
  }
  header .btns {
    gap: 2.4rem;
  }
  header .btn_contact {
    font-size: 15px;
    padding: 0 2rem;
  }
  footer .foot_navs {
    grid-template-columns: repeat(3, 1fr);
  }
  footer .foot_subscribe {
    width: 36rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .tcon h1 {
    font-size: 6rem;
  }
  .tcon h2 {
    font-size: 4.2rem;
  }
  footer .mid {
    flex-direction: column;
  }
  footer .foot_navs {
    width: 100%;
  }
  footer .foot_subscribe {
    width: 100%;
    max-width: 50rem;
  }
}
@media screen and (max-width: 1024px) {
  header {
    width: unset;
    left: 3rem;
    right: 3rem;
    top: 2rem;
    will-change: unset;
    transform: unset;
  }
  header.hide {
    transform: unset;
    top: -12rem;
  }
  header.sticky {
    transform: unset;
    top: 2rem;
  }
  header > .content {
    padding: 0 3rem;
  }
  header #navigation {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    justify-content: flex-start;
    --radius: 8px;
    margin: 0;
    padding: 0;
  }
  header #navigation.active {
    pointer-events: all;
  }
  header #navigation.active .close {
    opacity: 1;
  }
  header #navigation.active .con {
    transform: translate(0);
  }
  header #navigation > .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 #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 {
    display: block;
    padding: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  header #navigation .close_box .close {
    display: block;
    width: 40px;
    height: 40px;
    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::after {
    display: none;
  }
  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 {
    position: static;
    padding: 10px;
    margin: 12px 0;
    box-shadow: none;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(0, 0, 0, 0.02);
    width: unset;
  }
  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 .btns .btn_menu {
    display: block;
    width: 23px;
    height: 23px;
    overflow: hidden;
    text-indent: -999px;
    background: url(../img/nav-btn.svg) no-repeat center / contain;
  }
  header .btns {
    gap: 2.4rem;
  }
}
@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: 3.6rem;
  }
}
@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: #8b93a7;
  }
}
@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;
    gap: 8px;
  }
  .blog_list .more,
  .applications_list .more,
  .search_list .more,
  .products_list .load_more {
    min-height: 42px;
  }
  .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
  }
  .btn_i {
    font-size: 14px;
    gap: 8px;
  }
  .swiper_btns {
    gap: 14px;
  }
  .swiper_btns div {
    width: 40px;
    height: 40px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock),.no_static) {
    position: static;
    width: 100%;
    max-width: unset;
    justify-content: flex-end;
    transform: translate(0);
    pointer-events: all;
    margin-top: 30px;
    padding: 0 20px;
  }
  .swiper-pagination.swiper-pagination-progressbar {
    max-width: 100px;
  }
  .tcon .subtitle {
    font-size: 12px;
    gap: 10px;
  }
  .tcon .subtitle::before {
    width: 18px;
  }
  .tcon h1 {
    font-size: 30px;
    line-height: 1.2;
    margin-top: 14px;
  }
  .tcon h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 10px;
  }
  .tcon .desc,
  .tcon p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 10px;
  }
  .tcon p + p {
    margin-top: 10px;
  }
  .head.flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  div.head .btn,
  div.head .btn_line,
  div.head .btn_i {
    margin-top: 0;
  }
  header {
    top: 10px;
    left: 10px;
    right: 10px;
    border-radius: 10px;
  }
  header.hide {
    top: -100px;
  }
  header.sticky {
    top: 10px;
  }
  header > .content {
    padding: 0 16px;
  }
  header .logo{
    margin: 0;
  }
  header .logo img {
    height: 42px;
  }
  header .btns {
    gap: 18px;
    min-height: 60px;
  }
  header .btns .btn_search {
    width: 20px;
    height: 20px;
  }
  header .btns .btn_contact {
    font-size: 14px;
    line-height: 38px;
    padding: 0 16px;
  }
  .page_partners {
    padding: 50px 0 90px;
  }
  .page_partners .head {
    padding: 0 20px;
  }
  .page_partners .rows {
    margin-top: 30px;
  }
  .page_partners .row li {
    width: 130px;
    margin-right: 12px;
  }
  .page_partners .row + .row {
    margin-top: 12px;
    margin-left: -40px;
  }
  .page_partners .row .img {
    height: 64px;
    padding: 10px 16px;
    border-radius: 10px;
  }
  .page_cta {
    padding-bottom: 20px;
  }
  .page_cta .cta_box {
    width: calc(100% - 20px);
    border-radius: 16px;
  }
  .page_cta .content {
    min-height: 0;
    padding: 40px 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .page_cta .tcon p {
    margin-top: 12px;
  }
  .page_cta .tcon p br {
    display: none;
  }
  .page_cta .rings {
    width: 360px;
    height: 360px;
    right: -120px;
    top: auto;
    bottom: -140px;
    transform: none;
    opacity: 0.6;
  }
  footer {
    padding-top: 50px;
  }
  footer .top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  footer .logo img {
    width: 180px;
  }
  footer .foot_follow ul {
    margin-top: 0;
    gap: 10px;
  }
  footer .foot_follow a {
    width: 40px;
    height: 40px;
    background-size: 20px;
  }
  footer .mid {
    padding: 40px 0;
    flex-direction: column;
    gap: 40px;
  }
  footer .mid .foot_navs {
    width: 100%;
    gap: 30px 20px;
    grid-template-columns: repeat(auto-fill, minmax(min(200px, 100%), 1fr));
  }
  footer strong {
    font-size: 16px;
    margin-bottom: 14px;
  }
  footer .foot_nav li + li {
    margin-top: 12px;
  }
  footer .foot_nav a,
  footer .foot_nav button {
    font-size: 14px;
  }
  footer .foot_subscribe {
    width: 100%;
  }
  footer .foot_subscribe form {
    gap: 10px;
  }
  footer .foot_subscribe input {
    height: 46px;
    font-size: 14px;
    padding: 0 18px;
  }
  footer .foot_subscribe button {
    width: 46px;
    height: 46px;
    background-size: 20px;
  }
  footer .bot {
    padding: 20px 0 30px;
    font-size: 13px;
  }
  footer .bot ul {
    gap: 10px;
  }
  footer .bot ul li {
    gap: 10px;
  }
  footer .bot ul li::after {
    height: 10px;
  }
  .back_top {
    right: 14px;
    bottom: 14px;
    width: 40px;
    height: 40px;
  }

  /*** global css ***/
  .wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
    font-size: 12px;
    margin: -10px 0 15px;
  }
  .wpcf7 form.wpcf7-form .wpcf7-response-output {
    font-size: 14px;
    line-height: 1.5;
  }
  .quote_modal .modal_content {
    width: calc(100% - 32px);
    margin: 24px auto;
    padding: 24px 20px 28px;
    border-radius: 12px;
  }
  .quote_modal .head .title {
    font-size: 22px;
    line-height: 1.3;
  }
  .quote_modal .head .desc {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.6;
  }
  .quote_modal form {
    margin-top: 20px;
  }
  .quote_modal form > .col2 {
    width: 100%;
  }
  .quote_modal form .label,
  .quote_modal form .wpcf7-quiz-label {
    font-size: 14px;
    margin-bottom: 8px;
  }
  .quote_modal form input[type="text"],
  .quote_modal form input[type="email"],
  .quote_modal form input[type="tel"],
  .quote_modal form .wpcf7-quiz,
  .quote_modal form select,
  .quote_modal form textarea {
    height: 44px;
    font-size: 14px;
    padding: 0 14px;
    margin-bottom: 16px;
  }
  .quote_modal form select {
    padding-right: 36px;
    background-position: right 14px center;
  }
  .quote_modal form textarea {
    height: 110px;
    padding: 10px 14px;
  }
  .quote_modal form .wpcf7-acceptance label {
    gap: 10px;
  }
  .quote_modal form .wpcf7-list-item-label {
    font-size: 13px;
    line-height: 1.6;
  }
  .quote_modal form .send {
    font-size: 14px;
    line-height: 46px;
    margin-top: 8px;
  }

  .search_drawer {
    padding: max(7vh, env(safe-area-inset-top, 0px)) 16px 16px;
  }
  .search_drawer .drawer_content {
    max-width: none;
  }
  .search_drawer .search_panel {
    border-radius: 14px;
  }
  .search_drawer .search_field {
    padding: 15px 16px;
    gap: 10px;
  }
  .search_drawer .search_icon {
    width: 20px;
    height: 20px;
  }
  .search_drawer .search_field input {
    font-size: 16px;
  }
  .search_drawer .search_clear {
    width: 30px;
    height: 30px;
    background-size: 11px;
  }
  .search_drawer .search_footer {
    flex-direction: column;
    gap: 5px;
    padding: 11px 16px;
    font-size: 12px;
    display: none;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  header .btns .btn_contact {
    display: none;
  }
  footer .mid .foot_navs {
    display: block;
  }
  footer .foot_nav {
    width: 100%;
  }
  footer .foot_nav + .foot_nav {
    margin-top: 10px;
  }
  footer .foot_nav strong {
    position: relative;
    font-size: 15px;
    line-height: 46px;
    margin: 0;
    padding: 0 20px;
    border-radius: 10px;
    background-color: var(--bg);
  }
  footer .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/select.svg) no-repeat center / contain;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
  }
  footer .foot_nav.active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .foot_nav > div {
    display: none;
    padding: 14px 20px 10px;
  }
  footer .foot_nav > div a {
    display: block;
  }
  footer .bot {
    justify-content: center;
    text-align: center;
    flex-direction: column-reverse;
  }
}

.btn_mega_menu > .sub-menu,
.btn_mega_product > .sub-menu,
.btn_mega_application > .sub-menu {
  display: none;
}
.mega_overlay {
  position: fixed;
  inset: 0;
  background: rgba(16, 20, 38, 0.28);
  z-index: 990;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.mega_overlay.active {
  opacity: 1;
  visibility: visible;
}
header.mega_open {
  border-radius: 1.5rem 1.5rem 0 0;
}
header > nav.mega_menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 1px);
  z-index: 1;
  overflow: hidden;
  background: #fff;
  border: 0;
  border-radius: 0 0 1.5rem 1.5rem;
  box-shadow: 0 1.6rem 3.2rem rgba(16, 20, 38, 0.1);
}
header > nav.mega_menu > [data-id] {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0s linear 0.3s;
}
header > nav.mega_menu > [data-id].active {
  position: relative;
  top: auto;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s, visibility 0s;
}
.mega_menu .content {
  max-width: none;
  max-height: calc(100vh - 160px);
  overflow: hidden;
  padding: 2.4rem 6rem 3.2rem 5.1rem;
}
.mega_menu .mega_layout {
  display: flex;
  align-items: flex-start;
  gap: 4rem;
}
.mega_menu .mega_side {
  width: 30rem;
  flex: none;
  max-height: calc(100vh - 220px);
  overflow: auto;
}
.mega_menu .mega_side::-webkit-scrollbar {
  width: 4px;
}
.mega_menu .mega_side::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background: var(--border);
}
.mega_menu .mega_cats > li + li {
  margin-top: 0.4rem;
}
.mega_menu .mega_cats > li > a {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  position: relative;
  padding: 1rem 1.2rem;
  border-radius: 1rem;
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.2rem;
  transition: all 0.3s;
}
.mega_menu .mega_cats > li > a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.1rem;
  bottom: 1.1rem;
  width: 2px;
  border-radius: 2px;
  background: var(--green);
  opacity: 0;
  transition: opacity 0.3s;
}
.mega_menu .mega_cats > li.active > a,
.mega_menu .mega_cats > li:hover > a {
  color: var(--primary);
  background: var(--bg);
}
.mega_menu .mega_cats > li.active > a::before {
  opacity: 1;
}
.mega_menu .mega_cats .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 3.6rem;
  height: 3.6rem;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #fff;
}
.mega_menu .mega_cats .ico img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mega_menu .mega_cats .name {
  min-width: 0;
}
.mega_menu .mega_sub {
  margin: 0.2rem 0 0.4rem 4.8rem;
}
.mega_menu .mega_sub a {
  display: block;
  padding: 0.5rem 0;
  color: var(--text);
  font-family: 'Archivo', sans-serif;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 2rem;
  transition: color 0.3s;
}
.mega_menu .mega_sub a:hover {
  color: var(--primary);
}
.mega_menu .mega_all {
  margin: 3rem 0 0 1.2rem;
}
.mega_menu .mega_main {
  position: relative;
  flex: 1;
  min-width: 0;
}
.mega_menu .mega_cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin: 0;
  padding: 0;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0s linear 0.3s;
}
.mega_menu .mega_cards.active {
  position: relative;
  top: auto;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: opacity 0.3s, visibility 0s;
}
.mega_menu .product_list .item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  min-height: 10.4rem;
  padding: 1.2rem 1.4rem;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.3s;
}
.mega_menu .product_list .item:hover {
  border-color: #fff;
  background: #fff;
  box-shadow: 0 1.2rem 2.8rem rgba(23, 42, 133, 0.08);
}
.mega_menu .product_list .img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 0.8rem;
  background: #fff;
}
.mega_menu .product_list .item:hover .img {
  background: var(--bg);
}
.mega_menu .product_list .img img {
  width: 5.6rem;
  height: 5.6rem;
}
.mega_menu .product_list .info {
  min-width: 0;
}
.mega_menu .product_list .title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: var(--title);
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.2rem;
  transition: color 0.3s;
}
.mega_menu .product_list .item:hover .title {
  color: var(--primary);
}
.mega_menu .product_list .metas {
  margin-top: 0.4rem;
}
.mega_menu .product_list .metas p {
  color: var(--text);
  font-size: 1.3rem;
  line-height: 1.8rem;
}
.mega_menu .product_list .metas strong {
  color: var(--title);
  font-weight: 600;
}
.mega_menu .product_list .more,
.mega_menu .mega_empty {
  display: none;
}
.mega_menu .mega_cards .mega_empty {
  display: block;
  grid-column: 1 / -1;
  padding: 2rem 0;
  color: var(--text);
  text-align: center;
}
.mega_menu .mega_industries {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  max-height: calc(100vh - 260px);
  overflow: auto;
}
.mega_menu .mega_industries li:nth-child(-n+7) {
  border-bottom: 1px solid #e4e8ed;
}
.mega_menu .mega_industries a {
  display: block;
  max-width: 19.28rem;
  height: 18.99rem;
  margin: 0 auto;
  padding: 4rem 1rem 0;
  text-align: center;
  border-radius: 1.291rem;
  transition: 0.3s;
}
.mega_menu .mega_industries .icon {
  display: block;
  width: 6.8rem;
  height: 6.8rem;
  margin: 0 auto;
}
.mega_menu .mega_industries .icon img {
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
}
.mega_menu .mega_industries .title {
  margin-top: 1rem;
  color: #232323;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  font-size: 1.6rem;
  line-height: 2.2rem;
  transition: 0.3s;
}
.mega_menu .mega_industries .title h3 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}
.mega_menu .mega_industries:not(:hover) li.active a,
.mega_menu .mega_industries a:hover {
  background-color: var(--primary);
  box-shadow: 0 2rem 4rem rgba(208, 211, 221, 0.45);
}
.mega_menu .mega_industries:not(:hover) li.active .icon img,
.mega_menu .mega_industries a:hover .icon img {
  filter: brightness(0) invert(1);
}
.mega_menu .mega_industries:not(:hover) li.active .title,
.mega_menu .mega_industries a:hover .title {
  color: #fff;
  text-decoration: underline;
}
.mega_menu .mega_industries + .mega_all {
  display: inline-flex;
  margin-top: 2.4rem;
}
@media screen and (min-width: 769px) and (max-width: 1440px) {
  .mega_menu .content {
    padding-right: 4rem;
    padding-left: 4rem;
  }
}
@media screen and (max-width: 1024px) {
  .mega_menu,
  .mega_overlay {
    display: none !important;
  }
}
footer .foot_subscribe .wpcf7-form-control-wrap {
  flex: 1;
  min-width: 0;
}
footer .foot_subscribe input[type="submit"] {
  flex: none;
  width: 5.6rem;
  height: 5.6rem;
  padding: 0;
  overflow: hidden;
  text-indent: -999px;
  border: 0;
  border-radius: 50%;
  background: url(../img/icon-mail-w.svg) no-repeat center / 2.4rem var(--primary);
}
footer .foot_subscribe input[type="submit"]:hover {
  background-color: var(--secondary);
}
