* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #267dc0;
  --secondary: #4fb4d6;
  --title: #1a203a;
  --text: #585a5e;
  --box_shadow: 0 0 20px rgba(198, 198, 198, 0.45);
}
html {
  scroll-behavior: smooth;
  font-size: clamp(7.5px, 0.520834vw, 14px);
}
ul {
  list-style: none;
}
a {
  color: inherit;
  cursor: pointer;
  font-size: inherit;
  text-decoration: none;
}
i {
  font-style: normal;
}
.content {
  max-width: 134rem;
  margin: 0 auto;
  position: relative;
}
.content .content {
  padding: 0;
}
.swiper_box {
  position: relative;
}
.swiper_content {
  max-width: 137rem;
  margin: 0 auto;
  position: relative;
  padding: 1.5rem;
  overflow: hidden;
}
button,
input,
textarea {
  outline: none;
  border: none;
  font-family: unset;
  color: var(--title);
}
input[type="submit"],
button {
  cursor: pointer;
}
textarea {
  resize: none;
}
input[type="checkbox"] {
  cursor: pointer;
  appearance: none;
}
input[type="number"] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
select {
  cursor: pointer;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  font-family: unset;
  color: var(--title);
}
.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;
}
body {
  font-size: 1.6rem;
  word-break: break-word;
  color: var(--title);
  font-display: swap;
  font-family: "Geist", sans-serif;
}
body.fixed {
  overflow: hidden;
  padding-right: 17px;
}
.only_mobile {
  display: none;
}
.gap {
  gap: 3rem;
}
li.swiper-slide {
  height: auto;
}
.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;
}
.btn {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
  text-align: center;
  background-color: var(--primary);
  color: #fff;
  font-size: 1.8rem;
  line-height: normal;
  font-weight: 600;
  padding: 2.3rem 5rem 2.2rem;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.btn.lar {
  font-size: 2rem;
  padding: 2.1rem 3.1rem;
}
.btn:hover {
  background-color: var(--secondary);
}
.btn_line {
  position: relative;
  z-index: 2;
  display: inline-block;
  text-align: center;
  cursor: pointer;
  transition: color 0.2s 0.2s, background-color 0.2s 0.2s;
  background-color: transparent;
  border: 1px solid rgba(83, 84, 89, 0.3);
  color: var(--title);
  font-weight: 600;
  font-size: 2rem;
  line-height: normal;
  padding: 2rem 3.2rem 2.1rem;
  --deg: 1.4rem;
  min-width: 20.6rem;
}
.btn_line::before {
  width: var(--deg);
  height: var(--deg);
  position: absolute;
  right: -2px;
  bottom: -2px;
  border: 0 solid var(--primary);
  border-right-width: 3px;
  border-bottom-width: 3px;
  content: '';
  pointer-events: none;
  transition: width 0.2s 0.2s, height 0.2s 0.2s;
}
.btn_line::after {
  width: var(--deg);
  height: var(--deg);
  position: absolute;
  left: -2px;
  top: -2px;
  border: 0 solid var(--primary);
  border-left-width: 3px;
  border-top-width: 3px;
  content: '';
  pointer-events: none;
  transition: width 0.2s 0.2s, height 0.2s 0.2s, opacity 0.4s 0.2s;
  opacity: 0;
}
.btn_line:hover {
  --deg: calc(100% + 1px);
  color: #fff;
  background-color: var(--primary);
}
.btn_line:hover::before {
  transition: width 0.2s, height 0.2s;
}
.btn_line:hover::after {
  opacity: 1;
  transition: width 0.2s, height 0.2s;
}
.btn_line.normal {
  transition: all 0.3s;
  border-color: #cecece;
}
.btn_line.normal:hover {
  border-color: var(--primary);
}
.btn_line.normal::before,
.btn_line.normal::after {
  display: none;
}
.btn_single {
  position: relative;
  z-index: 2;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.2s 0.2s;
  background-color: transparent;
  border: 1px solid rgba(83, 84, 89, 0.3);
  width: 5.3rem;
  --deg: 1.2rem;
}
.btn_single span {
  width: 100%;
  padding-bottom: 100%;
  display: block;
  content: '';
  background: url("../img/arrow-tr.svg") no-repeat center / 25.925925%;
  transition: all 0.2s 0.2s;
}
.btn_single::before {
  width: var(--deg);
  height: var(--deg);
  position: absolute;
  right: -2px;
  bottom: -2px;
  border: 0 solid var(--primary);
  border-right-width: 3px;
  border-bottom-width: 3px;
  content: '';
  pointer-events: none;
  transition: width 0.2s 0.2s, height 0.2s 0.2s;
}
.btn_single::after {
  width: var(--deg);
  height: var(--deg);
  position: absolute;
  left: -2px;
  top: -2px;
  border: 0 solid var(--primary);
  border-left-width: 3px;
  border-top-width: 3px;
  content: '';
  pointer-events: none;
  transition: width 0.2s 0.2s, height 0.2s 0.2s, opacity 0.4s 0.2s;
  opacity: 0;
}
.btn_single:hover {
  --deg: calc(100% + 1px);
  background-color: var(--primary);
}
.btn_single:hover::before {
  transition: width 0.2s, height 0.2s;
}
.btn_single:hover::after {
  opacity: 1;
  transition: width 0.2s, height 0.2s;
}
.btn_single:hover span {
  filter: contrast(0) brightness(2);
  transform: rotate(45deg);
}
.btn_single.lar {
  width: 6.3rem;
  --deg: 1.4rem;
}
.btn_single.lar:hover {
  --deg: 100%;
}
.btn_single.white {
  border-color: rgba(255, 255, 255, 0.4);
}
.btn_single.white span {
  filter: contrast(0) brightness(2);
}
.btn_single.white::before,
.btn_single.white::after {
  border-color: #fff;
}
.btn_single.white:hover {
  background-color: #fff;
}
.btn_single.white:hover span {
  filter: unset;
}
.btn_single.white:hover::before {
  transition: width 0.2s, height 0.2s;
}
.btn_single.white:hover::after {
  opacity: 1;
  transition: width 0.2s, height 0.2s;
}
.btn_i {
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 2rem;
  font-weight: 600;
  color: #0f0f0f;
  gap: 1.3rem;
  --deg: 1.1rem;
  --size: 5.1rem;
}
.btn_i::after {
  width: var(--size);
  height: var(--size);
  display: block;
  content: '';
  background: url("../img/arrow-tr.svg") no-repeat center / 23.53%;
  transition: all 0.2s 0.2s;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}
.btn_i i {
  position: relative;
  z-index: 2;
  display: inline-block;
  flex-shrink: 0;
  background-color: transparent;
  border: 1px solid rgba(15, 15, 15, 0.3);
  width: var(--size);
  height: var(--size);
  transition: background-color 0.2s 0.2s;
}
.btn_i i::before {
  width: var(--deg);
  height: var(--deg);
  position: absolute;
  right: -2px;
  bottom: -2px;
  border: 0 solid var(--primary);
  border-right-width: 3px;
  border-bottom-width: 3px;
  content: '';
  pointer-events: none;
  transition: width 0.2s 0.2s, height 0.2s 0.2s;
}
.btn_i i::after {
  width: var(--deg);
  height: var(--deg);
  position: absolute;
  left: -2px;
  top: -2px;
  border: 0 solid var(--primary);
  border-left-width: 3px;
  border-top-width: 3px;
  content: '';
  pointer-events: none;
  transition: width 0.2s 0.2s, height 0.2s 0.2s, opacity 0.4s 0.2s;
  opacity: 0;
}
.btn_i:hover {
  color: var(--primary);
  --deg: calc(100% + 1px);
}
.btn_i:hover::after {
  filter: contrast(0) brightness(2);
  transform: translateY(-50%) rotate(45deg);
}
.btn_i:hover i {
  background-color: var(--primary);
}
.btn_i:hover i::before {
  transition: width 0.2s, height 0.2s;
}
.btn_i:hover i::after {
  opacity: 1;
  transition: width 0.2s, height 0.2s;
}
.swiper_btns {
  gap: 3.1rem;
  display: flex;
}
.swiper_btns div {
  width: 6.2rem;
  height: 6.2rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--title);
  background-color: var(--title);
}
.swiper_btns div::after {
  content: '';
  display: block;
  width: 2rem;
  height: 2rem;
  transition: all 0.3s;
  background: url(../img/arrow.svg) no-repeat center / contain;
  filter: contrast(0) brightness(2);
}
.swiper_btns div:hover {
  border-color: var(--primary);
  background-color: var(--primary);
}
.swiper_btns .btn_next::after {
  transform: rotate(180deg);
}
.swiper_btns .swiper-button-disabled {
  pointer-events: none;
  background-color: transparent;
  border-color: rgba(83, 84, 89, 0.3);
}
.swiper_btns .swiper-button-disabled::after {
  filter: none;
}
.swiper_btns .swiper-button-lock {
  opacity: 0;
  pointer-events: none;
}
.swiper_btns.middle {
  width: 98%;
  max-width: 164.7rem;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  pointer-events: none;
  transform: translate(-50%, -50%);
  justify-content: space-between;
}
.swiper_btns.middle div {
  pointer-events: all;
}
.swiper_btns.middle .swiper-button-disabled,
.swiper_btns.middle .swiper-button-lock {
  pointer-events: none;
}
.head.has_i h2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}
.head.has_i h2::after {
  display: inline-block;
  content: '';
  flex-shrink: 0;
  margin-bottom: 1.5rem;
}
.head strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 1.7rem;
}
.head h1 {
  font-size: 6rem;
  line-height: 6.9rem;
  font-weight: 700;
}
.head h2 {
  font-size: 5rem;
  line-height: 6.4rem;
  font-weight: 600;
}
.head h2::after {
  width: 3.8rem;
  height: 3.8rem;
  background: url("../img/subtitle-icon.svg") no-repeat center bottom / contain;
}
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 996;
  width: 100%;
  transition: all 0.4s;
  background-color: #fff;
}
header:hover {
  box-shadow: 0 5px 5px rgba(186, 186, 186, 0.35);
}
header.sticky {
  box-shadow: 0 5px 5px rgba(186, 186, 186, 0.35);
}
header.location {
  top: -9rem;
}
header.location .mega_menu {
  top: 0;
}
header .left {
  display: flex;
  align-items: center;
  margin-right: 5.3%;
  padding-bottom: 1px;
}
header .left .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
}
header .left .logo img {
  display: block;
  width: auto;
  height: 5.7rem;
}
header .left .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
header nav .menu {
  display: flex;
  gap: 4.4rem;
}
header nav .menu > li {
  position: relative;
  z-index: 2;
}
header nav .menu > li::after {
  width: 0;
  height: 3px;
  position: absolute;
  left: 50%;
  top: 70%;
  content: '';
  background-color: var(--primary);
  transform: translateX(-50%);
  transition: all 0.3s;
}
header nav .menu > li > a {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  color: #282828;
  transition: all 0.3s;
  line-height: 8.7rem;
  padding-top: 0.3rem;
}
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;
}
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;
  font-size: 1.5rem;
  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.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 9rem;
}
header .btns .btn_lang,
header .btns .btn_search {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  background: url(../img/icon-lang.svg) no-repeat center / contain;
  margin-top: 0.5rem;
}
header .btns .btn_lang {
  background-image: url("../img/icon-lang.svg");
}
header .btns .btn_search {
  background-image: url(../img/icon-search.svg);
}
header .btns .btn_menu {
  display: none;
}
header .btns .btn {
  padding: 2.2rem 4.25rem 1.9rem;
  margin-left: 0.8rem;
}
footer {
  position: relative;
  background: url("../img/footer-bg1.png") no-repeat center / cover;
}
footer .inner {
  overflow: hidden;
}
footer .mask {
  position: absolute;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  pointer-events: none;
  z-index: 2;
  --deg_w: 1.9rem;
  --deg_h: 1.36px;
  --bootom: 1.7rem;
  top: -2.1rem;
  overflow: hidden;
  padding-top: 1.7rem;
}
footer .mask > div {
  position: relative;
  pointer-events: all;
  width: 20%;
  height: 2.9rem;
}
footer .mask > div::before,
footer .mask > div::after {
  background-color: var(--secondary);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0, calc(100% - var(--deg_w)) 100%, 0 calc(100% - var(--deg_h)));
  content: '';
}
footer .mask > div::after {
  width: 77.88%;
  background-color: var(--primary);
  bottom: var(--bootom);
}
footer .mask .mask_left {
  max-width: 24.4rem;
}
footer .mask .mask_left::before,
footer .mask .mask_left::after {
  left: 0;
}
footer .mask .mask_right {
  max-width: 16.8rem;
}
footer .mask .mask_right::before,
footer .mask .mask_right::after {
  right: 0;
  clip-path: polygon(var(--deg_w) 0, 100% var(--deg_h), 100% 100%, 0 100%);
}
footer .mask .mask_right::before {
  opacity: 0.58;
  bottom: calc(var(--bootom) + 3px);
}
footer .mask .mask_right::after {
  width: 68.45%;
  bottom: 3px;
}
footer .footer_main {
  padding: 7.2rem 0 2.3rem;
}
footer .footer_main .flex {
  gap: 4.5rem 2.2rem;
}
footer .footer_main strong {
  display: block;
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 400;
  color: #3f3f3f;
  opacity: 0.56;
}
footer .footer_main .slide_intro {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
footer .footer_main .slide_intro .logo {
  display: block;
  overflow: hidden;
  position: relative;
  text-indent: -999px;
  flex: 1;
  max-width: 22rem;
}
footer .footer_main .slide_intro .logo img {
  display: block;
  width: 100%;
  height: auto;
}
footer .footer_main .slide_intro .logo p {
  position: absolute;
  z-index: -1;
  inset: 0;
}
footer .footer_main .slide_intro .social {
  gap: 2rem 4.4rem;
  display: flex;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}
footer .footer_main .slide_intro .social a {
  opacity: 1;
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
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);
}
footer .footer_main .slide_intro .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
footer .footer_main .slide_intro .social .tiktok a::after {
  background-image: url(../img/tiktok.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 {
  font-weight: 500;
  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.9rem;
}
footer .footer_main .slide_obj button {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  transition: all 0.3s;
  margin-top: 2.5rem;
}
footer .footer_main .slide_obj button:hover {
  text-decoration-color: transparent;
}
footer .footer_main .slide_connect {
  width: 27.3rem;
}
footer .footer_main .slide_connect li {
  position: relative;
  padding-left: 6.5rem;
}
footer .footer_main .slide_connect li::before {
  content: '';
  display: block;
  width: 5.2rem;
  height: 5.2rem;
  background: no-repeat center / contain #fff;
  position: absolute;
  border-radius: 50%;
  left: 0;
  top: 1px;
}
footer .footer_main .slide_connect li a {
  font-weight: 600;
}
footer .footer_main .slide_connect li .label {
  font-size: 1.3rem;
  color: #6d6d6d;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
footer .footer_main .slide_connect li + li {
  margin-top: 3.6rem;
}
footer .footer_main .slide_connect .phone::before {
  background-image: url(../img/icon-phone.svg);
}
footer .footer_main .slide_connect .email::before {
  top: -0.5rem;
  background-image: url(../img/icon-email.svg);
}
footer .footer_main .slide_connect .whatsapp::before {
  top: -0.5rem;
  background-image: url(../img/icon-whatsapp.svg);
}
footer .footer_main .grid {
  position: relative;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(40rem, 1fr));
  gap: 5rem 0;
  margin-top: 2.7rem;
}
footer .footer_main .grid::before,
footer .footer_main .grid::after {
  width: 100vw;
  height: 1px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  background-image: linear-gradient(to right, transparent, #dddddd 52.7933%, transparent);
}
footer .footer_main .grid::before {
  top: 0;
}
footer .footer_main .grid::after {
  bottom: 0;
}
footer .footer_main .grid > div {
  padding-top: 2.4rem;
  padding-bottom: 2rem;
}
footer .footer_main .slide_quality {
  padding-right: 2rem;
}
footer .footer_main .slide_quality strong {
  margin-bottom: 1.85rem;
}
footer .footer_main .slide_quality ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 7.5rem;
}
footer .footer_main .slide_quality ul li {
  height: 6rem;
  width: max-content;
}
footer .footer_main .slide_quality ul li img {
  width: auto;
  height: 100%;
  display: block;
  object-fit: contain;
}
footer .footer_main .slide_subscribe {
  border-left: 1px solid #dddddd;
  padding-left: 9.6%;
}
footer .footer_main .slide_subscribe strong {
  margin-bottom: 2rem;
}
footer .footer_main .slide_subscribe form {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.8rem;
}
footer .footer_main .slide_subscribe form input[type=email] {
  font-size: 1.7rem;
  color: #212121;
  display: block;
  width: 100%;
  background-color: #fff;
  padding: 1rem 2.6rem;
}
footer .footer_main .slide_subscribe form input[type=email]::placeholder {
  color: #212121;
}
footer .footer_main .slide_subscribe form input[type=submit] {
  background-color: var(--primary);
  transition: all 0.3s;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  padding: 1.5rem 2rem 1.4rem;
  font-weight: 500;
  min-width: 16.3rem;
}
footer .footer_main .slide_subscribe form input[type=submit]:hover {
  background-color: var(--secondary);
}
footer .copyright {
  padding: 2rem 0;
}
footer .copyright p,
footer .copyright a {
  font-size: 1.4rem;
  color: #212121;
  font-weight: 500;
}
footer .copyright a {
  opacity: 0.68;
  display: block;
  transition: all 0.3s;
  text-decoration: underline transparent;
}
footer .copyright a:hover {
  opacity: 1;
  color: var(--primary);
  text-decoration-color: var(--primary);
}
footer .copyright ul {
  gap: 2rem 5.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#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.64);
  opacity: 0;
  pointer-events: none;
}
#overlay.active {
  opacity: 1;
  pointer-events: all;
}
.mega_menu {
  position: fixed;
  top: 9rem;
  width: 100%;
  background-color: #f3f3f3;
  z-index: -1;
  max-height: calc(100vh - 12rem);
  overflow: auto;
  pointer-events: none;
  /* transform: translateY(-4rem); */
  transition: transform 0.5s, opacity 0.3s, top 0.3s;
  opacity: 0;
}
.mega_menu::before {
  width: 50%;
  height: 100%;
  position: absolute;
  right: 50%;
  content: '';
  background-color: #fff;
  pointer-events: none;
  z-index: -1;
}
.mega_menu.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mega_menu::-webkit-scrollbar {
  width: 5px;
}
.mega_menu::-webkit-scrollbar-thumb {
  background: #888888;
  border-radius: 10px;
}
.mega_menu .mega_menu_inner {
  position: relative;
  display: flex;
  padding: 4.1rem 5.5% 4.5rem;
  gap: 7.1rem;
}
.mega_menu .mega_menu_inner .close {
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  right: 0;
  top: 2.4rem;
  content: '';
  background: url("../img/icon-close.svg") no-repeat center / contain;
  transition: all 0.3s;
  cursor: pointer;
}
.mega_menu .mega_menu_inner .close:hover {
  transform: rotate(360deg);
}
.mega_menu .mega_menu_item {
  flex: 1;
}
.mega_menu .mega_menu_item a:hover {
  color: var(--theme_color);
  text-decoration-color: var(--theme_color);
  font-weight: 500;
}
.mega_menu .mega_menu_title {
  font-size: 1.8rem;
  font-weight: 500;
  color: #282828;
}
.mega_menu .mega_menu_title a {
  display: block;
  max-width: max-content;
}
.mega_menu .mega_menu_list {
  margin-top: 2.6rem;
}
.mega_menu .mega_menu_list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.3rem 2rem;
  padding-right: 12.5%;
}
.mega_menu .mega_menu_list a {
  font-size: 1.5rem;
  font-weight: 500;
  color: #7a7a7a;
  text-decoration: underline transparent;
  transition: all 0.3s;
}
.mega_menu .mega_menu_list a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.mega_menu .mega_menu_show {
  flex: 1;
  padding-top: 0.5rem;
}
.mega_menu .mega_menu_show ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-columns: 80% 1fr;
  gap: 3rem 6.3%;
}
.mega_menu .mega_menu_show a {
  display: block;
  height: 100%;
}
.mega_menu .mega_menu_show a:hover img {
  transform: scale(1.02);
}
.mega_menu .mega_menu_show .img {
  padding-bottom: 71.374%;
}
.mega_menu .mega_menu_show strong {
  font-weight: 500;
  color: #282828;
  display: block;
  margin-top: 2.1rem;
}
#page_sidebar {
  position: fixed;
  right: 1.6rem;
  bottom: 7.5vh;
  z-index: 99;
}
#page_sidebar .social {
  width: 7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.2rem;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.92);
  padding: 4.1rem 1rem;
}
#page_sidebar .social a {
  display: block;
  width: 2.2rem;
  height: 2.2rem;
  overflow: hidden;
  text-indent: -999px;
  position: relative;
  transition: all 0.3s;
}
#page_sidebar .social a::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
}
#page_sidebar .social a:hover {
  transform: scale(1.1);
}
#page_sidebar .social .youtube a::after {
  background-image: url(../img/youtube.svg);
}
#page_sidebar .social .tiktok a::after {
  background-image: url(../img/tiktok.svg);
}
#page_sidebar .social .linkedin a::after {
  background-image: url(../img/linkedin.svg);
}
#page_sidebar .contact {
  display: flex;
  flex-direction: column;
  width: 7rem;
  gap: 1.5rem;
  margin-top: 1.6rem;
}
#page_sidebar .contact li {
  position: relative;
}
#page_sidebar .contact li:hover a,
#page_sidebar .contact li.active a,
#page_sidebar .contact li:hover span,
#page_sidebar .contact li.active span {
  background-color: #3d9be2;
}
#page_sidebar .contact li:hover a::after,
#page_sidebar .contact li.active a::after,
#page_sidebar .contact li:hover span::after,
#page_sidebar .contact li.active span::after {
  filter: contrast(0) brightness(2);
}
#page_sidebar .contact li:hover p,
#page_sidebar .contact li.active p {
  transform: translateX(0);
  opacity: 1;
}
#page_sidebar .contact li p {
  position: absolute;
  right: calc(100% + 2.1rem);
  background-color: #fff;
  border-radius: 7px;
  font-size: 1.8rem;
  color: #242526;
  font-weight: 500;
  box-shadow: 10px 10px 8px rgba(202, 208, 216, 0.4);
  top: 0.4rem;
  min-width: 15.5rem;
  padding: 1.9rem 2rem 1.8rem;
  transform: translateX(2rem);
  opacity: 0;
  transition: all 0.3s, transform 0.4s;
  white-space: nowrap;
  pointer-events: none;
}
#page_sidebar .contact li p::after {
  width: 0.7rem;
  height: 1.4rem;
  clip-path: polygon(100% 50%, 0 0, 0 100%);
  position: absolute;
  top: 50%;
  left: 100%;
  content: '';
  background-color: #fff;
  transform: translateY(-50%);
}
#page_sidebar .contact a,
#page_sidebar .contact span {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  display: block;
  border-radius: 50%;
  content: '';
  cursor: pointer;
  transition: all 0.3s;
  background-color: #fff;
  box-shadow: 10px 10px 8px rgba(0, 0, 0, 0.05);
}
#page_sidebar .contact a::after,
#page_sidebar .contact span::after {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background: no-repeat center / contain;
  left: 0;
  top: 0;
  transition: all 0.3s;
}
#page_sidebar .contact .phone a::after,
#page_sidebar .contact .phone span::after {
  background-image: url(../img/side-phone.svg);
}
#page_sidebar .contact .email a::after,
#page_sidebar .contact .email span::after {
  background-image: url(../img/side-email.svg);
}
#page_sidebar .contact .msg a::after,
#page_sidebar .contact .msg span::after {
  background-image: url(../img/side-msg.svg);
}
#page_sidebar .contact .go_to_top a::after,
#page_sidebar .contact .go_to_top span::after {
  background-image: url(../img/side-top.svg);
}
.page_global {
  position: relative;
  z-index: 2;
  background-color: rgba(248, 248, 248, 0.68);
  padding: 7.6rem 0 9.3rem;
}
.page_global .mask {
  pointer-events: none;
  position: absolute;
  left: 0;
  top: -3.3rem;
  bottom: -2.8rem;
  width: 100%;
  --deg_w: 1.9rem;
  --deg_h: 0.76px;
  --bootom: 1.7rem;
  overflow: hidden;
}
.page_global .mask > div {
  position: absolute;
  pointer-events: all;
  width: 20%;
  height: 2.9rem;
}
.page_global .mask > div::before,
.page_global .mask > div::after {
  background-color: var(--secondary);
  width: 100%;
  height: 100%;
  position: absolute;
  clip-path: polygon(0 var(--deg_h), calc(100% - var(--deg_w)) 0, 100% 100%, 0 100%);
  content: '';
}
.page_global .mask > div::after {
  width: 62.5%;
  background-color: var(--primary);
}
.page_global .mask .mask_left {
  left: 0;
  bottom: 0;
  max-width: 14.4rem;
}
.page_global .mask .mask_left::before,
.page_global .mask .mask_left::after {
  left: 0;
  bottom: 0;
}
.page_global .mask .mask_left::before {
  opacity: 0.58;
  bottom: var(--bootom);
}
.page_global .mask .mask_right {
  right: 0;
  top: 0;
  max-width: 19.6rem;
}
.page_global .mask .mask_right::before,
.page_global .mask .mask_right::after {
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - var(--deg_h)), var(--deg_w) 100%);
}
.page_global .mask .mask_right::before {
  top: var(--bootom);
}
.page_global .mask .mask_right::after {
  top: 0;
  width: 72.96%;
}
.page_global h2 span {
  max-width: 56.6rem;
}
.page_global .flex {
  margin-top: 6.7rem;
  gap: 3rem 2rem;
}
.page_global .img {
  width: 70.1493%;
  margin-left: -2.015%;
}
.page_global .items {
  flex: 1;
  max-width: 40.2rem;
  padding-bottom: 0.5%;
}
.page_global .items > div {
  display: grid;
  gap: 1.6rem;
}
.page_global .items .item {
  background-color: #fff;
  box-shadow: 0 0 10px rgba(219, 219, 219, 0.45);
}
.page_global .items .item:first-child .desc {
  display: block;
}
.page_global .items .item.active .title {
  color: var(--primary);
}
.page_global .items .item.active .title i {
  filter: unset;
}
.page_global .items .title {
  display: grid;
  grid-template-columns: 1fr 6rem;
  align-items: center;
  cursor: pointer;
  font-size: 2.6rem;
  font-weight: 600;
  transition: all 0.3s;
  gap: 2rem;
  padding: 1.6rem 8% 1.5rem 9%;
}
.page_global .items .title span {
  margin-bottom: 0.3rem;
}
.page_global .items .title i {
  width: 100%;
  padding-bottom: 100%;
  display: block;
  content: '';
  transition: all 0.3s;
  filter: contrast(0) brightness(0);
  background: no-repeat center / contain;
}
.page_global .items .desc {
  display: none;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
  padding: 2rem 9.2% 2.9rem;
}
.page_nums .nums {
  overflow: hidden;
}
.page_nums .nums ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-right: -1px;
}
.page_nums li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-right: 1px solid #dcdce0;
  border-bottom: 1px solid #dcdce0;
  padding: 6.3rem 2rem 7.1rem;
}
.page_nums li .wrap {
  font-size: 4.9rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.page_nums li .wrap .num {
  font-size: 6rem;
  color: var(--title);
  margin-right: -0.6rem;
}
.page_nums li .label {
  font-size: 2rem;
  color: #898989;
  margin-top: 0.8rem;
}
.page_application {
  padding: 5.4rem 0 15.8rem;
}
.page_application .head {
  max-width: 58.4rem;
  max-width: 90rem;
}
.page_application .head .btn {
  margin-top: 20px;
}
.page_application .page_application_swiper {
  margin-top: 4.8rem;
  overflow: hidden;
}
.page_application .page_application_swiper .swiper-slide {
  width: 39.4rem;
}
.page_application .item.active .img {
  opacity: 0;
}
.page_application .item.active .bg {
  opacity: 1;
}
.page_application .item.active .icon {
  opacity: 1;
}
.page_application .item.active .info {
  color: var(--title);
  transform: translateY(0);
}
.page_application .item.active .info p {
  opacity: 1;
  color: var(--text);
}
.page_application .item a {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 5rem 7.4% 3.7rem 7.8%;
  overflow: hidden;
}
.page_application .item a:hover img {
  transform: scale(1.02);
}
.page_application .item .bg {
  position: absolute;
  left: 0;
  top: 0;
  background: url("../img/app-mask.png") no-repeat center / cover;
  content: '';
  width: 100%;
  height: 100%;
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
}
.page_application .item .img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.page_application .item .img::after {
  width: 100%;
  height: 51.01523%;
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  background-image: linear-gradient(to top, var(--title), transparent);
  opacity: 0.85;
}
.page_application .item .icon {
  position: relative;
  z-index: 2;
  width: 8.3rem;
  height: 8.3rem;
  transition: all .3s;
  opacity: 0;
  background: no-repeat center / contain;
}
.page_application .item .info {
  position: relative;
  z-index: 2;
  flex: 1;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 0.8rem;
  min-height: 44.3rem;
  transform: translateY(calc(100% - 7rem));
  transition: all 0.3s, transform 0.5s;
}
.page_application .item .info h3 {
  font-size: 2.6rem;
  line-height: 3.5rem;
  font-weight: 600;
  display: flex;
  align-items: flex-end;
  height: 7rem;
}
.page_application .item .info h3 span {
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.page_application .item .info p {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
  hyphens: auto;
  margin-top: 2.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  max-width: 32.3rem;
  opacity: 0;
  transition: all 0.3s;
  color: #fff;
}
.page_application .item .info .btn_single {
  margin-top: auto;
  margin-left: auto;
}
.page_partners {
  position: relative;
  background: url("../img/partners-bg1.png") no-repeat center / cover;
  padding: 13.4rem 0 0;
  overflow: hidden;
}
.page_partners::before {
  width: 100%;
  height: 19.3775%;
  position: absolute;
  left: 0;
  top: 0;
  content: '';
  background-image: linear-gradient(to bottom, #fff, transparent);
  pointer-events: none;
}
.page_partners .num_box .wrap {
  font-size: 10.8rem;
  font-weight: 600;
  color: var(--primary);
  white-space: nowrap;
}
.page_partners .num_box .wrap .num {
  font-size: 13.2rem;
  color: var(--title);
  margin-right: -2.4rem;
}
.page_partners .num_box h2 {
  font-size: 3rem;
  font-weight: 400;
  margin-top: 1.2rem;
}
.page_partners .head {
  flex: 1;
  max-width: 76.2rem;
  padding-top: 1.5rem;
}
.page_partners h3 {
  position: relative;
  font-size: 2.6rem;
  font-weight: 400;
  padding-left: 4.1rem;
}
.page_partners h3::before {
  background: url("../img/subtitle-icon.svg") no-repeat center / contain;
  position: absolute;
  left: 0;
  top: 2px;
  width: 3.1rem;
  height: 3.1rem;
  content: '';
}
.page_partners p {
  font-size: 1.8rem;
  line-height: 3.2rem;
  color: var(--text);
  margin-top: 2.3rem;
}
.page_partners .btn_line {
  margin-top: 2.8rem;
}
.page_partners .inner {
  max-width: 192rem;
  margin: 12.6rem auto 0;
  position: relative;
  padding-bottom: 9.1rem;
}
.page_partners .inner .mask {
  position: static;
}
.page_partners .inner .mask li {
  width: 19.53125%;
  height: 100%;
  position: absolute;
  bottom: 0;
  content: '';
  z-index: 2;
  background: url("../img/partner-mask.png") no-repeat center / cover;
  padding-bottom: 35.15325%;
}
.page_partners .inner .mask li:first-child {
  left: -1px;
}
.page_partners .inner .mask li:last-child {
  right: -1px;
  transform: rotate(180deg);
}
.page_partners .inner > div + div {
  margin-top: 1.4rem;
}
.page_partners .page_partners_swiper .swiper-wrapper {
  transition: linear;
}
.page_partners .page_partners_swiper .swiper-slide {
  width: 20rem;
  transition: all 0.4s;
}
.page_partners .page_partners_swiper .swiper-slide:hover {
  transform: scale(1.1);
}
.page_partners .page_partners_swiper .img {
  padding-bottom: 100%;
  border-radius: 50%;
  background-color: #fff;
}
.page_contact {
  background-color: #f6f7f8;
}
.page_contact .inner {
  position: relative;
  width: calc(100% - 4rem);
  max-width: 160rem;
  margin: 0 auto;
}
.page_contact .left {
  width: 45.0625%;
  position: relative;
  padding: 10.6rem 0 5.3rem;
  padding-right: 2rem;
  display: flex;
}
.page_contact .left:hover img {
  transform: scale(1.02);
}
.page_contact .left .img {
  position: absolute;
  right: 0;
  top: 0;
  width: 122.33%;
  height: 100%;
  background-color: #161616;
}
.page_contact .left .img img {
  opacity: 0.15;
}
.page_contact .left .head {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  position: relative;
  z-index: 2;
  max-width: 54.4rem;
}
.page_contact .left h2 {
  font-size: 5.2rem;
}
.page_contact .left p {
  font-size: 1.8rem;
  line-height: 3rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3.8rem;
  font-weight: 300;
  letter-spacing: 0.15px;
}
.page_contact .left .msg {
  font-size: 2.2rem;
  font-weight: 500;
  margin-top: 4rem;
  font-weight: 400;
  letter-spacing: 0.25px;
}
.page_contact .left .msg a {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 500;
  transition: all 0.3s;
  text-decoration-thickness: 1px;
  margin: 0 0.7rem;
}
.page_contact .left .msg a:hover {
  color: var(--secondary);
  text-decoration-color: transparent;
}
.page_contact .right {
  flex: 1;
  max-width: 77.8rem;
  padding: 8rem 0 10.2rem;
}
.page_contact form {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.2rem 1rem;
}
.page_contact form span {
  width: 100%;
}
.page_contact form .col-2 {
  width: 48.8700565%;
}
.page_contact form .label {
  font-size: 2rem;
  font-weight: 600;
  color: #0f0f0f;
  display: block;
  margin-bottom: -2px;
  margin-top: 2rem;
}
.page_contact form input,
.page_contact form textarea {
  display: block;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--title);
  background-color: #fff;
  padding: 1.8rem 2rem 1.7rem;
}
.page_contact form input::placeholder,
.page_contact form textarea::placeholder {
  color: #7c7d7f;
}
.page_contact form textarea {
  height: 13.1rem;
}
.page_contact form span:has(input[type=checkbox]) {
  margin-top: 2.3rem;
}
.page_contact form input[type=checkbox] {
  width: 2.6rem;
  height: 2.6rem;
  padding: 0;
  vertical-align: top;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page_contact form input[type=checkbox]::after {
  content: '';
  display: block;
  width: 80%;
  height: 80%;
  background: url(../img/gou.svg) no-repeat center / contain;
  transition: all 0.3s;
  opacity: 0;
}
.page_contact form input[type=checkbox]:checked::after {
  opacity: 1;
}
.page_contact form input[type=checkbox] ~ span {
  vertical-align: top;
  cursor: pointer;
  display: inline-block;
  line-height: 2.8rem;
  color: #4f5154;
  width: calc(100% - 3rem);
  padding-left: 1.6rem;
  margin-top: -0.8rem;
  font-weight: 500;
  letter-spacing: -0.18px;
}
.page_contact form input[type=checkbox] ~ span a {
  color: var(--primary);
  text-decoration: underline;
  transition: all 0.3s;
}
.page_contact form input[type=checkbox] ~ span a:hover {
  color: var(--secondary);
  text-decoration-color: transparent;
}
.page_contact form span:has(.btn_line) {
  margin-top: 0.9rem;
}
.page_contact form .btn_line {
  min-width: 19.8rem;
}
.page_contact form .btn_line input {
  display: none;
}
.page_faqs {
  padding: 7.35rem 0 16.1rem;
}
.page_faqs .flex {
  margin-top: 1.9rem;
}
.page_faqs .faqs {
  flex: 1;
  max-width: 79.1rem;
}
.page_faqs .faqs .faq_item {
  border-bottom: 1px solid #c6c6c6;
  transition: all 0.3s;
}
.page_faqs .faqs .faq_item:first-child .answer {
  display: block;
}
.page_faqs .faqs .faq_item.active {
  border-bottom-color: #212121;
}
.page_faqs .faqs .faq_item.active .question::after {
  transform: rotate(180deg);
}
.page_faqs .faqs .question {
  font-size: 2.1rem;
  font-weight: 700;
  color: #221e1f;
  display: grid;
  grid-template-columns: 1fr 1.5rem;
  align-items: center;
  gap: 2rem;
  padding: 2.8rem 0 2.3rem;
  cursor: pointer;
}
.page_faqs .faqs .question::after {
  width: 100%;
  padding-bottom: 100%;
  display: block;
  content: '';
  transition: all 0.3s;
  background: url("../img/icon-select.svg") no-repeat center / contain;
}
.page_faqs .faqs .answer {
  display: none;
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
  max-width: 70.9rem;
  padding: 1px 0 3.3rem;
}
.page_faqs .items {
  width: 35.821%;
  padding-top: 0.8rem;
}
.page_faqs .items > div {
  display: grid;
  gap: 1.7rem;
}
.page_faqs .items a {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e5e5e6;
  background-color: #fff;
  padding: 3.4rem 5.7% 6.8rem;
}
.page_faqs .items a:hover .btn_single {
  background-color: var(--secondary);
}
.page_faqs .items a:hover .btn_single span {
  transform: rotate(45deg);
}
.page_faqs .items .icon {
  width: 5.4rem;
  height: 5.4rem;
  content: '';
  background: no-repeat center / contain;
}
.page_faqs .items .info {
  margin-top: 2.2rem;
}
.page_faqs .items .info h3 {
  font-size: 2.7rem;
  font-weight: 600;
  color: #221e1f;
}
.page_faqs .items .info p {
  line-height: 2.5rem;
  color: #4c4c4c;
  margin-top: 0.8rem;
  font-weight: 500;
  letter-spacing: -0.1px;
}
.page_faqs .items .btn_single {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 5.2rem;
  border: none;
  background-color: var(--primary);
  transition: all 0.3s;
}
.page_faqs .items .btn_single span {
  filter: contrast(0) brightness(2);
  transition: all 0.3s;
  background-size: 25%;
}
.page_faqs .items .btn_single::before,
.page_faqs .items .btn_single::after {
  display: none;
}
.page_faqs .items .btn_single:hover {
  background-color: var(--secondary);
}
.page_faqs .items .btn_single:hover span {
  transform: rotate(45deg);
}
.page_breadcrumbs {
  line-height: 3rem;
  min-height: 3rem;
}
.page_breadcrumbs.white span {
  color: rgba(255, 255, 255, 0.8);
}
.page_breadcrumbs.white span span::before {
  filter: unset;
}
.page_breadcrumbs span {
  font-size: 2.2rem;
  font-weight: 500;
  color: rgba(34, 34, 34, 0.8);
}
.page_breadcrumbs span span::before {
  content: '';
  background: url("../img/icon-bread.svg") no-repeat center / contain;
  width: 1.3rem;
  height: 1.3rem;
  display: inline-block;
  margin: 0 1.1rem 0 0.8rem;
  filter: contrast(0) brightness(0);
}
.page_breadcrumbs span span:first-child::before {
  display: none;
}
.page_breadcrumbs span a {
  transition: all 0.3s;
  text-decoration: underline transparent;
}
.page_breadcrumbs span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.page_breadcrumbs2 {
  line-height: 3rem;
  min-height: 3rem;
}
.page_breadcrumbs2 span {
  font-size: 1.7rem;
  font-weight: 500;
  color: #4c4c4c;
}
.page_breadcrumbs2 span span::before {
  content: ' | ';
  font-size: 1.4rem;
  color: rgba(168, 168, 168, 0.67);
  transform: rotate(29deg);
  display: inline-block;
  font-weight: 300;
  margin: 0 1.1rem 0 1rem;
}
.page_breadcrumbs2 span span:first-child::before {
  display: none;
}
.page_breadcrumbs2 span span:first-child a {
  font-size: 0;
  color: transparent;
  background: url("../img/icon-home.svg") no-repeat center / contain;
  filter: contrast(0) brightness(1.2);
  width: 1.7rem;
  height: 1.7rem;
  display: inline-block;
  margin-right: 2px;
  transform: translateY(-1px);
}
.page_breadcrumbs2 span span:first-child a:hover {
  filter: unset;
}
.page_breadcrumbs2 span a {
  transition: all 0.3s;
  color: #898989;
  text-decoration: underline transparent;
}
.page_breadcrumbs2 span a:hover {
  color: var(--primary);
  text-decoration-color: var(--primary);
}
.cat_item.active .bg {
  opacity: 1;
}
.cat_item.active .btn_single {
  --deg: 100%;
  background-color: var(--primary);
}
.cat_item.active .btn_single::before {
  transition: width 0.2s, height 0.2s;
}
.cat_item.active .btn_single::after {
  opacity: 1;
  transition: width 0.2s, height 0.2s;
}
.cat_item.active .btn_single span {
  filter: contrast(0) brightness(2);
}
.cat_item a {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background-color: #f8f8f8;
}
.cat_item a:hover img {
  transform: scale(1.05);
}
.cat_item .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("../img/cat-mask.png") no-repeat center / cover;
  content: '';
  pointer-events: none;
  z-index: -1;
  transition: all 0.3s 0.2s;
  opacity: 0;
}
.cat_item .info {
  flex: 1;
  padding: 3rem 8.5% 2rem;
}
.cat_item .info span {
  font-size: 1.5rem;
  opacity: 0.58;
}
.cat_item .info h3 {
  font-size: 2.6rem;
  font-weight: 600;
  margin-top: 1rem;
}
.cat_item .img {
  width: 100%;
  padding-bottom: 100%;
}
.cat_item .btn_single {
  margin: 2.4rem 3rem 2.7rem auto;
}
.blog_list .active .info h3 {
  text-decoration-color: #0f0f0f;
}
.blog_list .active .info .btn_i {
  color: var(--primary);
  --deg: calc(100% + 1px);
}
.blog_list .active .info .btn_i::after {
  filter: contrast(0) brightness(2);
  transform: translateY(-50%) rotate(45deg);
}
.blog_list .active .info .btn_i i {
  background-color: var(--primary);
}
.blog_list .active .info .btn_i i::before {
  transition: width 0.2s, height 0.2s;
}
.blog_list .active .info .btn_i i::after {
  opacity: 1;
  transition: width 0.2s, height 0.2s;
}
.blog_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  box-shadow: var(--box_shadow);
}
.blog_list a:hover img {
  transform: scale(1.02);
}
.blog_list .img {
  width: 100%;
  padding-bottom: 61.21495%;
}
.blog_list .cat {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  background-color: var(--primary);
  line-height: 3.7rem;
  padding: 0 1.75rem;
  font-weight: 500;
  letter-spacing: 0.15px;
}
.blog_list .info {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4.9rem;
  padding: 2.5rem 8% 3rem;
}
.blog_list .info span {
  color: #3f3f3f;
  opacity: 0.85;
}
.blog_list .info h3 {
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: 600;
  color: #0f0f0f;
  text-decoration: underline transparent;
  transition: all 0.3s;
  margin-top: 0.9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.blog_list .info .btn_i {
  margin-top: auto;
  font-size: 1.8rem;
  --size: 4.8rem;
  gap: 1.7rem;
}
.product_list a {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  background-color: #f8f8f8;
}
.product_list a:hover img {
  transform: scale(1.02);
}
.product_list .btn_single {
  position: absolute;
  width: 4.1rem;
  z-index: 2;
  top: 2.3rem;
  right: 2.5rem;
  --deg: 0.8rem;
  border-color: rgba(255, 255, 255, 0.3);
}
.product_list .btn_single:hover {
  --deg: calc(100% + 1px);
}
.product_list .btn_single span {
  background-size: 35%;
  filter: contrast(0) brightness(2);
}
.product_list .img {
  width: 100%;
  padding-bottom: 103.636363%;
  padding-bottom: 94.6%;
  overflow: hidden;
}
.product_list .img.img_ct img {
  object-fit: cover;
}
.product_list .info {
  border-top: 1px solid #d6d6d6;
  flex: 1;
  padding: 2.2rem 7.5% 4.2rem;
}
.product_list .info span {
  font-size: 1.4rem;
  color: #707070;
  display: block;
}
.product_list .info strong {
  display: block;
  font-size: 2.2rem;
  line-height: 3.2rem;
  font-weight: 700;
  color: #0f0f0f;
  margin-top: 0.5rem;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.product_list .info .desc {
  opacity: 0.8;
  margin-top: 10px;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*** global css ***/
.empty_img {
  max-width: 388px;
  margin: 0 auto;
  display: block;
}
.loading {
  position: relative;
}
.loading:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../img/load.gif') no-repeat center;
  background-size: 45px;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 9;
}

.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: 0;
  padding: 0;
  border: none;
  width: 100%;
}
.wpcf7 form.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

div.search-block {
  position: fixed;
  z-index: 99;
  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;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  display: none;
}
.quote_modal.active {
  display: flex;
}
.quote_modal > .close {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-color: rgba(0, 0, 0, 0.75);
}
.quote_modal .modal_content {
  max-height: 110vh;
  overflow: auto;
  transform: scale(0.85);
  transition: all cubic-bezier(0.5, 0, 0.5, 1.5) 0.35s;
}
.quote_modal .page_contact .right {
  padding: 32px 0;
}
.quote_modal .page_contact .inner {
  width: calc(100% - 8rem);
}

.lang_popup{
  padding: 70px 53px;
  border-radius: 3px;
  background-color: white;
  /* position: absolute;
  left: calc(100% + 20px);
  bottom: -15px; */
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  z-index: 1005;
  display: none;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.footer_sidebar .lang{
  position: relative;
}
.lang_popup ul + strong{
  margin-top: 2rem;
}
.lang_popup strong{
  display: block;
  font-size: 28px;
  margin-bottom: 30px;
  text-align: left;
}
.lang_popup div.img{
  width: 41px;
  height: 41px;
  /* border-radius: 50%; */
  overflow: hidden;
  margin-right: 19px;
  border: 1px solid transparent;
}
.lang_popup div.img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lang_popup li{
  padding: 15px 24px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  cursor: pointer;
  
}
.lang_popup li:hover{
  border-color: var(--theme_color);
}
.lang_popup:before{
  content: "";
  display: inline-block;
  border-width: 10px;
  border-color: transparent #fff transparent transparent;
  position: absolute;
  right: 100%;
  bottom: 38px;
  border-style: solid;
  display: none;
}
.lang_popup li p{
  font-size: 17px;
  font-weight: 600;
  display: block;
  margin-bottom: 0rem;
}
.lang_popup li span{
  font-size: 14px;
  color: #686868;
}
.lang_popup li:after{
  content: "";
  width: 10px;
  height: 16px;
  display: inline-block;
  margin-left: auto;
  background: url('../img/arrow-lang.svg') no-repeat center/contain;
  transition: all 0.3s;
}
.lang_popup li.active{
  border-color: var(--theme_color);
}
.lang_popup li.active .img{
  border-color: white;
}
.lang_popup li.active:after{
  filter: brightness(100);
}
.lang_popup .close{
  width: 11px;
  display: inline-block;
  height: 11px;
  position: absolute;
  right: 32px;
  top: 30px;
  cursor: pointer;
  transition: all 0.5s;
  /* background: url('../img/lang-close.svg') no-repeat center/contain; */
}
.lang_popup .close:hover{
  transform: rotate(360deg);
}
.lang_popup ul.lang-list{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
}
.lang_popup .gtranslate_wrapper{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.lang_popup .gtranslate_wrapper a{
  padding: 15px 24px;
  border-radius: 4px;
  border: 1px solid #e5e5e5;
  display: flex;
  transition: all 0.3s;
  align-items: center;
  cursor: pointer;
}
.lang_popup .gtranslate_wrapper a.gt-current-lang{
  border-color: var(--theme_color);
}
.lang_popup .gtranslate_wrapper a img{
  width: 41px;
  height: auto;
  /* border-radius: 50%; */
  overflow: hidden;
  margin-right: 19px;
  border: 1px solid transparent;
  display: inline-block;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.lang_popup .gtranslate_wrapper a span{
  font-size: 17px !important;
  font-weight: 600;
  display: block;
  margin-bottom: 0rem;
}
.overlay_lang{
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.overlay_lang.active{
  opacity: 1;
  pointer-events: all;
}

div form#sytech-newsletter-subscription {
  display: grid;
}
div form#sytech-newsletter-subscription p.success,
div form#sytech-newsletter-subscription p.failed {
  top: unset;
  bottom: 100%;
  width: 100%;
  max-width: 250px;
  font-size: 12px;
  background-color: var(--primary);
  padding: 12px 12px 12px 32px;
}
div form#sytech-newsletter-subscription p.success.active,
div form#sytech-newsletter-subscription p.failed.active {
  top: unset;
  bottom: 110%;
}
div form#sytech-newsletter-subscription p.success::before,
div form#sytech-newsletter-subscription p.failed::before {
  top: 12px;
  width: 16px;
  height: 16px;
  filter: contrast(0) brightness(2);
}
div form#sytech-newsletter-subscription p.success::after,
div form#sytech-newsletter-subscription p.failed::after {
  bottom: unset;
  top: 100%;
  border-top-color: var(--primary);
}
/*** global css ***/

section.products_feature .flex {
  align-items: center;
}
.page_global .items .desc ol {
  margin-left: 16px;
}
.about_culture .desc {
  font-size: 1.8rem;
  line-height: 2.8rem;
  color: var(--text);
  margin-top: 1.9rem;
  overflow: auto;
  max-height: 30rem;
}
.about_culture .desc strong {
  margin-bottom: 12px;
}
.about_culture .desc li + li {
  margin-top: 2rem;
}

section.home_banner .home_banner_swiper .title {
  font-size: 6.6rem;
}

.breadcrumbs_section .inner {
  width: calc(100% - 4rem);
  max-width: 160rem;
  position: relative;
  z-index: 9;
  margin: 0 auto;
}
.breadcrumbs_section a {
  transition: all .3s;
}
.breadcrumbs_section a:hover {
  color: var(--primary);
}
.breadcrumbs_section .breadcrumbs {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  padding: 2rem 0;
}

.products_feature .items ul {
  margin-top: 2.2rem;
}
.products_feature .items li {
  position: relative;
  padding-left: 2.8rem;
}
.products_feature .items li::before {
  width: 1.6rem;
  height: 1.6rem;
  position: absolute;
  left: 0px;
  top: 0.6rem;
  content: "";
  background: url(../img/gou.svg) center center / contain no-repeat;
}
.products_feature .items li strong {
  display: block;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--primary);
  margin-bottom: 0;
}

.nav-links {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 50px;
}
.nav-links .page-numbers {
  min-width: 40px;
  line-height: 40px;
  text-align: center;
  transition: all .3s;
  padding: 0 10px;
}
.nav-links .page-numbers.current,
.nav-links a.page-numbers:hover {
  color: #fff;
  background-color: var(--primary);
}

@media screen and (min-width: 769px) and (max-width: 1440px) {
  section.home_banner .home_banner_swiper .title {
    font-size: 5.4rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1220px) {
  .content {
    padding: 0 2rem;
  }
  .swiper_content {
    padding: 1.5rem 2rem;
  }
  .page_nums li .wrap .num {
    font-size: 5rem;
  }
  .quote_modal.active .modal_content {
    transform: scale(1);
  }
  .quote_modal .modal_content {
    max-height: 110vh;
    transform: translateY(-5rem) scale(1);
  }
  section.home_banner .home_banner_swiper .title {
    font-size: 5.2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .content,
  .swiper_content {
    max-width: 896px;
  }
  header .left {
    margin-right: 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 896px) {
  .content,
  .swiper_content {
    max-width: 768px;
  }
  .page_nums .nums ul {
    grid-template-columns: repeat(3, 1fr);
  }
  section.home_banner .home_banner_swiper .title {
    font-size: 4.6rem;
  }
}
@media screen and (max-width: 896px) {
  #overlay, .mega_menu {
    display: none !important;
  }
  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;
  }
  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;
  }
  header .mega_menu {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  div::-webkit-scrollbar {
    width: 4px;
  }
  div::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #8b8b8b;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 16px;
  }
  body {
    font-size: 1rem;
  }
  .content {
    padding: 0 20px;
  }
  .swiper_content {
    padding: 10px 20px;
  }
  .only_mobile {
    display: block;
  }
  body.fixed {
    padding-right: 0;
  }
  .gap {
    gap: 1rem;
  }
  .btn {
    font-size: 14px;
    line-height: 1.5;
    padding: 11px 20px;
    letter-spacing: unset;
  }
  .btn.lar {
    font-size: 14px;
    padding: 11px 20px;
  }
  .btn_line {
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 20px;
    min-width: 120px;
    --deg: 12px;
  }
  .btn_line:hover {
    --deg: calc(100% + 1px);
  }
  .btn_single {
    width: 40px;
    --deg: 10px;
  }
  .btn_single:hover {
    --deg: calc(100% + 1px);
  }
  .btn_single.lar {
    width: 40px;
    --deg: 10px;
  }
  .btn_single.lar:hover {
    --deg: calc(100% + 1px);
  }
  .btn_i {
    font-size: 14px;
    gap: 12px;
    --deg: 10px;
    --size: 40px;
  }
  .btn_i:hover {
    --deg: calc(100% + 1px);
  }
  .swiper_btns {
    gap: 1rem;
  }
  .swiper_btns div {
    width: 40px;
    height: 40px;
  }
  .swiper_btns div::after {
    width: 14px;
    height: 14px;
  }
  div.head.has_i h2 {
    gap: 8px;
  }
  div.head.has_i h2::after {
    margin-bottom: 0;
  }
  div.head .subtitle,
  div.head strong {
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 8px;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head h1 {
    font-size: 34px;
    line-height: 1.3;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head h2 {
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head h2::after {
    width: 20px;
    height: 20px;
  }
  div.head .desc,
  div.head p {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 12px;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
  div.head .btn,
  div.head .btn_i,
  div.head .btn_line {
    margin-top: 20px;
  }
  header {
    width: 100%;
    left: 0;
    top: 0;
    transform: translate(0);
    position: sticky;
  }
  header.location {
    top: 0;
  }
  header .left .logo img {
    height: 35px;
  }
  header .btns {
    gap: 26px;
    min-height: 4rem;
  }
  header .btns .btn {
    display: none;
  }
  footer .mask {
    top: -10px;
    padding-top: 10px;
    --deg_w: 10px;
    --bootom: 10px;
  }
  footer .mask > div {
    height: 1rem;
  }
  footer .mask .mask_left,
  footer .mask .mask_right {
    max-width: 200px;
  }
  footer .footer_main {
    padding: 4rem 0 3rem;
  }
  footer .footer_main .flex {
    gap: 0;
    justify-content: unset;
    flex-direction: column;
    align-items: unset;
  }
  footer .footer_main strong {
    font-size: 18px;
  }
  footer .footer_main .slide_intro {
    order: -1;
    margin: 0;
    width: 100%;
    display: block;
  }
  footer .footer_main .slide_intro .logo {
    max-width: 180px;
    margin: 0 auto;
  }
  footer .footer_main .slide_intro .social {
    margin-top: 2rem;
    gap: 1rem;
    justify-content: space-around;
  }
  footer .footer_main .slide_intro .social a {
    width: 22px;
    height: 22px;
  }
  footer .footer_main .grid {
    order: -1;
    display: block;
    padding: 0;
    margin: 0;
  }
  footer .footer_main .grid::before,
  footer .footer_main .grid::after {
    display: none;
  }
  footer .footer_main .grid > div {
    padding: 0;
  }
  footer .footer_main .slide_quality {
    margin-top: 2rem;
  }
  footer .footer_main .slide_quality strong {
    margin-bottom: 20px;
  }
  footer .footer_main .slide_quality ul {
    gap: 1rem;
    justify-content: space-between;
  }
  footer .footer_main .slide_quality ul li {
    height: 40px;
  }
  footer .footer_main .slide_subscribe {
    margin-top: 2rem;
    border: none;
  }
  footer .footer_main .slide_subscribe strong {
    margin-bottom: 20px;
  }
  footer .footer_main .slide_subscribe div {
    padding-bottom: 20px;
  }
  footer .footer_main .slide_subscribe form {
    gap: 1rem;
  }
  footer .footer_main .slide_subscribe form input[type=email] {
    font-size: 14px;
    padding: 10px 20px;
  }
  footer .footer_main .slide_subscribe form input[type=submit] {
    font-size: 14px;
    padding: 15px 20px;
    min-width: 120px;
  }
  footer .footer_main .slide_obj:not(.slide_connect) {
    width: 100%;
  }
  footer .footer_main .slide_obj:not(.slide_connect) strong {
    font-size: 1rem;
    line-height: 46px;
    border: 1px solid rgba(22, 22, 22, 0.35);
    padding: 0 22px;
    position: relative;
    margin-bottom: 1rem;
  }
  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 1.2rem 1.2rem;
  }
  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;
    display: block;
    font-weight: normal;
  }
  footer .footer_main .slide_obj:not(.slide_connect) > div p {
    font-size: 0.9rem;
    line-height: 1.5rem;
  }
  footer .footer_main .slide_connect {
    width: 100%;
    padding-top: 20px;
  }
  footer .footer_main .slide_connect strong {
    font-size: 18px;
    margin-bottom: 20px;
  }
  footer .footer_main .slide_connect li + li {
    margin-top: 20px;
  }
  footer .footer_main .slide_connect li {
    padding-left: 4rem;
  }
  footer .footer_main .slide_connect li::before {
    width: 40px;
    height: 40px;
    top: 5px;
  }
  footer .footer_main .slide_connect li a {
    font-size: 1rem;
  }
  footer .footer_main .slide_connect li .label {
    font-size: 14px;
    margin-bottom: 5px;
  }
  footer .footer_main .slide_connect .email::before {
    top: 5px;
  }
  footer .footer_main .slide_connect .whatsapp::before {
    top: 5px;
  }
  footer .copyright {
    padding: 20px 0;
  }
  footer .copyright .flex {
    gap: 2rem;
    flex-direction: column-reverse;
  }
  footer .copyright ul {
    gap: 1rem;
  }
  footer .copyright p {
    font-size: 13px;
  }
  footer .copyright a {
    font-size: 14px;
  }
  #page_sidebar {
    right: 1rem;
  }
  #page_sidebar .social {
    width: 40px;
    gap: 1rem;
    padding: 20px 10px;
  }
  #page_sidebar .social a {
    width: 22px;
    height: 22px;
  }
  #page_sidebar .contact {
    width: 40px;
    gap: 1rem;
    margin-top: 1rem;
  }
  #page_sidebar .contact li p {
    right: calc(100% + 12px);
    background-color: #fff;
    font-size: 0.9rem;
    top: 0;
    min-width: 120px;
    padding: 10px;
  }
  #page_sidebar .contact li p::after {
    width: 7px;
    height: 14px;
  }
  .page_global {
    padding: 4rem 0;
  }
  .page_global .mask {
    top: -10px;
    bottom: -10px;
    --deg_w: 10px;
    --bootom: 10px;
  }
  .page_global .mask > div {
    height: 1rem;
  }
  .page_global .mask .mask_left,
  .page_global .mask .mask_right {
    max-width: 200px;
  }
  .page_global h2 span {
    max-width: unset;
  }
  .page_global .flex {
    margin-top: 2rem;
    gap: 2rem 1rem;
  }
  .page_global .img {
    margin: 0;
    width: 48%;
  }
  .page_global .items {
    max-width: unset;
    padding: 0;
  }
  .page_global .items > div {
    gap: 1rem;
  }
  .page_global .items .title {
    grid-template-columns: 1fr 40px;
    gap: 1rem;
    font-size: 18px;
    padding: 14px 20px;
  }
  .page_global .items .title span {
    margin-bottom: 0;
  }
  .page_global .items .desc {
    font-size: 0.9rem;
    line-height: 1.5;
    padding: 10px 20px 1.2rem;
  }
  .page_nums .nums ul {
    grid-template-columns: repeat(3, 1fr);
  }
  .page_nums li {
    padding: 2rem 10px;
  }
  .page_nums li .wrap {
    font-size: 1.2rem;
  }
  .page_nums li .wrap .num {
    font-size: 1.5rem;
    margin: 0;
  }
  .page_nums li .label {
    font-size: 0.9rem;
    margin-top: 10px;
  }
  .page_application {
    padding: 3rem 0;
    overflow: hidden;
  }
  .page_application .head {
    max-width: unset;
  }
  .page_application .page_application_swiper {
    overflow: unset;
    margin-top: 2rem;
  }
  .page_application .item a {
    padding: 1.2rem 20px;
  }
  .page_application .item .img::after {
    height: 100%;
  }
  .page_application .item .icon {
    width: 3rem;
    height: 3rem;
  }
  .page_application .item .info {
    transform: translateY(0);
    min-height: unset;
    margin-top: 1rem;
    gap: 20px;
  }
  .page_application .item .info h3 {
    font-size: 18px;
    line-height: 1.5;
    height: 54px;
  }
  .page_application .item .info p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 10px;
    max-width: unset;
    opacity: 1;
  }
  .page_partners {
    padding: 3rem 0 0;
  }
  .page_partners .flex {
    display: block;
  }
  .page_partners .num_box .wrap {
    font-size: 1.2rem;
  }
  .page_partners .num_box .wrap .num {
    font-size: 2rem;
    margin: 0;
  }
  .page_partners .num_box h2 {
    font-size: 22px;
    margin-top: 10px;
  }
  .page_partners .head {
    max-width: unset;
    padding: 0;
    margin-top: 1rem;
  }
  .page_partners h3 {
    font-size: 18px;
    padding-left: 2rem;
  }
  .page_partners h3::before {
    width: 20px;
    height: 20px;
  }
  .page_partners .inner {
    margin-top: 2rem;
    padding-bottom: 4rem;
  }
  .page_partners .inner > div + div {
    margin-top: 1rem;
  }
  .page_partners .page_partners_swiper .swiper-slide {
    width: 141px;
  }
  .page_contact .inner {
    max-width: unset;
    width: 100%;
    padding: 0 20px;
  }
  .page_contact .flex {
    display: block;
  }
  .page_contact .left {
    width: 100%;
    padding: 3rem 0;
  }
  .page_contact .left .img {
    width: calc(100% + 40px);
    right: -20px;
  }
  .page_contact .left .head {
    max-width: unset;
  }
  .page_contact .left h2 {
    font-size: 28px;
  }
  .page_contact .left p {
    font-size: 1rem;
    line-height: 1.5;
    margin-top: 10px;
    letter-spacing: unset;
  }
  .page_contact .left .msg {
    font-size: 18px;
    letter-spacing: unset;
    margin-top: 3rem;
  }
  .page_contact .right {
    max-width: unset;
    padding: 1rem 0 4rem;
  }
  .page_contact form {
    gap: 1rem;
  }
  .page_contact form .col-2 {
    width: 100%;
  }
  .page_contact form .label {
    font-size: 14px;
    margin-top: 1rem;
    margin-bottom: 0;
  }
  .page_contact form input,
  .page_contact form textarea {
    font-size: 14px;
    padding: 14px 20px;
  }
  .page_contact form textarea {
    height: 120px;
  }
  .page_contact form span:has(input[type=checkbox]) {
    margin-top: 0;
  }
  .page_contact form input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .page_contact form input[type=checkbox] ~ span {
    width: calc(100% - 24px);
    padding-left: 12px;
    font-size: 0.9rem;
    margin-top: 0;
    line-height: 1.5;
  }
  .page_contact form span:has(.btn_line) {
    margin-top: 1rem;
  }
  .page_contact form .btn_line {
    min-width: 120px;
  }
  .page_faqs {
    padding: 3rem 0 4rem;
  }
  .page_faqs .flex {
    margin-top: 2rem;
    display: block;
  }
  .page_faqs .faqs {
    max-width: unset;
  }
  .page_faqs .faqs .question {
    font-size: 18px;
    grid-template-columns: 1fr 12px;
    gap: 1rem;
    padding: 14px 0;
  }
  .page_faqs .faqs .answer {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: unset;
    padding-bottom: 1.2rem;
  }
  .page_faqs .items {
    width: 100%;
    padding: 0;
    margin-top: 2rem;
  }
  .page_faqs .items > div {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .page_faqs .items a {
    padding: 1.5rem 20px 3rem;
  }
  .page_faqs .items .icon {
    width: 3rem;
    height: 3rem;
  }
  .page_faqs .items .info {
    margin-top: 1rem;
  }
  .page_faqs .items .info h3 {
    font-size: 18px;
  }
  .page_faqs .items .info p {
    font-size: 0.9rem;
    line-height: 1.5;
    letter-spacing: unset;
    margin-top: 10px;
  }
  .page_faqs .items .btn_single {
    width: 40px;
  }
  .page_breadcrumbs2 {
    line-height: 20px;
    min-height: 20px;
  }
  .page_breadcrumbs2 span {
    font-size: 14px;
  }
  .page_breadcrumbs2 span span::before {
    font-size: 12px;
    margin: 0 10px;
  }
  .page_breadcrumbs2 span span:first-child a {
    width: 14px;
    height: 14px;
  }
  .page_breadcrumbs {
    line-height: 20px;
    min-height: 20px;
  }
  .page_breadcrumbs span {
    font-size: 14px;
  }
  .page_breadcrumbs span span::before {
    width: 10px;
    height: 10px;
    margin: 0 10px;
  }
  .cat_item .info {
    padding: 1rem 20px;
  }
  .cat_item .info span {
    font-size: 14px;
  }
  .cat_item .info h3 {
    font-size: 18px;
    margin-top: 10px;
  }
  .cat_item .btn_single {
    margin: 20px;
    margin-left: auto;
  }
  .blog_list .cat {
    font-size: 14px;
    line-height: 2;
    padding: 0 10px;
    letter-spacing: unset;
  }
  .blog_list .info {
    gap: 20px;
    padding: 1rem 20px 1.2rem;
  }
  .blog_list .info span {
    font-size: 14px;
  }
  .blog_list .info h3 {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .blog_list .info .btn_i {
    font-size: 14px;
    --size: 40px;
    gap: 12px;
  }
  .product_list .btn_single {
    right: 20px;
    top: 20px;
    width: 40px;
    --deg: 8px;
  }
  .product_list .btn_single:hover {
    --deg: calc(100% + 1px);
  }
  .product_list .info {
    padding: 1.2rem 20px;
  }
  .product_list .info span {
    font-size: 14px;
  }
  .product_list .info strong {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;
  }
  .product_list .info .desc {
    -webkit-line-clamp: 2;
  }
  
  /*** 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;
  }
  .wpcf7 form.wpcf7-form .wpcf7-spinner {
    left: 100%;
    right: unset;
  }

  .lang_popup{
    width: 100%;
    height: 80vh;
    padding: 1.5rem;
  }
  .lang_popup .gtranslate_wrapper{
    grid-template-columns: repeat(2,1fr);
    gap: 1rem;
  }
  .lang_popup .gtranslate_wrapper a{
    padding: 1rem;
  }
  .lang_popup .gtranslate_wrapper a img{
    width: 30px;
  }
  .lang_popup .gtranslate_wrapper a span{
    font-size: 14px !important;
  }
  .lang_popup strong{
    font-size: 20px;
  }

  .quote_modal .page_contact .inner {
    width: 100%;
  }
  /*** global css ***/

  .about_culture .desc {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 12px;
    max-height: 300px;
  }
  .about_culture .desc li + li {
    margin-top: 1rem;
  }

  section.home_banner .home_banner_swiper .title {
    font-size: 25px;
  }

  .breadcrumbs_section .inner {
    width: 100%;
    max-width: unset;
  }
  .breadcrumbs_section .breadcrumbs {
    left: 20px;
    right: 20px;
    padding: 15px 0;
  }

  .products_feature .items ul {
    margin-top: 1rem;
  }
  .products_feature .items li {
    padding-left: 1.5rem;
  }
  .products_feature .items li::before {
    width: 14px;
    height: 14px;
    top: 5px;
  }
  .products_feature .items li strong {
    font-size: 15px;
    line-height: 1.5;
    letter-spacing: unset;
    word-spacing: unset;
    max-width: unset;
  }
}
@media screen and (max-width: 576px) {
  div.head .subtitle {
    font-size: 14px;
  }
  div.head h1 {
    font-size: 25px;
  }
  div.head h2 {
    font-size: 22px;
  }
  div.head .desc,
  div.head p {
    font-size: 0.9rem;
  }
  .page_global .img {
    width: 100%;
  }
  .page_nums .nums ul {
    grid-template-columns: 1fr 1fr;
  }
  .page_contact .left h2 {
    font-size: 22px;
  }
  .page_contact .left p {
    font-size: 0.9rem;
  }
  .page_faqs .items > div {
    grid-template-columns: 1fr;
  }
}
