* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #1b98d6;
  --secondary: #d8282a;
  --title: #161616;
  --text: #494949;
  --text2: #474747;
  --text_w: rgba(255, 255, 255, 0.8);
  --bg: #f8f8f8;
  --bg2: #f7f7f7;
  --border: #dcdedc;
  --shadow: 0 1.1rem 1.1rem rgba(209, 209, 209, 0.45);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 10px);
}
.content {
  max-width: 144rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 147rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
li {
  list-style: none;
}
li.swiper-slide {
  height: auto;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i,
em {
  font-style: normal;
}
input,
button,
textarea {
  border: none;
  outline: none;
  font-family: unset;
  color: var(--title);
}
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: "DM Sans", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
body [data-wpr-lazyrender] {
  content-visibility: unset;
}
.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;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to top, #E8F4FB, #fff);
}
#fullscreen-loader::after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 8px solid var(--primary);
  animation: l20-1 0.8s infinite linear alternate, l20-2 1.6s infinite linear;
}
@keyframes l20-1 {
  0% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 50% 0%, 50% 0%, 50% 0%, 50% 0%);
  }
  12.5% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 0%, 100% 0%, 100% 0%);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 100% 100%, 100% 100%);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 50% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  62.5% {
    clip-path: polygon(50% 50%, 100% 0, 100% 0%, 100% 0%, 100% 100%, 50% 100%, 0% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 50% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 50% 100%, 0% 100%);
  }
}
@keyframes l20-2 {
  0% {
    transform: scaleY(1) rotate(0deg);
  }
  49.99% {
    transform: scaleY(1) rotate(135deg);
  }
  50% {
    transform: scaleY(-1) rotate(0deg);
  }
  100% {
    transform: scaleY(-1) rotate(-135deg);
  }
}
.img.img_cv {
  overflow: hidden;
}
.img.img_cv img {
  object-fit: cover;
}
.img.img_ct img {
  object-fit: contain;
}
.img.img_ab {
  position: relative;
}
.img.img_ab img {
  position: absolute;
  left: 0;
  top: 0;
}
.img.img_aba {
  position: relative;
}
.img.img_aba::after {
  content: '';
  display: block;
  padding-bottom: var(--h);
}
.img.img_aba img {
  position: absolute;
  left: 0;
  top: 0;
}
.img img {
  width: 100%;
  height: 100%;
  display: block;
  transition: all 0.5s;
  aspect-ratio: inherit;
}
.img_bg {
  position: relative;
  z-index: 2;
}
.img_bg > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
  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;
  cursor: pointer;
  transition: all 0.3s, background-color 0.4s;
  grid-template-columns: 1fr 4.8rem;
  color: #fff;
  background-color: var(--primary);
  border-radius: 100px;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem 0.8rem;
  min-width: 21.8rem;
  gap: 1rem;
  padding-left: 3.9rem;
}
.btn::after {
  padding-bottom: 100%;
  border-radius: 50%;
  background: url("../img/arrow-tr.svg") no-repeat center / 22.92% #fff;
  display: block;
  transition: all 0.3s;
  content: '';
}
.btn:hover {
  background-color: var(--secondary);
}
.btn:hover::after {
  transform: rotate(45deg) scale(1.1);
}
.btn_line {
  display: inline-grid;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s, background-color 0.4s;
  grid-template-columns: 1fr 4.8rem;
  color: var(--title);
  background-color: #fff;
  border: 1px solid #e7e7e7;
  border-radius: 100px;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  text-align: center;
  padding: 0.9rem 0.7rem;
  min-width: 21.8rem;
  gap: 1rem;
  padding-left: 3.1rem;
}
.btn_line::after {
  padding-bottom: 100%;
  border-radius: 50%;
  background: url("../img/arrow-tr-w.svg") no-repeat center / 22.92% var(--primary);
  display: block;
  transition: all 0.3s;
  content: '';
}
.btn_line:hover {
  background-color: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}
.btn_line:hover::after {
  transform: rotate(45deg) scale(1.1);
}
.btn_i {
  display: inline-grid;
  grid-template-columns: 1fr 4.8rem;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 600;
  color: var(--title);
  gap: 1.8rem;
}
.btn_i::after {
  padding-bottom: 100%;
  border-radius: 50%;
  content: '';
  background: url("../img/arrow-tr-w.svg") no-repeat center / 22.92% var(--primary);
  transition: all 0.3s;
}
.btn_i:hover {
  color: var(--secondary);
  transform: translateX(0);
}
.btn_i:hover::after {
  transform: rotate(45deg);
  background-color: var(--secondary);
}
.btn_r {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 100px;
  text-align: center;
  font-weight: 600;
  color: #fff;
  background-color: var(--secondary);
  border: 1px solid var(--secondary);
  padding: 0 3rem;
  line-height: 4.8rem;
}
.btn_r:hover {
  background-color: transparent;
  color: var(--secondary);
}
.btn_add {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 100px;
  background-color: var(--primary);
  width: 7.2rem;
}
.btn_add::after {
  padding-bottom: 73.61111%;
  display: block;
  content: '';
  background: url("../img/add.svg") no-repeat center / 20.83333%;
  transition: all 0.3s;
  filter: contrast(0) brightness(2);
}
.btn_add:hover {
  background-color: var(--secondary);
}
.btn_add:hover::after {
  transform: rotate(180deg);
}
.swiper_btns {
  gap: 3.2rem;
  display: flex;
}
.swiper_btns div {
  width: 6.4rem;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 50%;
  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 / 31%;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.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: none;
}
.swiper_btns .swiper-button-lock {
  display: block;
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 169.9rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.head.ban p {
  font-size: 2rem;
}
.head.ban .subtitle {
  border: none;
  padding: 0;
  gap: 1.1rem;
}
.head.ban.white p {
  letter-spacing: 0.15px;
}
.head.sm h2,
.head.sm .title {
  font-size: 4.8rem;
  line-height: 5.8rem;
  letter-spacing: 2px;
}
.head.white {
  color: #fff;
}
.head.white .subtitle {
  font-weight: 300;
  letter-spacing: 0.2px;
}
.head.white p {
  color: var(--text_w);
  font-weight: 300;
  letter-spacing: 0.13px;
}
.head.white h1 {
  font-weight: 600;
  letter-spacing: 3.4px;
}
.head .subtitle {
  display: inline-grid;
  grid-template-columns: 0.7rem 1fr;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 500;
  border-radius: 100px;
  border: 1px solid var(--border);
  text-transform: uppercase;
  gap: 1rem;
  line-height: 3.9rem;
  padding: 0 1.8rem;
}
.head .subtitle::before {
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: var(--secondary);
  display: block;
  content: '';
}
.head h1 {
  font-size: 6.4rem;
  line-height: 1.203125;
  font-weight: 700;
  letter-spacing: 2.6px;
}
.head h2 {
  font-size: 5rem;
  line-height: 5.8rem;
  font-weight: 600;
  letter-spacing: 2.1px;
}
.head p {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--text);
  letter-spacing: 0.01px;
}
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.6rem;
}
header.opt {
  top: 0;
}
header .lt {
  display: flex;
  align-items: center;
  padding-top: 2px;
  margin-right: 1.4%;
}
header .lt .logo {
  display: block;
  position: relative;
}
header .lt .logo img {
  display: block;
  width: auto;
  height: 5.42954rem;
}
header .lt .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
header nav .menu {
  display: flex;
  gap: 3.5rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li::after {
  width: 100%;
  height: 4px;
  position: absolute;
  left: 50%;
  bottom: 0;
  content: '';
  background-color: var(--secondary);
  transform: translateX(-50%);
  transition: all 0.3s;
  opacity: 0;
}
header nav .menu > li > a {
  display: block;
  font-size: 1.7rem;
  font-weight: 500;
  transition: all 0.3s;
  line-height: 9.2rem;
  padding-top: 2px;
}
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;
}
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;
  width: calc(100% + 4.8rem);
}
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:hover {
  color: var(--secondary);
}
header .btns {
  gap: 4.1rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 9.4rem;
  padding-top: 0.2%;
}
header .btns .btn_search {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  background: url(../img/icon-search.svg) no-repeat center / contain;
}
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 .btns .btn {
  min-width: 19.8rem;
  grid-template-columns: 1fr 4.2rem;
  margin-left: 1px;
  padding: 0.9rem 0.8rem 0.9rem 3.1rem;
  gap: 1.1rem;
}
footer .main {
  padding: 13.8rem 0 8.3rem;
}
footer .main .flex {
  gap: 6.3rem 2rem;
}
footer .main .slide_intro {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  border-bottom: 1px solid #c6c6c6;
  padding-bottom: 4.4rem;
}
footer .main .slide_intro .logo {
  display: block;
  position: relative;
  width: 100%;
  max-width: 41.1rem;
}
footer .main .slide_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .main .slide_intro .logo p {
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
}
footer .main .slide_intro .social {
  gap: 2rem 1.2rem;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2px;
}
footer .main .slide_intro .social a {
  opacity: 1;
  display: block;
  width: 5rem;
  height: 5rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
  border-radius: 50%;
  border: 1px solid #b6b6b6;
}
footer .main .slide_intro .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
  transition: all 0.3s;
}
footer .main .slide_intro .social a:hover {
  transform: scale(1.1);
  background-color: var(--primary);
  border-color: var(--primary);
}
footer .main .slide_intro .social a:hover::after {
  filter: contrast(0) brightness(2);
}
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 .tiktok a::after {
  background-image: url(../img/tiktok.svg);
}
footer .main .slide_surface {
  width: 32.3rem;
  margin-top: -0.4rem;
}
footer .main .slide_surface strong {
  display: block;
  font-size: 3.2rem;
  line-height: 4.6rem;
  font-weight: 600;
  margin-bottom: 3.8rem;
  letter-spacing: 0.7px;
}
footer .main .slide_surface .menu {
  display: grid;
  gap: 1rem;
}
footer .main .slide_surface .menu a {
  display: inline-grid;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s, background-color 0.4s;
  grid-template-columns: 1fr 4.8rem;
  color: #fff;
  background-color: var(--primary);
  border-radius: 100px;
  font-size: 1.8rem;
  line-height: 2.3rem;
  font-weight: 600;
  text-align: center;
  padding: 1rem 0.8rem;
  min-width: 26.1rem;
  gap: 1rem;
  padding-left: 7.9%;
}
footer .main .slide_surface .menu a::after {
  padding-bottom: 100%;
  border-radius: 50%;
  background: url("../img/arrow-tr.svg") no-repeat center / 22.92% #fff;
  display: block;
  transition: all 0.3s;
  content: '';
}
footer .main .slide_surface .menu a:hover {
  background-color: var(--secondary);
}
footer .main .slide_surface .menu a:hover::after {
  transform: rotate(45deg) scale(1.1);
}
footer .main .nav {
  flex: 1;
  max-width: 97.15rem;
  column-count: 3;
  column-gap: 8.5%;
  margin-bottom: -6.5rem;
}
footer .main .nav .slide_obj {
  margin-bottom: 6.5rem;
  display: inline-block;
}
footer .main .slide_obj strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 2.4rem;
}
footer .main .slide_obj li a {
  font-size: 1.8rem;
  line-height: 1.55556;
  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.4rem;
}
footer .main .slide_connect strong {
  margin-bottom: 3.1rem;
}
footer .main .slide_connect li {
  position: relative;
  padding-left: 4.1rem;
}
footer .main .slide_connect li::before {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  background: no-repeat center left / contain;
  position: absolute;
  left: 0;
  top: 3px;
}
footer .main .slide_connect li a {
  opacity: 1;
  color: #0c0c0c;
  letter-spacing: 0.3px;
}
footer .main .slide_connect li + li {
  margin-top: 1rem;
}
footer .main .slide_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
  background-size: 75%;
  top: 2px;
}
footer .main .slide_connect .email::before {
  background-image: url(../img/icon-email.svg);
}
footer .bottom {
  padding: 3.6rem 7.3rem 3.6rem 0;
}
footer .bottom p,
footer .bottom a {
  font-weight: 500;
  font-size: 1.4rem;
}
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;
}
footer .bottom ul li {
  display: flex;
  align-items: center;
}
footer .bottom ul li::before {
  width: 1px;
  height: 1.1rem;
  background-color: #aaaaaa;
  opacity: 0.15;
  display: inline-block;
  content: '';
  margin: 0 1.4rem 0 1.3rem;
}
footer .bottom ul li:first-child::before {
  display: none;
}
footer .footer_float {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99;
  pointer-events: none;
  bottom: 1.4rem;
}
footer .footer_float #backtop {
  width: 5.4rem;
  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 #backtop.active {
  opacity: 1;
  pointer-events: all;
}
footer .footer_float #backtop::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  pointer-events: none;
}
footer .footer_float #backtop:hover {
  transform: scale(1.1);
}
.compare_swiper {
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
}
.compare_swiper .swiper_btns {
  width: 94.5%;
}
.compare_swiper .swiper_btns .swiper-button-disabled {
  background-color: rgba(22, 22, 22, 0.5);
  border-color: transparent;
}
.compare_swiper .swiper_btns .swiper-button-disabled::after {
  filter: contrast(0) brightness(2);
}
.page_resource {
  padding: 14.3rem 0 9.75rem;
}
.page_resource .subtitle {
  margin-bottom: 2.9rem;
  padding: 0 1.9rem;
}
.page_resource h2 {
  letter-spacing: 2.5px;
}
.page_resource .head {
  padding-bottom: 2px;
}
.page_resource .nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 1.7rem;
}
.page_resource .nav .nav_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.5rem;
}
.page_resource .nav .nav_item,
.page_resource .nav .more {
  display: block;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 100px;
  background-color: #f4f4f4;
  font-size: 1.8rem;
  padding: 1.3rem 2.25rem;
}
.page_resource .nav .nav_item.active,
.page_resource .nav .more.active,
.page_resource .nav .nav_item:hover,
.page_resource .nav .more:hover {
  background-color: var(--secondary);
  color: #fff;
}
.page_resource .nav .more {
  padding: 1.3rem 3.05rem;
}
.page_resource .page_resource_swiper {
  margin-top: 6rem;
  border-radius: 1.6rem;
  overflow: hidden;
  display: none;
}
.page_resource .page_resource_swiper.active {
  display: block;
}
.page_resource .page_resource_swiper .swiper-slide {
  max-width: 455px;
}
.page_resource .swiper_btns {
  top: 45.5%;
}
.page_faqs {
  padding: 9.75rem 0 14.8rem;
}
.page_faqs .head {
  flex-direction: row-reverse;
  gap: 0 2rem;
}
.page_faqs h2 {
  letter-spacing: 1.2px;
}
.page_faqs .subtitle {
  margin-top: 1.1rem;
}
.page_faqs .main {
  margin-top: 4.3rem;
}
.page_faqs .reverse {
  flex-direction: row-reverse;
}
.page_faqs .items {
  width: 32.847222%;
  margin-top: 1.5%;
}
.page_faqs .items ul {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(25rem, 100%), 1fr));
  gap: 2.1rem 2rem;
}
.page_faqs .items .item {
  display: grid;
  grid-template-columns: 1fr 22%;
  align-items: start;
  height: 100%;
  border-radius: 1.6rem;
  background-color: var(--bg2);
  transition: all 0.3s;
  gap: 2rem;
  padding: 6.1311% 6.77% 8.034% 8.6681%;
}
.page_faqs .items .item:hover {
  box-shadow: var(--shadow);
}
.page_faqs .items .icon {
  padding-bottom: 100%;
  border-radius: 2rem;
  background-color: #fff;
}
.page_faqs .items .info {
  margin-top: 1.1rem;
}
.page_faqs .items .info h3 {
  font-size: 2.7rem;
  line-height: 3.2rem;
  font-weight: 600;
  color: #221e1f;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_faqs .items .info p {
  font-size: 1.7rem;
  line-height: 2.6rem;
  color: #4c4c4c;
  margin-top: 1.6rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_faqs .items .info i {
  width: 1.9rem;
  display: block;
  margin-top: 3.2rem;
  background: url("../img/arrow-r-b2.svg") no-repeat center / contain;
}
.page_faqs .items .info i::after {
  padding-bottom: 68.42%;
  display: block;
  content: '';
  pointer-events: none;
}
.page_faqs .faqs {
  flex: 1;
  width: 100%;
  max-width: 85.6rem;
  margin-right: 1.597222%;
}
.page_banner .flex {
  height: 100vh;
  max-height: 81.6rem;
  min-height: max-content;
  padding: 6rem 0;
}
.page_banner .head {
  flex: 1;
  max-width: 83.6rem;
  padding-bottom: 5.6%;
}
.page_banner .subtitle {
  margin-bottom: -2px;
  color: var(--text_w);
}
.page_banner p {
  max-width: 49.9rem;
  margin-top: 3.3rem;
}
.page_banner form {
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 100px;
  background-color: #fff;
  max-width: 44.8rem;
  padding-right: 0.8rem;
  margin-top: 3.5rem;
}
.page_banner form input[type=text] {
  display: block;
  width: 100%;
  background-color: transparent;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--title);
  padding: 0 3.7rem;
}
.page_banner form input[type=text]::placeholder {
  color: #999999;
}
.page_banner form input[type=submit] {
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  text-indent: -999px;
  color: transparent;
  background: url("../img/icon-search-w.svg") no-repeat center / 41.6667% var(--primary);
  transition: all 0.3s;
  margin: 1rem 0;
}
.page_banner form input[type=submit]:hover {
  background-color: var(--secondary);
}
.page_banner .btn {
  margin-top: 3.5rem;
}
.page_features {
  padding: 5.4rem 0 15.8rem;
  overflow: hidden;
}
.page_features h2 {
  font-size: 3.4rem;
  font-weight: 500;
  letter-spacing: 1.1px;
}
.page_features .feature_swiper {
  margin-top: 4rem;
}
.page_features .swiper_con {
  margin-top: 5.1rem;
}
.page_banner2 {
  overflow: hidden;
}
.page_banner2::before {
  width: 100%;
  height: 44.98%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  pointer-events: none;
  background-image: linear-gradient(to top, #fff 11.44%, transparent);
}
.page_banner2 .flex {
  height: 100vh;
  max-height: 81.6rem;
  min-height: max-content;
  padding: 6rem 0;
}
.page_banner2 .head {
  flex: 1;
  width: 100%;
  max-width: 59.3rem;
  padding-bottom: 5.4%;
}
.page_banner2 .subtitle {
  margin-bottom: -1px;
}
.page_banner2 p {
  max-width: 49.9rem;
  margin-top: 1.5rem;
}
.page_banner2 .btn {
  margin-top: 3.4rem;
  min-width: 29.8rem;
  padding-left: 4.5rem;
}
.page_banner2 .img {
  width: 69.166667%;
  --h: 65.26%;
  margin-right: -13.125%;
}
.page_banner2 .img:hover img {
  transform: scale(1.02);
}
.feature_swiper .swiper-slide {
  max-width: 41.6rem;
}
.feature_swiper .active .item {
  background-color: #fff;
  box-shadow: var(--shadow);
}
.feature_swiper .active .item::after {
  opacity: 1;
}
.feature_swiper .active .item .info {
  transform: translateY(0);
}
.feature_swiper .active .item .info p {
  opacity: 1;
}
.feature_swiper .active .icon {
  border-color: var(--secondary);
  background-color: var(--secondary);
}
.feature_swiper .active .icon img {
  filter: contrast(0) brightness(2);
}
.feature_swiper .item {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: all 0.3s;
  border-radius: 2.6rem;
  background-color: var(--bg2);
  padding: 8.9% 9.1% 7.4%;
  overflow: hidden;
  min-height: 37.1rem;
}
.feature_swiper .item::after {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  border-radius: 2.6rem;
  border: 2px solid var(--secondary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.feature_swiper .icon {
  border-radius: 1.3rem;
  border: 1px solid #efefef;
  width: 7.2rem;
  height: 7.2rem;
  background-color: #fff;
  transition: all 0.3s;
  margin-bottom: auto;
}
.feature_swiper .info {
  margin-top: 3rem;
  transition: all 0.4s;
  transform: translateY(9rem);
}
.feature_swiper .info h3 {
  font-size: 2.6rem;
  line-height: 3.6rem;
  font-weight: 600;
  transition: all 0.3s;
  flex: 1;
  letter-spacing: 0.15px;
}
.feature_swiper .info p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text2);
  margin-top: 2.2rem;
  opacity: 0;
  transition: all 0.3s;
  min-height: 8.4rem;
}
.services_swiper {
  overflow: hidden;
  border-radius: 2.2rem;
  padding-bottom: 1rem;
}
.services_swiper .active .service_item::before {
  background-color: var(--secondary);
}
.services_swiper .active .icon {
  background-color: var(--secondary);
}
.services_swiper .active .icon img {
  filter: contrast(0) brightness(2);
}
div.pagination {
  width: auto;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  color: #a2a2a2;
  gap: 1.6rem;
}
div.pagination.swiper-pagination-lock {
  display: flex;
  opacity: 0;
}
div.pagination .line {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background-color: #a2a2a2;
  content: '';
}
div.pagination .current {
  color: #0c0c0c;
  font-weight: 500;
}
.compare_box {
  position: relative;
  -moz-user-select: -moz-none;
  -moz-user-select: none;
  -o-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border-radius: 1.8rem;
  overflow: hidden;
}
.compare_box .wrap {
  position: relative;
}
.compare_box .wrap .img {
  position: relative;
}
.compare_box .wrap .img::after {
  content: '';
  display: block;
  width: 100%;
  height: 32.353%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  opacity: 0.74;
  pointer-events: none;
  background-image: linear-gradient(to top, #000, transparent 72.16%);
}
.compare_box .wrap .info {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  color: #fff;
  padding: 3.1% 2.6966%;
}
.compare_box .wrap .info .subtitle {
  margin-bottom: 0.9rem;
  font-weight: 300;
  letter-spacing: 0.15px;
}
.compare_box .wrap .info .title {
  font-size: 2.2rem;
  letter-spacing: 0.26px;
}
.compare_box .wrap2 {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 9;
  border-left: 4px solid #fff;
}
.compare_box .wrap2 .button {
  position: absolute;
  left: -2px;
  top: 50%;
  z-index: 9;
  transform: translate(-50%, -50%);
  width: 2.4rem;
  background: url(../img/scrollblock.svg) no-repeat center / contain;
  cursor: pointer;
}
.compare_box .wrap2 .button::after {
  content: '';
  display: block;
  padding-bottom: 170.8333%;
  pointer-events: none;
}
.compare_box .wrap2 .hidden {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
}
.compare_box .wrap2 .img2 {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.compare_box .wrap2 .info {
  left: unset;
  right: 0;
  text-align: right;
}
.con_form form {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 3rem 0;
}
.con_form form span {
  width: 100%;
}
.con_form form .col-2 {
  width: 48.8453%;
}
.con_form form .label {
  display: block;
  font-size: 1.919rem;
  font-weight: 600;
  color: #191919;
  margin-bottom: 2.6rem;
}
.con_form form .label i {
  color: var(--secondary);
}
.con_form form input,
.con_form form textarea,
.con_form form select {
  display: block;
  width: 100%;
  font-size: 1.919rem;
  color: #414141;
  border: none;
  border-bottom: 1px solid #d3d3d3;
  background-color: transparent;
  height: 4.4rem;
}
.con_form form input::placeholder,
.con_form form textarea::placeholder,
.con_form form select::placeholder {
  color: #878787;
}
.con_form form input:focus,
.con_form form textarea:focus,
.con_form form select:focus {
  border-color: var(--primary);
}
.con_form form select {
  background: url("../img/icon-select-g.svg") no-repeat center right 1.6rem/1.1rem;
  font-size: 1.806rem;
  font-weight: 600;
  outline: none;
  padding-right: 3rem;
  padding-top: 2px;
}
.con_form form textarea {
  height: 5.6rem;
  padding: 1rem 0;
}
.con_form form .number {
  display: grid;
  grid-template-columns: 6.6rem 1fr;
}
.con_form form span:has(.btn) {
  margin-top: 3.8rem;
}
.con_form form .btn {
  min-width: 34.4%;
  margin-top: 0;
  position: relative;
}
.con_form form .btn input {
  display: none;
}
.con_form .intl-tel-input.separate-dial-code .selected-flag {
  background-color: transparent;
}
.page_nav .nav_list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(35rem, 100%), 1fr));
  gap: 2.6rem 3.472222%;
}
.page_nav .nav_item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 9.4rem;
  align-items: center;
  height: 100%;
  gap: 1rem;
  border-radius: 100px;
  border: 1px solid #e7e7e7;
  background-color: #fff;
  font-size: 2rem;
  line-height: 2.7rem;
  font-weight: 600;
  transition: all 0.3s;
  cursor: pointer;
  padding: 1.3rem;
  padding-left: 4.7rem;
}
.page_nav .nav_item::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  position: absolute;
  left: -1px;
  top: -1px;
  border-radius: 100px;
  border: 2px solid var(--secondary);
  content: '';
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.page_nav .nav_item.active,
.page_nav .nav_item:hover {
  box-shadow: var(--shadow);
}
.page_nav .nav_item.active::after,
.page_nav .nav_item:hover::after {
  opacity: 1;
}
.page_nav .nav_item:hover .icon::before {
  transform: rotate(360deg);
}
.page_nav .nav_item .icon {
  padding-bottom: 100%;
}
.page_nav .nav_item .icon::before {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  border: 1px dashed #aaa7a7;
  transition: all 0.3s;
}
.page_nav .nav_item .icon img {
  width: 81.9%;
  height: 81.9%;
  border-radius: 50%;
  background-color: #eaeaea;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.resource_list .active .con {
  transform: translateY(0);
  opacity: 1;
}
.resource_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.resource_list a:hover img {
  transform: scale(1.02);
}
.resource_list a:hover .cat {
  background-color: var(--secondary);
}
.resource_list .pic {
  position: relative;
  border-radius: 1.6rem;
  overflow: hidden;
}
.resource_list .img {
  width: 100%;
  padding-bottom: 96.7%;
}
.resource_list .wrap {
  position: absolute;
  left: 0;
  right: 5.5%;
  bottom: 0;
  top: 5.23%;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 10%;
}
.resource_list .cat {
  display: inline-block;
  margin-left: 5.35%;
  pointer-events: all;
  border-radius: 100px;
  font-weight: 500;
  color: #fff;
  background-color: var(--primary);
  transition: all 0.3s;
  text-align: center;
  text-transform: uppercase;
  line-height: 2.625;
  padding: 0 2.3rem;
  min-width: 9.4rem;
  margin-bottom: auto;
}
.resource_list .con {
  width: 100%;
  overflow-y: hidden;
  position: relative;
  background-color: #fff;
  transition: all 0.4s, opacity 0.3s;
  border-top-right-radius: 1.6rem;
  pointer-events: all;
  padding: 11% 8.84% 8.5%;
  transform: translateY(100%);
  display: flex;
  opacity: 0;
}
.resource_list .con .desc {
  font-size: 1.8rem;
  line-height: 2.9rem;
  color: #3d3d3d;
  letter-spacing: 0.01px;
  overflow-y: auto;
}
.resource_list .con::after {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  right: 8.84%;
  top: 16.5%;
  background: url("../img/arrow-tr.svg") no-repeat center / contain;
  content: '';
}
.resource_list .info {
  flex: 1;
  margin-top: 4.2rem;
}
.resource_list .date {
  font-size: 1.749rem;
  color: #565656;
}
.resource_list .title {
  font-size: 2.4rem;
  line-height: 3.4rem;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-top: 1.2rem;
  letter-spacing: 0.08px;
}
.technology_item.active a {
  background-color: #fff;
}
.technology_item.active a::after {
  opacity: 1;
}
.technology_item.active .btn_add {
  background-color: var(--secondary);
}
.technology_item.active .btn_add::after {
  filter: contrast(0) brightness(2);
}
.technology_item a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.6rem;
  transition: all 0.3s;
  background-color: var(--bg);
  padding: 10.61% 8.225% 6.93%;
}
.technology_item a::after {
  position: absolute;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  left: 0;
  top: 0;
  content: '';
  border-radius: 1.6rem;
  border: 2px solid var(--secondary);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s;
}
.technology_item:hover img {
  transform: scale(1.02);
}
.technology_item .info {
  flex: 1;
}
.technology_item .info .title {
  font-size: 3rem;
  line-height: 3.8rem;
  font-weight: 600;
  color: #0c0c0c;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  letter-spacing: 0.5px;
}
.technology_item .info .desc {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--text);
  hyphens: auto;
  letter-spacing: 0.01px;
  margin-top: 1.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.technology_item .wrap {
  margin-top: 12.4%;
  display: grid;
  grid-template-columns: auto 57.66%;
  align-items: end;
  gap: 1rem;
}
.technology_item .img {
  padding-bottom: 100%;
  border-radius: 2rem;
}
.faq_list .faq_item {
  border-bottom: 1px solid #c6c6c6;
  position: relative;
}
.faq_list .faq_item::after {
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -1px;
  content: '';
  background-color: var(--secondary);
  transition: all 0.3s;
  opacity: 0;
}
.faq_list .faq_item.active::after {
  opacity: 1;
}
.faq_list .faq_item.active .question::before,
.faq_list .faq_item.active .question::after {
  transform: translateY(-50%) rotate(180deg);
}
.faq_list .faq_item.active .question::before {
  opacity: 0;
}
.faq_list .faq_item.active .question::after {
  opacity: 1;
}
.faq_list .question {
  cursor: pointer;
  position: relative;
  font-size: 2.2rem;
  font-weight: 600;
  color: #221e1f;
  padding: 2.9rem 0 2.5rem;
  letter-spacing: 0.04px;
  padding-right: 4rem;
}
.faq_list .question::before,
.faq_list .question::after {
  background: url("../img/icon-select.svg") no-repeat center / contain;
  width: 1.7rem;
  height: 1.7rem;
  display: block;
  content: '';
  transition: all 0.3s;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.faq_list .question::after {
  opacity: 0;
  background-image: url("../img/icon-select-red.svg");
}
.faq_list .answer {
  display: none;
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--text);
  letter-spacing: 0.01px;
  padding-bottom: 3.7rem;
}
.product_list .active a {
  box-shadow: var(--shadow);
}
.product_list .active a::after {
  opacity: 1;
}
.product_list .active .img {
  transform: translateY(0);
}
.product_list .active .img::before {
  opacity: 1;
}
.product_list .active .info {
  transform: translateY(0);
}
.product_list .active .info .btn_r {
  opacity: 1;
}
.product_list a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 1.4rem;
  background-color: #fff;
  transition: all 0.3s;
  overflow: hidden;
}
.product_list a::after,
.product_list a::before {
  border-radius: 1.4rem;
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  content: '';
  border: 2px solid var(--secondary);
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
.product_list a::before {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border: 1px solid #efefef;
  opacity: 1;
}
.product_list a:hover img {
  transform: scale(1.02);
}
.product_list .img {
  padding-bottom: 86.17%;
  transition: all 0.4s;
  transform: translateY(4.9rem);
}
.product_list .img::before {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-image: linear-gradient(to top, #c6c9cc 3.6313%, #fff 43.5754%, #e3e6e8);
  pointer-events: none;
  transition: all 0.3s;
  opacity: 0;
}
.product_list .info {
  transition: all 0.4s;
  flex: 1;
  display: flex;
  flex-direction: column;
  transform: translateY(6.7rem);
  padding: 6.3% 7.5% 7.8%;
}
.product_list .info .cat {
  font-size: 1.4rem;
  color: #656575;
}
.product_list .info .title {
  font-size: 2rem;
  line-height: 2.6rem;
  font-weight: 600;
  margin-top: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  margin-bottom: auto;
}
.product_list .info .btn_r {
  width: 100%;
  margin-top: 1.9rem;
  opacity: 0;
}
.app_item.active .img::after {
  height: 100%;
}
.app_item.active .text {
  transform: translateY(0);
}
.app_item.active .text .desc {
  opacity: 1;
}
.app_item.active .btn_circle {
  background-color: var(--secondary);
}
.app_item.active .btn_circle::after {
  filter: contrast(0) brightness(2);
}
.app_item a {
  display: block;
  height: 100%;
  position: relative;
  border-radius: 1.8rem;
  overflow: hidden;
}
.app_item a:hover img {
  transform: scale(1.02);
}
.app_item .img {
  padding-bottom: 112.94%;
}
.app_item .img::after {
  position: absolute;
  width: 100%;
  height: 35.9%;
  left: 0;
  bottom: 0;
  content: '';
  background-image: linear-gradient(to top, #000, transparent);
  opacity: 0.74;
  transition: all 0.3s;
  pointer-events: none;
}
.app_item .info {
  position: absolute;
  z-index: 2;
  left: 8.3%;
  right: 5.5%;
  top: 5.44%;
  bottom: 8.5%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.app_item .btn_circle {
  width: 6.4rem;
  display: block;
  margin-left: auto;
  border-radius: 50%;
  transition: all 0.3s;
  background-color: #fff;
  margin-bottom: auto;
}
.app_item .btn_circle::after {
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/arrow-tr.svg") no-repeat center / 23.4375%;
  transition: all 0.3s;
}
.app_item .btn_circle:hover::after {
  transform: rotate(45deg);
}
.app_item .text {
  color: #fff;
  overflow-y: auto;
  transition: all 0.4s;
  transform: translateY(10.4rem);
  min-height: 13.4rem;
}
.app_item .text .title {
  font-size: 2.8rem;
  line-height: 1.42857;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  letter-spacing: 0.4px;
}
.app_item .text .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text_w);
  margin-top: 1rem;
  transition: all 0.3s;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  opacity: 0;
  font-weight: 300;
  letter-spacing: 0.12px;
}

/*** 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;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.wpcf7 form.wpcf7-form .wpcf7-not-valid-tip {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: .5rem;
}
.wpcf7 form.wpcf7-form .wpcf7-response-output {
  margin: 12px 0 0;
  padding: 0;
  border: none;
  width: 100%;
}
.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

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

.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: 76.8rem;
  margin: 5rem auto;
  border-radius: 1.6rem;
  background-color: #fff;
  /* display: grid;
  grid-template-columns: repeat(2, 1fr); */
}
.quote_modal .img {
  border-radius: 1.6rem;
}
.quote_modal .con_form {
  padding: 3rem;
}
.quote_modal .head {
  margin-bottom: 2rem;
}
.quote_modal .head .title {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0;
}
.quote_modal .con_form form .label {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.quote_modal .con_form form input, .quote_modal .con_form form textarea, .quote_modal .con_form form select {
  font-size: 1.4rem;
  height: 4rem;
}
.quote_modal .con_form form span:has(.btn) {
  margin-top: 1rem;
}
.quote_modal .btn {
  font-size: 16px;
  grid-template-columns: 1fr 40px;
  gap: 12px;
  min-width: 140px;
  padding: 6px 6px 6px 20px;
}
.quote_modal .con_form form {
  gap: 2rem 0;
}

.mega_menu {
  position: absolute;
  left: 0;
  top: 100%;
  right: 0;
  background-color: #fff;
  display: none;
  padding: 3rem 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;
}
/*** global css ***/

@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 .btns,
  header nav .menu {
    gap: 2rem;
  }
  .head h1 {
    font-size: 6rem;
  }
  .head h2 {
    font-size: 4.6rem;
    line-height: 1.16;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  .head h1 {
    font-size: 5rem;
  }
  .head h2 {
    font-size: 4rem;
  }
  .head.sm h2,
  .head.sm .title {
    font-size: 4rem;
    line-height: 1.16;
  }
  footer .main .nav {
    gap: 2rem;
  }
  section.services_banner .img {
    width: 50%;
  }
}
@media screen and (max-width: 1024px) {
  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;
  }
  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(--secondary);
  }
  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;
    opacity: 1;
  }
  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(--secondary);
  }
  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;
    color: var(--title);
  }
  header nav .con .sub-menu li a::after {
    display: none;
  }
  header nav .con .sub-menu li a:hover {
    color: var(--secondary);
  }
  header .btns {
    padding: 0;
    margin: 0;
    gap: 4rem;
  }
  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;
  }
  footer .main .slide_surface {
    width: 100%;
  }
  .page_banner2 h1 {
    font-size: 4rem;
  }
  .page_banner2 .img {
    width: 60%;
  }
  section.product_nav .nav_item {
    font-size: 1.7rem;
  }
}
@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 {
    font-size: 14px;
    grid-template-columns: 1fr 32px;
    gap: 12px;
    min-width: 140px;
    padding: 5px 5px 5px 20px;
  }
  .btn_line {
    font-size: 14px;
    grid-template-columns: 1fr 32px;
    gap: 12px;
    min-width: 140px;
    padding: 4px 4px 4px 20px;
  }
  .btn_i {
    font-size: 14px;
    grid-template-columns: 1fr 40px;
    gap: 12px;
    line-height: 1.5;
  }
  .btn_r {
    font-size: 14px;
    padding: 0 20px;
    line-height: 40px;
  }
  .btn_add {
    width: 40px;
  }
  .swiper_btns {
    gap: 20px;
  }
  .swiper_btns div {
    width: 40px;
  }
  div.head.ban .subtitle {
    gap: 10px;
    line-height: 1.5;
  }
  div.head.ban p {
    font-size: 14px;
    line-height: 1.5;
  }
  div.head.ban.white p {
    letter-spacing: unset;
  }
  div.head.sm h2,
  div.head.sm .title {
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: unset;
  }
  div.head.white h1 {
    letter-spacing: unset;
  }
  div.head.white .subtitle {
    letter-spacing: unset;
    gap: 10px;
  }
  div.head.white p {
    letter-spacing: unset;
  }
  div.head .subtitle {
    word-spacing: unset;
    letter-spacing: unset;
    grid-template-columns: 5px 1fr;
    font-size: 14px;
    line-height: 2;
    gap: 10px;
    margin-bottom: 10px;
    padding: 0 12px;
  }
  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_i {
    margin-top: 20px;
  }
  div.head .btn {
    font-size: 14px;
    grid-template-columns: 1fr 32px;
    gap: 12px;
    min-width: 140px;
    padding: 5px 5px 5px 20px;
  }
  header {
    top: 0;
  }
  header > .content {
    width: 100%;
  }
  header .lt .logo img {
    height: 35px;
  }
  header .btns {
    gap: 26px;
    min-height: 64px;
  }
  header .btns .btn {
    display: none;
  }
  footer .main {
    padding: 50px 0;
  }
  footer .main .flex {
    display: block;
  }
  footer .main .slide_intro {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
  footer .main .slide_intro .logo {
    max-width: 250px;
    margin: 0 auto;
  }
  footer .main .slide_intro .social {
    gap: 16px;
    justify-content: space-around;
    margin-top: 30px;
  }
  footer .main .slide_intro .social a {
    width: 40px;
    height: 40px;
  }
  footer .main .slide_surface {
    width: 100%;
    margin-bottom: 30px;
  }
  footer .main .slide_surface strong {
    font-size: 18px;
    letter-spacing: unset;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  footer .main .slide_surface .menu a {
    font-size: 14px;
    grid-template-columns: 1fr 32px;
    gap: 12px;
    padding: 5px;
    min-width: 140px;
    padding-left: 20px;
  }
  footer .main .nav {
    max-width: unset;
    width: 100%;
    column-gap: unset;
    column-count: unset;
    margin-bottom: 0;
  }
  footer .main .nav .slide_obj {
    margin-bottom: 0;
  }
  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(22, 22, 22, 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;
  }
  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;
    line-height: normal;
    display: block;
    font-weight: normal;
  }
  footer .main .slide_obj:not(.slide_connect) > div p {
    font-size: 14px;
    line-height: 1.5;
  }
  footer .main .slide_connect {
    width: 100%;
    padding-top: 20px;
  }
  footer .main .slide_connect strong {
    font-size: 18px;
    margin-bottom: 20px;
  }
  footer .main .slide_connect li + li {
    margin-top: 20px;
  }
  footer .main .slide_connect li {
    padding-left: 30px;
  }
  footer .main .slide_connect li::before {
    width: 16px;
    height: 16px;
    top: 5px;
  }
  footer .main .slide_connect li a {
    font-size: 16px;
    letter-spacing: unset;
  }
  footer .main .slide_connect .phone::before {
    top: 5px;
  }
  footer .bottom {
    padding: 20px 0;
    text-align: center;
  }
  footer .bottom .flex {
    gap: 30px;
    flex-direction: column-reverse;
  }
  footer .bottom ul {
    gap: 1rem 0;
  }
  footer .bottom ul li::before {
    height: 10px;
    margin: 0 10px;
  }
  footer .bottom p {
    font-size: 13px;
  }
  footer .bottom a {
    font-size: 14px;
  }
  footer .footer_float {
    bottom: 20px;
  }
  footer .footer_float #backtop {
    width: 40px;
  }
  .compare_swiper {
    border-radius: 10px;
  }
  .page_resource {
    padding: 50px 0;
    overflow: hidden;
  }
  .page_resource .head {
    padding: 0;
  }
  .page_resource .nav {
    gap: 20px;
  }
  .page_resource .nav .nav_item,
  .page_resource .nav .more {
    font-size: 14px;
    padding: 10px 20px;
  }
  .page_resource .page_resource_swiper {
    margin-top: 30px;
    overflow: unset;
  }
  .page_resource .page_resource_swiper .swiper-slide {
    max-width: 312px;
  }
  .page_resource .swiper_btns.middle {
    position: static;
    width: 100%;
    padding: 0 30px;
    justify-content: flex-end;
    margin-top: 30px;
    transform: translateX(0);
  }
  .page_faqs {
    padding: 50px 0;
  }
  .page_faqs .head .subtitle {
    margin: 0;
  }
  .page_faqs .main {
    margin-top: 30px;
  }
  .page_faqs .items {
    width: 100%;
    margin: 0;
  }
  .page_faqs .items ul {
    gap: 20px;
  }
  .page_faqs .items .item {
    border-radius: 10px;
    grid-template-columns: 1fr 50px;
    gap: 16px;
  }
  .page_faqs .items .icon {
    border-radius: 10px;
  }
  .page_faqs .items .info {
    margin-top: 0;
  }
  .page_faqs .items .info h3 {
    font-size: 18px;
    line-height: 1.5;
  }
  .page_faqs .items .info p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .page_faqs .items .info i {
    width: 14px;
    margin-top: 20px;
  }
  .page_faqs .faqs {
    max-width: unset;
    margin: 0;
  }
  .page_banner::before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background-color: var(--title);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
  }
  .page_banner .flex {
    height: auto;
    min-height: unset;
    max-height: unset;
    padding: 50px 0;
  }
  .page_banner .flex .head {
    padding: 0;
    flex: unset;
    max-width: unset;
  }
  .page_banner .head {
    width: 60%;
  }
  .page_banner form {
    padding-right: 5px;
    margin-top: 20px;
  }
  .page_banner form input[type=text] {
    font-size: 14px;
    padding: 0 20px;
  }
  .page_banner form input[type=submit] {
    width: 40px;
    height: 40px;
    margin: 5px 0;
  }
  .page_features {
    padding: 50px 0;
  }
  .page_features h2 {
    font-size: 22px;
    letter-spacing: unset;
  }
  .page_features .feature_swiper,
  .page_features .swiper_con {
    margin-top: 30px;
  }
  .page_banner2::after {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    background-color: var(--primary);
    opacity: 0.3;
    pointer-events: none;
    z-index: -1;
  }
  .page_banner2 .flex {
    height: auto;
    min-height: unset;
    max-height: unset;
    padding: 50px 0;
  }
  .page_banner2 .head {
    padding: 0;
    max-width: unset;
  }
  .page_banner2 .img {
    width: 55%;
    margin-right: 0;
  }
  .services_swiper {
    overflow: unset;
    padding-bottom: 8px;
  }
  .feature_swiper .swiper-slide {
    max-width: 270px;
  }
  .feature_swiper .item {
    padding: 20px;
    min-height: unset;
    border-radius: 10px;
  }
  .feature_swiper .item::after {
    border-radius: 10px;
  }
  .feature_swiper .item .info {
    transform: translateY(0);
  }
  .feature_swiper .icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
  }
  .feature_swiper .info {
    margin-top: 20px;
    flex: 1;
  }
  .feature_swiper .info h3 {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: unset;
    min-height: 54px;
  }
  .feature_swiper .info p {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    min-height: unset;
    opacity: 1;
  }
  .compare_box .wrap .info .subtitle {
    margin-bottom: 10px;
    letter-spacing: unset;
  }
  .compare_box .wrap .info .title {
    font-size: 16px;
    letter-spacing: unset;
  }
  .compare_box .wrap2 .button {
    width: 22px;
  }
  div.pagination {
    font-size: 14px;
    gap: 12px;
  }
  div.pagination .line {
    width: 22px;
  }
  .page_nav .nav_list {
    display: flex;
    width: calc(100% + 60px);
    margin: 0 -30px;
    padding: 0 30px 10px;
    flex-wrap: nowrap;
    gap: 20px;
    overflow-x: auto;
  }
  .page_nav .nav_list::-webkit-scrollbar {
    display: none;
  }
  .page_nav .nav_item {
    grid-template-columns: 1fr 50px;
    font-size: 14px;
    line-height: 1.5;
    gap: 12px;
    padding: 10px;
    min-width: 250px;
  }
  .page_nav .nav_item span {
    padding-left: 10px;
  }
  .con_form form {
    gap: 16px 0;
  }
  .con_form form .label {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .con_form form input,
  .con_form form textarea,
  .con_form form select {
    font-size: 14px;
    height: 40px;
  }
  .con_form form select {
    background-size: 12px;
    background-position: right 10px center;
    padding-right: 30px;
  }
  .con_form form textarea {
    height: 50px;
  }
  .con_form form span:has(input[type=checkbox]) {
    margin-top: 0;
  }
  .con_form form input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .con_form form input[type=checkbox] ~ span {
    width: calc(100% - 24px);
    padding-left: 12px;
    font-size: 14px;
    line-height: 1.5;
    margin-top: 0;
  }
  .con_form form span:has(.btn) {
    margin-top: 10px;
  }
  .resource_list .pic {
    border-radius: 10px;
  }
  .resource_list .pic .cat {
    font-size: 14px;
    line-height: 2;
    min-width: 80px;
    padding: 0 20px;
  }
  .resource_list .pic .con {
    border-top-right-radius: 10px;
    transform: translateY(0);
    opacity: 1;
  }
  .resource_list .pic .con .desc {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: unset;
  }
  .resource_list .pic .con::after {
    width: 12px;
    height: 12px;
    top: 12px;
    right: 12px;
  }
  .resource_list .info {
    margin-top: 20px;
  }
  .resource_list .info .date {
    font-size: 14px;
  }
  .resource_list .info .title {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: unset;
    margin-top: 10px;
  }
  .technology_item a {
    border-radius: 10px;
  }
  .technology_item a::after {
    border-radius: 10px;
  }
  .technology_item .info .title {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: unset;
  }
  .technology_item .info .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    letter-spacing: unset;
  }
  .technology_item .img {
    border-radius: 10px;
  }
  .faq_list .question {
    font-size: 18px;
    letter-spacing: unset;
    padding: 14px 0;
    padding-right: 30px;
  }
  .faq_list .question::before,
  .faq_list .question::after {
    width: 14px;
    height: 14px;
  }
  .faq_list .answer {
    font-size: 14px;
    line-height: 1.5;
    padding-bottom: 20px;
    letter-spacing: unset;
  }
  .app_item a {
    border-radius: 10px;
  }
  .app_item .btn_circle {
    width: 40px;
  }
  .app_item .img::after {
    height: 100%;
  }
  .app_item .text {
    min-height: unset;
    transform: translateY(0);
  }
  .app_item .text .title {
    font-size: 18px;
    line-height: 1.5;
    letter-spacing: unset;
  }
  .app_item .text .desc {
    font-size: 14px;
    line-height: 1.5;
    margin-top: 10px;
    opacity: 1;
    letter-spacing: unset;
  }
  .product_list a {
    border-radius: 10px;
  }
  .product_list a::after,
  .product_list a::before {
    border-radius: 10px;
  }
  .product_list .img {
    transform: translateY(0);
  }
  .product_list .info {
    transform: translateY(0);
  }
  .product_list .info .title {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .product_list .info .date {
    font-size: 14px;
  }
  .product_list .info .btn_r {
    margin-top: 20px;
    opacity: 1;
  }

  /*** 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;
  }
  /*** global css ***/

  section.page_advantages .page_advantages_nav_swiper .swiper-slide-thumb-active {
    font-weight: normal;
  }
  section.services_banner .img {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .quote_modal .modal_content {
    display: block;
    margin: 30px auto;
  }
  .quote_modal .img {
    display: none;
  }
  .quote_modal .btn {
    font-size: 14px;
    grid-template-columns: 1fr 32px;
    gap: 12px;
    min-width: 140px;
    padding: 5px 5px 5px 20px;
  }
  .page_resource .nav {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0 20px;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
  }
  .page_resource .nav::-webkit-scrollbar {
    display: none;
  }
  .page_resource .nav .nav_list {
    flex-wrap: nowrap;
  }
  .page_resource .swiper_btns.middle {
    padding: 0 20px;
  }
  .page_banner .head {
    width: 100%;
  }
  .page_nav .nav_list {
    width: calc(100% + 40px);
    padding: 0 20px 15px;
    margin: 0 -20px;
  }
  .con_form form .col-2 {
    width: 100%;
  }
  .page_banner2 .img {
    width: 100%;
  }
  section.services_banner .img {
    width: 100%;
  }
}
