* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #0066ff;
  --secondary: #09142d;
  --title: #232323;
  --text: #4d4e4f;
  --bg: #f2f4f7;
  --border: #e2e8f0;
  --shadow: 0 1rem 1rem rgba(226, 231, 232, 0.55);
}
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;
}
.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: "Geist", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 15px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.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 {
  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 {
  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;
}
.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;
  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;
  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;
}
@keyframes shakeX {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translate(var(--anim));
  }
}
.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: 1rem;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 6rem;
  gap: 1.3rem;
  padding: 0 3.4rem;
  --anim: 20%, 0;
}
.btn::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  background: url("../img/arrow-r.svg") no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
  animation: 0.5s infinite alternate;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn:hover::after {
  filter: unset;
  transform: translateX(20%);
  animation-name: shakeX;
}
.btn_line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background-color: transparent;
  border: 1px solid #191919;
  color: var(--title);
  border-radius: 1rem;
  font-weight: 600;
  font-size: 1.7rem;
  line-height: 6.1rem;
  gap: 2.1rem;
  padding: 0 3.45rem;
  --anim: 100%, 0;
}
.btn_line::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  width: 0.8rem;
  height: 0.8rem;
  background-color: var(--primary);
  border-radius: 50%;
  transition: all 0.3s;
  animation: 0.5s infinite alternate;
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_line:hover::after {
  background-color: #fff;
  animation-name: shakeX;
}
.btn_line.full {
  line-height: 6rem;
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_line.full::after {
  background-color: #fff;
}
.btn_line.full:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn_line.full:hover::after {
  background-color: var(--primary);
}
.btn_i {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.7rem;
  line-height: normal;
  font-weight: 600;
  color: var(--primary);
  gap: 0.9rem;
  --anim: 20%, 0;
}
.btn_i::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  background: url("../img/arrow-r2.svg") no-repeat center / contain;
  transition: all 0.3s;
  animation: 0.5s infinite alternate;
  margin-top: 1px;
}
.btn_i:hover::after {
  animation-name: shakeX;
}
.swiper_btns {
  gap: 2.9rem;
  display: flex;
}
.swiper_btns div {
  width: 6.5rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid var(--title);
  background-color: var(--title);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / 30.2%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: #fff;
  border-color: #e1e1e1;
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 164.7rem;
  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;
}
.head.white {
  color: #fff;
}
.head.white .subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}
.head.white p,
.head.white .desc {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  letter-spacing: 0.013rem;
}
.head.bn p,
.head.bn .desc {
  font-size: 2rem;
  line-height: 1.5;
}
.head.bn.white p,
.head.bn.white .desc {
  letter-spacing: 0.015rem;
}
.head.center p,
.head.center .desc {
  margin-left: auto;
  margin-right: auto;
}
.head .subtitle {
  display: inline-grid;
  grid-template-columns: 1.3rem 1fr;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: normal;
  color: rgba(35, 35, 35, 0.8);
  text-transform: uppercase;
  gap: 0.7rem;
  margin-bottom: 1.7rem;
  letter-spacing: 0.06rem;
}
.head .subtitle::before {
  display: block;
  padding-bottom: 46.15384615%;
  content: '';
  background-color: var(--primary);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.head h1 {
  font-size: 5.8rem;
  line-height: 1.0862069;
  font-weight: 700;
}
.head h2 {
  font-size: 4.6rem;
  line-height: 1.30434783;
  font-weight: 600;
}
.head p,
.head .desc {
  font-size: 1.7rem;
  line-height: 2.9rem;
  color: var(--text);
}
header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  z-index: 996;
  padding: 5px 0;
  transition: all 0.3s;
  color: #fff;
}
header::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  content: '';
  background-image: linear-gradient(to bottom, #000 14%, transparent 92%);
  opacity: 0.08;
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
}
header.style,
header.sticky {
  background-color: var(--secondary);
}
header.style::before,
header.sticky::before {
  opacity: 0;
}
header.style {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header.sticky {
  position: sticky;
}
header.sticky .logo {
  align-self: center;
}
header.opt {
  top: -86px;
}
header .content {
  width: calc(100% - 4rem);
  max-width: 181.2rem;
}
header .flex {
  gap: 5.901639%;
}
header .logo {
  display: block;
  position: relative;
  align-self: flex-end;
  margin-right: 5.4%;
}
header .logo img {
  display: block;
  width: auto;
  height: 6.7528rem;
}
header .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .close {
  display: none;
}
header nav .menu {
  gap: 4.8rem;
  display: flex;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li > a {
  display: block;
  font-size: 18px;
  line-height: 42px;
  padding-top: 4px;
  transition: all 0.3s;
  font-weight: 400;
  letter-spacing: 0.026rem;
}
header nav .menu > li > a:hover {
  color: var(--primary);
}
header nav .menu > li.current-menu-item > a,
header nav .menu > li.current-menu-parent > a {
  color: var(--primary);
}
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.3s;
  transform: translateY(-10px);
  pointer-events: none;
  opacity: 0;
  min-width: 180px;
  border-radius: 5px;
  background-color: var(--secondary);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
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 .btns {
  gap: 3.5rem;
  display: flex;
  align-items: center;
  min-height: 76px;
}
header .btn_search {
  display: block;
  width: 18px;
  height: 18px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-search-w.svg) no-repeat center / contain;
}
header .btn_lang {
  display: block;
  width: 20px;
  height: 20px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/icon-lang-w.svg) no-repeat center / contain;
}
header .btn_menu {
  display: none;
  width: 23px;
  height: 23px;
  overflow: hidden;
  text-indent: -999px;
  background: url(../img/nav-btn.svg) no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
header .btn {
  display: inline-block;
  font-size: 18px;
  line-height: 52px;
  padding: 0 3.3rem;
  min-width: unset;
  margin-left: 1.5rem;
  margin-top: 2px;
}
header .btn::after {
  display: none;
}
footer {
  position: relative;
  color: #0c0c0c;
  z-index: 2;
}
footer .float {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: -9.7463284%;
  pointer-events: none;
  overflow: hidden;
}
footer .float .content {
  height: 100%;
}
footer .float .float_bls {
  position: static;
}
footer .float .float_bls ul {
  position: static;
}
footer .float li {
  position: absolute;
  clip-path: polygon(4.1% 55.7%, 100% 0, 94.12% 45.5%, 0 100%);
}
footer .float li:nth-child(1) {
  width: 15.8095214%;
  padding-bottom: 6.26882%;
  left: -18.1428571%;
  top: 12.0737226%;
}
footer .float li:nth-child(2) {
  width: 13.2380929%;
  padding-bottom: 5.24919%;
  left: -13.2857143%;
  top: 14.3851582%;
}
footer .float li:nth-child(3) {
  width: 15.8095214%;
  padding-bottom: 6.26882%;
  right: -19%;
  top: 0;
}
footer .float li:nth-child(4) {
  width: 13.2380929%;
  padding-bottom: 5.24919%;
  right: -13.7142857%;
  top: 5.4744526%;
}
footer .main {
  padding: 21.7rem 0 9.4rem;
}
footer .main strong {
  display: block;
  font-size: 2rem;
  font-weight: 500;
  text-transform: uppercase;
}
footer .main .flex {
  gap: 5rem 2rem;
}
footer .main .foot_intro {
  margin-top: -7.1rem;
  margin-right: 1.9%;
}
footer .main .foot_intro .logo {
  display: block;
  position: relative;
  max-width: 29.6rem;
}
footer .main .foot_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .main .foot_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .main .foot_intro .social {
  margin-top: 5.9rem;
}
footer .main .foot_intro .connect {
  margin-top: 4.1rem;
}
footer .main .foot_intro .connect li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 2.8rem;
}
footer .main .foot_intro .connect li::before {
  content: '';
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background: no-repeat center left / contain;
  position: absolute;
  left: 0;
  top: 0.4rem;
}
footer .main .foot_intro .connect li a {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 600;
  vertical-align: top;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .main .foot_intro .connect li a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .foot_intro .connect li a + a {
  margin-top: 1.1rem;
}
footer .main .foot_intro .connect li .label {
  opacity: 0.68;
  margin-top: 0.8rem;
}
footer .main .foot_intro .connect li + li {
  margin-top: 3.2rem;
}
footer .main .foot_intro .connect .phone::before {
  background-image: url(../img/icon-phone.svg);
}
footer .main .foot_intro .connect .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .main .foot_nav strong {
  margin-bottom: 1.9rem;
}
footer .main .foot_nav li + li {
  margin-top: 1.8rem;
}
footer .main .foot_nav li a {
  font-size: 1.8rem;
  color: #515151;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .main .foot_nav li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .foot_link {
  width: 30rem;
}
footer .main .foot_link strong {
  margin-bottom: 2.4rem;
}
footer .main .foot_link .menu {
  gap: 1.5rem;
  display: grid;
  margin-right: -1px;
}
footer .main .foot_link .menu a {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 2.2rem;
  transition: all 0.3s;
  gap: 1rem;
  border-radius: 1rem;
  font-size: 1.7rem;
  line-height: 3rem;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.15);
  padding: 1.6rem 2rem 1.5rem;
  min-height: 5.8rem;
}
footer .main .foot_link .menu a::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: no-repeat top right / contain;
}
footer .main .foot_link .menu a:hover {
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary);
}
footer .main .foot_link .menu a:hover::after {
  filter: contrast(0) brightness(2);
}
footer .main .foot_link .menu .contact a::after {
  background-image: url("../img/icon-phone-line.svg");
}
footer .main .foot_link .menu .download a::after {
  background-image: url("../img/icon-download.svg");
  background-size: 90.91%;
}
footer .bottom {
  padding: 3.2rem 0;
}
footer .bottom p,
footer .bottom a {
  font-size: 1.437rem;
}
footer .bottom a {
  opacity: 0.68;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .bottom a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
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.1rem;
  background-color: #0c0c0c;
  opacity: 0.15;
  display: inline-block;
  content: '';
  margin: 0 1.6rem;
}
footer .bottom ul li:first-child::before {
  display: none;
}
footer #backtop {
  position: fixed;
  z-index: 99;
  right: 3.6rem;
  bottom: 2.8rem;
  width: 4.9rem;
  height: 4.9rem;
  border-radius: 50%;
  display: block;
  background: url("../img/arrow-top-w.svg") no-repeat center / 20.41% var(--primary);
  transition: all 0.3s;
  opacity: 0;
  cursor: pointer;
  transform: translateY(100%);
}
footer #backtop.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
footer #backtop:hover {
  transform: scale(1.1);
}
.page_nums {
  background-color: var(--secondary);
  color: #fff;
  padding: 7.8rem 0 6.9rem;
}
.page_nums .nums {
  overflow: hidden;
}
.page_nums .nums ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: -1px;
  gap: 3rem 0;
}
.page_nums .nums li {
  text-align: center;
  flex: 1;
  max-width: 36rem;
  position: relative;
  padding: 0 1rem;
}
.page_nums .nums li::before {
  position: absolute;
  width: 1px;
  height: 52.381%;
  background-color: #fff;
  opacity: 0.15;
  content: '';
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.page_nums .nums .wrap {
  font-size: 6rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}
.page_nums .nums .wrap i {
  font-size: 3.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-left: 0.6rem;
}
.page_nums .nums strong {
  display: block;
  font-size: 1.7rem;
  margin-top: 1.9rem;
  font-weight: 500;
  letter-spacing: 0.02rem;
}
.page_nums .nums p {
  opacity: 0.6;
  margin-top: 0.4rem;
  font-weight: 300;
  letter-spacing: 0.012rem;
}
.page_contact {
  padding: 15.4rem 0 9.7rem;
  max-width: 256rem;
  margin: 0 auto;
}
.page_contact.img_bg {
  z-index: unset;
}
.page_contact .head {
  flex: 1;
  width: 100%;
  max-width: 57rem;
  padding-top: 1.2%;
}
.page_contact .social {
  margin-top: 1.6rem;
}
.page_contact .social a {
  border: 1px solid var(--border);
  background-color: #fff;
  width: 5.6rem;
  height: 5.6rem;
}
.page_contact .btns {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 4.2rem;
  gap: 1.5rem;
}
.page_contact .connect {
  margin-top: 7.3rem;
}
.page_contact .connect li + li {
  margin-top: 2.1rem;
}
.page_contact .connect li {
  position: relative;
  padding-top: 0.4rem;
  padding-left: 8.1rem;
  padding-bottom: 0.5rem;
}
.page_contact .connect li::before {
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 0.6rem;
  border: 1px solid #e1e5eb;
  background: no-repeat center / 39% #fff;
  box-shadow: var(--shadow);
}
.page_contact .connect li .label {
  font-size: 1.4rem;
  font-weight: 300;
  opacity: 0.68;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.page_contact .connect li a {
  vertical-align: top;
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: underline transparent;
}
.page_contact .connect li a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.page_contact .connect .phone::before {
  background-image: url("../img/connect-phone.svg");
  background-size: 35%;
}
.page_contact .connect .email::before {
  background-image: url("../img/connect-email.svg");
}
.page_contact .connect .whatsapp::before {
  background-image: url("../img/connect-whatsapp.svg");
}
.page_contact .quote_form {
  width: 49.79166667%;
}
.page_contact form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-radius: 2.3rem;
  border: 1px solid #e1e5eb;
  background-color: #fff;
  box-shadow: 0 1.5rem 1.5rem rgba(203, 209, 211, 0.55);
  gap: 1.92rem 0;
  padding: 5.8577406% 6.1366806% 5.8577406% 6.5550907%;
}
.page_contact form strong {
  width: 100%;
  display: block;
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.page_contact form span {
  width: 100%;
}
.page_contact form .col-2 {
  width: 48.47512039%;
}
.page_contact form .label {
  font-size: 1.4rem;
  display: block;
  margin-bottom: 0.7rem;
}
.page_contact form input,
.page_contact form textarea {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #4f5154;
  border: 1px solid #f5f5f7;
  border-radius: 1rem;
  background-color: #f5f5f7;
  height: 5.6rem;
  padding: 0 2rem;
}
.page_contact form input::placeholder,
.page_contact form textarea::placeholder {
  color: #afafaf;
}
.page_contact form input:focus,
.page_contact form textarea:focus {
  border-color: var(--primary);
}
.page_contact form textarea {
  padding: 2.5rem 5rem 2rem 2rem;
  height: 11.5rem;
}
.page_contact form span:has(input[type=checkbox]) {
  margin-top: 0.3rem;
}
.page_contact form input[type=checkbox] {
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  border-radius: 0.6rem;
  border-color: #e5e5e5;
  vertical-align: top;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
.page_contact form input[type=checkbox]::after {
  content: '';
  display: block;
  width: 80%;
  height: 80%;
  background: url(../img/gou.svg) no-repeat center / contain;
  transition: all 0.3s;
  opacity: 0;
}
.page_contact form input[type=checkbox]:checked::after {
  opacity: 1;
}
.page_contact form input[type=checkbox] ~ span {
  vertical-align: top;
  cursor: pointer;
  line-height: 2.8rem;
  color: #4f5154;
  display: inline-block;
  width: calc(100% - 3.1rem);
  padding-left: 1.6rem;
  max-width: 58.7rem;
}
.page_contact form input[type=checkbox] ~ span a {
  color: var(--primary);
  text-decoration: underline;
  transition: all 0.3s;
}
.page_contact form input[type=checkbox] ~ span a:hover {
  text-decoration-color: transparent;
}
.page_contact form span:has(.btn) {
  margin-top: 0.3rem;
  position: relative;
}
.page_contact form .btn {
  width: 100%;
  gap: 2rem;
  --anim: 20%, -20%;
}
.page_contact form .btn::after {
  width: 2.1rem;
  height: 2.1rem;
  background-image: url("../img/icon-plane.svg");
}
.page_contact form .btn input {
  display: none;
}
.page_nav {
  background-color: var(--bg);
  padding: 1.8rem 0 2.1rem;
}
.page_faqs {
  background-color: var(--bg);
  padding: 11.8rem 0 15rem;
}
.page_faqs p {
  max-width: 74rem;
  margin-top: 2.9rem;
}
.page_faqs .faqs {
  margin: 4.5rem auto 0;
  max-width: 103.5rem;
}
.page_applications {
  padding: 14.8rem 0 15.3rem;
}
.page_applications.bg {
  background-color: var(--bg);
}
.page_applications p {
  max-width: 70.9rem;
  margin-top: 3.5rem;
}
.page_applications .page_applications_swiper {
  margin-top: 4.5rem;
  overflow: hidden;
  border-radius: 1.2rem;
}
.page_applications .page_applications_swiper .swiper-slide {
  max-width: 340px;
}
.page_applications .item {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 1.2rem;
}
.page_applications .item:hover img {
  transform: scale(1.02);
}
.page_applications .item .img {
  padding-bottom: 133.52941176%;
}
.page_applications .item .img::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  content: '';
  z-index: 2;
  pointer-events: none;
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.1) 60%);
}
.page_applications .item .info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  color: #fff;
  padding: 8.2352941% 9.4117647%;
  overflow-y: auto;
  min-height: 36.24449339%;
  max-height: 100%;
}
.page_applications .item .info .title {
  font-size: 2.025rem;
  line-height: 1.20049383;
  max-width: 24rem;
  font-weight: 600;
  letter-spacing: 0.025rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_applications .item .info .desc {
  font-size: 1.5rem;
  line-height: 1.45;
  opacity: 0.74;
  max-width: 26.2rem;
  margin-top: 1.9rem;
  font-weight: 300;
  letter-spacing: 0.012rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_faqs2 {
  padding: 14.8rem 0 15.4rem;
}
.page_faqs2.bg {
  background-color: var(--bg);
}
.page_faqs2 .head {
  width: 40%;
  max-width: 44.8rem;
}
.page_faqs2 p {
  max-width: 43.4rem;
  margin-top: 2.9rem;
}
.page_faqs2 .btn_line {
  flex-direction: row-reverse;
  --anim: 0;
  gap: 1.4rem;
  margin-top: 3.4rem;
}
.page_faqs2 .btn_line::after {
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 0;
  background: url("../img/icon-email-line.svg") no-repeat center / contain;
}
.page_faqs2 .btn_line:hover::after {
  filter: contrast(0) brightness(2);
}
.page_faqs2 .faqs {
  flex: 1;
  width: 100%;
  max-width: 87.4rem;
  padding-top: 0.4rem;
}
.page_faqs2 .faq_item .question {
  padding: 2.5rem 3.4rem 2.4rem 3rem;
}
.page_faqs2 .faq_item .answer {
  font-size: 1.691rem;
  line-height: 1.67356594;
  padding-bottom: 2.8rem;
  padding-left: 3rem;
  letter-spacing: 0.023rem;
}
.page_products {
  padding: 14.6rem 0 15.4rem;
}
.page_products p {
  max-width: 68rem;
  margin-top: 3rem;
}
.page_products .page_products_swiper {
  margin-top: 4.4rem;
  overflow: hidden;
  border-radius: 1.2rem;
}
.page_products .page_products_swiper .swiper-slide {
  max-width: 461px;
}
.page_products p.center:has(.btn_line) {
  max-width: unset;
  margin-top: 5.4rem;
}
.social {
  gap: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}
.social li.active a,
.social a:hover {
  background-color: var(--primary);
  border-color: var(--primary);
}
.social li.active a::after,
.social a:hover::after {
  filter: contrast(0) brightness(2);
}
.social a {
  opacity: 1;
  display: block;
  width: 5.5rem;
  height: 5.5rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: #f9f9f9;
}
.social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / 40%;
  transition: all 0.3s;
}
.social .facebook a::after {
  background-image: url(../img/social-facebook.svg);
}
.social .youtube a::after {
  background-image: url(../img/social-youtube.svg);
}
.social .instagram a::after {
  background-image: url(../img/social-instagram.svg);
}
.social .linkedin a::after {
  background-image: url(../img/social-linkedin.svg);
}
.breadcrumbs {
  line-height: 2rem;
  min-height: 3.9rem;
}
.breadcrumbs span {
  font-weight: 600;
  color: #2563eb;
  letter-spacing: 0.05rem;
}
.breadcrumbs span span::before {
  display: inline-block;
  content: '';
  background: url("../img/bread-nav.svg") no-repeat center / contain;
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 1rem 0 0.5rem;
}
.breadcrumbs span span:first-child::before {
  display: none;
}
.breadcrumbs span span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.breadcrumbs span a {
  letter-spacing: 0;
  color: #94a3b8;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.nav_wrap .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.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;
  border-radius: 100px;
  background-color: #fff;
  border: 1px solid var(--border);
  font-size: 1.552rem;
  font-weight: 500;
  color: #475569;
  line-height: 4.3rem;
  padding: 0 2.4rem;
}
.blog_list .active a {
  box-shadow: var(--shadow);
}
.blog_list .active a .btn_line {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.blog_list .active a .btn_line::after {
  background-color: #fff;
}
.blog_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: 1.2rem;
}
.blog_list a:hover img {
  transform: scale(1.02);
}
.blog_list .img {
  padding-bottom: 66.00877193%;
  border-radius: 1.2rem;
  margin-right: -1px;
}
.blog_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 6.59340659% 6.15384615% 6.3736264%;
}
.blog_list .metas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 1.655rem;
  color: #94a3b8;
  gap: 1.4rem;
}
.blog_list .metas .cat {
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 600;
  background-color: rgba(0, 102, 255, 0.1);
  color: var(--primary);
  line-height: 2;
  padding: 0 1.4rem;
  letter-spacing: 0.06em;
}
.blog_list .title {
  font-size: 2.2rem;
  line-height: 1.63636364;
  font-weight: 700;
  color: #0f172a;
  max-width: 31rem;
  margin-top: 1.1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: auto;
}
.blog_list .btn_line {
  margin-top: 5.5rem;
}
.faq_list .faq_item {
  position: relative;
  background-color: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  --radius: 1.2rem;
  margin-bottom: 1.4rem;
}
.faq_list .faq_item:last-child {
  margin-bottom: 0;
}
.faq_list .faq_item::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.faq_list .faq_item.active::after {
  opacity: 1;
}
.faq_list .faq_item.active .question {
  padding-top: 2.3rem;
}
.faq_list .question {
  display: grid;
  grid-template-columns: 1fr 1.7rem;
  align-items: center;
  cursor: pointer;
  font-size: 2rem;
  font-weight: 600;
  color: #0f172a;
  transition: all 0.3s;
  gap: 2rem;
  padding: 2.6rem 3.6rem 2.4rem 3.4rem;
}
.faq_list .question::after {
  display: block;
  padding-bottom: 100%;
  content: '';
  transition: all 0.3s;
  background: url("../img/icon-select.svg") no-repeat center / contain;
}
.faq_list .answer {
  display: none;
  font-size: 1.763rem;
  line-height: 1.7;
  color: #64748b;
  padding: 1px 6rem 3.2rem 3.4rem;
}
.product_list li {
  display: flex;
  flex-direction: column;
  border-radius: 1.2rem;
  border: 1px solid var(--border);
  background-color: #fff;
  padding: 0 1px;
}
.product_list li:hover img {
  transform: scale(1.02);
}
.product_list .img {
  padding-bottom: 55.92105263%;
  border-radius: 1.2rem;
  background-image: linear-gradient(to bottom, #fff 34%, #dbdbdb);
  overflow: hidden;
}
.product_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8.5526316% 5.9210526% 2.8508772%;
}
.product_list .info .text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product_list .cat {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary);
}
.product_list .title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-top: 1px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product_list .desc {
  font-size: 1.575rem;
  line-height: 1.77777778;
  color: #64748b;
  max-width: 38.2rem;
  margin-top: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: auto;
}
.product_list .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 2.5rem;
}
.product_list .tags span {
  display: inline-block;
  font-size: 1.35rem;
  line-height: 2.6rem;
  font-weight: 500;
  color: #475569;
  border-radius: 0.6rem;
  background-color: #f1f5f9;
  padding: 0 1.2rem;
}
.product_list .btns {
  border-top: 1px solid #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 1.5rem 0;
  margin-top: 3.5rem;
}
.product_list .btns .btn_quote {
  color: #64748b;
}
.product_list .btns .btn_quote::after {
  filter: contrast(0) brightness(1);
}
.product_list .btns .btn_quote:hover {
  color: var(--primary);
}
.product_list .btns .btn_quote:hover::after {
  filter: unset;
}
.active .application_item::after {
  opacity: 1;
}
.application_item {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 1px solid #ebeef3;
  border-radius: var(--radius);
  --radius: 1.2rem;
}
.application_item::after {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: '';
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: var(--radius);
  border: 2px solid var(--primary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  box-shadow: var(--shadow);
}
.application_item:hover img {
  transform: scale(1.02);
}
.application_item .img {
  border-radius: calc(var(--radius) - 2px);
  padding-bottom: 69.91150442%;
}
.application_item .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 8.8495575% 8.8495575% 7.6696165%;
}
.application_item .info .text {
  padding: 0;
  flex: 1;
}
.application_item .title {
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 600;
  color: #0b1a2e;
  max-width: 27.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.application_item .desc {
  font-size: 1.7rem;
  line-height: 2.9rem;
  color: var(--text);
  hyphens: auto;
  margin-top: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.application_item .btn_i {
  margin-top: 3.7rem;
}

/*** 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%);
}
.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;
}

div form#sytech-newsletter-subscription p.failed, form#sytech-newsletter-subscription p.success {
  border: 1px solid #fff;
}
div form#sytech-newsletter-subscription p.failed:after, div form#sytech-newsletter-subscription p.success:after {
  width: 10px;
  height: 10px;
  bottom: -6px;
  transform: rotate(45deg);
  border: 1px solid #fff;
  border-top-color: transparent;
  border-left-color: transparent;
  background-color: var(--primary);
}
div form#sytech-newsletter-subscription p.failed.active, div form#sytech-newsletter-subscription p.success.active {
  bottom: calc(100% + 10px);
}

.search_drawer {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex;
  align-items: flex-end;
  transition: all .3s;
  pointer-events: none;
}
.search_drawer.active {
  pointer-events: all;
  background-color: rgba(0, 0, 0, 0.75);
}
.search_drawer.active .drawer_content {
  transform: translateY(0);
}
.search_drawer .drawer_content {
  width: 100%;
  height: 80%;
  padding: 2rem 0;
  transition: all .3s;
  transform: translateY(100%);
  background-color: #fff;
}
.search_drawer .close {
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  position: absolute;
  bottom: 50%;
  left: 100%;
  transition: all .3s;
  transform: translateY(50%);
  filter: contrast(0) brightness(0);
  background: url(../img/close.svg) no-repeat center/contain;
}
.search_drawer .close:hover {
  transform: translateY(50%) rotate(180deg);
}
.search_drawer form {
  transition: all .3s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.search_drawer form:focus-within {
  border-bottom-color: var(--primary);
}
.search_drawer input[type="text"] {
  width: 100%;
  height: 10rem;
  display: block;
  text-align: center;
  font-size: 3.5rem;
}
.search_drawer input[type="submit"] {
  display: none;
}

.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;
  padding: 0;
  background: none;
}
.quote_modal .page_contact .quote_form {
  width: 100%;
}
/*** global css ***/

@media screen and (min-width: 769px) and (max-width: 1440px) {
  header .logo {
    align-self: center;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
  }
  header .content {
    width: 100%;
  }
  header .logo,
  header .btn {
    margin: 0;
  }
  header nav .menu > li > a {
    font-size: 16px;
  }
  header .btn {
    font-size: 16px;
    padding: 0 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .btn,
  .btn_line {
    padding: 0 2.4rem;
  }
  .page_nums .nums .wrap {
    font-size: 4rem;
  }
  .page_nums .nums .wrap i {
    font-size: 3rem;
  }
  .page_contact form textarea {
    padding: 2rem;
  }
}
@media screen and (max-width: 1024px) {
  header .content {
    width: 100%;
  }
  header .logo,
  header .btns {
    margin: 0;
    padding: 0;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    pointer-events: none;
    display: flex;
    --radius: 8px;
    color: var(--title);
  }
  header nav.active {
    pointer-events: all;
  }
  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('../img/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);
    font-weight: 500;
    letter-spacing: unset;
  }
  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(../img/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: all;
    transition: none;
    min-width: unset;
    border-radius: var(--radius);
    transform: translate(0);
    background-color: rgba(0, 0, 0, 0.02);
  }
  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 .btn_menu {
    display: block;
  }
  header .btn_search,
  header .btn_lang,
  header .btn {
    margin: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .head h1 {
    font-size: 5rem;
  }
  .head h2 {
    font-size: 4rem;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
    height: 4px;
  }
  ul::-webkit-scrollbar-thumb,
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 10px;
  }
  body {
    font-size: 1.4rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    gap: 10px;
    border-radius: 5px;
  }
  .btn::after {
    width: 12px;
    height: 12px;
  }
  .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    gap: 10px;
    border-radius: 5px;
  }
  .btn_line::after {
    width: 6px;
    height: 6px;
  }
  .btn_line.full {
    line-height: 40px;
  }
  .btn_i {
    font-size: 14px;
    gap: 8px;
  }
  .btn_i::after {
    width: 10px;
    height: 10px;
    margin-top: 0;
  }
  .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: translateX(0);
    margin-top: 30px;
    padding: 0 20px;
  }
  div.head.white p,
  div.head.white .desc {
    letter-spacing: unset;
  }
  div.head.bn p,
  div.head.bn .desc {
    font-size: 14px;
  }
  div.head.bn.white p,
  div.head.bn.white .desc {
    letter-spacing: unset;
  }
  div.head.flex .text {
    padding: 0;
  }
  div.head.flex .btn,
  div.head.flex .btn_line {
    margin: 0;
  }
  div.head .subtitle {
    grid-template-columns: 10px 1fr;
    gap: 5px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    letter-spacing: unset;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    margin-top: 12px;
  }
  div.head p + p {
    margin-top: 12px;
  }
  div.head .btn {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    gap: 10px;
    border-radius: 5px;
    margin-top: 20px;
  }
  div.head .btn::after {
    width: 12px;
    height: 12px;
  }
  div.head .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    gap: 10px;
    border-radius: 5px;
    margin-top: 20px;
  }
  div.head .btn_line::after {
    width: 6px;
    height: 6px;
  }
  div.head .btn_line.full {
    line-height: 40px;
  }
  header {
    padding: 0;
    position: sticky;
    background-color: var(--secondary);
  }
  header.opt {
    top: 0;
  }
  header::before {
    display: none;
  }
  header .logo {
    align-self: center;
  }
  header .logo img {
    height: 45px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
  }
  header .btn_search,
  header .btn_lang {
    width: 22px;
    height: 22px;
  }
  header .btn {
    line-height: 40px;
    font-size: 14px;
    padding: 0 20px;
  }
  footer .main {
    padding: 50px 0;
  }
  footer .main .flex {
    display: grid;
    align-items: unset;
    justify-content: unset;
    gap: 16px;
  }
  footer .main strong {
    font-size: 18px;
  }
  footer .main .foot_intro {
    margin: 0;
    width: 100%;
    order: -1;
  }
  footer .main .foot_intro .logo {
    max-width: 180px;
    margin: 0 auto;
  }
  footer .main .foot_intro .social {
    margin-top: 30px;
    justify-content: space-around;
  }
  footer .main .foot_intro .connect {
    margin-top: 30px;
  }
  footer .main .foot_intro .connect li + li {
    margin-top: 20px;
  }
  footer .main .foot_intro .connect li {
    padding-left: 30px;
  }
  footer .main .foot_intro .connect li::before {
    width: 16px;
    height: 16px;
    top: 5px;
  }
  footer .main .foot_intro .connect li a {
    font-size: 16px;
    line-height: 1.5;
  }
  footer .main .foot_intro .connect li a + a {
    margin-top: 0;
  }
  footer .main .foot_intro .connect li .label {
    font-size: 14px;
    margin-top: 6px;
  }
  footer .main .foot_nav {
    width: 100%;
  }
  footer .main .foot_nav strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 0.15);
    padding: 0 22px;
    position: relative;
    margin-bottom: 0;
  }
  footer .main .foot_nav strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/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: 16px 20px 20px;
  }
  footer .main .foot_nav > div li + li {
    margin-top: 14px;
  }
  footer .main .foot_nav > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .main .foot_nav > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .main .foot_link {
    width: 100%;
    order: -1;
    padding-top: 20px;
  }
  footer .main .foot_link strong {
    margin-bottom: 16px;
  }
  footer .main .foot_link .menu {
    margin: 0;
    gap: 16px;
  }
  footer .main .foot_link .menu a {
    grid-template-columns: 1fr 18px;
    font-size: 16px;
    line-height: normal;
    padding: 10px 20px;
    min-height: 48px;
    border-radius: 5px;
  }
  footer .bottom {
    padding: 20px 0;
  }
  footer .bottom .flex {
    gap: 30px;
    flex-direction: column-reverse;
  }
  footer .bottom ul {
    gap: 1rem 0;
  }
  footer .bottom ul li::before {
    height: 10px;
    margin: 0 10px;
  }
  footer .bottom p {
    font-size: 13px;
  }
  footer .bottom a {
    font-size: 14px;
  }
  footer #backtop {
    width: 40px;
    height: 40px;
    right: 20px;
    bottom: 20px;
  }
  .page_nums {
    padding: 30px 0;
  }
  .page_nums .nums ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .page_nums .nums li {
    max-width: unset;
  }
  .page_nums .nums .wrap {
    font-size: 26px;
  }
  .page_nums .nums .wrap i {
    font-size: 14px;
    margin-left: 3px;
  }
  .page_nums .nums strong {
    font-size: 14px;
    margin-top: 14px;
    letter-spacing: unset;
  }
  .page_nums .nums p {
    font-size: 13px;
    letter-spacing: unset;
    margin-top: 0;
  }
  .page_contact {
    padding: 50px 0;
  }
  .page_contact .flex {
    gap: 30px;
  }
  .page_contact .head {
    padding: 0;
    max-width: unset;
  }
  .page_contact .social {
    gap: 16px;
  }
  .page_contact .social a {
    width: 40px;
    height: 40px;
  }
  .page_contact .btns {
    margin-top: 20px;
    gap: 12px;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .page_contact .btns .btn,
  .page_contact .btns .btn_line {
    margin: 0;
  }
  .page_contact .connect {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(250px, 100%), 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  .page_contact .connect li + li {
    margin-top: 0;
  }
  .page_contact .connect li {
    padding: 0 0 0 60px;
  }
  .page_contact .connect li::before {
    width: 40px;
    height: 40px;
    border-radius: 5px;
  }
  .page_contact .connect li .label {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .page_contact .connect li a {
    font-size: 16px;
  }
  .page_contact .quote_form {
    width: 100%;
  }
  .page_contact form {
    padding: 20px;
    gap: 16px 0;
    border-radius: 10px;
  }
  .page_contact form strong {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .page_contact form .label {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .page_contact form input,
  .page_contact form textarea {
    font-size: 14px;
    height: 46px;
    border-radius: 5px;
    padding: 0 20px;
  }
  .page_contact form textarea {
    height: 120px;
    padding: 14px 20px;
  }
  .page_contact form span:has(input[type=checkbox]) {
    margin-top: 0;
  }
  .page_contact form input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .page_contact form input[type=checkbox] ~ span {
    width: calc(100% - 24px);
    padding-left: 12px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
  }
  .page_contact form span:has(.btn) {
    margin-top: 10px;
  }
  .page_contact form .btn {
    gap: 12px;
  }
  .page_contact form .btn::after {
    width: 16px;
    height: 16px;
  }
  .page_nav {
    padding: 14px 0;
  }
  .page_faqs {
    padding: 50px 0;
  }
  .page_faqs .faqs {
    margin-top: 30px;
  }
  .page_faqs2 {
    padding: 50px 0;
  }
  .page_faqs2 .head {
    width: 100%;
    max-width: unset;
  }
  .page_faqs2 .head .btn_line::after {
    width: 18px;
    height: 18px;
  }
  .page_faqs2 .faqs {
    padding: 0;
  }
  .page_faqs2 .faq_item .question {
    padding: 14px 20px;
  }
  .page_faqs2 .faq_item .answer {
    padding: 0 20px 20px;
    letter-spacing: unset;
    font-size: 14px;
    line-height: 1.5;
  }
  .page_products {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_products .page_products_swiper {
    overflow: unset;
    margin-top: 30px;
  }
  .page_products .page_products_swiper .swiper-slide {
    max-width: 322px;
  }
  .page_products p.center:has(.btn_line) {
    margin-top: 40px;
  }
  .page_products .swiper_btns.middle {
    display: none;
  }
  .page_applications {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_applications .page_applications_swiper {
    margin-top: 30px;
    overflow: unset;
  }
  .page_applications .page_applications_swiper .swiper-slide {
    max-width: 235px;
  }
  .page_applications .item {
    border-radius: 10px;
  }
  .page_applications .item .info {
    padding: 20px;
  }
  .page_applications .item .info .title {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: 160px;
  }
  .page_applications .item .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    letter-spacing: unset;
  }
  .page_applications .swiper_btns.middle {
    display: none;
  }
  .social {
    gap: 16px;
  }
  .social a {
    width: 40px;
    height: 40px;
  }
  .breadcrumbs {
    line-height: 20px;
    min-height: 30px;
  }
  .breadcrumbs span {
    letter-spacing: unset;
  }
  .breadcrumbs span span::before {
    width: 7px;
    height: 7px;
    margin: 0 10px;
  }
  .nav_wrap .nav_list {
    width: calc(100% + 40px);
    margin: 0 -20px 0;
    padding: 0 20px;
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 14px;
  }
  .nav_wrap .nav_list::-webkit-scrollbar {
    display: none;
  }
  .nav_wrap .nav_list .nav_item {
    font-size: 14px;
    white-space: nowrap;
    line-height: 36px;
    padding: 0 20px;
  }
  .faq_list .faq_item {
    --radius: 10px;
    margin-bottom: 16px;
  }
  .faq_list .faq_item.active .question {
    padding-top: 14px;
  }
  .faq_list .faq_item .question {
    font-size: 18px;
    grid-template-columns: 1fr 12px;
    gap: 14px;
    padding: 14px 20px;
  }
  .faq_list .faq_item .answer {
    padding: 0 20px 20px;
    letter-spacing: unset;
    font-size: 14px;
    line-height: 1.5;
  }
  .application_item {
    --radius: 10px;
  }
  .application_item .info {
    padding: 20px;
  }
  .application_item .info .title {
    font-size: 18px;
    line-height: 1.5;
  }
  .application_item .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .application_item .info .btn_i {
    margin-top: 20px;
  }
  .product_list li {
    border-radius: 10px;
    padding: 0;
  }
  .product_list .img {
    border-radius: 10px;
  }
  .product_list .info {
    padding: 20px;
  }
  .product_list .info .cat {
    font-size: 13px;
  }
  .product_list .info .title {
    font-size: 18px;
  }
  .product_list .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .product_list .info .tags {
    margin-top: 14px;
    gap: 6px;
  }
  .product_list .info .tags span {
    font-size: 13px;
    line-height: 25px;
    padding: 0 10px;
    border-radius: 4px;
  }
  .product_list .info .btns {
    gap: 14px;
    padding: 14px 0 0;
    margin-top: 20px;
  }
  .blog_list a {
    --radius: 10px;
  }
  .blog_list .img {
    margin-right: 0;
  }
  .blog_list .info {
    padding: 20px;
  }
  .blog_list .info .metas {
    font-size: 14px;
    gap: 10px;
  }
  .blog_list .info .metas .cat {
    font-size: 13px;
    padding: 0 12px;
    letter-spacing: unset;
  }
  .blog_list .info .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .blog_list .info .btn_line {
    margin-top: 20px;
  }

  /*** 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 .content {
    height: 100%;
  }
  .search_drawer .close {
    width: 20px;
    height: 20px;
    bottom: 30px;
    left: unset;
    right: 30px;
    transform: translate(0);
  }
  .search_drawer .close:hover {
    transform: translate(0);
  }
  .search_drawer form {
    display: grid;
    grid-template-columns: 1fr auto;
  }
  .search_drawer input[type="text"] {
    height: 46px;
    font-size: 16px;
  }
  .search_drawer input[type="submit"] {
    width: 46px;
    height: 46px;
    display: block;
    overflow: hidden;
    text-indent: -999px;
    background: url(../img/icon-search.svg) no-repeat center/20px;
  }

  .quote_modal .modal_content {
    border-radius: 10px;
  }
  /*** global css ***/
}
@media screen and (max-width: 576px) {
  header .btn {
    display: none;
  }
  .page_contact form .col-2 {
    width: 100%;
  }
}
