* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #1d95d4;
  --secondary: #000;
  --title: #161616;
  --text: #565656;
  --text_w: rgba(255, 255, 255, 0.85);
  --border: #cecece;
  --bg: #f7f9fb;
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 132rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 135rem;
  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%;
  word-break: normal;
  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;
  word-break: break-word;
  color: var(--title);
  font-family: "Martel Sans", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.Oswald,
h1,
h2,
h3,
strong,
.title {
  font-family: "Oswald", sans-serif;
}
h1,
h2 {
  text-transform: uppercase;
}
.Martel {
  font-family: "Martel Sans", sans-serif;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999999;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
#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;
  pointer-events: none;
}
.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;
}
.btn {
  font-family: "Oswald", sans-serif;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #fff;
  border-radius: 0.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6.2rem;
  padding: 0 3.6rem;
  min-width: 18.5rem;
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn_w {
  font-family: "Oswald", sans-serif;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid #fff;
  color: var(--primary);
  border-radius: 0.8rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6.2rem;
  padding: 0 3.6rem;
  min-width: 18.5rem;
}
.btn_w:hover {
  background-color: var(--primary);
  color: #fff;
}
.btn_line {
  font-family: "Oswald", sans-serif;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  text-transform: uppercase;
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--title);
  border-radius: 0.9rem;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 6.3rem;
  padding: 0 3.6rem;
  min-width: 18.6rem;
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.btn_i {
  font-family: "Oswald", sans-serif;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  gap: 2.1rem;
}
.btn_i::before {
  width: 5rem;
  height: 5rem;
  display: inline-block;
  content: '';
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s;
  background: url("../img/arrow-r-w.svg") no-repeat center / 30% var(--primary);
}
.btn_i:hover {
  gap: 2.5rem;
}
.btn_i:hover::before {
  transform: rotate(-45deg);
}
.swiper_btns {
  gap: 3.6rem;
  display: flex;
}
.swiper_btns div {
  width: 6.5rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0.8rem;
  border: 1px solid var(--primary);
  background-color: var(--primary);
}
.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.1587%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--title);
  background-color: var(--title);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(22, 22, 22, 0.45);
}
.swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(0);
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 159.8rem;
  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;
}
.swiper_btns.white div:hover {
  border-color: #fff;
  background-color: transparent;
}
.swiper_btns.white .swiper-button-disabled {
  border-color: rgba(255, 255, 255, 0.45);
}
.swiper_btns.white .swiper-button-disabled::after {
  filter: contrast(0) brightness(2);
}
.syedittext p,
.syedittext .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
}
.head.white {
  color: #fff;
}
.head.white p {
  color: var(--text_w);
  font-weight: 300;
  letter-spacing: 0.018rem;
}
.head.white.bn p {
  color: rgba(255, 255, 255, 0.8);
}
.head .subtitle {
  font-family: "Oswald", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
  letter-spacing: 0.11rem;
}
.head h1 {
  font-size: 6.6rem;
  line-height: 1.1666667;
  font-weight: 600;
}
.head h2 {
  font-size: 5rem;
  line-height: 1.16;
  font-weight: 600;
}
header {
  position: sticky;
  top: -9.4rem;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: #fff;
}
header .content {
  width: calc(100% - 4rem);
  max-width: 179.8rem;
}
header.opt {
  top: 0;
}
header .lt {
  display: flex;
  align-items: center;
  padding-top: 0.4%;
  margin-right: 3.55%;
}
header .lt .logo {
  display: block;
  position: relative;
}
header .lt .logo img {
  display: block;
  width: auto;
  height: 3.3746rem;
}
header .lt .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .menu {
  display: flex;
  gap: 5.4rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  content: '';
  background-color: var(--primary);
  transition: all 0.3s;
  opacity: 0;
}
header nav .menu > li > a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #232323;
  transition: all 0.3s;
  line-height: 8.9rem;
  padding-top: 0.5rem;
}
header nav .menu > li.current-menu-item::after,
header nav .menu > li.current-menu-parent::after,
header nav .menu > li:hover::after {
  opacity: 1;
}
header nav .menu > li:hover ul {
  opacity: 1;
  pointer-events: all;
  padding: 1.6rem 2.4rem 1.1rem;
}
header nav .menu > li:hover ul li {
  transform: translate(0);
}
header nav .menu > li.btn_mega_menu .sub-menu {
  display: none;
}
header nav .sub-menu {
  left: -2.4rem;
  position: absolute;
  min-width: 20rem;
  border-radius: 0 0 8px 8px;
  background-color: #fff;
  padding: 1.6rem 2.4rem 0;
  box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.1);
  display: block;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
  z-index: -1;
  width: calc(100% + 4.8rem);
}
header nav .sub-menu > li {
  margin-bottom: 5px;
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}
header nav .sub-menu > li > a {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  padding: 0.8rem 0;
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover {
  color: var(--primary);
}
header .btns {
  gap: 4.1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 9.4rem;
}
header .btns .btn_search {
  width: 20px;
  height: 20px;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
  margin-top: 0.3rem;
}
header .btns .btn_lang {
  width: 23px;
  height: 23px;
  cursor: pointer;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
  margin-top: 0.3rem;
}
header .btns .btn_menu {
  display: none;
}
header .btns .btn {
  line-height: 5.4rem;
  min-width: unset;
  padding: 0 4rem;
  margin-left: -2px;
}
footer {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.15px;
}
footer.img_bg {
  z-index: 1;
}
footer .main {
  padding: 16.9rem 0 13.9rem;
}
footer .main strong {
  display: block;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 0.4px;
}
footer .main .flex {
  gap: 5rem 2rem;
}
footer .main .slide_obj strong {
  margin-bottom: 2.3rem;
}
footer .main .slide_obj li a {
  font-size: 1.7rem;
  opacity: 0.75;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .main .slide_obj li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .main .slide_obj li + li {
  margin-top: 1.1rem;
}
footer .main .slide_intro {
  width: 37.2rem;
  margin-left: 4.6%;
}
footer .main .slide_intro p {
  opacity: 0.75;
  font-size: 1.7rem;
  line-height: 2.8rem;
  max-width: 32.2rem;
  margin-top: 2.6rem;
}
footer .main .slide_intro form {
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 0.7rem;
  background-color: rgba(255, 255, 255, 0.18);
  padding-right: 0.8rem;
  margin-top: 1.2rem;
}
footer .main .slide_intro form input[type=email] {
  display: block;
  width: 100%;
  background-color: transparent;
  font-size: 1.8rem;
  color: #fff;
  padding: 2px 2.2rem 0;
}
footer .main .slide_intro form input[type=email]::placeholder {
  color: #fff;
}
footer .main .slide_intro form input[type=submit] {
  width: 4.6rem;
  height: 4.6rem;
  display: block;
  border-radius: 0.7rem;
  text-indent: -999px;
  color: transparent;
  background: url("../img/iccon-email-w.svg") no-repeat center / 47.83% var(--primary);
  transition: all 0.3s;
  margin: 0.8rem 0;
}
footer .main .slide_intro form input[type=submit]:hover {
  background-color: var(--title);
}
footer .main .slide_intro .social {
  gap: 2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 4rem;
}
footer .main .slide_intro .social a {
  opacity: 1;
  display: block;
  width: 4.6rem;
  height: 4.6rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
footer .main .slide_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
footer .main .slide_intro .social a:hover {
  transform: scale(1.1);
  background-color: var(--primary);
  border-color: var(--primary);
}
footer .main .slide_intro .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .main .slide_intro .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .main .slide_intro .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .main .slide_intro .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .main .slide_intro .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .main .slide_intro .social .alibaba a::after {
  background-image: url(../img/alibaba.svg);
}
footer .bottom {
  padding: 3.6rem 0;
}
footer .bottom .flex {
  gap: 3rem 2.4rem;
}
footer .bottom .logo {
  display: block;
  position: relative;
  max-width: 24.9rem;
  margin-right: auto;
  opacity: 1;
}
footer .bottom .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .bottom .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .bottom p,
footer .bottom a {
  font-size: 1.4rem;
  opacity: 0.8;
}
footer .bottom p {
  letter-spacing: 0.12px;
  margin-top: 0.8rem;
}
footer .bottom a {
  opacity: 0.68;
  display: block;
  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;
  margin-top: 0.8rem;
}
footer .bottom ul li {
  display: flex;
  align-items: center;
}
footer .bottom ul li::before {
  width: 1px;
  height: 1.1rem;
  background-color: #fff;
  opacity: 0.15;
  display: inline-block;
  content: '';
  margin: 0 1.3rem 0 1.2rem;
}
footer .bottom ul li:first-child::before {
  display: none;
}
#backtop {
  position: fixed;
  right: 3.073vw;
  bottom: 2.8rem;
  z-index: 99;
  width: 4.9rem;
  height: 4.9rem;
  content: '';
  display: block;
  margin-left: auto;
  border-radius: 0.8rem;
  background: url("../img/icon-top.svg") no-repeat center / contain var(--primary);
  transition: all 0.3s;
  opacity: 0;
  cursor: pointer;
  transform: translateY(100%);
}
#backtop.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#backtop:hover {
  transform: scale(1.1);
}
.toplevel_page_sytech_fronteditor .footer_contact {
  margin: 0;
}
.page_news {
  padding: 16.1rem 0 11.8rem;
}
.page_news h2 {
  margin-bottom: 0.3rem;
}
.page_news .page_news_swiper {
  overflow: hidden;
  border-radius: 1.6rem;
  margin-top: 5.8rem;
}
.page_news .page_news_swiper .swiper-slide {
  max-width: 418px;
}
.page_category {
  overflow: hidden;
  padding: 10rem 0 9rem;
}
.page_category .subtitle {
  margin-bottom: 1.2rem;
}
.page_category .nav {
  margin-top: 3.1rem;
}
.page_category .nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 1rem;
}
.page_category .nav .nav_item {
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 0.6rem;
  font-size: 1.8rem;
  color: #585a5e;
  text-align: center;
  line-height: 5rem;
  padding: 0 1.5rem;
}
.page_category .nav .nav_item.active,
.page_category .nav .nav_item:hover {
  background-color: #131e2d;
  color: #fff;
}
.page_category .nav .nav_item.active {
  padding: 0 2.15rem;
  margin-right: 0.7rem;
}
.page_category .page_category_swiper {
  margin-top: 3.4rem;
  position: relative;
  display: none;
}
.page_category .page_category_swiper.active {
  display: block;
}
.page_category .page_category_swiper .swiper-slide {
  max-width: 40.1rem;
}
.page_category .products_list .info {
  padding: 0.3rem 7.98% 3.1rem;
}
.page_category .swiper_btns_circle {
  position: absolute;
  z-index: 2;
  top: 38%;
  right: 6.136363%;
  transform: translateY(-50%);
  width: 7.4rem;
  height: 7.4rem;
  display: flex;
  border-radius: 50%;
  overflow: hidden;
}
.page_category .swiper_btns_circle div {
  cursor: pointer;
  transition: all 0.3s;
  flex: 1;
  background: url("../img/arrow-w.svg") no-repeat center right 27%/21.6216% var(--primary);
  display: block;
}
.page_category .swiper_btns_circle div:hover {
  background-color: var(--title);
}
.page_category .swiper_btns_circle .swiper_next {
  transform: rotate(180deg);
}
.page_category .swiper_btns_circle .swiper-button-disabled {
  opacity: 1;
  pointer-events: none;
}
.page_category .swiper_btns_circle .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.page_category p.center:has(.btn_line) {
  margin-top: 3.5rem;
}
.page_category p.center:has(.btn_line) .btn_line {
  padding: 0 3.9rem;
}
.page_solutions {
  padding: 14.5rem 0 15.2rem;
}
.page_solutions .subtitle {
  margin-bottom: 0.7rem;
}
.page_solutions h2 {
  max-width: 73.3rem;
}
.page_solutions .btn_line {
  margin-bottom: 0.5rem;
  padding: 0 3.8rem;
}
.page_solutions .page_solutions_swiper {
  margin-top: 3.3rem;
  overflow: hidden;
  padding-bottom: 2rem;
}
.page_solutions .page_solutions_swiper .grid {
  display: grid;
  grid-template-columns: 25.0757576% 39.34257576% 24.0151515%;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.page_solutions .page_solutions_swiper .info {
  padding-top: 8%;
}
.page_solutions .page_solutions_swiper .info h3 {
  font-size: 3.8rem;
  line-height: 1.47368;
  text-transform: uppercase;
  font-weight: 600;
  max-width: 29.6rem;
}
.page_solutions .page_solutions_swiper .info ul {
  margin-top: 3.7rem;
}
.page_solutions .page_solutions_swiper .info ul li + li {
  margin-top: 1.7rem;
}
.page_solutions .page_solutions_swiper .info ul li {
  position: relative;
  padding-left: 4.9rem;
}
.page_solutions .page_solutions_swiper .info ul li::before {
  width: 2.9rem;
  height: 2.9rem;
  position: absolute;
  left: 0;
  top: -2px;
  content: '';
  background: url("../img/gou-full.svg") no-repeat center / contain;
}
.page_solutions .page_solutions_swiper .pic {
  position: relative;
  --radius: 2.4rem;
  transform: translateX(-3.3%);
}
.page_solutions .page_solutions_swiper .pic::before {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: var(--radius);
  border: 1px solid rgba(22, 22, 22, 0.17);
  left: 0;
  top: 0;
  content: '';
  transform: translate(2.89%, 3.252%);
}
.page_solutions .page_solutions_swiper .pic .img {
  padding-bottom: 82.080925%;
  width: 100%;
  border-radius: var(--radius);
}
.page_solutions .page_solutions_swiper .pic .img:hover img {
  transform: scale(1.02);
}
.page_solutions .page_solutions_swiper .intro {
  padding-top: 29%;
}
.page_solutions .page_solutions_swiper .intro p {
  hyphens: auto;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 6;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_solutions .page_solutions_swiper .intro .btn {
  margin-top: 3.4rem;
}
.page_solutions .solutions_nav_swiper {
  margin-top: 3.6rem;
}
.page_solutions .swiper_btns {
  top: 47.5%;
  max-width: 153.8rem;
}
.solutions_nav_swiper {
  width: calc(100% + 2px);
  padding: 1px;
  margin: 0 -1px;
  overflow: hidden;
  border-radius: var(--radius);
  --radius: 3.2rem;
}
.solutions_nav_swiper .swiper-slide-thumb-active .nav_item,
.solutions_nav_swiper .nav_item.active {
  background-color: #fff;
}
.solutions_nav_swiper .swiper-slide-thumb-active .nav_item::after,
.solutions_nav_swiper .nav_item.active::after {
  opacity: 1;
}
.solutions_nav_swiper .nav_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  border-radius: var(--radius);
  background-color: var(--bg);
  position: relative;
  font-size: 1.8rem;
  line-height: 1.44444;
  font-weight: 500;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  text-transform: uppercase;
  padding: 2rem 2rem 2.2rem;
  gap: 0.5rem;
}
.solutions_nav_swiper .nav_item::after {
  position: absolute;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: -1px;
  top: -1px;
  border-radius: var(--radius);
  content: '';
  border: 2px solid var(--primary);
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
}
.solutions_nav_swiper .nav_item.active,
.solutions_nav_swiper .nav_item:hover {
  background-color: #fff;
}
.solutions_nav_swiper .nav_item.active::after,
.solutions_nav_swiper .nav_item:hover::after {
  opacity: 1;
}
.solutions_nav_swiper .icon {
  width: 6rem;
  height: 6rem;
}
.page_banner .flex {
  height: 100vh;
  max-height: 81.6rem;
  min-height: max-content;
  padding: 6rem 0;
}
.page_banner .head {
  width: 46.060606%;
  padding-bottom: 1.2%;
}
.page_banner p {
  max-width: 49.9rem;
  margin-top: 1.5rem;
}
.page_banner .btn_w {
  margin-top: 4.2rem;
}
.page_banner form {
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 100px;
  background-color: #fff;
  max-width: 50rem;
  padding-right: 0.3rem;
  margin-top: 4rem;
}
.page_banner form input[type=text] {
  display: block;
  width: 100%;
  background-color: transparent;
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  padding: 0 2.6rem 1px;
}
.page_banner form input[type=text]::placeholder {
  color: rgba(8, 21, 40, 0.54);
  text-transform: uppercase;
}
.page_banner form input[type=submit] {
  display: block;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  text-indent: -999px;
  color: transparent;
  background: url("../img/icon-search-w.svg") no-repeat center / 32% var(--primary);
  transition: all 0.3s;
  margin: 0.3rem 0 0.4rem;
}
.page_banner form input[type=submit]:hover {
  background-color: #081528;
}
.page_banner .social {
  gap: 2rem 1.5rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 4.1rem;
}
.page_banner .social a {
  opacity: 1;
  display: block;
  width: 5.8rem;
  height: 5.8rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: #fff;
}
.page_banner .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
}
.page_banner .social a:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}
.page_banner .social a:hover::after {
  filter: contrast(0) brightness(2);
}
.page_banner .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
.page_banner .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
.page_banner .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
.page_banner .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
.page_banner .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
.toplevel_page_sytech_fronteditor .page_products {
  margin: 0;
}
.page_products {
  background-color: var(--bg);
  padding: 11rem 0 15rem;
  margin-bottom: -6rem;
}
.page_products.img_bg {
  background-color: transparent;
}
.page_products .subtitle {
  margin-bottom: 1.1rem;
}
.page_products .page_products_swiper {
  overflow: hidden;
  margin-top: 4.7rem;
  border-radius: 1.7rem;
}
.page_products .page_products_swiper .swiper-slide {
  max-width: 425px;
}
.page_products p.center:has(.btn_line) {
  margin-top: 4.4rem;
}
.page_products p.center:has(.btn_line) .btn_line {
  min-width: 22.7rem;
}
.swiper_con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
div.pagination {
  width: auto;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #000000;
  font-family: "Oswald", sans-serif;
  gap: 1.5rem;
}
div.pagination.swiper-pagination-lock {
  display: flex;
  opacity: 0;
}
div.pagination .current {
  font-weight: 500;
}
div.pagination .line {
  width: 2.5rem;
  height: 1px;
  background-color: #000;
  opacity: 0.5;
  content: '';
  display: inline-block;
  margin-left: 2px;
}
div.pagination .total {
  opacity: 0.5;
}
div.swiper-pagination.swiper-pagination-progressbar {
  position: static;
  width: 13.2rem;
  height: 1px;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: all;
}
div.swiper-pagination.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--primary);
  height: 2px;
  top: -1px;
}
div.swiper-pagination.swiper-pagination-progressbar.swiper-pagination-lock {
  display: block;
  opacity: 0;
}
.news_list .active a::after {
  opacity: 1;
}
.news_list .active .btn_i {
  transform: translateX(0);
}
.news_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  --radius: 1.6rem;
  padding: 1.3rem 1.4rem;
  min-height: 58.6rem;
}
.news_list a::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  left: -1px;
  top: -1px;
  border-radius: var(--radius);
  content: '';
  border: 2px solid var(--primary);
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.news_list a:hover img {
  transform: scale(1.02);
}
.news_list .img {
  border-radius: calc(var(--radius) - 1px);
  padding-bottom: 77.0835206%;
  padding-bottom: 55.45454545%;
}
.news_list .cat {
  position: absolute;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background-color: var(--primary);
  text-align: center;
  text-transform: uppercase;
  border-radius: 1rem 1rem 0 0;
  bottom: 0;
  right: 7.752%;
  line-height: 3.1rem;
  padding: 0 1.9rem;
}
.news_list .info {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 7.732% 4.6392% 4.6392%;
}
.news_list .date {
  font-size: 1.8rem;
  color: var(--text);
  opacity: 0.85;
}
.news_list .title {
  font-size: 2.2rem;
  line-height: 3.5rem;
  font-weight: 600;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: auto;
  margin-top: 1px;
}
.news_list .btn_i {
  margin-top: 3rem;
  transform: translateX(-7.1rem);
}
.products_list .active .img {
  transform: translateY(0);
}
.products_list .active .info {
  transform: translateY(0);
}
.products_list .active .title {
  color: var(--primary);
}
.products_list .active .type::after {
  opacity: 1;
}
.products_list .active .btn {
  opacity: 1;
}
.products_list a {
  display: flex;
  flex-direction: column;
  border-radius: 1.7rem;
  transition: all 0.3s;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
}
.products_list a:hover img {
  transform: scale(1.02);
}
.products_list .img {
  width: 100%;
  --h: 70.074813%;
  max-width: 40.1rem;
  margin: 0 auto;
  transition: all 0.4s;
  transform: translateY(3.4rem);
}
.products_list .info {
  display: flex;
  flex-direction: column;
  padding: 0.3rem 9.66981% 6.3rem;
  transform: translateY(6.8rem);
  transition: all 0.4s;
}
.products_list .title {
  font-size: 3rem;
  line-height: 3.5rem;
  transition: all 0.3s;
  font-weight: 600;
}
.products_list .type {
  position: relative;
  font-size: 2rem;
  line-height: 3.5rem;
  color: #4c4c4c;
  text-transform: uppercase;
  border-bottom: 1px solid #c9cfd3;
  padding-bottom: 1.1rem;
  margin-top: 0.5rem;
}
.products_list .type::after {
  position: absolute;
  width: 100%;
  height: 2px;
  left: 0;
  bottom: -1px;
  content: '';
  background-color: var(--primary);
  transition: all 0.3s;
  opacity: 0;
}
.products_list .desc {
  font-size: 1.5rem;
  line-height: 2.4rem;
  color: #707070;
  margin-top: 1.7rem;
  flex: 1;
}
.products_list .desc li {
  position: relative;
  padding-left: 1.7rem;
}
.products_list .desc li::before {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.7rem;
  content: '';
  background-color: #707070;
}
.products_list .btn {
  margin-top: 1.5rem;
  line-height: 5.4rem;
  opacity: 0;
}
.active .advantage_item {
  border-color: var(--primary);
  background-color: var(--primary);
}
.active .advantage_item .info h3 {
  color: #fff;
}
.active .advantage_item .info p {
  color: var(--text_w);
}
.active .advantage_item .icon .black {
  opacity: 0;
}
.products_nav {
  padding: 5.9rem 0 7.8rem;
}
.products_nav .nav_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(32rem, 100%), 1fr));
  gap: 3rem 2.3484848%;
}
.products_nav .nav_item {
  display: grid;
  grid-template-columns: 1fr 5.4rem;
  align-items: center;
  height: 100%;
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: 600;
  color: #0a162d;
  padding: 1.4rem 1.6rem 1.1rem 2.2rem;
  --radius: 1.1rem;
  --mask: 2.3rem;
}
.products_nav .nav_item.active,
.products_nav .nav_item:hover {
  filter: drop-shadow(0 1.2rem 1.2rem rgba(206, 215, 219, 0.45));
}
.products_nav .nav_item.active .bd,
.products_nav .nav_item:hover .bd {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  filter: unset;
}
.products_nav .nav_item.active .icon,
.products_nav .nav_item:hover .icon {
  background-color: var(--primary);
}
.products_nav .nav_item .icon {
  padding-bottom: 100%;
  border-radius: 1.2rem;
  background-color: #20293a;
  transition: all 0.3s;
}
.products_nav .nav_item .bd,
.products_nav .nav_item .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  filter: contrast(0) brightness(1.6);
  transition: all 0.3s;
}
.products_nav .nav_item .bd::before,
.products_nav .nav_item .bg::before {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--primary);
  border-radius: var(--radius);
  content: '';
  clip-path: polygon(calc(100% - var(--mask) + 1px) 0%, 100% calc(var(--mask) + 3px), 100% 100%, 0 100%, 0 0);
}
.products_nav .nav_item .bd::after,
.products_nav .nav_item .bg::after {
  width: var(--mask);
  height: calc(var(--mask) + 3px);
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  background: url("../img/cat-bg.svg") no-repeat center / contain;
}
.products_nav .nav_item .bg {
  filter: contrast(0) brightness(2);
  width: calc(100% - 2px);
  height: calc(100% - 2px);
}
.products_nav .nav_item .bg::before {
  border-radius: calc(var(--radius) - 1px);
}

/*** 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.search-block {
  position: fixed;
  z-index: 999;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0, 55, 96, 0.12);
  width: 100%;
  bottom: -100vh;
  height: 100vh;
  transition: 0.3s ease;
}
div.search-block.active {
  bottom: 0;
  opacity: 1;
  transform: translateY(150px);
}
div.search-block div.content {
  position: relative;
  display: block;
}
.wd-action-btn {
  display: inline-flex;
  vertical-align: middle;
  background: url(../../global/img/cloes.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 38px;
  right: 0;
  z-index: 1;
  width: 28px;
  height: 28px;
  transition: all 0.3s;
  cursor: pointer;
}
.wd-action-btn:hover {
  transform: rotate(180deg);
}
div.search-block .searchform {
  border-bottom: 1px solid rgba(119, 119, 119, 0.2);
  /* opacity: 0; */
  transition: opacity 0.35s ease 0.2s;
  --wd-form-color: #333;
  --wd-form-placeholder-color: #333;
  text-align: center;
  transition: 0.75s all ease;
}
div.search-block.active .searchform {
  opacity: 1;
}
div.search-block .searchform input[type='text'] {
  padding: 0;
  height: 110px;
  border: none;
  text-align: center;
  font-size: 35px;
  outline: none;
}
header div.main-menu div.main div.right {
  display: none;
}
div.search-block .searchform ::-webkit-input-placeholder {
  color: #333333;
  text-transform: uppercase;
}

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

.quote_modal {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all .3s;
  pointer-events: none;
  display: grid;
  align-items: center;
  overflow: auto;
}
.quote_modal.active {
  opacity: 1;
  pointer-events: all;
}
.quote_modal .modal_content {
  width: calc(100% - 4rem);
  max-width: 122rem;
  margin: 5rem auto;
  padding: 0;
  display: flex;
  border-radius: 1.6rem;
  background-color: #fff;
}
.quote_modal .img {
  width: 50%;
  border-radius: 1.6rem;
}
.quote_modal .wpcf7 {
  width: 50%;
  zoom: 0.8;
}
.quote_modal .wpcf7 form {
  padding: 6% 8%;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background-color: transparent;
}

.mega_menu {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  background-color: #fff;
  display: none;
  padding: 5rem 0;
}
.mega_overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
}
.mega_overlay.active {
  opacity: 1;
  pointer-events: all;
}
.mega_menu.products_nav .nav_list {
  grid-template-columns: repeat(auto-fit, minmax(min(32rem, 100%), 1fr));
}
.mega_menu.solutions_nav .nav_list {
  display: grid;
  gap: 3rem 2.3484848%;
  grid-template-columns: repeat(auto-fit, minmax(min(16rem, 100%), 1fr));
}
/*** global css ***/

section.page_nums .nums ul {
  grid-template-columns: repeat(4, 1fr);
}



.contact_sidebar {
    position: fixed;
    top: 40%;
    right: 1.1%;
    z-index: 99;
    transition: opacity 0.3s;
    pointer-events: none;
    opacity: 0;
}

.contact_sidebar.active {
    opacity: 1;
}

.fixed .contact_sidebar {
    right: calc(1.1% + 17px);
}

.contact_sidebar.notshow {
    opacity: 0;
}

.contact_sidebar li {
    background: rgba(0, 0, 0, 0.72);
    border-radius: 50%;
    margin-bottom: 15px;
    transition: all 0.3s;
    position: relative;
}

.contact_sidebar.active li {
    pointer-events: all;
}

.contact_sidebar li .number {
    position: absolute;
    right: 0;
    top: 0;
    height: 61px;
    background-color: var(--primary);
    border-radius: 100px;
    color: #fff;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 12px 41px 12px 20px;
    transition: all .3s;
    max-width: 0;
    overflow: hidden;
    opacity: 0;
}

.contact_sidebar li:hover {
    background-color: var(--primary);
    box-shadow: 0 8px 8px rgba(172, 172, 172, 0.35);

    a {
        background-color: var(--primary);
    }
}

.contact_sidebar li:hover .number {
    opacity: 1;
    width: max-content;
    max-width: 300px;
    padding: 12px 5rem 12px 20px;
    box-shadow: 0 8px 8px rgba(172, 172, 172, 0.35);
}

.contact_sidebar li a {
    display: block;
    width: 61px;
    height: 61px;
    border-radius: 50%;
    background: no-repeat center / contain #474747;
    position: relative;
    z-index: 2;
    transition: all .3s;
}
.contact_sidebar li.btn_quote a{
  text-indent: -99999px;
}
.contact_sidebar li.btn_quote a{
  background-image: url('../img/sidebaremail.svg');
}
.contact_sidebar li a:hover {
    background-color: var(--theme_color);
}

.contact_sidebar li.call a {
    background-image: url(../img/sidebarcall.svg);
}

.contact_sidebar li.email a {
    background-image: url(../img/sidebaremail.svg);
}

.contact_sidebar li.whatsapp a {
    background-image: url(../img/sidebarwechat.svg);
}

.contact_sidebar li.backtop a {
    background-image: url(../img/sidebarup.svg);
}
.search-block .suggest{
  margin-top: 5rem;
}
.search-block .suggest ul{
  display: flex;
  gap: 1.5rem;
  flex-flow: wrap;
}
.search-block .suggest li{
  display: inline-block;
  border-radius: 200rem;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  padding: 1rem 2rem 0.7rem;
  font-size: 1.5rem;
  transition: all 0.3s;
  line-height: 1;
  cursor: pointer;
}
.search-block .suggest ul li:hover{
  border-color: var(--primary);
  background-color: var(--primary);
  color: white;
}



@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 3rem;
    max-width: 1220px;
  }
  .swiper_content {
    padding: 1.5rem 3rem;
    max-width: 1220px;
  }
  header .content {
    width: 100%;
  }
  header .lt {
    margin-right: 0;
  }
  header nav .menu {
    gap: 4rem;
  }
  header nav .menu > li > a {
    font-size: 16px;
  }
  header nav .sub-menu > li > a {
    font-size: 14px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h1 {
    font-size: 6rem;
  }
  .news_list a {
    min-height: unset;
  }
}
@media screen and (max-width: 1024px) {
  header .content {
    width: 100%;
  }
  header .lt {
    margin: 0;
    padding: 0;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    transition: all 0.3s;
  }
  header nav.active {
    pointer-events: all;
  }
  header nav.active .close {
    opacity: 1;
  }
  header nav.active .con {
    opacity: 1;
    transform: translate(0);
  }
  header nav .close {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    transition: all 0.3s;
    opacity: 0;
  }
  header nav .con {
    position: absolute;
    left: 0;
    top: 0;
    width: min(300px, 80vw);
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    box-shadow: rgba(0 0 0/10%) 0 0 24px;
    transition: all 0.3s;
    opacity: 0;
    transform: translateX(-100%);
  }
  header nav .con .close_box {
    padding: 32px 20px 20px;
    border-bottom: 1px solid #eee;
    text-align: right;
  }
  header nav .con .close_box .close {
    display: inline-block;
    width: 15px;
    height: 15px;
    filter: brightness(0);
    background: url('../img/mobile-menu/close.svg') no-repeat center / contain;
    cursor: pointer;
    transition: all 0.3s;
  }
  header nav .con .close_box .close:hover {
    transform: rotate(180deg);
  }
  header nav .con .close_box + div {
    flex: 1;
    overflow: auto;
  }
  header nav .con .close_box + div::-webkit-scrollbar {
    width: 5px;
  }
  header nav .con .close_box + div::-webkit-scrollbar-thumb {
    background: #888888;
    border-radius: 10px;
  }
  header nav .con .menu {
    display: block;
  }
  header nav .con .menu > li {
    cursor: pointer;
  }
  header nav .con .menu > li::after {
    display: none;
    opacity: 1;
  }
  header nav .con .menu > li > a {
    color: var(--title);
    line-height: 64px;
    padding: 0 0 0 32px;
    font-size: 18px;
  }
  header nav .con .menu > li > a:hover {
    color: var(--primary);
  }
  header nav .con .menu > li.menu-item-has-children > a {
    margin-right: 52px;
  }
  header nav .con .menu > li.menu-item-has-children::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    left: calc(100% - 32px);
    top: 26px;
    transition: all 0.3s;
  }
  header nav .con .menu > li.active::after {
    transform: rotate(180deg);
  }
  header nav .con .menu > li:hover ul {
    padding: 16px 24px;
  }
  header nav .con .menu .current-menu-item > a,
  header nav .con .menu .current-menu-parent > a {
    color: var(--primary);
  }
  header nav .con .sub-menu {
    position: static;
    padding: 16px 24px;
    background-color: #f8f8f8;
    margin: 0 32px;
    box-shadow: none;
    border-radius: 8px;
    display: none;
    opacity: 1;
    pointer-events: all;
    transition: none;
    transform: translate(0);
    min-width: unset;
    width: auto;
  }
  header nav .con .sub-menu li {
    transform: translate(0);
  }
  header nav .con .sub-menu li a {
    padding: 8px 0;
    word-break: break-word;
    font-size: 14px;
    line-height: 20px;
    color: var(--title);
  }
  header nav .con .sub-menu li a::after {
    display: none;
  }
  header nav .con .sub-menu li a:hover {
    color: var(--primary);
  }
  header .btns {
    padding: 0;
    margin: 0;
  }
  header .btns .btn_search,
  header .btns .btn_lang {
    width: 22px;
    height: 22px;
    margin: 0;
  }
  header .btns .btn_menu {
    display: block;
    width: 23px;
    height: 23px;
    cursor: pointer;
    transition: all 0.3s;
    background: url(../img/mobile-menu/nav-btn.svg) no-repeat center / contain;
  }
  header .mega_menu {
    display: none !important;
  }
}
@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;
  }
  .page_solutions .page_solutions_swiper .info h3 {
    font-size: 3rem;
  }
  footer .main .slide_intro {
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 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 30px;
  }
  .swiper_content {
    padding: 10px 30px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 20px;
  }
  .btn,
  .btn_w,
  .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    min-width: 120px;
    border-radius: 4px;
  }
  .btn_i {
    font-size: 14px;
    gap: 14px;
  }
  .btn_i::before {
    width: 40px;
    height: 40px;
  }
  .btn_i:hover {
    gap: 20px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    position: static;
    width: 100%;
    padding: 0 30px;
    justify-content: flex-end;
    margin-top: 30px;
    transform: translateX(0);
  }
  .syedittext p,
  .syedittext .desc {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head.white p {
    letter-spacing: unset;
  }
  div.head .subtitle {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
    word-spacing: unset;
    letter-spacing: 1px;
  }
  div.head h1 {
    font-size: 25px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head h2 {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
  }
  div.head .desc,
  div.head p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
    max-width: unset;
    word-spacing: unset;
    margin-top: 12px;
  }
  div.head .btn,
  div.head .btn_w,
  div.head .btn_line {
    font-size: 14px;
    line-height: 40px;
    padding: 0 20px;
    min-width: 120px;
    margin-top: 20px;
  }
  div.head.flex .btn,
  div.head.flex .btn_w,
  div.head.flex .btn_line {
    margin: 0;
  }
  header {
    top: 0;
  }
  header .lt .logo img {
    height: 25px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
  }
  header .btns .btn {
    display: none;
  }
  footer {
    letter-spacing: unset;
  }
  footer .main {
    padding: 50px 0;
  }
  footer .main .flex {
    flex-direction: column;
    gap: 0;
  }
  footer .main strong {
    font-size: 18px;
    letter-spacing: unset;
  }
  footer .main .slide_intro {
    margin: 0 0 20px;
    width: 100%;
    display: grid;
    order: -1;
  }
  footer .main .slide_intro p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 20px;
    max-width: unset;
  }
  footer .main .slide_intro div {
    order: 4;
  }
  footer .main .slide_intro form {
    margin-top: 20px;
    padding-right: 5px;
  }
  footer .main .slide_intro form input[type=email] {
    font-size: 14px;
    padding: 0 20px;
  }
  footer .main .slide_intro form input[type=submit] {
    width: 40px;
    height: 40px;
    margin: 5px 0;
  }
  footer .main .slide_intro .social {
    margin-top: 20px;
    gap: 16px;
    justify-content: space-around;
  }
  footer .main .slide_intro .social a {
    width: 40px;
    height: 40px;
  }
  footer .main .slide_obj:not(.slide_connect) {
    width: 100%;
  }
  footer .main .slide_obj:not(.slide_connect) strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  footer .main .slide_obj:not(.slide_connect) strong::after {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background: url(../img/mobile-menu/select.svg) no-repeat center / contain;
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    filter: contrast(0) brightness(2);
  }
  footer .main .slide_obj:not(.slide_connect).active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .main .slide_obj:not(.slide_connect) > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .main .slide_obj:not(.slide_connect) > div li + li {
    margin-top: 14px;
  }
  footer .main .slide_obj:not(.slide_connect) > div a {
    font-size: 14px;
    display: block;
    font-weight: normal;
  }
  footer .main .slide_obj:not(.slide_connect) > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .bottom {
    padding: 20px 0;
    text-align: center;
  }
  footer .bottom .flex {
    gap: 30px;
    flex-direction: column;
  }
  footer .bottom .logo {
    max-width: 180px;
    margin: 0;
  }
  footer .bottom ul {
    gap: 1rem 0;
    margin: 0;
  }
  footer .bottom ul li::before {
    height: 10px;
    margin: 0 10px;
  }
  footer .bottom p {
    font-size: 13px;
    margin: 0;
    order: 3;
  }
  footer .bottom a {
    font-size: 14px;
  }
  #backtop {
    width: 40px;
    height: 40px;
    bottom: 20px;
    right: 20px;
  }
  .page_news {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_news h2 {
    margin-bottom: 0;
  }
  .page_news .page_news_swiper {
    overflow: unset;
    margin-top: 30px;
  }
  .page_news .page_news_swiper .swiper-slide {
    max-width: 314px;
  }
  .page_category {
    padding: 50px 0;
  }
  .page_category .nav {
    margin-top: 20px;
  }
  .page_category .nav .nav_list {
    width: calc(100% + 60px);
    margin: 0 -30px;
    padding: 0 30px;
    flex-wrap: nowrap;
    gap: 20px;
    white-space: nowrap;
    overflow-x: auto;
  }
  .page_category .nav .nav_list::-webkit-scrollbar {
    display: none;
  }
  .page_category .nav .nav_item {
    font-size: 14px;
    line-height: 40px;
    padding: 0 10px;
    border-radius: 4px;
  }
  .page_category .nav .nav_item.active {
    padding: 0 20px;
    margin-right: 0;
  }
  .page_category .page_category_swiper {
    margin-top: 30px;
  }
  .page_category .page_category_swiper .swiper-slide {
    max-width: 314px;
  }
  .page_category .products_list .info {
    padding: 10px 20px 20px;
  }
  .page_category .swiper_btns_circle {
    position: static;
    transform: translate(0);
    width: 60px;
    height: 60px;
    margin-top: 20px;
    margin-left: auto;
  }
  .page_category p.center:has(.btn_line) {
    margin-top: 30px;
  }
  .page_category p.center:has(.btn_line) .btn_line {
    padding: 0 20px;
  }
  .page_solutions {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_solutions .page_solutions_swiper {
    margin-top: 30px;
    padding: 0;
    overflow: unset;
  }
  .page_solutions .page_solutions_swiper .info {
    padding: 0;
  }
  .page_solutions .page_solutions_swiper .info h3 {
    font-size: 18px;
  }
  .page_solutions .page_solutions_swiper .info ul {
    margin-top: 14px;
  }
  .page_solutions .page_solutions_swiper .info ul li + li {
    margin-top: 10px;
  }
  .page_solutions .page_solutions_swiper .info ul li {
    padding-left: 25px;
  }
  .page_solutions .page_solutions_swiper .info ul li::before {
    width: 16px;
    height: 16px;
    top: 1px;
  }
  .page_solutions .page_solutions_swiper .pic {
    --radius: 10px;
    transform: translate(0);
  }
  .page_solutions .page_solutions_swiper .intro {
    padding: 0;
  }
  .page_solutions .page_solutions_swiper .intro .btn {
    margin-top: 20px;
  }
  .page_solutions .solutions_nav_swiper {
    margin-top: 30px;
  }
  .solutions_nav_swiper {
    width: 100%;
    margin: 0;
    --radius: 10px;
    overflow: unset;
  }
  .solutions_nav_swiper .nav_item {
    font-size: 14px;
    padding: 20px;
    gap: 10px;
  }
  .solutions_nav_swiper .icon {
    width: 50px;
    height: 50px;
  }
  .page_banner .flex {
    height: auto;
    min-height: unset;
    max-height: unset;
    padding: 50px 0;
  }
  .page_banner .flex .head {
    padding: 0;
  }
  .page_banner form {
    margin-top: 20px;
    padding-right: 3px;
  }
  .page_banner form input[type=text] {
    font-size: 14px;
    padding: 0 20px;
  }
  .page_banner form input[type=submit] {
    width: 40px;
    height: 40px;
    margin: 3px 0;
  }
  .page_banner .social {
    margin-top: 20px;
    gap: 16px;
  }
  .page_banner .social a {
    width: 40px;
    height: 40px;
  }
  .page_products {
    padding: 50px 0;
    margin: 0;
    overflow: hidden;
  }
  .page_products .page_products_swiper {
    overflow: unset;
    margin-top: 30px;
  }
  .page_products .page_products_swiper .swiper-slide {
    max-width: 314px;
  }
  .page_products p.center:has(.btn_line) {
    margin-top: 30px;
  }
  .page_products p.center:has(.btn_line) .btn_line {
    min-width: 120px;
  }
  .swiper_con {
    gap: 16px;
  }
  div.pagination {
    font-size: 14px;
    gap: 12px;
  }
  div.pagination .line {
    width: 22px;
    margin-left: 0;
  }
  div.swiper-pagination.swiper-pagination-progressbar {
    width: 52px;
  }
  .news_list a {
    min-height: unset;
    padding: 10px;
    --radius: 10px;
  }
  .news_list .cat {
    font-size: 14px;
    line-height: 2;
    padding: 0 14px;
    border-radius: 5px 5px 0 0;
  }
  .news_list .info {
    padding: 20px 10px 10px;
  }
  .news_list .info .date {
    font-size: 14px;
  }
  .news_list .info .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 5px;
    -webkit-line-clamp: 2;
  }
  .news_list .info .btn_i {
    transform: translateX(0);
    margin-top: 20px;
  }
  .products_list a {
    border-radius: 10px;
  }
  .products_list .img {
    transform: translateY(0);
  }
  .products_list .info {
    padding: 10px 20px 20px;
    transform: translateY(0);
  }
  .products_list .info .title {
    font-size: 18px;
    line-height: 1.5;
  }
  .products_list .info .type {
    font-size: 16px;
    line-height: 1.5;
    padding-bottom: 5px;
    margin-top: 5px;
  }
  .products_list .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .products_list .info .desc li {
    padding-left: 15px;
  }
  .products_list .info .desc li::before {
    top: 6px;
  }
  .products_list .info .btn {
    line-height: 40px;
    margin-top: 20px;
    opacity: 1;
  }
  .products_nav {
    padding: 0;
  }
  .products_nav .nav_list {
    width: calc(100% + 60px);
    margin: 0 -30px;
    padding: 30px 30px;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
  }
  .products_nav .nav_list::-webkit-scrollbar {
    display: none;
  }
  .products_nav .nav_list li {
    flex: 1 0 240px;
  }
  .products_nav .nav_item {
    grid-template-columns: 1fr 40px;
    padding: 10px 14px;
    --radius: 10px;
    --mask: 20px;
    font-size: 14px;
  }
  .products_nav .nav_item .icon {
    border-radius: 10px;
  }

  /*** global css ***/
  .wd-action-btn {
    right: 2rem;
    bottom: 2rem;
    top: unset;
  }
  div.search-block div.content {
    height: 100%;
  }
  div.search-block {
    height: calc(100vh - 150px);
  }
  div.search-block.active {
    transform: translate(0);
  }
  div.search-block .searchform {
    padding-top: 2rem;
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  div.search-block .searchform input[type='text'] {
    height: 42px;
    min-width: unset;
    width: 100%;
    font-size: 22px;
  }
  div.search-block .searchform input[type='submit'] {
    display: block;
    width: 20px;
    filter: contrast(0) brightness(0);
    height: 20px;
    background: url(../img/icon-search.svg) no-repeat center/contain;
  }

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

  .video_pop .pop_content {
    max-width: 96vw;
    width: 96vw;
    height: auto;
  }

  .contact_sidebar {
    right: 12px;
    top: unset;
    bottom: 2rem;
  }

  .fixed .contact_sidebar {
    right: 12px;
  }

  .contact_sidebar li {
    margin-bottom: 0.5rem;
  }

  .contact_sidebar li a {
    width: 2.5rem;
    height: 2.5rem;
  }

  .contact_sidebar li .number {
    display: none;
    height: 2.5rem;
    padding: 12px 24px 12px 1rem;
  }

  .contact_sidebar li:hover .number {
    padding: 12px 50px 12px 1rem;
  }


  /*** global css ***/
}
@media screen and (max-width: 576px) {
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .swiper_btns.middle:not(:has(.swiper-button-lock)) {
    padding: 0 20px;
  }
  .page_category .nav .nav_list {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px;
  }
  .page_solutions .page_solutions_swiper .grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .page_solutions .page_solutions_swiper .pic {
    order: 3;
    margin-top: 10px;
  }
  .page_banner::before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    z-index: -1;
    background-color: var(--title);
    opacity: 0.2;
    pointer-events: none;
  }
  .page_banner::after {
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    background-image: linear-gradient(to left, #94a3b4, transparent);
    opacity: 0.5;
    z-index: -1;
    pointer-events: none;
  }
  .page_banner .flex .head {
    width: 100%;
  }
  .products_nav .nav_list {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 30px 20px;
  }
  section.page_nums .nums ul {
    grid-template-columns: repeat(2, 1fr);
  }

  .quote_modal .img {
    display: none;
  }
  .quote_modal .wpcf7 {
    width: 100%;
    zoom: 1;
  }
}
