@font-face {
  src: url("../font/NeoSansStd-Light.otf");
  font-family: 'NeoSansStd';
  font-weight: 300;
  font-display: swap;
}
@font-face {
  src: url("../font/NeoSansStd-Regular.otf");
  font-family: 'NeoSansStd';
  font-weight: 400;
  font-display: swap;
}
@font-face {
  src: url("../font/NeoSansStd-Medium.otf");
  font-family: 'NeoSansStd';
  font-weight: 500;
  font-display: swap;
}
@font-face {
  src: url("../font/NeoSansStd-Bold.otf");
  font-family: 'NeoSansStd';
  font-weight: 700;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #9cd34f;
  --primary: #79bd28 !important;
  --secondary: #000;
  --title: #0a162d;
  --text: #6d7077;
  --text_w: rgba(255, 255, 255, 0.75);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 160rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 163rem;
  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;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-family: 'NeoSansStd', sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
h1,
h2,
h3,
strong {
  font-weight: 500;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
.grecaptcha-badge {
  visibility: hidden;
}
#fullscreen-loader {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 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: -1;
  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 {
  display: inline-grid;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 100px;
  background-color: var(--primary);
  border: 1px solid var(--primary);
  color: #121e3b;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 6.6rem;
  grid-template-columns: 1fr 4.8rem;
  padding: 0 0.7rem 0 3.4rem;
  gap: 1.8rem;
  min-width: 21.8rem;
  max-width: max-content;
}
.btn::after {
  padding-bottom: 100%;
  border-radius: 50%;
  background: url("../img/arrow-r.svg") no-repeat center / 12.5% #fff;
  transition: all 0.3s, transform 0.4s;
  display: block;
  content: '';
}
.btn:hover {
  background-color: transparent;
  color: var(--primary);
}
.btn:hover::after {
  background-color: var(--primary);
  transform: scale(1.1);
}
.btn_line {
  display: inline-grid;
  align-items: center;
  text-align: center;
  transition: all 0.3s;
  cursor: pointer;
  border-radius: 100px;
  background-color: transparent;
  border: 1px solid rgba(10, 22, 45, 0.4);
  color: #121e3b;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 6.6rem;
  grid-template-columns: 1fr 4.8rem;
  padding: 0 0.7rem 0 2.4rem;
  gap: 1rem;
  min-width: 22.3rem;
  max-width: max-content;
}
.btn_line::after {
  padding-bottom: 100%;
  border-radius: 50%;
  background: url("../img/arrow-r.svg") no-repeat center / 12.5% var(--primary);
  transition: all 0.3s, transform 0.4s;
  display: block;
  content: '';
}
.btn_line:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white !important;
}
.btn_line:hover::after {
  background-color: #fff;
  transform: scale(1.1);
}
.btn_circle {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background-color: var(--primary);
  width: 4.8rem;
}
.btn_circle::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/arrow-r-line.svg") no-repeat center / 32.61%;
  transition: all 0.3s;
}
.btn_circle:hover {
  background-color: var(--title);
  border-color: var(--title);
}
.btn_circle:hover::after {
  filter: contrast(0) brightness(2);
}
.btn_add {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 100px;
  background-color: var(--primary);
  width: 7.2rem;
}
.btn_add::after {
  display: block;
  padding-bottom: 73.61111%;
  content: '';
  background: url("../img/add.svg") no-repeat center / 20.83333%;
  transition: all 0.3s;
}
.btn_add:hover {
  background-color: var(--title);
}
.btn_add:hover::after {
  filter: contrast(0) brightness(2);
  transform: rotate(360deg);
}
.btn_download {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid rgba(22, 22, 22, 0.5);
  width: 5.3rem;
}
.btn_download::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/icon-download.svg") no-repeat center / 29%;
  transition: all 0.3s;
}
.btn_download:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  transform: scale(1.1);
}
.swiper_btns {
  gap: 0.7rem;
  display: inline-flex;
  border-radius: 100px;
  border: 1px solid rgba(10, 22, 45, 0.5);
  padding: 0.3rem 0.5rem;
}
.swiper_btns div {
  width: 5.5rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: transparent;
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 100%;
  padding-bottom: 100%;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / 31%;
}
.swiper_btns div:hover {
  background-color: var(--primary);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
}
.swiper_btns:has(.swiper-button-lock) {
  opacity: 0;
}
.swiper_btns .swiper-button-lock {
  display: flex;
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 175.7rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
  border: none;
}
.swiper_btns.middle div {
  pointer-events: all;
  background-color: var(--title);
  background-color: white !important;
}
.swiper_btns.middle div::after {
  filter: contrast(0) brightness(0) !important;
}
.swiper_btns.middle div:hover {
  background-color: var(--primary) !important;
}
.swiper_btns.middle div:hover::after {
  filter: unset;
  filter: contrast(0) brightness(2) !important;
}
.swiper_btns.middle .swiper-button-disabled {
  background-color: var(--primary);
}
.swiper_btns.middle .swiper-button-disabled::after {
  filter: unset;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.swiper_btns.lar {
  gap: 0.9rem;
}
.swiper_btns.lar div {
  width: 6rem;
}
.head {
  --circle: 0.7rem;
}
.head.all_r {
  text-align: right;
  margin-left: auto;
}
.head.all_r strong::after {
  right: unset;
  left: 0;
  transform: translate(-100%, 50%);
}
.head.all_r strong::before {
  right: unset;
  left: 100%;
  transform: rotateY(180deg);
}
.head.all_r h2::after,
.head.all_r h2::before {
  right: unset;
  left: calc(100% + 2.3rem);
}
.head.all_r h2::before {
  left: calc(100% + 2.7rem + var(--circle));
  transform: rotateY(180deg);
}
.head.no_mask h2::before,
.head.no_mask h2::after {
  display: none;
}
.head.white {
  color: #fff;
}
.head.white strong {
  color: #fff;
}
.head.white p {
  color: var(--text_w);
}
.head.sm_p p {
  font-size: 2rem;
  line-height: 3.4rem;
}
.head.banner p {
  line-height: 3.6rem;
}
.head strong {
  position: relative;
  font-size: 1.6rem;
  font-weight: 400;
  text-transform: uppercase;
  display: inline-block;
  border-bottom: 2px solid #c9e7a0;
  margin-bottom: 2.2rem;
  padding: 0 0.9rem 0.4rem;
  --deg: 1.4rem;
  --h: 2.1rem;
  margin-left: 0.6rem;
  display: none !important;
}
.head strong::before,
.head strong::after {
  position: absolute;
  content: '';
}
.head strong::after {
  width: var(--circle);
  height: var(--circle);
  border-radius: 50%;
  border: 2px solid #c9e7a0;
  right: 0;
  bottom: 0;
  transform: translate(100%, 50%);
}
.head strong::before {
  width: 17.8rem;
  height: var(--h);
  background-image: linear-gradient(to left, #c9e7a0 45.51%, transparent);
  right: calc(100% - 1px);
  bottom: -2px;
  clip-path: polygon(0 0, calc(100% - var(--deg)) 0, 100% calc(100% - 2px), calc(100% - 1px) 100%, calc(100% - var(--deg) - 1px) 2px, 0 2px);
}
.head strong i {
  position: absolute;
  display: block;
  left: 116%;
  width: 100vw;
  height: calc(var(--h) * 0.43);
  bottom: -2px;
  background: url("../img/subtitle-mask.svg") no-repeat left bottom / contain;
  content: '';
}
.head strong:has(i) {
  margin-left: auto;
  margin-right: 5.9rem;
  min-width: 11.3rem;
  text-align: center;
}
.head strong:has(i)::after {
  right: unset;
  left: 0;
  transform: translate(-100%, 50%);
}
.head strong:has(i)::before {
  right: unset;
  left: 100%;
  transform: rotateY(180deg);
  width: 24rem;
}
.head h1 {
  font-size: 5.8rem;
  line-height: 6.9rem;
}
.head h2 {
  position: relative;
  font-size: 5rem;
  line-height: 6rem;
  --deg: 3.5rem;
  --h: 3.7rem;
  --t: -0.5rem;
  font-weight: 700;
}
.head h2 span {
  color: var(--primary);
}
.head h2::before,
.head h2::after {
  position: absolute;
  right: calc(100% + 2.55rem);
  content: '';
  top: var(--t);
}
.head h2::before {
  right: calc(100% + 2.8rem + var(--circle));
  width: 100vw;
  height: var(--h);
  background-color: var(--primary);
  clip-path: polygon(0 0, calc(100% - var(--deg) * 1.73) 0, calc(100% - var(--deg) * 0.73 + 1px) calc(100% - 2px), 100% calc(100% - 2px), 100% 100%, calc(100% - var(--deg) * 0.73) 100%, calc(100% - var(--deg) * 1.73 - 1px) 2px, 0 2px);
}
.head h2::after {
  width: var(--circle);
  height: var(--circle);
  border-radius: 50%;
  border: 2px solid var(--primary);
  top: calc(var(--h) + var(--t));
  transform: translateY(-55%);
}
.head p {
  font-size: 2.2rem;
  line-height: 3.2rem;
  color: var(--text);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.3s;
  background-color: transparent;
}
header > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
header::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-image: linear-gradient(to bottom, #010b1e -29.412%, transparent 78.15%);
  opacity: 0.61;
  pointer-events: none;
  transition: all 0.3s;
}
header.bg,
header:hover,
header.sticky {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
header.bg > img,
header:hover > img,
header.sticky > img {
  opacity: 1;
}
header.bg::before,
header:hover::before {
  opacity: 0;
}
header.opt {
  top: -11.9rem;
}
header.sticky {
  position: sticky;
}
header .inner {
  width: calc(100% - 4rem);
  max-width: 180rem;
  margin: 0 auto;
}
header .left {
  display: flex;
  align-items: center;
  margin-right: auto;
}
header .left .logo {
  display: block;
  position: relative;
}
header .left .logo img {
  display: block;
  width: auto;
  height: 6.6rem;
}
header .left .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .menu {
  display: flex;
  gap: 5.5rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li::after {
  width: 0;
  height: 2px;
  position: absolute;
  left: 50%;
  top: 65%;
  content: '';
  border-radius: 10px;
  background-color: var(--primary);
  transform: translateX(-50%);
  transition: all 0.3s;
}
header nav .menu > li > a {
  display: block;
  font-size: 2rem;
  transition: all 0.3s;
  color: #fff;
  line-height: 11.9rem;
  letter-spacing: 0.5px;
}
header nav .menu > li.current-menu-item::after,
header nav .menu > li.current-menu-parent::after,
header nav .menu > li:hover::after {
  width: 100%;
}
header nav .menu > li:hover ul {
  opacity: 1;
  pointer-events: all;
  padding: 1.6rem 2.4rem;
}
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;
  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;
  display: none;
}
header nav .sub-menu > li {
  margin-bottom: 0.5rem;
  transition: all 0.4s;
  transform: translateY(-1.6rem);
}
header nav .sub-menu > li > a {
  display: block;
  padding: 0.8rem 0;
  transition: all 0.3s;
  position: relative;
}
header nav .sub-menu > li > a::after {
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-color: var(--primary);
  transition: all 0.3s;
}
header nav .sub-menu > li > a:hover::after {
  width: 100%;
}
header .btns {
  gap: 4.1rem;
  display: flex;
  align-items: center;
  min-height: 11.9rem;
  margin-left: 2.5%;
}
header .btns .btn_search {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
.header_search{
  width: 0;
  overflow: hidden;
  transition: all 0.3s;
}
.header_search.active{
  width: 23.5rem;
}
.header_search input{
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.6rem;
}
header .btns .btn_lang {
  width: 2.3rem;
  height: 2.3rem;
  cursor: pointer;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
}
header .btns .btn_menu {
  display: none;
}
.header_menu {
  position: absolute;
  width: 100%;
  left: 50%;
  right: 0;
  transform: translateX(-50%);
  background-color: #fff;
  z-index: 990;
  max-height: calc(100vh - 16rem);
  overflow-y: auto;
  display: none;
  width: max-content;
  padding-left: 5rem;
  padding-right: 5rem;
}
.header_menu .content {
  max-width: 140rem;
}
.header_menu ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4rem 2rem;
  padding: 8rem 0;
}
.header_menu ul li {
  width: 23%;
}
.header_menu ul a {
  display: inline-grid;
  grid-template-columns: 7rem auto;
  align-items: center;
  font-size: 2rem;
  font-weight: 500;
  gap: 2rem;
  transition: all 0.3s;
}
.header_menu ul a:hover {
  color: var(--primary);
}
.header_menu ul .icon {
  padding-bottom: 100%;
  border-radius: 1rem;
  background-color: var(--primary);
  background-color: transparent !important;
}
#header_overlay {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 991;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
}
#header_overlay.active {
  opacity: 1;
  pointer-events: all;
}
footer .footer_main {
  padding: 8.8rem 0 10.3rem;
}
footer .footer_main strong {
  display: block;
  text-transform: uppercase;
  font-size: 1.8rem;
  color: #001119;
}
footer .footer_main .flex {
  gap: 6.4rem 2rem;
}
footer .footer_main .nav {
  flex: 1;
  max-width: 102rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  gap: 5.5rem 5%;
}
footer .footer_main .slide_intro {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e5e5;
  gap: 3rem;
  padding-bottom: 4.5rem;
}
footer .footer_main .slide_intro .logo {
  display: block;
  position: relative;
  max-width: 28.8rem;
}
footer .footer_main .slide_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .footer_main .slide_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .footer_main .slide_intro .social {
  gap: 2rem 1.4rem;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1px;
}
footer .footer_main .slide_intro .social a {
  opacity: 1;
  display: block;
  width: 5.4rem;
  height: 5.4rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  background-color: var(--primary);
  background-color: #999;
}
footer .footer_main .slide_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
footer .footer_main .slide_intro .social a:hover {
  transform: scale(1.1);
  background-color: var(--primary);
}
footer .footer_main .slide_intro .social .facebook a::after {
  background-image: url(../img/facebook.svg);
}
footer .footer_main .slide_intro .social .twitter a::after {
  background-image: url(../img/twitter.svg);
}
footer .footer_main .slide_intro .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .footer_main .slide_intro .social .instagram a::after {
  background-image: url(../img/instagram.svg);
}
footer .footer_main .slide_intro .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
footer .footer_main .slide_obj strong {
  margin-bottom: 2.4rem;
}
footer .footer_main .slide_obj li a {
  color: #161616;
  opacity: 0.75;
  line-height: 2.4rem;
  transition: all 0.3s;
  vertical-align: top;
  text-decoration: underline transparent;
}
footer .footer_main .slide_obj li a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .footer_main .slide_obj li + li {
  margin-top: 1.4rem;
}
footer .footer_main .slide_connect li {
  position: relative;
  padding-left: 3.5rem;
}
footer .footer_main .slide_connect li::before {
  content: '';
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  background: no-repeat center left / contain;
  position: absolute;
  left: 0;
  top: 2px;
}
footer .footer_main .slide_connect li a {
  opacity: 1;
}
footer .footer_main .slide_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
}
footer .footer_main .slide_connect .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .footer_main .slide_connect .whatsapp::before {
  background-image: url(../img/whatsapp.svg);
}
footer .footer_main .slide_connect .wechat::before {
  background-image: url(../img/wechat.svg);
}
footer .footer_main .slide_msg {
  width: 49.1rem;
}
footer .footer_main .slide_msg strong {
  margin-bottom: 3.1rem;
}
footer .footer_main .slide_msg form {
  display: grid;
  gap: 1.8rem;
}
footer .footer_main .slide_msg form span {
  width: 100%;
}
footer .footer_main .slide_msg form input,
footer .footer_main .slide_msg form textarea,
footer .footer_main .slide_msg form select {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  color: rgba(22, 22, 22, 0.75);
  border: 1px solid #dbdbdb;
  background-color: transparent;
  border-radius: 0.6rem;
  height: 5.3rem;
  padding: 0 1.9rem 1px;
}
footer .footer_main .slide_msg form input::placeholder,
footer .footer_main .slide_msg form textarea::placeholder,
footer .footer_main .slide_msg form select::placeholder {
  color: rgba(22, 22, 22, 0.75);
}
footer .footer_main .slide_msg form select {
  background: url("../img/icon-select.svg") no-repeat center right 2rem/0.9rem;
  padding-right: 4rem;
}
footer .footer_main .slide_msg form textarea {
  height: 13.6rem;
  padding: 1.9rem;
}
footer .footer_main .slide_msg form .grid {
  display: grid;
  grid-template-columns: 32.82% 1fr;
  gap: 1rem;
}
footer .footer_main .slide_msg form span:has(input[type=checkbox]) {
  margin-top: -1px;
}
footer .footer_main .slide_msg form input[type=checkbox] {
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border-radius: 4px;
  vertical-align: top;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
}
footer .footer_main .slide_msg 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;
}
footer .footer_main .slide_msg form input[type=checkbox]:checked::after {
  opacity: 1;
}
footer .footer_main .slide_msg form input[type=checkbox] ~ span {
  vertical-align: top;
  cursor: pointer;
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.8rem;
  color: #4f5154;
  width: calc(100% - 2.7rem);
  padding-left: 0.9rem;
}
footer .footer_main .slide_msg form input[type=checkbox] ~ span a {
  color: #121e3b;
  font-weight: 500;
  text-decoration: underline;
  transition: all 0.3s;
}
footer .footer_main .slide_msg form input[type=checkbox] ~ span a:hover {
  color: var(--primary);
  text-decoration-color: transparent;
}
footer .footer_main .slide_msg form span:has(.btn) {
  margin-top: -0.3rem;
}
footer .footer_main .slide_msg form .btn {
  min-width: 18.6rem;
  font-size: 1.6rem;
  line-height: 5.6rem;
  grid-template-columns: 1fr 4rem;
  padding-left: 4rem;
}
footer .footer_main .slide_msg form .btn input {
  display: none;
}
footer .footer_bottom {
  background-color: #eff2f6;
  padding: 1.8rem 0 2rem;
}
footer .footer_bottom .flex {
  padding-right: 8.2rem;
  gap: 3rem 1.55rem;
}
footer .footer_bottom p,
footer .footer_bottom a {
  color: #001119;
  font-size: 1.4rem;
}
footer .footer_bottom a {
  opacity: 0.68;
  display: block;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .footer_bottom a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .footer_bottom ul {
  gap: 2rem 0;
  display: flex;
  flex-wrap: wrap;
}
footer .footer_bottom ul li {
  display: inline-flex;
  align-items: center;
}
footer .footer_bottom ul li::before {
  content: '';
  width: 1px;
  height: 1.1rem;
  background-color: #001119;
  opacity: 0.15;
  display: inline-block;
  margin: 0 1.95rem 0 1.5rem;
}
footer .footer_bottom ul li:first-child::before {
  display: none;
}
footer .footer_bottom .btn_back {
  margin-left: auto;
}
footer .footer_float {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99;
  pointer-events: none;
  bottom: 1.8rem;
}
footer .footer_float #back_to_top {
  width: 5.8rem;
  display: block;
  margin-left: auto;
  background: url("../img/icon-top.svg") no-repeat center / contain var(--primary);
  transition: all 0.3s;
  opacity: 0;
  cursor: pointer;
  border-radius: 50%;
}
footer .footer_float #back_to_top.active {
  opacity: 1;
  pointer-events: all;
}
footer .footer_float #back_to_top::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  pointer-events: none;
}
footer .footer_float #back_to_top:hover {
  transform: scale(1.1);
}
.footer_contact .flex {
  min-height: 37.3rem;
  padding: 4rem 0;
}
.footer_contact .head {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding-bottom: 0.4%;
}
.footer_contact p {
  margin-top: 1.7rem;
}
.footer_contact .btn {
  margin-top: 2.3rem;
  gap: 2rem;
}
.toplevel_page_sytech_fronteditor .page_contact {
  margin-top: 0;
}
.page_contact .img_bg {
  border-radius: 2.9rem;
  overflow: hidden;
}
.page_contact .flex {
  min-height: 37.3rem;
  padding: 4rem 2rem;
}
.page_contact .head {
  max-width: 138.2rem;
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
  padding-bottom: 0.4%;
}
.page_contact h2 {
  max-width: 72.7rem;
}
.page_contact p {
  margin-top: 1.5rem;
}
.page_contact .btn {
  margin-top: 1.7%;
  gap: 0.7rem;
}
.page_partners .inner {
  overflow: hidden;
  padding: 12.3rem 0 15.1rem;
  position: relative;
}
.page_partners .inner::after {
  width: 100%;
  height: 27.5rem;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-image: linear-gradient(to top, #fff 16.7%, transparent 77.5%);
  pointer-events: none;
}
.page_partners strong {
  margin-bottom: 2.7rem;
}
.page_partners h2 {
  max-width: 80rem;
}
.page_partners p {
  margin-top: 2rem;
}
.page_partners .num_box {
  min-width: 24.25%;
  border-left: 2px solid var(--primary);
  padding-left: 4.4rem;
  padding-bottom: 0.6rem;
  margin-bottom: 1.45%;
}
.page_partners .num_box .wrap {
  font-size: 5.8rem;
  font-weight: 500;
  color: var(--primary);
  white-space: nowrap;
}
.page_partners .num_box .wrap .num {
  font-size: 7.2rem;
  color: var(--title);
  margin-right: -0.7rem;
}
.page_partners .num_box .label {
  font-size: 2rem;
  color: var(--text);
  margin-top: 1.3rem;
}
.page_partners .main {
  max-width: 192rem;
  margin: 10rem auto 0;
}
.page_partners .page_partners_swiper {
  margin-top: 1.4rem;
}
.page_partners .page_partners_swiper .swiper-wrapper {
  transition: linear;
}
.page_partners .page_partners_swiper .swiper-slide {
  max-width: 19.9rem;
}
.page_partners .page_partners_swiper .img {
  padding-bottom: 100%;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.page_partners .page_partners_swiper .img:hover {
  transform: scale(1.1);
}
.page_partners .mask_img {
  width: 63.875%;
  height: auto;
  position: absolute;
  left: 50%;
  top: 16%;
  transform: translateX(-50%);
  opacity: 0.85;
  pointer-events: none;
}
.page_resources .inner {
  padding: 14.6rem 0 10.6rem;
}
.page_resources strong {
  margin-bottom: 2.4rem;
}
.page_resources .page_resources_swiper {
  margin-top: 3rem;
  padding: 1rem 0;
}
.page_resources .page_resources_swiper .active .item {
  background-color: #fff;
  box-shadow: 0 1.5rem 1rem rgba(193, 202, 209, 0.45);
}
.page_resources .page_resources_swiper .active .item::after {
  opacity: 1;
}
.page_resources .item {
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  height: 100%;
  border-radius: 1.6rem;
  background-color: #fff;
  padding: 6.4rem 2rem 4.5rem;
}
.page_resources .item::after {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 1.6rem;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  content: '';
  pointer-events: none;
  opacity: 0;
}
.page_resources .item .icon {
  width: 7rem;
  height: 7rem;
  margin: 0 auto;
}
.page_resources .item .title {
  font-size: 2.2rem;
  font-weight: 500;
  color: #161616;
  text-align: center;
  margin-top: 2.7rem;
  flex: 1;
}
.page_resources .item i {
  width: 1.9rem;
  height: 1.9rem;
  display: block;
  content: '';
  background: url("../img/arrow-r2.svg") no-repeat center / contain;
  margin: 4.2rem auto 0;
}
.products_banner::before {
  width: 100%;
  height: 33.985%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-image: linear-gradient(to top, #0a162d, transparent 68.27%);
  opacity: 0.63;
  pointer-events: none;
}
.products_banner .flex {
  height: 101vh;
  max-height: 92.1rem;
  min-height: max-content;
  padding: 14rem 0;
}
.products_banner strong {
  margin-bottom: 3rem;
}
.products_banner .head {
  flex: 1;
  max-width: 84.8rem;
  padding-bottom: 1%;
}
.products_banner p {
  max-width: 62.5rem;
  margin-top: 3.4rem;
}
.products_banner .btn {
  margin-top: 3.8rem;
}
.page_products {
  padding: 12.6rem 0 16rem;
}
.page_products .head {
  padding-bottom: 1.2rem;
}
.page_products strong {
  margin-bottom: 1.8rem;
}
.page_products .page_products_swiper {
  margin-top: 3.3rem;
}
.page_products .page_products_swiper .swiper-slide {
  max-width: 38.4rem;
}
.page_products p.center:has(.btn_line) {
  margin-top: 1.5rem;
}
.resources_banner:not(:has(.nav_list)) {
  padding-bottom: 12.7rem;
}
.resources_banner .flex {
  min-height: 79.4rem;
  padding: 18.5rem 0 6rem;
}
.resources_banner .head {
  flex: 1;
  max-width: 65.2rem;
}
.resources_banner p {
  max-width: 50.4rem;
  margin-top: 2.3rem;
}
.resources_banner .search_form {
  margin-top: 4rem;
}
.resources_banner .nav_list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  color: #fff;
  padding-bottom: 5.4rem;
  gap: 3.1rem 1.9375%;
}
.resources_banner .nav_list .nav_item {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  display: grid;
  grid-template-columns: 1fr auto;
  height: 100%;
  align-items: center;
  transition: all 0.3s;
  border-bottom: 1px solid rgba(197, 204, 211, 0.45);
  gap: 1rem;
  padding: 1.8rem 0;
}
.resources_banner .nav_list .nav_item.active,
.resources_banner .nav_list .nav_item:hover {
  border-bottom-color: var(--primary);
}
.resources_banner .nav_list .nav_item.active .btn_circle,
.resources_banner .nav_list .nav_item:hover .btn_circle {
  background-color: var(--primary);
  border-color: var(--primary);
}
.resources_banner .nav_list .nav_item.active .btn_circle::after,
.resources_banner .nav_list .nav_item:hover .btn_circle::after {
  filter: unset;
}
.resources_banner .nav_list span {
  margin-bottom: 0.6rem;
}
.resources_banner .nav_list .btn_circle {
  width: 3.6rem;
  border-color: rgba(255, 255, 255, 0.18);
  background-color: transparent;
}
.resources_banner .nav_list .btn_circle::after {
  background-image: url("../img/arrow-down.svg");
  background-size: 26%;
  filter: contrast(0) brightness(2);
}
.page_faqs {
  overflow: hidden;
  padding: 10.8rem 0 15.8rem;
}
.page_faqs .lt {
  width: 29.75%;
}
.page_faqs .lt strong {
  display: none;
}
.page_faqs p {
  max-width: 41.2rem;
  margin-top: 3.7rem;
}
.page_faqs .btn_line {
  margin-top: 4.3rem;
  min-width: 23.2rem;
}
.page_faqs .rt {
  flex: 1;
  max-width: 97.1rem;
  margin-top: 1.5rem;
}
.page_faqs .rt strong {
  margin-bottom: 0;
}
.page_faqs .faqs {
  margin-top: 4rem;
}
.page_faqs .faqs .faq_item {
  position: relative;
  z-index: 2;
  transition: all 0.3s;
  border-radius: 1.6rem;
  background: url("../img/faq-bg.png") no-repeat center / cover;
  margin-bottom: 2rem;
}
.page_faqs .faqs .faq_item::after {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  border-radius: 1.6rem;
  border: 2px solid var(--primary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  background-color: #fff;
  z-index: -1;
  box-shadow: 1.2rem 1.2rem 1.2rem rgba(191, 211, 224, 0.45);
}
.page_faqs .faqs .faq_item.active {
  margin-bottom: 3.5rem;
}
.page_faqs .faqs .faq_item.active::after {
  opacity: 1;
}
.page_faqs .faqs .faq_item.active .question::after {
  transform: rotate(45deg);
}
.page_faqs .faqs .faq_item:first-child .answer {
  display: block;
}
.page_faqs .faqs .faq_item:last-child {
  margin-bottom: 0;
}
.page_faqs .faqs .question {
  display: grid;
  grid-template-columns: 1fr 1.8rem;
  align-items: center;
  font-size: 2.4rem;
  font-weight: 500;
  cursor: pointer;
  gap: 2rem;
  padding: 2.9rem 4.12% 3.3rem;
}
.page_faqs .faqs .question::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/add.svg") no-repeat center / contain;
  transition: all 0.3s;
}
.page_faqs .faqs .answer {
  display: none;
  font-size: 1.8rem;
  line-height: 3.2rem;
  opacity: 0.75;
  padding: 1.7rem 4.12% 4.3rem;
}
div.pagination {
  width: auto;
  font-size: 1.8rem;
  color: #a2a2a2;
  display: flex;
  align-items: center;
}
div.pagination.swiper-pagination-lock {
  display: block;
  opacity: 0;
}
div.pagination .current {
  font-weight: 500;
  color: #0c0c0c;
}
div.pagination .line {
  width: 2.5rem;
  height: 1px;
  background-color: #a2a2a2;
  display: inline-block;
  margin: 0 1.5rem 0 1.2rem;
}
.sec_nav {
  border-radius: 4rem;
  background-color: rgba(243, 246, 252, 0.85);
  border: 1px solid var(--primary);
  max-width: max-content;
  overflow: auto;
  padding: 1.1rem 1.6rem 0.9rem 1.4rem;
}
.sec_nav .nav_list {
  gap: 2px;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.sec_nav .nav_list::before {
  content: '';
  display: block;
  width: var(--width);
  height: var(--height);
  position: absolute;
  left: var(--left);
  top: var(--top);
  z-index: -1;
  background-color: var(--primary);
  border-radius: 3rem;
  transition: all 0.3s;
}
.sec_nav .nav_item {
  cursor: pointer;
  display: block;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.2rem;
  color: rgba(28, 28, 28, 0.5);
  padding: 1.7rem 3.7rem 2rem;
  transition: all 0.3s;
}
.sec_nav .nav_item:hover,
.sec_nav .nav_item.active {
  color: #121e3b;
}
.search_form {
  max-width: 48.4rem;
}
.search_form form {
  height: 6.4rem;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.22);
  display: grid;
  grid-template-columns: 1fr 5.4rem;
  padding: 0.5rem;
  padding-left: 0;
}
.search_form input[type=text] {
  display: block;
  width: 100%;
  background-color: transparent;
  color: #fff;
  font-size: 1.8rem;
  padding: 0 3.1rem 2px;
}
.search_form input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.88);
}
.search_form input[type=submit] {
  display: block;
  width: 100%;
  border-radius: 50%;
  color: transparent;
  text-indent: -999px;
  background: url("../img/icon-search-b.svg") no-repeat center / 35.186% var(--primary);
  transition: all 0.3s;
}
.search_form input[type=submit]:hover {
  transform: scale(1.05);
}
.pd_title {
  position: relative;
  padding-left: 12.3rem;
}
.pd_title .icon {
  position: absolute;
  left: 0;
  top: -1.9rem;
  width: 9.4rem;
  height: 9.4rem;
  border-radius: 1.6rem;
  border: 2px solid var(--primary);
}
.filter_box .flex {
  gap: 3rem 1.9rem;
}
.filter_box .label {
  font-size: 2rem;
  color: #212121;
  margin-right: 0.7rem;
}
.filter_box select {
  border-radius: 100px;
  border: 1px solid #cbcdd1;
  font-size: 2rem;
  font-weight: 500;
  color: #212121;
  background: url("../img/icon-select.svg") no-repeat center right 3.4rem/1.6rem;
  height: 6.5rem;
  padding: 0 6rem 1px 3.3rem;
  min-width: 17%;
}
.filter_box form {
  display: grid;
  grid-template-columns: 1fr 5.4rem;
  height: 6.5rem;
  border: 1px solid #cbcdd1;
  border-radius: 100px;
  min-width: 33%;
}
.filter_box form input[type=text] {
  display: block;
  width: 100%;
  font-size: 2rem;
  color: #212121;
  background-color: transparent;
  padding: 0 3.5rem 1px;
}
.filter_box form input[type=text]::placeholder {
  color: #939393;
}
.filter_box form input[type=submit] {
  text-indent: -999px;
  color: transparent;
  background: url("../img/icon-search-b.svg") no-repeat center left / 2.1rem;
  display: block;
  width: 100%;
}
.filter_box .btn_reset {
  background-color: transparent;
  font-size: 2rem;
  transition: all 0.3s;
  margin-left: auto;
}
.filter_box .btn_reset:hover {
  color: var(--primary);
}
.sec_bg {
  position: relative;
}
.sec_bg .mask_line {
  position: absolute;
  top: -1.1rem;
  width: 38.96%;
  height: 2.9rem;
}
.sec_bg .mask_line::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-image: linear-gradient(to left, #dfebf4, transparent);
  clip-path: polygon(0 0, 91% 0, 100% calc(100% - 2px), calc(100% - 1px) 100%, calc(91% - 1px) 2px, 0 2px);
}
.sec_bg .mask_line::after {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background-color: #dfebf4;
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  transform: translate(50%, 32%);
}
.sec_bg .mask_line2 {
  width: 74.7916667%;
  left: 20.15625%;
}
.sec_bg .mask_line2::before {
  background-image: linear-gradient(to right, #dfebf4, transparent);
  clip-path: polygon(20.47% 0%, 25% calc(100% - 2px), 100% calc(100% - 2px), 100% 100%, calc(25% - 1px) 100%, calc(20.47% - 1px) 2px, 0 2px, 0 0);
}
.sec_bg .mask_line2::after {
  right: unset;
  left: 0;
  bottom: unset;
  top: 0;
  transform: translate(-50%, -50%);
}
.sec_bg .img_bg {
  --deg: 2.6rem;
}
.sec_bg .img_bg > img {
  clip-path: polygon(35.3125% 0, 38.65% var(--deg), 100% var(--deg), 100% 100%, 0 100%, 0 0);
}
.sec_bg2 {
  position: relative;
}
.sec_bg2 .mask_line {
  position: absolute;
  top: -1.5rem;
  left: 58.021%;
  width: 12.24%;
  height: 2.9rem;
}
.sec_bg2 .mask_line::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-color: #dfebf4;
  clip-path: polygon(0 0, 73% 0, 100% calc(100% - 2px), calc(100% - 1px) 100%, calc(73% - 1px) 2px, 0 2px);
}
.sec_bg2 .mask_line::after {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background-color: #dfebf4;
  position: absolute;
  right: 0;
  bottom: 0;
  content: '';
  transform: translate(50%, 32%);
}
.sec_bg2 .mask_line2 {
  width: 31.25%;
  height: 3.1rem;
  left: 1.98%;
  top: -1.4rem;
}
.sec_bg2 .mask_line2::before {
  clip-path: polygon(80.8333% calc(100% - 2px), calc(92.5% - 1px) 0, 100% 0, 100% 2px, 92.5% 2px, calc(80.8333% - 1px) 100%, 0 100%, 0 calc(100% - 2px));
}
.sec_bg2 .mask_line2::after {
  top: 0;
  bottom: unset;
  transform: translate(50%, -50%);
}
.sec_bg2 .img_bg {
  --deg: 2.6rem;
}
.sec_bg2 .img_bg > img {
  clip-path: polygon(0% var(--deg), 27.65625% var(--deg), 30.99% 0, 66.614% 0, 70% var(--deg), 100% var(--deg), 100% 100%, 0 100%);
}
.sec_bg3 {
  position: relative;
}
.sec_bg3 .mask_line {
  position: absolute;
  top: -1.3rem;
  left: 4.95%;
  width: 74.7916667%;
  height: 2.8rem;
}
.sec_bg3 .mask_line::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-image: linear-gradient(to left, #dfebf4, transparent);
  clip-path: polygon(75.42% calc(100% - 2px), 79.5% 0, 100% 0, 100% 2px, calc(79.5% - 1px) 2px, calc(75.42% - 1px) 100%, 0 100%, 0 calc(100% - 2px));
}
.sec_bg3 .mask_line::after {
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background-color: #dfebf4;
  position: absolute;
  right: 0;
  top: 0;
  content: '';
  transform: translate(50%, -50%);
}
.sec_bg3 .img_bg {
  --deg: 2.6rem;
}
.sec_bg3 .img_bg > img {
  clip-path: polygon(61.35% var(--deg), 64.6875% 0, 100% 0, 100% 100%, 0 100%, 0 var(--deg));
}
.product_list .active a {
  box-shadow: 0 1rem 1rem rgba(193, 211, 198, 0.45);
}
.product_list .active a::after {
  opacity: 1;
}
.product_list .active .btn_circle {
  background-color: var(--primary);
  border-color: var(--primary);
}
.product_list .active .btn_circle::after {
  filter: unset;
}
.product_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  position: relative;
  border-radius: 1.2rem;
  border: 1px solid #bfc5d1;
  padding: 3.9rem 0 2.8rem;
  gap: 0.8rem;
}
.product_list a::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  left: -1px;
  top: -1px;
  border-radius: 1.2rem;
  /* border: 2px solid var(--primary); */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  pointer-events: none;
  opacity: 0;
  content: '';
}
.product_list a:hover img {
  transform: scale(1.02);
}
.product_list .info {
  flex: 1;
  padding: 0 7.833% 1.2rem;
  margin-top: -2px;
  min-height: 11rem;
}
.product_list .info strong {
  font-size: 1.8rem;
  font-weight: 400;
  color: #656575;
}
.product_list .info h3 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  margin-top: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product_list .img {
  padding-bottom: 67.89%;
}
.product_list .btn_circle {
  background-color: var(--title);
  border-color: var(--title);
  margin-right: 3.1rem;
  margin-left: auto;
  display: none !important;
}
.product_list .btn_circle::after {
  filter: contrast(0) brightness(2);
}
.blog_list .active .btn_circle {
  background-color: var(--primary);
  border-color: var(--primary);
}
.blog_list .active .title {
  text-decoration-color: #161616;
}
.blog_list a:hover img {
  transform: scale(1.02);
}
.blog_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog_list .img {
  padding-bottom: 62.57%;
  border-radius: 1.2rem;
}
.blog_list .btn_circle {
  position: absolute;
  top: 8.1%;
  right: 4.9%;
  background-color: #fff;
  border-color: #fff;
  width: 5.4rem;
}
.blog_list .btn_circle::after {
  filter: unset;
  background-image: url("../img/arrow-tr.svg");
  background-size: 28.8%;
}
.blog_list .metas {
  display: flex;
  align-items: center;
  margin-top: 2.9rem;
  padding-right: 0.7rem;
}
.blog_list .metas .date {
  color: #3f3f3f;
  opacity: 0.85;
}
.blog_list .metas .cat {
  font-size: 1.7rem;
  border-radius: 100px;
  background-color: #b3de7e;
  line-height: 3.7rem;
  padding: 0 1.7rem;
  min-width: 10.1rem;
  text-align: center;
}
.blog_list .metas .line {
  flex: 1;
  height: 1px;
  background-color: #0f0f0f;
  opacity: 0.19;
  margin: 0 2.4rem 0 1.5rem;
}
.blog_list .title {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 500;
  color: #161616;
  transition: all 0.3s;
  text-decoration: underline transparent;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 2.2rem;
}

body .wpcf7-spinner{
  width: 24px !important;
  position: absolute;
  right: 0;
}

body .wpcf7 form .wpcf7-response-output{
  padding: 0;
  margin: 0;
  border: none;
}




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;
} 

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



.default_head{
  padding: 9rem 0;
  background-color: #eee;
}
.default_head h1{
  font-size: 4.5rem;
}
.default_body{
  padding: 5rem 0;
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: #171717;
}

.default_body h2 {
  font-size: 2.6rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 3.5rem 0 3.3rem;
}
.default_body h3 {
  font-size: 2rem;
  line-height: 3.4rem;
  font-weight: 700;
  margin: 1.6rem 0 1rem;
}
.default_body p {
  margin: 1rem 0;
}
.default_body img {
  border-radius: 8px;
  width: 100%;
  display: block;
  object-fit: cover;
  margin: 4.7rem 0;
}
.default_body ul {
  margin: 1rem 0;
}
.default_body ul li {
  position: relative;
  padding-left: 2.4rem;
  margin-bottom: 1rem;
}
.default_body ul li:last-child {
  margin-bottom: 0;
}
.default_body ul li::before {
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  left: 0;
  top: 0.8rem;
  border-radius: 50%;
  background-color: var(--theme_color);
  content: '';
}



@media screen and (min-width: 769px) and (max-width: 1440px) {
  .content {
    padding: 0 2rem;
  }
  .swiper_content {
    padding: 1.5rem 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content,
  .swiper_content {
    max-width: 1024px;
  }
  header .btns {
    margin-left: 0;
  }
  header nav .menu {
    gap: 4rem;
  }
  .header_menu ul li {
    width: 30%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .resources_banner .nav_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  header .left {
    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;
  }
  header nav .con .menu > li > a {
    color: var(--title);
    line-height: 64px;
    padding: 0 0 0 32px;
    font-size: 18px;
    letter-spacing: unset;
  }
  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;
  }
  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;
    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;
    filter: contrast(0) brightness(2);
  }
  header .mega_menu {
    display: none !important;
  }
  header .header_menu {
    display: none !important;
  }
  .products_banner{
    position: relative;
  }
  .products_banner .content{
    z-index: 6;
  }
  .products_banner:after{
    content: "";
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
}
@media screen and (min-width: 769px) {
  ul::-webkit-scrollbar,
  div::-webkit-scrollbar {
    width: 4px;
  }
  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_line {
    font-size: 14px;
    line-height: 41px;
    padding: 0 5px 0 16px;
    grid-template-columns: 1fr 32px;
    min-width: 140px;
    gap: 10px;
  }
  .btn_circle,
  .btn_add,
  .btn_download {
    width: 40px;
  }
  .swiper_btns {
    gap: 8px;
    padding: 2px 5px;
  }
  .swiper_btns div {
    width: 40px;
  }
  .swiper_btns.lar {
    gap: 8px;
  }
  .swiper_btns.lar div {
    width: 40px;
  }
  .swiper_btns.middle {
    position: static;
    width: 100%;
    padding: 0 30px;
    transform: translate(0);
    margin-top: 30px;
    justify-content: flex-end;
    gap: 20px;
  }
  div.head {
    --circle: 5px;
  }
  div.head.sm_p p {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head.banner p {
    line-height: 1.5;
  }
  div.head.all_r h2::before {
    left: calc(100% + 12px);
  }
  div.head.all_r h2::after {
    left: calc(100% + 5px);
  }
  div.head .subtitle,
  div.head strong {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    word-spacing: unset;
    letter-spacing: 1px;
    padding: 0 5px;
    --deg: 12px;
    --h: 16px;
    margin-left: 0;
  }
  div.head .subtitle::before,
  div.head strong::before {
    width: 30px;
  }
  div.head .subtitle i,
  div.head strong i {
    left: calc(100% + 5px);
    bottom: 0;
  }
  div.head .subtitle:has(i),
  div.head strong:has(i) {
    margin-right: 0;
    min-width: 120px;
    margin-left: auto;
  }
  div.head .subtitle:has(i)::before,
  div.head strong:has(i)::before {
    width: 30px;
  }
  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;
    --deg: 12px;
    --h: 16px;
    --t: -2px;
  }
  div.head h2::before {
    right: calc(100% + 12px);
  }
  div.head h2::after {
    right: calc(100% + 5px);
  }
  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_line {
    margin-top: 20px;
    padding: 0 5px 0 16px;
    min-width: 140px;
    gap: 10px;
  }
  header {
    width: 100%;
    left: 0;
    top: 0;
    transform: translate(0);
    position: sticky;
  }
  header.opt {
    top: 0;
  }
  header > img {
    opacity: 1;
  }
  header::before {
    display: none;
  }
  header .left .logo img {
    height: 35px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
  }
  header .btns .btn {
    display: none;
  }
  footer .footer_main {
    padding: 50px 0;
  }
  footer .footer_main .flex {
    display: block;
  }
  footer .footer_main strong {
    font-size: 18px;
  }
  footer .footer_main .nav {
    width: 100%;
    max-width: unset;
    display: block;
  }
  footer .footer_main .slide_intro {
    width: 100%;
    display: block;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  footer .footer_main .slide_intro .logo {
    max-width: 200px;
    margin: 0 auto;
  }
  footer .footer_main .slide_intro .social {
    margin-top: 30px;
    gap: 16px;
    justify-content: space-around;
    margin-bottom: 0;
  }
  footer .footer_main .slide_intro .social a {
    width: 40px;
    height: 40px;
  }
  footer .footer_main .slide_obj:not(.slide_connect) {
    width: 100%;
  }
  footer .footer_main .slide_obj:not(.slide_connect) strong {
    font-size: 16px;
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 16px;
  }
  footer .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;
  }
  footer .footer_main .slide_obj:not(.slide_connect).active strong::after {
    transform: translateY(-50%) rotate(180deg);
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div {
    display: none;
    padding: 0 20px 20px;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div li + li {
    margin-top: 14px;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div a {
    font-size: 14px;
    line-height: normal;
    display: block;
    font-weight: normal;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .footer_main .slide_connect {
    width: 100%;
    padding-top: 20px;
  }
  footer .footer_main .slide_connect strong {
    margin-bottom: 20px;
  }
  footer .footer_main .slide_connect li + li {
    margin-top: 20px;
  }
  footer .footer_main .slide_connect li {
    padding-left: 35px;
  }
  footer .footer_main .slide_connect li::before {
    width: 18px;
    height: 18px;
  }
  footer .footer_main .slide_connect li a {
    font-size: 16px;
  }
  footer .footer_main .slide_msg {
    width: 100%;
    margin-top: 30px;
  }
  footer .footer_main .slide_msg strong {
    margin-bottom: 20px;
  }
  footer .footer_main .slide_msg form {
    gap: 16px;
  }
  footer .footer_main .slide_msg form input,
  footer .footer_main .slide_msg form textarea,
  footer .footer_main .slide_msg form select {
    font-size: 14px;
    height: 50px;
    padding: 0 20px;
  }
  footer .footer_main .slide_msg form select {
    background-size: 8px;
    background-position: right 20px center;
    padding-right: 40px;
  }
  footer .footer_main .slide_msg form textarea {
    height: 120px;
    padding: 20px;
  }
  footer .footer_main .slide_msg form span:has(input[type=checkbox]) {
    margin-top: 0;
  }
  footer .footer_main .slide_msg form input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  footer .footer_main .slide_msg form input[type=checkbox] ~ span {
    width: calc(100% - 24px);
    padding-left: 12px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
  }
  footer .footer_main .slide_msg form span:has(.btn) {
    margin-top: 1rem;
  }
  footer .footer_main .slide_msg form .btn {
    min-width: 140px;
    font-size: 14px;
    line-height: 41px;
    grid-template-columns: 1fr 32px;
    padding-left: 16px;
  }
  footer .footer_bottom {
    padding: 20px 0;
  }
  footer .footer_bottom .flex {
    gap: 30px;
    flex-direction: column-reverse;
    align-items: center;
    padding: 0;
    text-align: center;
  }
  footer .footer_bottom ul {
    gap: 16px 0;
  }
  footer .footer_bottom ul li::before {
    height: 10px;
    margin: 0 10px;
  }
  footer .footer_bottom .btn_back {
    margin-left: 0;
  }
  footer .footer_bottom p {
    font-size: 13px;
  }
  footer .footer_bottom a {
    font-size: 14px;
  }
  footer .footer_float {
    bottom: 20px;
  }
  footer .footer_float #back_to_top {
    width: 40px;
  }
  .footer_contact .flex {
    min-height: unset;
    padding: 50px 0;
  }
  .footer_contact .head {
    padding: 0;
    display: block;
  }
  .page_contact .img_bg {
    border-radius: 10px;
  }
  .page_contact .flex {
    min-height: unset;
    padding: 50px 20px;
  }
  .page_contact .head {
    display: block;
    padding: 0;
  }
  .page_partners .inner {
    padding: 50px 0;
  }
  .page_partners .num_box {
    min-width: unset;
    padding-left: 20px;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
    margin-left: auto;
  }
  .page_partners .num_box .wrap {
    font-size: 18px;
  }
  .page_partners .num_box .wrap .num {
    font-size: 22px;
    margin-right: 0;
  }
  .page_partners .num_box .label {
    font-size: 14px;
    margin-top: 10px;
  }
  .page_partners .main {
    margin-top: 30px;
  }
  .page_partners .main .page_partners_swiper {
    margin-top: 16px;
  }
  .page_partners .main .page_partners_swiper .swiper-slide {
    max-width: 100px;
  }
  .page_resources .inner {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_resources .swiper_content {
    padding-top: 0;
    padding-bottom: 0;
    overflow: unset;
  }
  .page_resources .page_resources_swiper {
    margin-top: 30px;
    padding: 0;
  }
  .page_resources .item {
    border-radius: 10px;
    padding: 20px;
  }
  .page_resources .item::after {
    border-radius: 10px;
  }
  .page_resources .item .icon {
    width: 50px;
    height: 50px;
  }
  .page_resources .item .title {
    font-size: 14px;
    margin-top: 16px;
  }
  .page_resources .item i {
    width: 14px;
    height: 14px;
    margin-top: 20px;
  }
  .page_products {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_products .head {
    padding-bottom: 0;
  }
  .page_products .swiper_content {
    padding-top: 0;
    padding-bottom: 0;
    overflow: unset;
  }
  .page_products .page_products_swiper {
    margin-top: 30px;
  }
  .page_products .page_products_swiper .swiper-slide {
    max-width: 346px;
  }
  .page_products p.center:has(.btn_line) {
    margin-top: 30px;
  }
  .page_faqs {
    padding: 50px 0;
  }
  .page_faqs .lt {
    width: 100%;
  }
  .page_faqs .lt > div:has(h2) {
    display: flex;
    flex-direction: column;
  }
  .page_faqs .lt strong {
    display: inline-block;
  }
  .page_faqs .rt {
    max-width: unset;
    margin-top: 0;
  }
  .page_faqs .rt strong {
    display: none;
  }
  .page_faqs .faqs {
    margin-top: 0;
  }
  .page_faqs .faqs .faq_item {
    border-radius: 10px;
    margin-bottom: 16px;
  }
  .page_faqs .faqs .faq_item::after {
    border-radius: 10px;
  }
  .page_faqs .faqs .faq_item.active {
    margin-bottom: 16px;
  }
  .page_faqs .faqs .question {
    grid-template-columns: 1fr 12px;
    gap: 16px;
    font-size: 18px;
    padding: 14px 20px;
  }
  .page_faqs .faqs .answer {
    font-size: 14px;
    line-height: 1.4;
    padding: 10px 20px 20px;
  }
  .resources_banner {
    position: relative;
  }
  .resources_banner::before {
    width: 100%;
    height: 120px;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    background-image: linear-gradient(to top, var(--title), transparent);
    opacity: 0.7;
  }
  .resources_banner:not(:has(.nav_list)) {
    padding-bottom: 0;
  }
  .resources_banner .flex {
    min-height: unset;
    padding: 50px 0;
  }
  .resources_banner .head {
    max-width: unset;
  }
  .resources_banner .search_form {
    margin-top: 20px;
  }
  .resources_banner .nav {
    position: relative;
  }
  .resources_banner .nav::after {
    width: 20%;
    height: 100%;
    position: absolute;
    right: -30px;
    bottom: 0;
    content: '';
    background-image: linear-gradient(to left, var(--title), transparent);
    opacity: 0.7;
    pointer-events: none;
  }
  .resources_banner .nav_list {
    width: calc(100% + 60px);
    padding: 0 30px 20px;
    margin: 0 -30px;
    overflow-x: auto;
    gap: 16px;
    display: flex;
  }
  .resources_banner .nav_list::-webkit-scrollbar {
    display: none;
  }
  .resources_banner .nav_list .nav_item {
    min-width: 180px;
    font-size: 14px;
    padding: 10px 0;
    gap: 10px;
  }
  .resources_banner .nav_list .nav_item span {
    margin-bottom: 0;
  }
  .resources_banner .nav_list .nav_item .btn_circle {
    width: 40px;
  }
  .products_banner {
    position: relative !important;
  }
  .products_banner::before {
    width: 100% !important;
    height: 100% !important;
    position: absolute !important;
    left: 0 !important;
    top: 0 !important;
    content: '';
    background-color: var(--title);
    opacity: 0.5 !important;
    pointer-events: none;
  }
  .products_banner .flex {
    height: auto !important;
    min-height: unset !important;
    max-height: unset !important;
    padding: 50px 0 !important;
  }
  .products_banner .head {
    max-width: unset !important;
    padding: 0 !important;
  }
  div.sec_nav {
    border-radius: 100px;
    padding: 5px;
    overflow: hidden;
    position: relative;
  }
  div.sec_nav::after {
    width: 20%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    content: '';
    background-image: linear-gradient(to left, #fff 50%, transparent);
    opacity: 0.85;
    z-index: 2;
    pointer-events: none;
  }
  div.sec_nav .nav_list {
    flex-wrap: nowrap;
    overflow-x: auto;
    border-radius: 100px;
  }
  div.sec_nav .nav_list::-webkit-scrollbar {
    display: none;
    gap: 16px;
  }
  div.sec_nav .nav_list::before {
    border-radius: 100px;
  }
  div.sec_nav .nav_item {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 20px;
    white-space: nowrap;
  }
  div.pagination {
    font-size: 14px;
  }
  div.pagination .line {
    width: 20px;
    margin: 0 10px;
  }
  .search_form {
    max-width: 320px;
  }
  .search_form form {
    height: 50px;
    grid-template-columns: 1fr 40px;
    padding: 5px;
    padding-left: 0;
  }
  .search_form form input[type=text] {
    font-size: 14px;
    padding: 0 20px;
  }
  .filter_box .flex {
    gap: 20px;
  }
  .filter_box .label {
    font-size: 14px;
    margin-right: 0;
  }
  .filter_box select {
    font-size: 14px;
    height: 50px;
    padding: 0 40px 0 20px;
    background-size: 14px;
    background-position: center right 20px;
  }
  .filter_box form {
    height: 50px;
    grid-template-columns: 1fr 40px;
  }
  .filter_box form input[type=text] {
    font-size: 14px;
    padding: 0 20px;
  }
  .filter_box .btn_reset {
    font-size: 14px;
  }
  .pd_title {
    padding-left: 50px;
  }
  .pd_title .icon {
    width: 40px;
    height: 40px;
    top: -8px;
    border-radius: 5px;
  }
  .sec_bg .mask_line,
  .sec_bg2 .mask_line,
  .sec_bg3 .mask_line {
    top: -10px;
    height: 10px;
  }
  .sec_bg .mask_line::after,
  .sec_bg2 .mask_line::after,
  .sec_bg3 .mask_line::after {
    width: 7px;
    height: 7px;
  }
  .sec_bg .img_bg,
  .sec_bg2 .img_bg,
  .sec_bg3 .img_bg {
    --deg: 10px;
  }
  .product_list a {
    padding: 20px 0;
    border-radius: 10px;
    gap: 10px;
  }
  .product_list a::after {
    border-radius: 10px;
  }
  .product_list .info {
    padding: 0 20px;
    min-height: 81px;
    margin: 0;
  }
  .product_list .info strong {
    font-size: 14px;
  }
  .product_list .info h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .product_list .btn_circle {
    margin-right: 20px;
  }
  .blog_list .img {
    border-radius: 10px;
  }
  .blog_list .btn_circle {
    width: 40px;
  }
  .blog_list .metas {
    margin-top: 16px;
    padding-right: 0;
  }
  .blog_list .metas .cat {
    font-size: 14px;
    line-height: 2;
    padding: 0 14px;
    min-width: 80px;
  }
  .blog_list .metas .line {
    margin: 0 10px;
  }
  .blog_list .title {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 16px;
  }

  

  div.search-block .searchform {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  div.search-block input[type='text'] {
    flex: 1;
  }

  div.search-block input[type='submit'] {
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 2.2vw 0 1.2vw;
    background: url(../img/page_home-header_search.svg) no-repeat center;
    background-size: 1.4rem;
    display: inline-block;
    vertical-align: middle;
    transition: 0.3s all ease;
    cursor: pointer;
    border: none;
    outline: none;
  }

  div.search-block div.content {
    position: unset;
  }

  div.search-block .searchform input[type='text'] {
    font-size: 22px;
    height: 70px;
  }

  .wd-action-btn {
    width: 25px;
    height: 25px;
    top: unset;
    right: 2rem;
    bottom: 2rem;
  }

  div.search-block {
    height: 100%;
    width: 100%;
    top: 120%;
    bottom: unset;
    display: none;
  }

  div.search-block.active {
    top: 20%;
    display: block;
    height: 80%;
    transform: translateY(0);
  }

  .search-block input[type="submit"]:not(:disabled):hover { 
    background-size: 1.4rem;
    border: none;
  }

  .default_head{
    padding: 5rem 0;
  }
  .default_head h1{
    font-size: 2rem;
  }
  .default_body{
    padding: 3rem 0;
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  
  .default_body h2 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0 1rem;
  }
  .default_body h3 {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 700;
    margin: 1rem 0;
  }
  .default_body p {
    margin: 1rem 0;
  }
  
  
  .default_body ul li {
    position: relative;
    padding-left: 2.4rem;
    margin-bottom: 1rem;
  }
  .default_body ul li:last-child {
    margin-bottom: 0;
  }
  .default_body ul li::before {
    width: 1.4rem;
    height: 1.4rem;
    position: absolute;
    left: 0;
    top: 0.8rem;
    border-radius: 50%;
    background-color: var(--theme_color);
    content: '';
  }
 

}
@media screen and (max-width: 576px) {
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .swiper_btns.middle {
    padding: 0 20px;
  }
  .page_contact,
  .footer_contact {
    text-align: center;
  }
  .resources_banner .nav::after {
    right: -20px;
  }
  .resources_banner .nav_list {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .filter_box select {
    min-width: 120px;
  }
}
/*# sourceMappingURL=global.css.map */